diff options
author | Matwey V. Kornilov <matwey@sai.msu.ru> | 2020-01-06 16:09:08 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2020-01-13 09:50:11 -0800 |
commit | 5abd45ea0fc3060f7805e131753fdcbafd6c6618 (patch) | |
tree | d5b16f91811d53a6a9060c364359faa428925933 /arch/arm/boot/dts/am335x-boneblack-common.dtsi | |
parent | 03729cfa0d543bc996bf959e762ec999afc8f3d2 (diff) | |
download | lwn-5abd45ea0fc3060f7805e131753fdcbafd6c6618.tar.gz lwn-5abd45ea0fc3060f7805e131753fdcbafd6c6618.zip |
ARM: dts: am335x-boneblack-common: fix memory size
BeagleBone Black series is equipped with 512MB RAM
whereas only 256MB is included from am335x-bone-common.dtsi
This leads to an issue with unusual setups when devicetree
is loaded by GRUB2 directly.
Signed-off-by: Matwey V. Kornilov <matwey@sai.msu.ru>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/boot/dts/am335x-boneblack-common.dtsi')
-rw-r--r-- | arch/arm/boot/dts/am335x-boneblack-common.dtsi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/am335x-boneblack-common.dtsi b/arch/arm/boot/dts/am335x-boneblack-common.dtsi index 7ad079861efd..91f93bc89716 100644 --- a/arch/arm/boot/dts/am335x-boneblack-common.dtsi +++ b/arch/arm/boot/dts/am335x-boneblack-common.dtsi @@ -131,6 +131,11 @@ }; / { + memory@80000000 { + device_type = "memory"; + reg = <0x80000000 0x20000000>; /* 512 MB */ + }; + clk_mcasp0_fixed: clk_mcasp0_fixed { #clock-cells = <0>; compatible = "fixed-clock"; |