linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/2] ARM: dts: imx6q-sabrelite: Add bootargs field
@ 2012-04-01 15:12 Fabio Estevam
  2012-04-01 15:12 ` [PATCH 1/2] ARM: dts: imx6q-arm2: Fix the console port Fabio Estevam
  2012-04-01 15:37 ` [PATCH 2/2] ARM: dts: imx6q-sabrelite: Add bootargs field Dirk Behme
  0 siblings, 2 replies; 5+ messages in thread
From: Fabio Estevam @ 2012-04-01 15:12 UTC (permalink / raw)
  To: linux-arm-kernel

Add bootargs field.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 arch/arm/boot/dts/imx6q-sabrelite.dts |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/imx6q-sabrelite.dts b/arch/arm/boot/dts/imx6q-sabrelite.dts
index 4663a4e..73915dc 100644
--- a/arch/arm/boot/dts/imx6q-sabrelite.dts
+++ b/arch/arm/boot/dts/imx6q-sabrelite.dts
@@ -17,6 +17,10 @@
 	model = "Freescale i.MX6 Quad SABRE Lite Board";
 	compatible = "fsl,imx6q-sabrelite", "fsl,imx6q";
 
+	chosen {
+		bootargs = "console=ttymxc1,115200 root=/dev/mmcblk0p3 rootwait";
+	};
+
 	memory {
 		reg = <0x10000000 0x40000000>;
 	};
-- 
1.7.1

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

* [PATCH 1/2] ARM: dts: imx6q-arm2: Fix the console port
  2012-04-01 15:12 [PATCH 2/2] ARM: dts: imx6q-sabrelite: Add bootargs field Fabio Estevam
@ 2012-04-01 15:12 ` Fabio Estevam
  2012-04-01 15:25   ` Shawn Guo
  2012-04-01 15:37 ` [PATCH 2/2] ARM: dts: imx6q-sabrelite: Add bootargs field Dirk Behme
  1 sibling, 1 reply; 5+ messages in thread
From: Fabio Estevam @ 2012-04-01 15:12 UTC (permalink / raw)
  To: linux-arm-kernel

On the imx6q-arm2 board the console port is ttymxc3.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 arch/arm/boot/dts/imx6q-arm2.dts |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/boot/dts/imx6q-arm2.dts b/arch/arm/boot/dts/imx6q-arm2.dts
index ce1c823..8b90ea1 100644
--- a/arch/arm/boot/dts/imx6q-arm2.dts
+++ b/arch/arm/boot/dts/imx6q-arm2.dts
@@ -18,7 +18,7 @@
 	compatible = "fsl,imx6q-arm2", "fsl,imx6q";
 
 	chosen {
-		bootargs = "console=ttymxc0,115200 root=/dev/mmcblk3p3 rootwait";
+		bootargs = "console=ttymxc3,115200 root=/dev/mmcblk3p3 rootwait";
 	};
 
 	memory {
-- 
1.7.1

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

* [PATCH 1/2] ARM: dts: imx6q-arm2: Fix the console port
  2012-04-01 15:12 ` [PATCH 1/2] ARM: dts: imx6q-arm2: Fix the console port Fabio Estevam
@ 2012-04-01 15:25   ` Shawn Guo
  0 siblings, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2012-04-01 15:25 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Apr 01, 2012 at 12:12:18PM -0300, Fabio Estevam wrote:
> On the imx6q-arm2 board the console port is ttymxc3.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  arch/arm/boot/dts/imx6q-arm2.dts |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/arm/boot/dts/imx6q-arm2.dts b/arch/arm/boot/dts/imx6q-arm2.dts
> index ce1c823..8b90ea1 100644
> --- a/arch/arm/boot/dts/imx6q-arm2.dts
> +++ b/arch/arm/boot/dts/imx6q-arm2.dts
> @@ -18,7 +18,7 @@
>  	compatible = "fsl,imx6q-arm2", "fsl,imx6q";
>  
>  	chosen {
> -		bootargs = "console=ttymxc0,115200 root=/dev/mmcblk3p3 rootwait";
> +		bootargs = "console=ttymxc3,115200 root=/dev/mmcblk3p3 rootwait";

Rather than patching the line, I would suggest remove it completely.
I do not see a use case for this.

>  	};
>  
>  	memory {
> -- 
> 1.7.1
> 

-- 
Regards,
Shawn

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

* [PATCH 2/2] ARM: dts: imx6q-sabrelite: Add bootargs field
  2012-04-01 15:12 [PATCH 2/2] ARM: dts: imx6q-sabrelite: Add bootargs field Fabio Estevam
  2012-04-01 15:12 ` [PATCH 1/2] ARM: dts: imx6q-arm2: Fix the console port Fabio Estevam
@ 2012-04-01 15:37 ` Dirk Behme
  1 sibling, 0 replies; 5+ messages in thread
From: Dirk Behme @ 2012-04-01 15:37 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Fabio,

On 01.04.2012 17:12, Fabio Estevam wrote:
> Add bootargs field.
>
> Signed-off-by: Fabio Estevam<fabio.estevam@freescale.com>
> ---
>   arch/arm/boot/dts/imx6q-sabrelite.dts |    4 ++++
>   1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/boot/dts/imx6q-sabrelite.dts b/arch/arm/boot/dts/imx6q-sabrelite.dts
> index 4663a4e..73915dc 100644
> --- a/arch/arm/boot/dts/imx6q-sabrelite.dts
> +++ b/arch/arm/boot/dts/imx6q-sabrelite.dts
> @@ -17,6 +17,10 @@
>   	model = "Freescale i.MX6 Quad SABRE Lite Board";
>   	compatible = "fsl,imx6q-sabrelite", "fsl,imx6q";
>
> +	chosen {
> +		bootargs = "console=ttymxc1,115200 root=/dev/mmcblk0p3 rootwait";
> +	};
> +

Why do we need this? U-Boot adds this at runtime with the configured 
bootargs.

Best regards

Dirk

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

* [PATCH 2/2] ARM: dts: imx6q-sabrelite: Add bootargs field
@ 2012-04-01 16:51 Fabio Estevam
  0 siblings, 0 replies; 5+ messages in thread
From: Fabio Estevam @ 2012-04-01 16:51 UTC (permalink / raw)
  To: linux-arm-kernel

Add bootargs field.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 arch/arm/boot/dts/imx6q-sabrelite.dts |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/imx6q-sabrelite.dts b/arch/arm/boot/dts/imx6q-sabrelite.dts
index 4663a4e..73915dc 100644
--- a/arch/arm/boot/dts/imx6q-sabrelite.dts
+++ b/arch/arm/boot/dts/imx6q-sabrelite.dts
@@ -17,6 +17,10 @@
 	model = "Freescale i.MX6 Quad SABRE Lite Board";
 	compatible = "fsl,imx6q-sabrelite", "fsl,imx6q";
 
+	chosen {
+		bootargs = "console=ttymxc1,115200 root=/dev/mmcblk0p3 rootwait";
+	};
+
 	memory {
 		reg = <0x10000000 0x40000000>;
 	};
-- 
1.7.1

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

end of thread, other threads:[~2012-04-01 16:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-01 15:12 [PATCH 2/2] ARM: dts: imx6q-sabrelite: Add bootargs field Fabio Estevam
2012-04-01 15:12 ` [PATCH 1/2] ARM: dts: imx6q-arm2: Fix the console port Fabio Estevam
2012-04-01 15:25   ` Shawn Guo
2012-04-01 15:37 ` [PATCH 2/2] ARM: dts: imx6q-sabrelite: Add bootargs field Dirk Behme
  -- strict thread matches above, loose matches on Subject: below --
2012-04-01 16:51 Fabio Estevam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).