Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 80a86dbd authored by Florian Fainelli's avatar Florian Fainelli
Browse files

Merge tag 'bcm2835-dt-fixes-2017-10-06' into devicetree/fixes



This pull request brings in a fix for default serial console setup on
RPi3, so it now comes up with no config.txt/cmdline.txt settings in
the firmware.

Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parents 2bd6bf03 f08f58a2
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -18,12 +18,9 @@
	compatible = "raspberrypi,model-zero-w", "brcm,bcm2835";
	model = "Raspberry Pi Zero W";

	/* Needed by firmware to properly init UARTs */
	aliases {
		uart0 = "/soc/serial@7e201000";
		uart1 = "/soc/serial@7e215040";
		serial0 = "/soc/serial@7e201000";
		serial1 = "/soc/serial@7e215040";
	chosen {
		/* 8250 auxiliary UART instead of pl011 */
		stdout-path = "serial1:115200n8";
	};

	leds {
+5 −0
Original line number Diff line number Diff line
@@ -8,6 +8,11 @@
	compatible = "raspberrypi,3-model-b", "brcm,bcm2837";
	model = "Raspberry Pi 3 Model B";

	chosen {
		/* 8250 auxiliary UART instead of pl011 */
		stdout-path = "serial1:115200n8";
	};

	memory {
		reg = <0 0x40000000>;
	};
+6 −1
Original line number Diff line number Diff line
@@ -20,8 +20,13 @@
	#address-cells = <1>;
	#size-cells = <1>;

	aliases {
		serial0 = &uart0;
		serial1 = &uart1;
	};

	chosen {
		bootargs = "earlyprintk console=ttyAMA0";
		stdout-path = "serial0:115200n8";
	};

	thermal-zones {