* [PATCH 1/2] ARM: dts: Enable earlycon stdout path for LogicPD torpedo @ 2017-05-22 16:13 Tony Lindgren [not found] ` <20170522161346.10591-1-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Tony Lindgren @ 2017-05-22 16:13 UTC (permalink / raw) To: linux-omap-u79uwXL29TY76Z2rM5mHXA Cc: Benoît Cousson, devicetree-u79uwXL29TY76Z2rM5mHXA, Adam Ford As long as the kernel cmdline has "earlycon" in it, this allows seeing debug messages earlier and does not require DEBUG_LL to be enabled. Cc: Adam Ford <aford173-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Signed-off-by: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> --- arch/arm/boot/dts/logicpd-torpedo-som.dtsi | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm/boot/dts/logicpd-torpedo-som.dtsi b/arch/arm/boot/dts/logicpd-torpedo-som.dtsi --- a/arch/arm/boot/dts/logicpd-torpedo-som.dtsi +++ b/arch/arm/boot/dts/logicpd-torpedo-som.dtsi @@ -7,6 +7,10 @@ #include <dt-bindings/input/input.h> / { + chosen { + stdout-path = &uart1; + }; + cpus { cpu@0 { cpu0-supply = <&vcc>; -- 2.13.0 -- 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] 3+ messages in thread
[parent not found: <20170522161346.10591-1-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>]
* [PATCH 2/2] ARM: dts: Enable earlycon stdout path for duovero [not found] ` <20170522161346.10591-1-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> @ 2017-05-22 16:13 ` Tony Lindgren 2017-05-22 18:30 ` [PATCH 1/2] ARM: dts: Enable earlycon stdout path for LogicPD torpedo Adam Ford 1 sibling, 0 replies; 3+ messages in thread From: Tony Lindgren @ 2017-05-22 16:13 UTC (permalink / raw) To: linux-omap-u79uwXL29TY76Z2rM5mHXA Cc: Benoît Cousson, devicetree-u79uwXL29TY76Z2rM5mHXA As long as the kernel cmdline has "earlycon" in it, this allows seeing debug messages earlier and does not require DEBUG_LL to be enabled. Signed-off-by: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> --- arch/arm/boot/dts/omap4-duovero.dtsi | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm/boot/dts/omap4-duovero.dtsi b/arch/arm/boot/dts/omap4-duovero.dtsi --- a/arch/arm/boot/dts/omap4-duovero.dtsi +++ b/arch/arm/boot/dts/omap4-duovero.dtsi @@ -12,6 +12,10 @@ model = "Gumstix Duovero"; compatible = "gumstix,omap4-duovero", "ti,omap4430", "ti,omap4"; + chosen { + stdout-path = &uart3; + }; + memory@80000000 { device_type = "memory"; reg = <0x80000000 0x40000000>; /* 1 GB */ -- 2.13.0 -- 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] 3+ messages in thread
* Re: [PATCH 1/2] ARM: dts: Enable earlycon stdout path for LogicPD torpedo [not found] ` <20170522161346.10591-1-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 2017-05-22 16:13 ` [PATCH 2/2] ARM: dts: Enable earlycon stdout path for duovero Tony Lindgren @ 2017-05-22 18:30 ` Adam Ford 1 sibling, 0 replies; 3+ messages in thread From: Adam Ford @ 2017-05-22 18:30 UTC (permalink / raw) To: Tony Lindgren Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA, Benoît Cousson, devicetree-u79uwXL29TY76Z2rM5mHXA On Mon, May 22, 2017 at 11:13 AM, Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> wrote: > As long as the kernel cmdline has "earlycon" in it, this allows > seeing debug messages earlier and does not require DEBUG_LL to > be enabled. Thanks for doing that. I was meaning to do that after I found it was necessary for porting OMAP3 device tree stuff to U-Boot. I just got distracted and forgot to do it. > > Cc: Adam Ford <aford173-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > Signed-off-by: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> Acked-by: Adam Ford <aford173-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- > arch/arm/boot/dts/logicpd-torpedo-som.dtsi | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/arch/arm/boot/dts/logicpd-torpedo-som.dtsi b/arch/arm/boot/dts/logicpd-torpedo-som.dtsi > --- a/arch/arm/boot/dts/logicpd-torpedo-som.dtsi > +++ b/arch/arm/boot/dts/logicpd-torpedo-som.dtsi > @@ -7,6 +7,10 @@ > #include <dt-bindings/input/input.h> > > / { > + chosen { > + stdout-path = &uart1; > + }; > + > cpus { > cpu@0 { > cpu0-supply = <&vcc>; > -- > 2.13.0 -- 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] 3+ messages in thread
end of thread, other threads:[~2017-05-22 18:30 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-05-22 16:13 [PATCH 1/2] ARM: dts: Enable earlycon stdout path for LogicPD torpedo Tony Lindgren [not found] ` <20170522161346.10591-1-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 2017-05-22 16:13 ` [PATCH 2/2] ARM: dts: Enable earlycon stdout path for duovero Tony Lindgren 2017-05-22 18:30 ` [PATCH 1/2] ARM: dts: Enable earlycon stdout path for LogicPD torpedo Adam Ford
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).