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

Commit 5be82d04 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by Florian Fainelli
Browse files

ARM: dts: BCM5301X: Specify serial console params in dtsi files



So far every Northstar device we have seen was using the same serial
console params (115200n8). It probably make the most sense to put it in
some proper dtsi files instead of repeating over and over for every
single device. As different boards may use different bootloaders it
seems the safest idea is to use board specific dtsi files.

Just in case some vendor decides to use different UART (parameters) this
can be always easily overwritten.

Signed-off-by: default avatarRafał Miłecki <rafal@milecki.pl>
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent ec73ab6b
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -12,6 +12,14 @@
/ {
	compatible = "brcm,bcm4708";

	aliases {
		serial0 = &uart0;
	};

	chosen {
		stdout-path = "serial0:115200n8";
	};

	cpus {
		#address-cells = <1>;
		#size-cells = <0>;
+8 −0
Original line number Diff line number Diff line
@@ -22,6 +22,14 @@
/ {
	compatible = "brcm,bcm47081";

	aliases {
		serial0 = &uart0;
	};

	chosen {
		stdout-path = "serial0:115200n8";
	};

	cpus {
		#address-cells = <1>;
		#size-cells = <0>;
+0 −4
Original line number Diff line number Diff line
@@ -18,10 +18,6 @@
/ {
	interrupt-parent = <&gic>;

	chosen {
		stdout-path = &uart0;
	};

	chipcommonA {
		compatible = "simple-bus";
		ranges = <0x00000000 0x18000000 0x00001000>;
+0 −8
Original line number Diff line number Diff line
@@ -38,14 +38,6 @@
	model = "NorthStar SVK (BCM94708)";
	compatible = "brcm,bcm94708", "brcm,bcm4708";

	aliases {
		serial0 = &uart0;
	};

	chosen {
		stdout-path = "serial0:115200n8";
	};

	memory {
		reg = <0x00000000 0x08000000>;
	};
+0 −8
Original line number Diff line number Diff line
@@ -38,14 +38,6 @@
	model = "NorthStar SVK (BCM94709)";
	compatible = "brcm,bcm94709", "brcm,bcm4709", "brcm,bcm4708";

	aliases {
		serial0 = &uart0;
	};

	chosen {
		stdout-path = "serial0:115200n8";
	};

	memory {
		reg = <0x00000000 0x08000000>;
	};
Loading