diff options
| author | Kaustabh Chakraborty <[email protected]> | 2026-02-03 18:38:47 +0530 |
|---|---|---|
| committer | Minkyu Kang <[email protected]> | 2026-02-23 15:35:33 +0900 |
| commit | cc77806b5d3d8f88d2d9e914fcb8224c0ef192fb (patch) | |
| tree | 93d48e3ae0c3480b4042f288effa3e54308389cd | |
| parent | 579349593a8444166e6e7d1d65326c4b56ab104b (diff) | |
ARM: dts: exynos7870-j6lte: add properties to make S-BOOT happy
Add properties in the DTSI file which is required for S-BOOT when used
an external device tree when booting into U-Boot. S-BOOT is Samsung's
proprietary bootloader, which chainloads U-Boot.
Since this device has multiple bank nodes, add memory nodes for each RAM
bank. This is the format S-BOOT recognizes, and (re)populates it with
the correct bank sizes.
Signed-off-by: Kaustabh Chakraborty <[email protected]>
Signed-off-by: Minkyu Kang <[email protected]>
| -rw-r--r-- | arch/arm/dts/exynos7870-j6lte-u-boot.dtsi | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/arm/dts/exynos7870-j6lte-u-boot.dtsi b/arch/arm/dts/exynos7870-j6lte-u-boot.dtsi index 9d944b127ee..aa499ecf479 100644 --- a/arch/arm/dts/exynos7870-j6lte-u-boot.dtsi +++ b/arch/arm/dts/exynos7870-j6lte-u-boot.dtsi @@ -4,6 +4,11 @@ */ / { + /* These properties are required by S-BOOT. */ + model_info-chip = <7870>; + model_info-hw_rev = <0>; + model_info-hw_rev_end = <255>; + chosen { #address-cells = <2>; #size-cells = <1>; @@ -18,4 +23,24 @@ format = "a8r8g8b8"; }; }; + + /* + * S-BOOT will populate the memory nodes stated below. Existing + * values redefine the safe memory requirements as stated in upstream + * device tree, in separate nodes for each bank. + */ + memory@40000000 { + device_type = "memory"; + reg = <0x0 0x40000000 0x3d800000>; + }; + + memory@80000000 { + device_type = "memory"; + reg = <0x0 0x80000000 0x40000000>; + }; + + memory@100000000 { + device_type = "memory"; + reg = <0x1 0x00000000 0x00000000>; + }; }; |
