All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
@ 2013-10-07 16:25 ` Balaji T K
  0 siblings, 0 replies; 18+ messages in thread
From: Balaji T K @ 2013-10-07 16:25 UTC (permalink / raw)
  To: bcousson, devicetree; +Cc: linux-omap, tony, linux-arm-kernel, Balaji T K

Add mmc1 dt node to dra7-evm board.
Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
will be modelled as cascaded regulator.

Signed-off-by: Balaji T K <balajitk@ti.com>
---
Rebase to for_3.13/dts

 arch/arm/boot/dts/dra7-evm.dts |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
index fbbe406..65cd15a 100644
--- a/arch/arm/boot/dts/dra7-evm.dts
+++ b/arch/arm/boot/dts/dra7-evm.dts
@@ -250,3 +250,9 @@
 	pinctrl-names = "default";
 	pinctrl-0 = <&uart3_pins>;
 };
+
+&mmc1 {
+	status = "okay";
+	vmmc-supply = <&ldo1_reg>;
+	bus-width = <4>;
+};
-- 
1.7.5.4


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

* [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
@ 2013-10-07 16:25 ` Balaji T K
  0 siblings, 0 replies; 18+ messages in thread
From: Balaji T K @ 2013-10-07 16:25 UTC (permalink / raw)
  To: linux-arm-kernel

Add mmc1 dt node to dra7-evm board.
Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
will be modelled as cascaded regulator.

Signed-off-by: Balaji T K <balajitk@ti.com>
---
Rebase to for_3.13/dts

 arch/arm/boot/dts/dra7-evm.dts |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
index fbbe406..65cd15a 100644
--- a/arch/arm/boot/dts/dra7-evm.dts
+++ b/arch/arm/boot/dts/dra7-evm.dts
@@ -250,3 +250,9 @@
 	pinctrl-names = "default";
 	pinctrl-0 = <&uart3_pins>;
 };
+
+&mmc1 {
+	status = "okay";
+	vmmc-supply = <&ldo1_reg>;
+	bus-width = <4>;
+};
-- 
1.7.5.4

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

* [PATCH 2/2] ARM: dts: dra7-evm: Add mmc2 node for eMMC support
  2013-10-07 16:25 ` Balaji T K
@ 2013-10-07 16:25   ` Balaji T K
  -1 siblings, 0 replies; 18+ messages in thread
From: Balaji T K @ 2013-10-07 16:25 UTC (permalink / raw)
  To: bcousson, devicetree; +Cc: linux-omap, tony, linux-arm-kernel, Balaji T K

Add mmc2 dt node to dra7-evm board
and model eMMC vcc as fixed regulator.

Signed-off-by: Balaji T K <balajitk@ti.com>
---
Rebase to for_3.13/dts
and removed ti,non-removable

 arch/arm/boot/dts/dra7-evm.dts |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
index 65cd15a..3abf5f4 100644
--- a/arch/arm/boot/dts/dra7-evm.dts
+++ b/arch/arm/boot/dts/dra7-evm.dts
@@ -17,6 +17,13 @@
 		device_type = "memory";
 		reg = <0x80000000 0x60000000>; /* 1536 MB */
 	};
+
+	mmc2_3v3: fixedregulator-mmc2 {
+		compatible = "regulator-fixed";
+		regulator-name = "mmc2_3v3";
+		regulator-min-microvolt = <3300000>;
+		regulator-max-microvolt = <3300000>;
+	};
 };
 
 &dra7_pmx_core {
@@ -256,3 +263,9 @@
 	vmmc-supply = <&ldo1_reg>;
 	bus-width = <4>;
 };
+
+&mmc2 {
+	status = "okay";
+	vmmc-supply = <&mmc2_3v3>;
+	bus-width = <8>;
+};
-- 
1.7.5.4


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

* [PATCH 2/2] ARM: dts: dra7-evm: Add mmc2 node for eMMC support
@ 2013-10-07 16:25   ` Balaji T K
  0 siblings, 0 replies; 18+ messages in thread
From: Balaji T K @ 2013-10-07 16:25 UTC (permalink / raw)
  To: linux-arm-kernel

Add mmc2 dt node to dra7-evm board
and model eMMC vcc as fixed regulator.

Signed-off-by: Balaji T K <balajitk@ti.com>
---
Rebase to for_3.13/dts
and removed ti,non-removable

 arch/arm/boot/dts/dra7-evm.dts |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
index 65cd15a..3abf5f4 100644
--- a/arch/arm/boot/dts/dra7-evm.dts
+++ b/arch/arm/boot/dts/dra7-evm.dts
@@ -17,6 +17,13 @@
 		device_type = "memory";
 		reg = <0x80000000 0x60000000>; /* 1536 MB */
 	};
+
+	mmc2_3v3: fixedregulator-mmc2 {
+		compatible = "regulator-fixed";
+		regulator-name = "mmc2_3v3";
+		regulator-min-microvolt = <3300000>;
+		regulator-max-microvolt = <3300000>;
+	};
 };
 
 &dra7_pmx_core {
@@ -256,3 +263,9 @@
 	vmmc-supply = <&ldo1_reg>;
 	bus-width = <4>;
 };
+
+&mmc2 {
+	status = "okay";
+	vmmc-supply = <&mmc2_3v3>;
+	bus-width = <8>;
+};
-- 
1.7.5.4

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

* Re: [PATCH 2/2] ARM: dts: dra7-evm: Add mmc2 node for eMMC support
  2013-10-07 16:25   ` Balaji T K
@ 2013-10-09 13:12     ` Nishanth Menon
  -1 siblings, 0 replies; 18+ messages in thread
From: Nishanth Menon @ 2013-10-09 13:12 UTC (permalink / raw)
  To: Balaji T K, bcousson, devicetree; +Cc: linux-omap, tony, linux-arm-kernel

On 10/07/2013 11:25 AM, Balaji T K wrote:
> Add mmc2 dt node to dra7-evm board
> and model eMMC vcc as fixed regulator.
> 
> Signed-off-by: Balaji T K <balajitk@ti.com>
> ---
> Rebase to for_3.13/dts
> and removed ti,non-removable
> 
>  arch/arm/boot/dts/dra7-evm.dts |   13 +++++++++++++
>  1 files changed, 13 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
> index 65cd15a..3abf5f4 100644
> --- a/arch/arm/boot/dts/dra7-evm.dts
> +++ b/arch/arm/boot/dts/dra7-evm.dts
> @@ -17,6 +17,13 @@
>  		device_type = "memory";
>  		reg = <0x80000000 0x60000000>; /* 1536 MB */
>  	};
> +
> +	mmc2_3v3: fixedregulator-mmc2 {
> +		compatible = "regulator-fixed";
> +		regulator-name = "mmc2_3v3";
> +		regulator-min-microvolt = <3300000>;
> +		regulator-max-microvolt = <3300000>;
> +	};
>  };
>  
>  &dra7_pmx_core {
> @@ -256,3 +263,9 @@
>  	vmmc-supply = <&ldo1_reg>;
>  	bus-width = <4>;
>  };
> +
> +&mmc2 {
> +	status = "okay";
> +	vmmc-supply = <&mmc2_3v3>;
> +	bus-width = <8>;
> +};
> 
boot tested on DRA7-EVM
voltage rail is correct based on schematics(rev d1) too.
Reviewed-by: Nishanth Menon <nm@ti.com>
Tested-by: Nishanth Menon <nm@ti.com>

-- 
Regards,
Nishanth Menon

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

* [PATCH 2/2] ARM: dts: dra7-evm: Add mmc2 node for eMMC support
@ 2013-10-09 13:12     ` Nishanth Menon
  0 siblings, 0 replies; 18+ messages in thread
From: Nishanth Menon @ 2013-10-09 13:12 UTC (permalink / raw)
  To: linux-arm-kernel

On 10/07/2013 11:25 AM, Balaji T K wrote:
> Add mmc2 dt node to dra7-evm board
> and model eMMC vcc as fixed regulator.
> 
> Signed-off-by: Balaji T K <balajitk@ti.com>
> ---
> Rebase to for_3.13/dts
> and removed ti,non-removable
> 
>  arch/arm/boot/dts/dra7-evm.dts |   13 +++++++++++++
>  1 files changed, 13 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
> index 65cd15a..3abf5f4 100644
> --- a/arch/arm/boot/dts/dra7-evm.dts
> +++ b/arch/arm/boot/dts/dra7-evm.dts
> @@ -17,6 +17,13 @@
>  		device_type = "memory";
>  		reg = <0x80000000 0x60000000>; /* 1536 MB */
>  	};
> +
> +	mmc2_3v3: fixedregulator-mmc2 {
> +		compatible = "regulator-fixed";
> +		regulator-name = "mmc2_3v3";
> +		regulator-min-microvolt = <3300000>;
> +		regulator-max-microvolt = <3300000>;
> +	};
>  };
>  
>  &dra7_pmx_core {
> @@ -256,3 +263,9 @@
>  	vmmc-supply = <&ldo1_reg>;
>  	bus-width = <4>;
>  };
> +
> +&mmc2 {
> +	status = "okay";
> +	vmmc-supply = <&mmc2_3v3>;
> +	bus-width = <8>;
> +};
> 
boot tested on DRA7-EVM
voltage rail is correct based on schematics(rev d1) too.
Reviewed-by: Nishanth Menon <nm@ti.com>
Tested-by: Nishanth Menon <nm@ti.com>

-- 
Regards,
Nishanth Menon

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

* Re: [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
  2013-10-07 16:25 ` Balaji T K
@ 2013-10-09 13:14   ` Nishanth Menon
  -1 siblings, 0 replies; 18+ messages in thread
From: Nishanth Menon @ 2013-10-09 13:14 UTC (permalink / raw)
  To: Balaji T K, bcousson, devicetree; +Cc: linux-omap, tony, linux-arm-kernel

On 10/07/2013 11:25 AM, Balaji T K wrote:
> Add mmc1 dt node to dra7-evm board.
> Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
> on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
> will be modelled as cascaded regulator.
> 
> Signed-off-by: Balaji T K <balajitk@ti.com>
> ---
> Rebase to for_3.13/dts
> 
>  arch/arm/boot/dts/dra7-evm.dts |    6 ++++++
>  1 files changed, 6 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
> index fbbe406..65cd15a 100644
> --- a/arch/arm/boot/dts/dra7-evm.dts
> +++ b/arch/arm/boot/dts/dra7-evm.dts
> @@ -250,3 +250,9 @@
>  	pinctrl-names = "default";
>  	pinctrl-0 = <&uart3_pins>;
>  };
> +
> +&mmc1 {
> +	status = "okay";
> +	vmmc-supply = <&ldo1_reg>;
> +	bus-width = <4>;
> +};
> 
boot tested on DRA7-EVM
voltage rail is correct based on schematics(rev d1) too
(LDO1->MMC1_3V3->SDcard).

Reviewed-by: Nishanth Menon <nm@ti.com>
Tested-by: Nishanth Menon <nm@ti.com>

-- 
Regards,
Nishanth Menon

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

* [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
@ 2013-10-09 13:14   ` Nishanth Menon
  0 siblings, 0 replies; 18+ messages in thread
From: Nishanth Menon @ 2013-10-09 13:14 UTC (permalink / raw)
  To: linux-arm-kernel

On 10/07/2013 11:25 AM, Balaji T K wrote:
> Add mmc1 dt node to dra7-evm board.
> Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
> on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
> will be modelled as cascaded regulator.
> 
> Signed-off-by: Balaji T K <balajitk@ti.com>
> ---
> Rebase to for_3.13/dts
> 
>  arch/arm/boot/dts/dra7-evm.dts |    6 ++++++
>  1 files changed, 6 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/dra7-evm.dts b/arch/arm/boot/dts/dra7-evm.dts
> index fbbe406..65cd15a 100644
> --- a/arch/arm/boot/dts/dra7-evm.dts
> +++ b/arch/arm/boot/dts/dra7-evm.dts
> @@ -250,3 +250,9 @@
>  	pinctrl-names = "default";
>  	pinctrl-0 = <&uart3_pins>;
>  };
> +
> +&mmc1 {
> +	status = "okay";
> +	vmmc-supply = <&ldo1_reg>;
> +	bus-width = <4>;
> +};
> 
boot tested on DRA7-EVM
voltage rail is correct based on schematics(rev d1) too
(LDO1->MMC1_3V3->SDcard).

Reviewed-by: Nishanth Menon <nm@ti.com>
Tested-by: Nishanth Menon <nm@ti.com>

-- 
Regards,
Nishanth Menon

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

* Re: [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
  2013-10-07 16:25 ` Balaji T K
@ 2013-10-09 18:51     ` Sekhar Nori
  -1 siblings, 0 replies; 18+ messages in thread
From: Sekhar Nori @ 2013-10-09 18:51 UTC (permalink / raw)
  To: Balaji T K
  Cc: bcousson-rdvid1DuHRBWk0Htik3J/w,
	devicetree-u79uwXL29TY76Z2rM5mHXA, tony-4v6yS6AI5VpBDgjK7y7TUQ,
	linux-omap-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Monday 07 October 2013 09:55 PM, Balaji T K wrote:
> Add mmc1 dt node to dra7-evm board.
> Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
> on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
> will be modelled as cascaded regulator.
> 
> Signed-off-by: Balaji T K <balajitk-l0cyMroinI0@public.gmane.org>

Acked-by: Sekhar Nori <nsekhar-l0cyMroinI0@public.gmane.org>

Thanks,
Sekhar
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
@ 2013-10-09 18:51     ` Sekhar Nori
  0 siblings, 0 replies; 18+ messages in thread
From: Sekhar Nori @ 2013-10-09 18:51 UTC (permalink / raw)
  To: linux-arm-kernel

On Monday 07 October 2013 09:55 PM, Balaji T K wrote:
> Add mmc1 dt node to dra7-evm board.
> Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
> on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
> will be modelled as cascaded regulator.
> 
> Signed-off-by: Balaji T K <balajitk@ti.com>

Acked-by: Sekhar Nori <nsekhar@ti.com>

Thanks,
Sekhar

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

* Re: [PATCH 2/2] ARM: dts: dra7-evm: Add mmc2 node for eMMC support
  2013-10-07 16:25   ` Balaji T K
@ 2013-10-09 18:53     ` Sekhar Nori
  -1 siblings, 0 replies; 18+ messages in thread
From: Sekhar Nori @ 2013-10-09 18:53 UTC (permalink / raw)
  To: Balaji T K; +Cc: bcousson, devicetree, linux-omap, tony, linux-arm-kernel

On Monday 07 October 2013 09:55 PM, Balaji T K wrote:
> Add mmc2 dt node to dra7-evm board
> and model eMMC vcc as fixed regulator.
> 
> Signed-off-by: Balaji T K <balajitk@ti.com>

Acked-by: Sekhar Nori <nsekhar@ti.com>

Thanks,
Sekhar


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

* [PATCH 2/2] ARM: dts: dra7-evm: Add mmc2 node for eMMC support
@ 2013-10-09 18:53     ` Sekhar Nori
  0 siblings, 0 replies; 18+ messages in thread
From: Sekhar Nori @ 2013-10-09 18:53 UTC (permalink / raw)
  To: linux-arm-kernel

On Monday 07 October 2013 09:55 PM, Balaji T K wrote:
> Add mmc2 dt node to dra7-evm board
> and model eMMC vcc as fixed regulator.
> 
> Signed-off-by: Balaji T K <balajitk@ti.com>

Acked-by: Sekhar Nori <nsekhar@ti.com>

Thanks,
Sekhar

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

* Re: [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
  2013-10-09 18:51     ` Sekhar Nori
@ 2013-10-11 16:44       ` Balaji T K
  -1 siblings, 0 replies; 18+ messages in thread
From: Balaji T K @ 2013-10-11 16:44 UTC (permalink / raw)
  To: Sekhar Nori; +Cc: bcousson, devicetree, tony, linux-omap, linux-arm-kernel

On Thursday 10 October 2013 12:21 AM, Sekhar Nori wrote:
> On Monday 07 October 2013 09:55 PM, Balaji T K wrote:
>> Add mmc1 dt node to dra7-evm board.
>> Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
>> on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
>> will be modelled as cascaded regulator.
>>
>> Signed-off-by: Balaji T K <balajitk@ti.com>
>
> Acked-by: Sekhar Nori <nsekhar@ti.com>
>
Hi Benoit,

Can you let me know if you have any comments on this patch series?

Thanks and Regards
Balaji T K

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

* [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
@ 2013-10-11 16:44       ` Balaji T K
  0 siblings, 0 replies; 18+ messages in thread
From: Balaji T K @ 2013-10-11 16:44 UTC (permalink / raw)
  To: linux-arm-kernel

On Thursday 10 October 2013 12:21 AM, Sekhar Nori wrote:
> On Monday 07 October 2013 09:55 PM, Balaji T K wrote:
>> Add mmc1 dt node to dra7-evm board.
>> Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
>> on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
>> will be modelled as cascaded regulator.
>>
>> Signed-off-by: Balaji T K <balajitk@ti.com>
>
> Acked-by: Sekhar Nori <nsekhar@ti.com>
>
Hi Benoit,

Can you let me know if you have any comments on this patch series?

Thanks and Regards
Balaji T K

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

* Re: [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
  2013-10-11 16:44       ` Balaji T K
@ 2013-10-11 19:16         ` Benoit Cousson
  -1 siblings, 0 replies; 18+ messages in thread
From: Benoit Cousson @ 2013-10-11 19:16 UTC (permalink / raw)
  To: Balaji T K, Sekhar Nori; +Cc: devicetree, tony, linux-omap, linux-arm-kernel

Hi Balaji,

On 11/10/2013 18:44, Balaji T K wrote:
> On Thursday 10 October 2013 12:21 AM, Sekhar Nori wrote:
>> On Monday 07 October 2013 09:55 PM, Balaji T K wrote:
>>> Add mmc1 dt node to dra7-evm board.
>>> Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
>>> on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
>>> will be modelled as cascaded regulator.
>>>
>>> Signed-off-by: Balaji T K <balajitk@ti.com>
>>
>> Acked-by: Sekhar Nori <nsekhar@ti.com>
>>
> Hi Benoit,
>
> Can you let me know if you have any comments on this patch series?

The series looks good, and I've just applied it for 3.13.

Thanks,
Benoit


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

* [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
@ 2013-10-11 19:16         ` Benoit Cousson
  0 siblings, 0 replies; 18+ messages in thread
From: Benoit Cousson @ 2013-10-11 19:16 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Balaji,

On 11/10/2013 18:44, Balaji T K wrote:
> On Thursday 10 October 2013 12:21 AM, Sekhar Nori wrote:
>> On Monday 07 October 2013 09:55 PM, Balaji T K wrote:
>>> Add mmc1 dt node to dra7-evm board.
>>> Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
>>> on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
>>> will be modelled as cascaded regulator.
>>>
>>> Signed-off-by: Balaji T K <balajitk@ti.com>
>>
>> Acked-by: Sekhar Nori <nsekhar@ti.com>
>>
> Hi Benoit,
>
> Can you let me know if you have any comments on this patch series?

The series looks good, and I've just applied it for 3.13.

Thanks,
Benoit

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

* Re: [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
  2013-10-11 19:16         ` Benoit Cousson
@ 2013-10-12 15:37           ` Balaji T K
  -1 siblings, 0 replies; 18+ messages in thread
From: Balaji T K @ 2013-10-12 15:37 UTC (permalink / raw)
  To: Benoit Cousson
  Cc: Sekhar Nori, devicetree, tony, linux-omap, linux-arm-kernel

On Saturday 12 October 2013 12:46 AM, Benoit Cousson wrote:
> Hi Balaji,
>
> On 11/10/2013 18:44, Balaji T K wrote:
>> On Thursday 10 October 2013 12:21 AM, Sekhar Nori wrote:
>>> On Monday 07 October 2013 09:55 PM, Balaji T K wrote:
>>>> Add mmc1 dt node to dra7-evm board.
>>>> Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
>>>> on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
>>>> will be modelled as cascaded regulator.
>>>>
>>>> Signed-off-by: Balaji T K <balajitk@ti.com>
>>>
>>> Acked-by: Sekhar Nori <nsekhar@ti.com>
>>>
>> Hi Benoit,
>>
>> Can you let me know if you have any comments on this patch series?
>
> The series looks good, and I've just applied it for 3.13.
>
Thanks Benoit

- Balaji T K

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

* [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support
@ 2013-10-12 15:37           ` Balaji T K
  0 siblings, 0 replies; 18+ messages in thread
From: Balaji T K @ 2013-10-12 15:37 UTC (permalink / raw)
  To: linux-arm-kernel

On Saturday 12 October 2013 12:46 AM, Benoit Cousson wrote:
> Hi Balaji,
>
> On 11/10/2013 18:44, Balaji T K wrote:
>> On Thursday 10 October 2013 12:21 AM, Sekhar Nori wrote:
>>> On Monday 07 October 2013 09:55 PM, Balaji T K wrote:
>>>> Add mmc1 dt node to dra7-evm board.
>>>> Input for ldo1 regulator is controlled by gpio 5 of pcf8575 chip (0x21)
>>>> on i2c1 bus. When dt support for gpio-pcf857x is available, input supply
>>>> will be modelled as cascaded regulator.
>>>>
>>>> Signed-off-by: Balaji T K <balajitk@ti.com>
>>>
>>> Acked-by: Sekhar Nori <nsekhar@ti.com>
>>>
>> Hi Benoit,
>>
>> Can you let me know if you have any comments on this patch series?
>
> The series looks good, and I've just applied it for 3.13.
>
Thanks Benoit

- Balaji T K

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

end of thread, other threads:[~2013-10-12 15:37 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-07 16:25 [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support Balaji T K
2013-10-07 16:25 ` Balaji T K
2013-10-07 16:25 ` [PATCH 2/2] ARM: dts: dra7-evm: Add mmc2 node for eMMC support Balaji T K
2013-10-07 16:25   ` Balaji T K
2013-10-09 13:12   ` Nishanth Menon
2013-10-09 13:12     ` Nishanth Menon
2013-10-09 18:53   ` Sekhar Nori
2013-10-09 18:53     ` Sekhar Nori
2013-10-09 13:14 ` [PATCH v2 1/2] ARM: dts: dra7-evm: Add mmc1 node for micro-sd support Nishanth Menon
2013-10-09 13:14   ` Nishanth Menon
     [not found] ` <1381163104-6318-1-git-send-email-balajitk-l0cyMroinI0@public.gmane.org>
2013-10-09 18:51   ` Sekhar Nori
2013-10-09 18:51     ` Sekhar Nori
2013-10-11 16:44     ` Balaji T K
2013-10-11 16:44       ` Balaji T K
2013-10-11 19:16       ` Benoit Cousson
2013-10-11 19:16         ` Benoit Cousson
2013-10-12 15:37         ` Balaji T K
2013-10-12 15:37           ` Balaji T K

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.