Re: [PATCH v2] console: Don't prefer first registered if DT specifies stdout-path

2016-10-18 Thread Paul Burton
On Monday, 17 October 2016 19:39:57 BST Andreas Schwab wrote: > On Okt 17 2016, Paul Burton wrote: > > Could you share the device tree from your system? > > This is the contents of chosen/linux,stdout-path on the systems I have: > > chosen/linux,stdout-path > "/pci@f000/ATY,

Re: [PATCH v2] console: Don't prefer first registered if DT specifies stdout-path

2016-10-17 Thread Andreas Schwab
On Okt 17 2016, Paul Burton wrote: > Could you share the device tree from your system? This is the contents of chosen/linux,stdout-path on the systems I have: chosen/linux,stdout-path "/pci@f000/ATY,SnowyParent@10/ATY,Snowy_A@0" chosen/linux,stdout-path

Re: [PATCH v2] console: Don't prefer first registered if DT specifies stdout-path

2016-10-17 Thread Paul Burton
On Sunday, 16 October 2016 20:07:18 BST Andreas Schwab wrote: > On Aug 09 2016, Paul Burton wrote: > > Fix this by not automatically preferring the first registered console if > > one is specified by the device tree. This allows consoles to be > > registered but not enabled, and once the driver fo

Re: [PATCH v2] console: Don't prefer first registered if DT specifies stdout-path

2016-10-16 Thread Andreas Schwab
On Aug 09 2016, Paul Burton wrote: > Fix this by not automatically preferring the first registered console if > one is specified by the device tree. This allows consoles to be > registered but not enabled, and once the driver for the console selected > by stdout-path calls of_console_check() the

Re: [PATCH v2] console: Don't prefer first registered if DT specifies stdout-path

2016-08-09 Thread Andrew Morton
On Tue, 9 Aug 2016 16:19:37 +0100 Paul Burton wrote: > If a device tree specifies a preferred device for kernel console output > via the stdout-path or linux,stdout-path chosen node properties or the > stdout alias then the kernel ought to honor it & output the kernel > console to that device. As