Re: [U-Boot] [PATCH v3 07/16] sandbox: dts: Add a serial console node

2014-08-01 Thread Stephen Warren
On 08/01/2014 03:40 PM, Simon Glass wrote: Hi Stephen, On 1 August 2014 00:09, Stephen Warren wrote: On 07/31/2014 04:13 PM, Simon Glass wrote: Hi Stephen, On 31 July 2014 21:20, Stephen Warren wrote: On 07/30/2014 03:49 AM, Simon Glass wrote: If the sandbox device tree is provided to

Re: [U-Boot] [PATCH v3 07/16] sandbox: dts: Add a serial console node

2014-08-01 Thread Simon Glass
Hi Stephen, On 1 August 2014 00:09, Stephen Warren wrote: > On 07/31/2014 04:13 PM, Simon Glass wrote: >> >> Hi Stephen, >> >> On 31 July 2014 21:20, Stephen Warren wrote: >>> >>> On 07/30/2014 03:49 AM, Simon Glass wrote: If the sandbox device tree is provided to U-Boot (with the

Re: [U-Boot] [PATCH v3 07/16] sandbox: dts: Add a serial console node

2014-08-01 Thread Simon Glass
Hi, On 1 August 2014 17:53, Tom Rini wrote: > On Fri, Aug 01, 2014 at 10:46:31AM -0500, Jon Loeliger wrote: >> + uart0: serial { >> + compatible = "sandbox,serial"; >> + u-boot,dm-pre-reloc; >> >>> >> >>> Shouldn't that be handled by the driver. It

Re: [U-Boot] [PATCH v3 07/16] sandbox: dts: Add a serial console node

2014-08-01 Thread Tom Rini
On Fri, Aug 01, 2014 at 10:46:31AM -0500, Jon Loeliger wrote: > + uart0: serial { > + compatible = "sandbox,serial"; > + u-boot,dm-pre-reloc; > >>> > >>> Shouldn't that be handled by the driver. It's certainly something that's > >>> only relevant to

Re: [U-Boot] [PATCH v3 07/16] sandbox: dts: Add a serial console node

2014-08-01 Thread Jon Loeliger
+ uart0: serial { + compatible = "sandbox,serial"; + u-boot,dm-pre-reloc; >>> >>> Shouldn't that be handled by the driver. It's certainly something that's >>> only relevant to the internals of U-Boot, and hence inappropriate to put >>> into DT. >> >>

Re: [U-Boot] [PATCH v3 07/16] sandbox: dts: Add a serial console node

2014-07-31 Thread Stephen Warren
On 07/31/2014 04:13 PM, Simon Glass wrote: Hi Stephen, On 31 July 2014 21:20, Stephen Warren wrote: On 07/30/2014 03:49 AM, Simon Glass wrote: If the sandbox device tree is provided to U-Boot (with the -d flag) then it will use the device tree version in preference to the built-in device. Th

Re: [U-Boot] [PATCH v3 07/16] sandbox: dts: Add a serial console node

2014-07-31 Thread Simon Glass
Hi Stephen, On 31 July 2014 21:20, Stephen Warren wrote: > On 07/30/2014 03:49 AM, Simon Glass wrote: >> >> If the sandbox device tree is provided to U-Boot (with the -d flag) then >> it >> will use the device tree version in preference to the built-in device. The >> only difference is the colour

Re: [U-Boot] [PATCH v3 07/16] sandbox: dts: Add a serial console node

2014-07-31 Thread Stephen Warren
On 07/30/2014 03:49 AM, Simon Glass wrote: If the sandbox device tree is provided to U-Boot (with the -d flag) then it will use the device tree version in preference to the built-in device. The only difference is the colour. diff --git a/arch/sandbox/dts/sandbox.dts b/arch/sandbox/dts/sandbox.

[U-Boot] [PATCH v3 07/16] sandbox: dts: Add a serial console node

2014-07-30 Thread Simon Glass
If the sandbox device tree is provided to U-Boot (with the -d flag) then it will use the device tree version in preference to the built-in device. The only difference is the colour. Signed-off-by: Simon Glass --- Changes in v3: - Change pre-reloc fdt property to 'u-boot,dm-pre-reloc' Changes in