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

Commit 328e3e36 authored by Stefan Wahren's avatar Stefan Wahren
Browse files

ARM: dts: bcm283x: Define memory at board level



Now with the varity of several RPi boards, the memory should be defined
at board level. This step gives us the chance to fix the memory size
of the RPi 1 B+, Zero (incl. W) and Compute Module 1.

Signed-off-by: default avatarStefan Wahren <wahrenst@gmx.net>
Acked-by: default avatarEric Anholt <eric@anholt.net>
parent e7774049
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -8,6 +8,11 @@
	compatible = "raspberrypi,model-a-plus", "brcm,bcm2835";
	model = "Raspberry Pi Model A+";

	memory@0 {
		device_type = "memory";
		reg = <0 0x10000000>;
	};

	leds {
		act {
			gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
+5 −0
Original line number Diff line number Diff line
@@ -8,6 +8,11 @@
	compatible = "raspberrypi,model-a", "brcm,bcm2835";
	model = "Raspberry Pi Model A";

	memory@0 {
		device_type = "memory";
		reg = <0 0x10000000>;
	};

	leds {
		act {
			gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
+5 −0
Original line number Diff line number Diff line
@@ -9,6 +9,11 @@
	compatible = "raspberrypi,model-b-plus", "brcm,bcm2835";
	model = "Raspberry Pi Model B+";

	memory@0 {
		device_type = "memory";
		reg = <0 0x20000000>;
	};

	leds {
		act {
			gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
+5 −0
Original line number Diff line number Diff line
@@ -9,6 +9,11 @@
	compatible = "raspberrypi,model-b-rev2", "brcm,bcm2835";
	model = "Raspberry Pi Model B rev2";

	memory@0 {
		device_type = "memory";
		reg = <0 0x10000000>;
	};

	leds {
		act {
			gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
+5 −0
Original line number Diff line number Diff line
@@ -9,6 +9,11 @@
	compatible = "raspberrypi,model-b", "brcm,bcm2835";
	model = "Raspberry Pi Model B";

	memory@0 {
		device_type = "memory";
		reg = <0 0x10000000>;
	};

	leds {
		act {
			gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
Loading