All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [GIT PULL 3/4] omap device tree changes for v3.15
       [not found] <pull-1393802089-910509>
@ 2014-03-03  0:10   ` Tony Lindgren
       [not found] ` <5313bcc3.c5bf440a.7302.4a69SMTPIN_ADDED_MISSING@mx.google.com>
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 18+ messages in thread
From: Tony Lindgren @ 2014-03-03  0:10 UTC (permalink / raw)
  To: arm; +Cc: linux-arm-kernel, linux-omap

* Tony Lindgren <tony@atomide.com> [140302 15:55]:
> The following changes since commit 6d0abeca3242a88cab8232e4acd7e2bf088f3bc2:
> 
>   Linux 3.14-rc3 (2014-02-16 13:30:25 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/dt-signed
> 
> for you to fetch changes up to f777ba1780584b100ab9664cc06d04f3bb273a84:
> 
>   Merge tag 'for_3.15/dts_signed' of git://git.kernel.org/pub/scm/linux/kernel/git/bcousson/linux-omap-dt into omap-for-v3.15/dt (2014-03-02 14:22:03 -0800)
> 
> ----------------------------------------------------------------
> 
> Device tree related changes for omaps with minor code
> changes also to platform data quirks that are still needed
> for some features.

FYI, this probably causes a minor overlapping additions conflict
with the recently merged fixes. My resolve below for reference.

Regards,

Tony


--- a/arch/arm/mach-omap2/pdata-quirks.c
+++ b/arch/arm/mach-omap2/pdata-quirks.c
@@@ -172,21 -194,42 +196,58 @@@ static void __init am35xx_emac_reset(vo
  	omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); /* OCP barrier */
  }
  
 +static void __init nokia_n900_legacy_init(void)
 +{
 +	hsmmc2_internal_input_clk();
 +
 +	if (omap_type() == OMAP2_DEVICE_TYPE_SEC) {
 +		if (IS_ENABLED(CONFIG_ARM_ERRATA_430973)) {
 +			pr_info("RX-51: Enabling ARM errata 430973 workaround\n");
 +			/* set IBE to 1 */
 +			rx51_secure_update_aux_cr(BIT(6), 0);
 +		} else {
 +			pr_warning("RX-51: Not enabling ARM errata 430973 workaround\n");
 +			pr_warning("Thumb binaries may crash randomly without this workaround\n");
 +		}
 +	}
 +}
++
+ static struct gpio cm_t3517_wlan_gpios[] __initdata = {
+ 	{ 56,	GPIOF_OUT_INIT_HIGH,	"wlan pwr" },
+ 	{ 4,	GPIOF_OUT_INIT_HIGH,	"xcvr noe" },
+ };
+ 
+ static void __init omap3_sbc_t3517_wifi_init(void)
+ {
+ 	int err = gpio_request_array(cm_t3517_wlan_gpios,
+ 				ARRAY_SIZE(cm_t3517_wlan_gpios));
+ 	if (err) {
+ 		pr_err("SBC-T3517: wl12xx gpios request failed: %d\n", err);
+ 		return;
+ 	}
+ 
+ 	gpio_export(cm_t3517_wlan_gpios[0].gpio, 0);
+ 	gpio_export(cm_t3517_wlan_gpios[1].gpio, 0);
+ 
+ 	msleep(100);
+ 	gpio_set_value(cm_t3517_wlan_gpios[1].gpio, 0);
+ }
+ 
+ static void __init omap3_sbc_t3517_legacy_init(void)
+ {
+ 	omap3_sbc_t3x_usb_hub_init(152, "cm-t3517 usb hub");
+ 	omap3_sbc_t3x_usb_hub_init(98, "sb-t35 usb hub");
+ 	am35xx_emac_reset();
+ 	hsmmc2_internal_input_clk();
+ 	omap3_sbc_t3517_wifi_init();
+ 	legacy_init_wl12xx(WL12XX_REFCLOCK_38, 0, 145);
+ 	omap_ads7846_init(1, 57, 0, NULL);
+ }
+ 
+ static void __init am3517_evm_legacy_init(void)
+ {
+ 	am35xx_emac_reset();
+ }
  #endif /* CONFIG_ARCH_OMAP3 */
  
  #ifdef CONFIG_ARCH_OMAP4
@@@ -277,8 -319,10 +338,10 @@@ struct of_dev_auxdata omap_auxdata_look
   */
  static struct pdata_init pdata_quirks[] __initdata = {
  #ifdef CONFIG_ARCH_OMAP3
+ 	{ "compulab,omap3-sbc-t3517", omap3_sbc_t3517_legacy_init, },
+ 	{ "compulab,omap3-sbc-t3530", omap3_sbc_t3530_legacy_init, },
  	{ "compulab,omap3-sbc-t3730", omap3_sbc_t3730_legacy_init, },
 -	{ "nokia,omap3-n900", hsmmc2_internal_input_clk, },
 +	{ "nokia,omap3-n900", nokia_n900_legacy_init, },
  	{ "nokia,omap3-n9", hsmmc2_internal_input_clk, },
  	{ "nokia,omap3-n950", hsmmc2_internal_input_clk, },
  	{ "isee,omap3-igep0020", omap3_igep0020_legacy_init, },

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [GIT PULL 3/4] omap device tree changes for v3.15
@ 2014-03-03  0:10   ` Tony Lindgren
  0 siblings, 0 replies; 18+ messages in thread
From: Tony Lindgren @ 2014-03-03  0:10 UTC (permalink / raw)
  To: linux-arm-kernel

* Tony Lindgren <tony@atomide.com> [140302 15:55]:
> The following changes since commit 6d0abeca3242a88cab8232e4acd7e2bf088f3bc2:
> 
>   Linux 3.14-rc3 (2014-02-16 13:30:25 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/dt-signed
> 
> for you to fetch changes up to f777ba1780584b100ab9664cc06d04f3bb273a84:
> 
>   Merge tag 'for_3.15/dts_signed' of git://git.kernel.org/pub/scm/linux/kernel/git/bcousson/linux-omap-dt into omap-for-v3.15/dt (2014-03-02 14:22:03 -0800)
> 
> ----------------------------------------------------------------
> 
> Device tree related changes for omaps with minor code
> changes also to platform data quirks that are still needed
> for some features.

FYI, this probably causes a minor overlapping additions conflict
with the recently merged fixes. My resolve below for reference.

Regards,

Tony


--- a/arch/arm/mach-omap2/pdata-quirks.c
+++ b/arch/arm/mach-omap2/pdata-quirks.c
@@@ -172,21 -194,42 +196,58 @@@ static void __init am35xx_emac_reset(vo
  	omap_ctrl_readl(AM35XX_CONTROL_IP_SW_RESET); /* OCP barrier */
  }
  
 +static void __init nokia_n900_legacy_init(void)
 +{
 +	hsmmc2_internal_input_clk();
 +
 +	if (omap_type() == OMAP2_DEVICE_TYPE_SEC) {
 +		if (IS_ENABLED(CONFIG_ARM_ERRATA_430973)) {
 +			pr_info("RX-51: Enabling ARM errata 430973 workaround\n");
 +			/* set IBE to 1 */
 +			rx51_secure_update_aux_cr(BIT(6), 0);
 +		} else {
 +			pr_warning("RX-51: Not enabling ARM errata 430973 workaround\n");
 +			pr_warning("Thumb binaries may crash randomly without this workaround\n");
 +		}
 +	}
 +}
++
+ static struct gpio cm_t3517_wlan_gpios[] __initdata = {
+ 	{ 56,	GPIOF_OUT_INIT_HIGH,	"wlan pwr" },
+ 	{ 4,	GPIOF_OUT_INIT_HIGH,	"xcvr noe" },
+ };
+ 
+ static void __init omap3_sbc_t3517_wifi_init(void)
+ {
+ 	int err = gpio_request_array(cm_t3517_wlan_gpios,
+ 				ARRAY_SIZE(cm_t3517_wlan_gpios));
+ 	if (err) {
+ 		pr_err("SBC-T3517: wl12xx gpios request failed: %d\n", err);
+ 		return;
+ 	}
+ 
+ 	gpio_export(cm_t3517_wlan_gpios[0].gpio, 0);
+ 	gpio_export(cm_t3517_wlan_gpios[1].gpio, 0);
+ 
+ 	msleep(100);
+ 	gpio_set_value(cm_t3517_wlan_gpios[1].gpio, 0);
+ }
+ 
+ static void __init omap3_sbc_t3517_legacy_init(void)
+ {
+ 	omap3_sbc_t3x_usb_hub_init(152, "cm-t3517 usb hub");
+ 	omap3_sbc_t3x_usb_hub_init(98, "sb-t35 usb hub");
+ 	am35xx_emac_reset();
+ 	hsmmc2_internal_input_clk();
+ 	omap3_sbc_t3517_wifi_init();
+ 	legacy_init_wl12xx(WL12XX_REFCLOCK_38, 0, 145);
+ 	omap_ads7846_init(1, 57, 0, NULL);
+ }
+ 
+ static void __init am3517_evm_legacy_init(void)
+ {
+ 	am35xx_emac_reset();
+ }
  #endif /* CONFIG_ARCH_OMAP3 */
  
  #ifdef CONFIG_ARCH_OMAP4
@@@ -277,8 -319,10 +338,10 @@@ struct of_dev_auxdata omap_auxdata_look
   */
  static struct pdata_init pdata_quirks[] __initdata = {
  #ifdef CONFIG_ARCH_OMAP3
+ 	{ "compulab,omap3-sbc-t3517", omap3_sbc_t3517_legacy_init, },
+ 	{ "compulab,omap3-sbc-t3530", omap3_sbc_t3530_legacy_init, },
  	{ "compulab,omap3-sbc-t3730", omap3_sbc_t3730_legacy_init, },
 -	{ "nokia,omap3-n900", hsmmc2_internal_input_clk, },
 +	{ "nokia,omap3-n900", nokia_n900_legacy_init, },
  	{ "nokia,omap3-n9", hsmmc2_internal_input_clk, },
  	{ "nokia,omap3-n950", hsmmc2_internal_input_clk, },
  	{ "isee,omap3-igep0020", omap3_igep0020_legacy_init, },

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [GIT PULL 2/4] omap prcm changes for v3.15
       [not found] ` <5313bcc3.c5bf440a.7302.4a69SMTPIN_ADDED_MISSING@mx.google.com>
@ 2014-03-09  7:18     ` Olof Johansson
  0 siblings, 0 replies; 18+ messages in thread
From: Olof Johansson @ 2014-03-09  7:18 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: arm, linux-arm-kernel, linux-omap

On Sun, Mar 02, 2014 at 03:14:46PM -0800, Tony Lindgren wrote:
> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
> 
>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/prcm-signed
> 
> for you to fetch changes up to 9ed5811ddd32eb02140783095f1fec7d12fb3eb9:
> 
>   Merge tag 'for-v3.15/omap-hwmod-clk-prcm-a' of git://git.kernel.org/pub/scm/linux/kernel/git/pjw/omap-pending into omap-for-v3.15/prcm (2014-02-28 15:41:55 -0800)

Pulled into next/soc. Thanks.


-Olof

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [GIT PULL 2/4] omap prcm changes for v3.15
@ 2014-03-09  7:18     ` Olof Johansson
  0 siblings, 0 replies; 18+ messages in thread
From: Olof Johansson @ 2014-03-09  7:18 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Mar 02, 2014 at 03:14:46PM -0800, Tony Lindgren wrote:
> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
> 
>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/prcm-signed
> 
> for you to fetch changes up to 9ed5811ddd32eb02140783095f1fec7d12fb3eb9:
> 
>   Merge tag 'for-v3.15/omap-hwmod-clk-prcm-a' of git://git.kernel.org/pub/scm/linux/kernel/git/pjw/omap-pending into omap-for-v3.15/prcm (2014-02-28 15:41:55 -0800)

Pulled into next/soc. Thanks.


-Olof

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [GIT PULL 3/4] omap device tree changes for v3.15
       [not found] ` <5313bcc4.66ff420a.7636.3ca9SMTPIN_ADDED_MISSING@mx.google.com>
@ 2014-03-09  7:26     ` Olof Johansson
  0 siblings, 0 replies; 18+ messages in thread
From: Olof Johansson @ 2014-03-09  7:26 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: arm, linux-arm-kernel, linux-omap

On Sun, Mar 02, 2014 at 03:14:48PM -0800, Tony Lindgren wrote:
> The following changes since commit 6d0abeca3242a88cab8232e4acd7e2bf088f3bc2:
> 
>   Linux 3.14-rc3 (2014-02-16 13:30:25 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/dt-signed
> 
> for you to fetch changes up to f777ba1780584b100ab9664cc06d04f3bb273a84:
> 
>   Merge tag 'for_3.15/dts_signed' of git://git.kernel.org/pub/scm/linux/kernel/git/bcousson/linux-omap-dt into omap-for-v3.15/dt (2014-03-02 14:22:03 -0800)

Merged, this had an add/add conflict with "ARM: OMAP2+: Add support for thumb
mode on DT booted N900" that I had to resolve.


-Olof

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [GIT PULL 3/4] omap device tree changes for v3.15
@ 2014-03-09  7:26     ` Olof Johansson
  0 siblings, 0 replies; 18+ messages in thread
From: Olof Johansson @ 2014-03-09  7:26 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Mar 02, 2014 at 03:14:48PM -0800, Tony Lindgren wrote:
> The following changes since commit 6d0abeca3242a88cab8232e4acd7e2bf088f3bc2:
> 
>   Linux 3.14-rc3 (2014-02-16 13:30:25 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/dt-signed
> 
> for you to fetch changes up to f777ba1780584b100ab9664cc06d04f3bb273a84:
> 
>   Merge tag 'for_3.15/dts_signed' of git://git.kernel.org/pub/scm/linux/kernel/git/bcousson/linux-omap-dt into omap-for-v3.15/dt (2014-03-02 14:22:03 -0800)

Merged, this had an add/add conflict with "ARM: OMAP2+: Add support for thumb
mode on DT booted N900" that I had to resolve.


-Olof

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [GIT PULL 3/4] omap device tree changes for v3.15
  2014-03-03  0:10   ` Tony Lindgren
@ 2014-03-09  7:29     ` Olof Johansson
  -1 siblings, 0 replies; 18+ messages in thread
From: Olof Johansson @ 2014-03-09  7:29 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: arm, linux-arm-kernel, linux-omap

On Sun, Mar 02, 2014 at 04:10:49PM -0800, Tony Lindgren wrote:
> * Tony Lindgren <tony@atomide.com> [140302 15:55]:
> > The following changes since commit 6d0abeca3242a88cab8232e4acd7e2bf088f3bc2:
> > 
> >   Linux 3.14-rc3 (2014-02-16 13:30:25 -0800)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/dt-signed
> > 
> > for you to fetch changes up to f777ba1780584b100ab9664cc06d04f3bb273a84:
> > 
> >   Merge tag 'for_3.15/dts_signed' of git://git.kernel.org/pub/scm/linux/kernel/git/bcousson/linux-omap-dt into omap-for-v3.15/dt (2014-03-02 14:22:03 -0800)
> > 
> > ----------------------------------------------------------------
> > 
> > Device tree related changes for omaps with minor code
> > changes also to platform data quirks that are still needed
> > for some features.
> 
> FYI, this probably causes a minor overlapping additions conflict
> with the recently merged fixes. My resolve below for reference.

D'oh, saw this after I did the merge. Yes, same resolution as I used.


-Olof

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [GIT PULL 3/4] omap device tree changes for v3.15
@ 2014-03-09  7:29     ` Olof Johansson
  0 siblings, 0 replies; 18+ messages in thread
From: Olof Johansson @ 2014-03-09  7:29 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Mar 02, 2014 at 04:10:49PM -0800, Tony Lindgren wrote:
> * Tony Lindgren <tony@atomide.com> [140302 15:55]:
> > The following changes since commit 6d0abeca3242a88cab8232e4acd7e2bf088f3bc2:
> > 
> >   Linux 3.14-rc3 (2014-02-16 13:30:25 -0800)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/dt-signed
> > 
> > for you to fetch changes up to f777ba1780584b100ab9664cc06d04f3bb273a84:
> > 
> >   Merge tag 'for_3.15/dts_signed' of git://git.kernel.org/pub/scm/linux/kernel/git/bcousson/linux-omap-dt into omap-for-v3.15/dt (2014-03-02 14:22:03 -0800)
> > 
> > ----------------------------------------------------------------
> > 
> > Device tree related changes for omaps with minor code
> > changes also to platform data quirks that are still needed
> > for some features.
> 
> FYI, this probably causes a minor overlapping additions conflict
> with the recently merged fixes. My resolve below for reference.

D'oh, saw this after I did the merge. Yes, same resolution as I used.


-Olof

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [GIT PULL 4/4] omap crossbar support for v3.15
       [not found] ` <5313bcc5.a8fc440a.467f.7ba2SMTPIN_ADDED_MISSING@mx.google.com>
@ 2014-03-09  7:33     ` Olof Johansson
  0 siblings, 0 replies; 18+ messages in thread
From: Olof Johansson @ 2014-03-09  7:33 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: arm, linux-arm-kernel, linux-omap

On Sun, Mar 02, 2014 at 03:14:49PM -0800, Tony Lindgren wrote:
> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
> 
>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/crossbar-signed
> 
> for you to fetch changes up to 9594274201ac3c67d5c569aae63792e58bcd33e6:
> 
>   Merge branch 'crossbar_3.14_rc1' of git://github.com/Sricharanti/sricharan into omap-for-v3.15/crossbar (2014-02-28 13:35:02 -0800)
> 
> ----------------------------------------------------------------
> 
> Add support for GIC crossbar that routes interrupts on newer omaps.
> 
> Looks like people wanted these merged via the omap tree as it's
> the only user for the GIC crossbar.
> 
> ----------------------------------------------------------------
> Sricharan R (4):
>       DRIVERS: IRQCHIP: IRQ-GIC: Add support for routable irqs
>       DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP
>       ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
>       ARM: DRA: Enable Crossbar IP support for DRA7XX

Whoa, lots of caps on those driver subjects. I don't think we need those
in the future, lower case is just fine (and DRIVERS: usually isn't used).

Branch has been merged into next/drivers.


-Olof

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [GIT PULL 4/4] omap crossbar support for v3.15
@ 2014-03-09  7:33     ` Olof Johansson
  0 siblings, 0 replies; 18+ messages in thread
From: Olof Johansson @ 2014-03-09  7:33 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Mar 02, 2014 at 03:14:49PM -0800, Tony Lindgren wrote:
> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
> 
>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/crossbar-signed
> 
> for you to fetch changes up to 9594274201ac3c67d5c569aae63792e58bcd33e6:
> 
>   Merge branch 'crossbar_3.14_rc1' of git://github.com/Sricharanti/sricharan into omap-for-v3.15/crossbar (2014-02-28 13:35:02 -0800)
> 
> ----------------------------------------------------------------
> 
> Add support for GIC crossbar that routes interrupts on newer omaps.
> 
> Looks like people wanted these merged via the omap tree as it's
> the only user for the GIC crossbar.
> 
> ----------------------------------------------------------------
> Sricharan R (4):
>       DRIVERS: IRQCHIP: IRQ-GIC: Add support for routable irqs
>       DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP
>       ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
>       ARM: DRA: Enable Crossbar IP support for DRA7XX

Whoa, lots of caps on those driver subjects. I don't think we need those
in the future, lower case is just fine (and DRIVERS: usually isn't used).

Branch has been merged into next/drivers.


-Olof

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [GIT PULL 4/4] omap crossbar support for v3.15
  2014-03-09  7:33     ` Olof Johansson
@ 2014-03-10 16:36       ` Tony Lindgren
  -1 siblings, 0 replies; 18+ messages in thread
From: Tony Lindgren @ 2014-03-10 16:36 UTC (permalink / raw)
  To: Olof Johansson; +Cc: arm, linux-arm-kernel, linux-omap, Sricharan R

* Olof Johansson <olof@lixom.net> [140308 23:36]:
> On Sun, Mar 02, 2014 at 03:14:49PM -0800, Tony Lindgren wrote:
> > The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
> > 
> >   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/crossbar-signed
> > 
> > for you to fetch changes up to 9594274201ac3c67d5c569aae63792e58bcd33e6:
> > 
> >   Merge branch 'crossbar_3.14_rc1' of git://github.com/Sricharanti/sricharan into omap-for-v3.15/crossbar (2014-02-28 13:35:02 -0800)
> > 
> > ----------------------------------------------------------------
> > 
> > Add support for GIC crossbar that routes interrupts on newer omaps.
> > 
> > Looks like people wanted these merged via the omap tree as it's
> > the only user for the GIC crossbar.
> > 
> > ----------------------------------------------------------------
> > Sricharan R (4):
> >       DRIVERS: IRQCHIP: IRQ-GIC: Add support for routable irqs
> >       DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP
> >       ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
> >       ARM: DRA: Enable Crossbar IP support for DRA7XX
> 
> Whoa, lots of caps on those driver subjects. I don't think we need those
> in the future, lower case is just fine (and DRIVERS: usually isn't used).

Oops yeah I had them as "irqchip: crossbar" and "irqchip: irq-gic" in
my earlier branch for v3.14 that did not get merged, but this time I
pulled from Sricharan.

Scricharan, maybe use less yelling naming for any follow-up patches?
 
> Branch has been merged into next/drivers.

OK thanks!

Tony

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [GIT PULL 4/4] omap crossbar support for v3.15
@ 2014-03-10 16:36       ` Tony Lindgren
  0 siblings, 0 replies; 18+ messages in thread
From: Tony Lindgren @ 2014-03-10 16:36 UTC (permalink / raw)
  To: linux-arm-kernel

* Olof Johansson <olof@lixom.net> [140308 23:36]:
> On Sun, Mar 02, 2014 at 03:14:49PM -0800, Tony Lindgren wrote:
> > The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
> > 
> >   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/crossbar-signed
> > 
> > for you to fetch changes up to 9594274201ac3c67d5c569aae63792e58bcd33e6:
> > 
> >   Merge branch 'crossbar_3.14_rc1' of git://github.com/Sricharanti/sricharan into omap-for-v3.15/crossbar (2014-02-28 13:35:02 -0800)
> > 
> > ----------------------------------------------------------------
> > 
> > Add support for GIC crossbar that routes interrupts on newer omaps.
> > 
> > Looks like people wanted these merged via the omap tree as it's
> > the only user for the GIC crossbar.
> > 
> > ----------------------------------------------------------------
> > Sricharan R (4):
> >       DRIVERS: IRQCHIP: IRQ-GIC: Add support for routable irqs
> >       DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP
> >       ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
> >       ARM: DRA: Enable Crossbar IP support for DRA7XX
> 
> Whoa, lots of caps on those driver subjects. I don't think we need those
> in the future, lower case is just fine (and DRIVERS: usually isn't used).

Oops yeah I had them as "irqchip: crossbar" and "irqchip: irq-gic" in
my earlier branch for v3.14 that did not get merged, but this time I
pulled from Sricharan.

Scricharan, maybe use less yelling naming for any follow-up patches?
 
> Branch has been merged into next/drivers.

OK thanks!

Tony

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [GIT PULL 4/4] omap crossbar support for v3.15
  2014-03-10 16:36       ` Tony Lindgren
@ 2014-03-11 12:41         ` Sricharan R
  -1 siblings, 0 replies; 18+ messages in thread
From: Sricharan R @ 2014-03-11 12:41 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: Olof Johansson, linux-omap, arm, linux-arm-kernel

Tony,

On Monday 10 March 2014 10:06 PM, Tony Lindgren wrote:
> * Olof Johansson <olof@lixom.net> [140308 23:36]:
>> On Sun, Mar 02, 2014 at 03:14:49PM -0800, Tony Lindgren wrote:
>>> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
>>>
>>>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
>>>
>>> are available in the git repository at:
>>>
>>>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/crossbar-signed
>>>
>>> for you to fetch changes up to 9594274201ac3c67d5c569aae63792e58bcd33e6:
>>>
>>>   Merge branch 'crossbar_3.14_rc1' of git://github.com/Sricharanti/sricharan into omap-for-v3.15/crossbar (2014-02-28 13:35:02 -0800)
>>>
>>> ----------------------------------------------------------------
>>>
>>> Add support for GIC crossbar that routes interrupts on newer omaps.
>>>
>>> Looks like people wanted these merged via the omap tree as it's
>>> the only user for the GIC crossbar.
>>>
>>> ----------------------------------------------------------------
>>> Sricharan R (4):
>>>       DRIVERS: IRQCHIP: IRQ-GIC: Add support for routable irqs
>>>       DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP
>>>       ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
>>>       ARM: DRA: Enable Crossbar IP support for DRA7XX
>> Whoa, lots of caps on those driver subjects. I don't think we need those
>> in the future, lower case is just fine (and DRIVERS: usually isn't used).
> Oops yeah I had them as "irqchip: crossbar" and "irqchip: irq-gic" in
> my earlier branch for v3.14 that did not get merged, but this time I
> pulled from Sricharan.
>
> Scricharan, maybe use less yelling naming for any follow-up patches?
>  
  Will make sure that there are no caps in the follow up patches.

Regards,
 Sricharan

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [GIT PULL 4/4] omap crossbar support for v3.15
@ 2014-03-11 12:41         ` Sricharan R
  0 siblings, 0 replies; 18+ messages in thread
From: Sricharan R @ 2014-03-11 12:41 UTC (permalink / raw)
  To: linux-arm-kernel

Tony,

On Monday 10 March 2014 10:06 PM, Tony Lindgren wrote:
> * Olof Johansson <olof@lixom.net> [140308 23:36]:
>> On Sun, Mar 02, 2014 at 03:14:49PM -0800, Tony Lindgren wrote:
>>> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
>>>
>>>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
>>>
>>> are available in the git repository at:
>>>
>>>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/crossbar-signed
>>>
>>> for you to fetch changes up to 9594274201ac3c67d5c569aae63792e58bcd33e6:
>>>
>>>   Merge branch 'crossbar_3.14_rc1' of git://github.com/Sricharanti/sricharan into omap-for-v3.15/crossbar (2014-02-28 13:35:02 -0800)
>>>
>>> ----------------------------------------------------------------
>>>
>>> Add support for GIC crossbar that routes interrupts on newer omaps.
>>>
>>> Looks like people wanted these merged via the omap tree as it's
>>> the only user for the GIC crossbar.
>>>
>>> ----------------------------------------------------------------
>>> Sricharan R (4):
>>>       DRIVERS: IRQCHIP: IRQ-GIC: Add support for routable irqs
>>>       DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP
>>>       ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
>>>       ARM: DRA: Enable Crossbar IP support for DRA7XX
>> Whoa, lots of caps on those driver subjects. I don't think we need those
>> in the future, lower case is just fine (and DRIVERS: usually isn't used).
> Oops yeah I had them as "irqchip: crossbar" and "irqchip: irq-gic" in
> my earlier branch for v3.14 that did not get merged, but this time I
> pulled from Sricharan.
>
> Scricharan, maybe use less yelling naming for any follow-up patches?
>  
  Will make sure that there are no caps in the follow up patches.

Regards,
 Sricharan

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [GIT PULL 4/4] omap crossbar support for v3.15
  2014-03-11 12:41         ` Sricharan R
@ 2014-05-05 14:28           ` Sricharan R
  -1 siblings, 0 replies; 18+ messages in thread
From: Sricharan R @ 2014-05-05 14:28 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: Olof Johansson, arm, linux-arm-kernel, linux-omap

Hi Tony,

On Tuesday 11 March 2014 06:11 PM, Sricharan R wrote:
> Tony,
>
> On Monday 10 March 2014 10:06 PM, Tony Lindgren wrote:
>> * Olof Johansson <olof@lixom.net> [140308 23:36]:
>>> On Sun, Mar 02, 2014 at 03:14:49PM -0800, Tony Lindgren wrote:
>>>> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
>>>>
>>>>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
>>>>
>>>> are available in the git repository at:
>>>>
>>>>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/crossbar-signed
>>>>
>>>> for you to fetch changes up to 9594274201ac3c67d5c569aae63792e58bcd33e6:
>>>>
>>>>   Merge branch 'crossbar_3.14_rc1' of git://github.com/Sricharanti/sricharan into omap-for-v3.15/crossbar (2014-02-28 13:35:02 -0800)
>>>>
>>>> ----------------------------------------------------------------
>>>>
>>>> Add support for GIC crossbar that routes interrupts on newer omaps.
>>>>
>>>> Looks like people wanted these merged via the omap tree as it's
>>>> the only user for the GIC crossbar.
>>>>
>>>> ----------------------------------------------------------------
>>>> Sricharan R (4):
>>>>       DRIVERS: IRQCHIP: IRQ-GIC: Add support for routable irqs
>>>>       DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP
>>>>       ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
>>>>       ARM: DRA: Enable Crossbar IP support for DRA7XX
>>> Whoa, lots of caps on those driver subjects. I don't think we need those
>>> in the future, lower case is just fine (and DRIVERS: usually isn't used).
>> Oops yeah I had them as "irqchip: crossbar" and "irqchip: irq-gic" in
>> my earlier branch for v3.14 that did not get merged, but this time I
>> pulled from Sricharan.
>>
>> Scricharan, maybe use less yelling naming for any follow-up patches?
>>  
>   Will make sure that there are no caps in the follow up patches.
>
> Regards,
>  Sricharan
I have pushed the below branch for the crossbar-dts data rebased on 3.15-rc4

git@github.com:Sricharanti/sricharan.git
branch: crossbar_dts_3.15_rc4

These patches are dependent on the crossbar driver fixes sent below.

http://marc.info/?l=linux-omap&m=139929963420299&w=2

Regards,
 Sricharan


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [GIT PULL 4/4] omap crossbar support for v3.15
@ 2014-05-05 14:28           ` Sricharan R
  0 siblings, 0 replies; 18+ messages in thread
From: Sricharan R @ 2014-05-05 14:28 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Tony,

On Tuesday 11 March 2014 06:11 PM, Sricharan R wrote:
> Tony,
>
> On Monday 10 March 2014 10:06 PM, Tony Lindgren wrote:
>> * Olof Johansson <olof@lixom.net> [140308 23:36]:
>>> On Sun, Mar 02, 2014 at 03:14:49PM -0800, Tony Lindgren wrote:
>>>> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
>>>>
>>>>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
>>>>
>>>> are available in the git repository at:
>>>>
>>>>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/crossbar-signed
>>>>
>>>> for you to fetch changes up to 9594274201ac3c67d5c569aae63792e58bcd33e6:
>>>>
>>>>   Merge branch 'crossbar_3.14_rc1' of git://github.com/Sricharanti/sricharan into omap-for-v3.15/crossbar (2014-02-28 13:35:02 -0800)
>>>>
>>>> ----------------------------------------------------------------
>>>>
>>>> Add support for GIC crossbar that routes interrupts on newer omaps.
>>>>
>>>> Looks like people wanted these merged via the omap tree as it's
>>>> the only user for the GIC crossbar.
>>>>
>>>> ----------------------------------------------------------------
>>>> Sricharan R (4):
>>>>       DRIVERS: IRQCHIP: IRQ-GIC: Add support for routable irqs
>>>>       DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP
>>>>       ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
>>>>       ARM: DRA: Enable Crossbar IP support for DRA7XX
>>> Whoa, lots of caps on those driver subjects. I don't think we need those
>>> in the future, lower case is just fine (and DRIVERS: usually isn't used).
>> Oops yeah I had them as "irqchip: crossbar" and "irqchip: irq-gic" in
>> my earlier branch for v3.14 that did not get merged, but this time I
>> pulled from Sricharan.
>>
>> Scricharan, maybe use less yelling naming for any follow-up patches?
>>  
>   Will make sure that there are no caps in the follow up patches.
>
> Regards,
>  Sricharan
I have pushed the below branch for the crossbar-dts data rebased on 3.15-rc4

git at github.com:Sricharanti/sricharan.git
branch: crossbar_dts_3.15_rc4

These patches are dependent on the crossbar driver fixes sent below.

http://marc.info/?l=linux-omap&m=139929963420299&w=2

Regards,
 Sricharan

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [GIT PULL 4/4] omap crossbar support for v3.15
  2014-05-05 14:28           ` Sricharan R
@ 2014-05-05 14:30             ` Sricharan R
  -1 siblings, 0 replies; 18+ messages in thread
From: Sricharan R @ 2014-05-05 14:30 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: Olof Johansson, arm, linux-arm-kernel, linux-omap

Hi,

On Monday 05 May 2014 07:58 PM, Sricharan R wrote:
> Hi Tony,
>
> On Tuesday 11 March 2014 06:11 PM, Sricharan R wrote:
>> Tony,
>>
>> On Monday 10 March 2014 10:06 PM, Tony Lindgren wrote:
>>> * Olof Johansson <olof@lixom.net> [140308 23:36]:
>>>> On Sun, Mar 02, 2014 at 03:14:49PM -0800, Tony Lindgren wrote:
>>>>> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
>>>>>
>>>>>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
>>>>>
>>>>> are available in the git repository at:
>>>>>
>>>>>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/crossbar-signed
>>>>>
>>>>> for you to fetch changes up to 9594274201ac3c67d5c569aae63792e58bcd33e6:
>>>>>
>>>>>   Merge branch 'crossbar_3.14_rc1' of git://github.com/Sricharanti/sricharan into omap-for-v3.15/crossbar (2014-02-28 13:35:02 -0800)
>>>>>
>>>>> ----------------------------------------------------------------
>>>>>
>>>>> Add support for GIC crossbar that routes interrupts on newer omaps.
>>>>>
>>>>> Looks like people wanted these merged via the omap tree as it's
>>>>> the only user for the GIC crossbar.
>>>>>
>>>>> ----------------------------------------------------------------
>>>>> Sricharan R (4):
>>>>>       DRIVERS: IRQCHIP: IRQ-GIC: Add support for routable irqs
>>>>>       DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP
>>>>>       ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
>>>>>       ARM: DRA: Enable Crossbar IP support for DRA7XX
>>>> Whoa, lots of caps on those driver subjects. I don't think we need those
>>>> in the future, lower case is just fine (and DRIVERS: usually isn't used).
>>> Oops yeah I had them as "irqchip: crossbar" and "irqchip: irq-gic" in
>>> my earlier branch for v3.14 that did not get merged, but this time I
>>> pulled from Sricharan.
>>>
>>> Scricharan, maybe use less yelling naming for any follow-up patches?
>>>  
>>   Will make sure that there are no caps in the follow up patches.
>>
>> Regards,
>>  Sricharan
> I have pushed the below branch for the crossbar-dts data rebased on 3.15-rc4
>
> git@github.com:Sricharanti/sricharan.git
> branch: crossbar_dts_3.15_rc4
>
> These patches are dependent on the crossbar driver fixes sent below.
>
> http://marc.info/?l=linux-omap&m=139929963420299&w=2
>
> Regards,
>  Sricharan
>

 Sorry, please ignore this. Used a wrong thread.

Regards,
 Sricharan

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [GIT PULL 4/4] omap crossbar support for v3.15
@ 2014-05-05 14:30             ` Sricharan R
  0 siblings, 0 replies; 18+ messages in thread
From: Sricharan R @ 2014-05-05 14:30 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On Monday 05 May 2014 07:58 PM, Sricharan R wrote:
> Hi Tony,
>
> On Tuesday 11 March 2014 06:11 PM, Sricharan R wrote:
>> Tony,
>>
>> On Monday 10 March 2014 10:06 PM, Tony Lindgren wrote:
>>> * Olof Johansson <olof@lixom.net> [140308 23:36]:
>>>> On Sun, Mar 02, 2014 at 03:14:49PM -0800, Tony Lindgren wrote:
>>>>> The following changes since commit 38dbfb59d1175ef458d006556061adeaa8751b72:
>>>>>
>>>>>   Linus 3.14-rc1 (2014-02-02 16:42:13 -0800)
>>>>>
>>>>> are available in the git repository at:
>>>>>
>>>>>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.15/crossbar-signed
>>>>>
>>>>> for you to fetch changes up to 9594274201ac3c67d5c569aae63792e58bcd33e6:
>>>>>
>>>>>   Merge branch 'crossbar_3.14_rc1' of git://github.com/Sricharanti/sricharan into omap-for-v3.15/crossbar (2014-02-28 13:35:02 -0800)
>>>>>
>>>>> ----------------------------------------------------------------
>>>>>
>>>>> Add support for GIC crossbar that routes interrupts on newer omaps.
>>>>>
>>>>> Looks like people wanted these merged via the omap tree as it's
>>>>> the only user for the GIC crossbar.
>>>>>
>>>>> ----------------------------------------------------------------
>>>>> Sricharan R (4):
>>>>>       DRIVERS: IRQCHIP: IRQ-GIC: Add support for routable irqs
>>>>>       DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP
>>>>>       ARM: OMAP4+: Correct Wakeup-gen code to use physical irq number
>>>>>       ARM: DRA: Enable Crossbar IP support for DRA7XX
>>>> Whoa, lots of caps on those driver subjects. I don't think we need those
>>>> in the future, lower case is just fine (and DRIVERS: usually isn't used).
>>> Oops yeah I had them as "irqchip: crossbar" and "irqchip: irq-gic" in
>>> my earlier branch for v3.14 that did not get merged, but this time I
>>> pulled from Sricharan.
>>>
>>> Scricharan, maybe use less yelling naming for any follow-up patches?
>>>  
>>   Will make sure that there are no caps in the follow up patches.
>>
>> Regards,
>>  Sricharan
> I have pushed the below branch for the crossbar-dts data rebased on 3.15-rc4
>
> git at github.com:Sricharanti/sricharan.git
> branch: crossbar_dts_3.15_rc4
>
> These patches are dependent on the crossbar driver fixes sent below.
>
> http://marc.info/?l=linux-omap&m=139929963420299&w=2
>
> Regards,
>  Sricharan
>

 Sorry, please ignore this. Used a wrong thread.

Regards,
 Sricharan

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2014-05-05 14:32 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <pull-1393802089-910509>
2014-03-03  0:10 ` [GIT PULL 3/4] omap device tree changes for v3.15 Tony Lindgren
2014-03-03  0:10   ` Tony Lindgren
2014-03-09  7:29   ` Olof Johansson
2014-03-09  7:29     ` Olof Johansson
     [not found] ` <5313bcc3.c5bf440a.7302.4a69SMTPIN_ADDED_MISSING@mx.google.com>
2014-03-09  7:18   ` [GIT PULL 2/4] omap prcm " Olof Johansson
2014-03-09  7:18     ` Olof Johansson
     [not found] ` <5313bcc4.66ff420a.7636.3ca9SMTPIN_ADDED_MISSING@mx.google.com>
2014-03-09  7:26   ` [GIT PULL 3/4] omap device tree " Olof Johansson
2014-03-09  7:26     ` Olof Johansson
     [not found] ` <5313bcc5.a8fc440a.467f.7ba2SMTPIN_ADDED_MISSING@mx.google.com>
2014-03-09  7:33   ` [GIT PULL 4/4] omap crossbar support " Olof Johansson
2014-03-09  7:33     ` Olof Johansson
2014-03-10 16:36     ` Tony Lindgren
2014-03-10 16:36       ` Tony Lindgren
2014-03-11 12:41       ` Sricharan R
2014-03-11 12:41         ` Sricharan R
2014-05-05 14:28         ` Sricharan R
2014-05-05 14:28           ` Sricharan R
2014-05-05 14:30           ` Sricharan R
2014-05-05 14:30             ` Sricharan R

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.