All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] vf610-twr device updates
@ 2014-08-05 17:33 ` Bill Pringlemeir
  0 siblings, 0 replies; 12+ messages in thread
From: Bill Pringlemeir @ 2014-08-05 17:33 UTC (permalink / raw)
  To: linux-arm-kernel, shawn.guo; +Cc: devicetree

 arch/arm/boot/dts/vf610-twr.dts | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

 [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions.
 [PATCH 2/2] ARM: dts: vf610-twr: Add ttyLP2 device.

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

* [PATCH 0/2] vf610-twr device updates
@ 2014-08-05 17:33 ` Bill Pringlemeir
  0 siblings, 0 replies; 12+ messages in thread
From: Bill Pringlemeir @ 2014-08-05 17:33 UTC (permalink / raw)
  To: linux-arm-kernel

 arch/arm/boot/dts/vf610-twr.dts | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

 [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions.
 [PATCH 2/2] ARM: dts: vf610-twr: Add ttyLP2 device.

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

* [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions.
  2014-08-05 17:33 ` Bill Pringlemeir
@ 2014-08-05 17:34   ` Bill Pringlemeir
  -1 siblings, 0 replies; 12+ messages in thread
From: Bill Pringlemeir @ 2014-08-05 17:34 UTC (permalink / raw)
  To: linux-arm-kernel, shawn.guo; +Cc: devicetree, Bill Pringlemeir

Previous version had an extra 'fsl' which made the pins not match
any entry.  The console message,

 vf610-pinctrl 40048000.iomuxc: no fsl,pins property in node \
    /soc/aips-bus@40000000/iomuxc@40048000/vf610-twr/esdhc1grp

is displayed without the fix.  The prior version would generally
work as u-boot sets the pins properly for sdhc.  This change allows
Linux sdhc use even if u-boot is built without sdhc support.

Signed-off-by: Bill Pringlemeir <bpringlemeir@nbsps.com>
---
 arch/arm/boot/dts/vf610-twr.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/vf610-twr.dts b/arch/arm/boot/dts/vf610-twr.dts
index 11d7334..b8a5e8c 100644
--- a/arch/arm/boot/dts/vf610-twr.dts
+++ b/arch/arm/boot/dts/vf610-twr.dts
@@ -168,7 +168,7 @@
 		};
 
 		pinctrl_esdhc1: esdhc1grp {
-			fsl,fsl,pins = <
+			fsl,pins = <
 				VF610_PAD_PTA24__ESDHC1_CLK	0x31ef
 				VF610_PAD_PTA25__ESDHC1_CMD	0x31ef
 				VF610_PAD_PTA26__ESDHC1_DAT0	0x31ef
-- 
1.8.0.2

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

* [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions.
@ 2014-08-05 17:34   ` Bill Pringlemeir
  0 siblings, 0 replies; 12+ messages in thread
From: Bill Pringlemeir @ 2014-08-05 17:34 UTC (permalink / raw)
  To: linux-arm-kernel

Previous version had an extra 'fsl' which made the pins not match
any entry.  The console message,

 vf610-pinctrl 40048000.iomuxc: no fsl,pins property in node \
    /soc/aips-bus at 40000000/iomuxc at 40048000/vf610-twr/esdhc1grp

is displayed without the fix.  The prior version would generally
work as u-boot sets the pins properly for sdhc.  This change allows
Linux sdhc use even if u-boot is built without sdhc support.

Signed-off-by: Bill Pringlemeir <bpringlemeir@nbsps.com>
---
 arch/arm/boot/dts/vf610-twr.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/vf610-twr.dts b/arch/arm/boot/dts/vf610-twr.dts
index 11d7334..b8a5e8c 100644
--- a/arch/arm/boot/dts/vf610-twr.dts
+++ b/arch/arm/boot/dts/vf610-twr.dts
@@ -168,7 +168,7 @@
 		};
 
 		pinctrl_esdhc1: esdhc1grp {
-			fsl,fsl,pins = <
+			fsl,pins = <
 				VF610_PAD_PTA24__ESDHC1_CLK	0x31ef
 				VF610_PAD_PTA25__ESDHC1_CMD	0x31ef
 				VF610_PAD_PTA26__ESDHC1_DAT0	0x31ef
-- 
1.8.0.2

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

* [PATCH 2/2] ARM: dts: vf610-twr: Add ttyLP2 device.
  2014-08-05 17:33 ` Bill Pringlemeir
@ 2014-08-05 17:34   ` Bill Pringlemeir
  -1 siblings, 0 replies; 12+ messages in thread
From: Bill Pringlemeir @ 2014-08-05 17:34 UTC (permalink / raw)
  To: linux-arm-kernel, shawn.guo; +Cc: devicetree, Bill Pringlemeir

The ttyLP1 is already the default console/serial port.  The
tower board will route ttyLP2 to the same connectors depending
on the JP23/24 settings.

See:
 http://lists.infradead.org/pipermail/linux-arm-kernel/2014-July/276457.html
 http://lists.infradead.org/pipermail/linux-arm-kernel/2014-July/275576.html

Signed-off-by: Bill Pringlemeir <bpringlemeir@nbsps.com>
---
 arch/arm/boot/dts/vf610-twr.dts | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/vf610-twr.dts b/arch/arm/boot/dts/vf610-twr.dts
index b8a5e8c..58e988e 100644
--- a/arch/arm/boot/dts/vf610-twr.dts
+++ b/arch/arm/boot/dts/vf610-twr.dts
@@ -221,8 +221,6 @@
 				VF610_PAD_PTB1__FTM0_CH1		0x1582
 				VF610_PAD_PTB2__FTM0_CH2		0x1582
 				VF610_PAD_PTB3__FTM0_CH3		0x1582
-				VF610_PAD_PTB6__FTM0_CH6		0x1582
-				VF610_PAD_PTB7__FTM0_CH7		0x1582
 			>;
 		};
 
@@ -244,6 +242,13 @@
 				VF610_PAD_PTB5__UART1_RX		0x21a1
 			>;
 		};
+
+		pinctrl_uart2: uart2grp {
+			fsl,pins = <
+				VF610_PAD_PTB6__UART2_TX		0x21a2
+				VF610_PAD_PTB7__UART2_RX		0x21a1
+			>;
+		};
 	};
 };
 
@@ -265,3 +270,9 @@
 	pinctrl-0 = <&pinctrl_uart1>;
 	status = "okay";
 };
+
+&uart2 {
+	pinctrl-names = "default";
+	pinctrl-0 = <&pinctrl_uart2>;
+	status = "okay";
+};
-- 
1.8.0.2

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

* [PATCH 2/2] ARM: dts: vf610-twr: Add ttyLP2 device.
@ 2014-08-05 17:34   ` Bill Pringlemeir
  0 siblings, 0 replies; 12+ messages in thread
From: Bill Pringlemeir @ 2014-08-05 17:34 UTC (permalink / raw)
  To: linux-arm-kernel

The ttyLP1 is already the default console/serial port.  The
tower board will route ttyLP2 to the same connectors depending
on the JP23/24 settings.

See:
 http://lists.infradead.org/pipermail/linux-arm-kernel/2014-July/276457.html
 http://lists.infradead.org/pipermail/linux-arm-kernel/2014-July/275576.html

Signed-off-by: Bill Pringlemeir <bpringlemeir@nbsps.com>
---
 arch/arm/boot/dts/vf610-twr.dts | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/vf610-twr.dts b/arch/arm/boot/dts/vf610-twr.dts
index b8a5e8c..58e988e 100644
--- a/arch/arm/boot/dts/vf610-twr.dts
+++ b/arch/arm/boot/dts/vf610-twr.dts
@@ -221,8 +221,6 @@
 				VF610_PAD_PTB1__FTM0_CH1		0x1582
 				VF610_PAD_PTB2__FTM0_CH2		0x1582
 				VF610_PAD_PTB3__FTM0_CH3		0x1582
-				VF610_PAD_PTB6__FTM0_CH6		0x1582
-				VF610_PAD_PTB7__FTM0_CH7		0x1582
 			>;
 		};
 
@@ -244,6 +242,13 @@
 				VF610_PAD_PTB5__UART1_RX		0x21a1
 			>;
 		};
+
+		pinctrl_uart2: uart2grp {
+			fsl,pins = <
+				VF610_PAD_PTB6__UART2_TX		0x21a2
+				VF610_PAD_PTB7__UART2_RX		0x21a1
+			>;
+		};
 	};
 };
 
@@ -265,3 +270,9 @@
 	pinctrl-0 = <&pinctrl_uart1>;
 	status = "okay";
 };
+
+&uart2 {
+	pinctrl-names = "default";
+	pinctrl-0 = <&pinctrl_uart2>;
+	status = "okay";
+};
-- 
1.8.0.2

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

* Re: [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions.
  2014-08-05 17:34   ` Bill Pringlemeir
@ 2014-08-05 17:39     ` Bill Pringlemeir
  -1 siblings, 0 replies; 12+ messages in thread
From: Bill Pringlemeir @ 2014-08-05 17:39 UTC (permalink / raw)
  To: shawn.guo; +Cc: devicetree, linux-arm-kernel

On  5 Aug 2014, bpringlemeir@nbsps.com wrote:

> Previous version had an extra 'fsl' which made the pins not match
> any entry.  The console message,

All patches are based off 'for-next' (5424d6fd) in,

 git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git

Thanks,
Bill Pringlemeir.

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

* [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions.
@ 2014-08-05 17:39     ` Bill Pringlemeir
  0 siblings, 0 replies; 12+ messages in thread
From: Bill Pringlemeir @ 2014-08-05 17:39 UTC (permalink / raw)
  To: linux-arm-kernel

On  5 Aug 2014, bpringlemeir at nbsps.com wrote:

> Previous version had an extra 'fsl' which made the pins not match
> any entry.  The console message,

All patches are based off 'for-next' (5424d6fd) in,

 git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git

Thanks,
Bill Pringlemeir.

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

* Re: [PATCH 0/2] vf610-twr device updates
  2014-08-05 17:33 ` Bill Pringlemeir
@ 2014-08-06  7:36     ` Stefan Agner
  -1 siblings, 0 replies; 12+ messages in thread
From: Stefan Agner @ 2014-08-06  7:36 UTC (permalink / raw)
  To: Bill Pringlemeir
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	shawn.guo-KZfg59tc24xl57MIdRCFDg,
	devicetree-u79uwXL29TY76Z2rM5mHXA

Am 2014-08-05 19:33, schrieb Bill Pringlemeir:
> arch/arm/boot/dts/vf610-twr.dts | 17 ++++++++++++++---
>  1 file changed, 14 insertions(+), 3 deletions(-)
> 
>  [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions.
>  [PATCH 2/2] ARM: dts: vf610-twr: Add ttyLP2 device.
> 
> 

Both patches,
Acked-by: Stefan Agner <stefan-XLVq0VzYD2Y@public.gmane.org>

--
Stefan
--
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] 12+ messages in thread

* [PATCH 0/2] vf610-twr device updates
@ 2014-08-06  7:36     ` Stefan Agner
  0 siblings, 0 replies; 12+ messages in thread
From: Stefan Agner @ 2014-08-06  7:36 UTC (permalink / raw)
  To: linux-arm-kernel

Am 2014-08-05 19:33, schrieb Bill Pringlemeir:
> arch/arm/boot/dts/vf610-twr.dts | 17 ++++++++++++++---
>  1 file changed, 14 insertions(+), 3 deletions(-)
> 
>  [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions.
>  [PATCH 2/2] ARM: dts: vf610-twr: Add ttyLP2 device.
> 
> 

Both patches,
Acked-by: Stefan Agner <stefan@agner.ch>

--
Stefan

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

* Re: [PATCH 0/2] vf610-twr device updates
  2014-08-05 17:33 ` Bill Pringlemeir
@ 2014-08-06  9:11   ` Shawn Guo
  -1 siblings, 0 replies; 12+ messages in thread
From: Shawn Guo @ 2014-08-06  9:11 UTC (permalink / raw)
  To: Bill Pringlemeir; +Cc: devicetree, linux-arm-kernel

On Tue, Aug 05, 2014 at 01:33:59PM -0400, Bill Pringlemeir wrote:
>  arch/arm/boot/dts/vf610-twr.dts | 17 ++++++++++++++---
>  1 file changed, 14 insertions(+), 3 deletions(-)
> 
>  [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions.
>  [PATCH 2/2] ARM: dts: vf610-twr: Add ttyLP2 device.

Applied both, thanks.

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

* [PATCH 0/2] vf610-twr device updates
@ 2014-08-06  9:11   ` Shawn Guo
  0 siblings, 0 replies; 12+ messages in thread
From: Shawn Guo @ 2014-08-06  9:11 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Aug 05, 2014 at 01:33:59PM -0400, Bill Pringlemeir wrote:
>  arch/arm/boot/dts/vf610-twr.dts | 17 ++++++++++++++---
>  1 file changed, 14 insertions(+), 3 deletions(-)
> 
>  [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions.
>  [PATCH 2/2] ARM: dts: vf610-twr: Add ttyLP2 device.

Applied both, thanks.

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

end of thread, other threads:[~2014-08-06  9:11 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-05 17:33 [PATCH 0/2] vf610-twr device updates Bill Pringlemeir
2014-08-05 17:33 ` Bill Pringlemeir
2014-08-05 17:34 ` [PATCH 1/2] ARM: dts: vf610-twr: Fix pinctrl_esdhc1 pin definitions Bill Pringlemeir
2014-08-05 17:34   ` Bill Pringlemeir
2014-08-05 17:39   ` Bill Pringlemeir
2014-08-05 17:39     ` Bill Pringlemeir
2014-08-05 17:34 ` [PATCH 2/2] ARM: dts: vf610-twr: Add ttyLP2 device Bill Pringlemeir
2014-08-05 17:34   ` Bill Pringlemeir
     [not found] ` <1407260041-19234-1-git-send-email-bpringlemeir-ygJ1pmMJ17cAvxtiuMwx3w@public.gmane.org>
2014-08-06  7:36   ` [PATCH 0/2] vf610-twr device updates Stefan Agner
2014-08-06  7:36     ` Stefan Agner
2014-08-06  9:11 ` Shawn Guo
2014-08-06  9:11   ` Shawn Guo

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.