]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
ARM: dts: add dtsi for exynos7870-on7xelte (Samsung Galaxy J7 Prime)
authorKaustabh Chakraborty <kauschluss@disroot.org>
Mon, 26 Jan 2026 10:53:45 +0000 (16:23 +0530)
committerMinkyu Kang <mk7.kang@samsung.com>
Mon, 2 Feb 2026 08:06:42 +0000 (17:06 +0900)
Add a framebuffer node to the DTSI in order to ensure that display
continues to work, as since v6.19 of devicetree-rebasing sources, it
uses Samsung's DECON (Display Enhancement CONtroller) for display, which
is, as of yet, not supported in U-Boot.

Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
arch/arm/dts/exynos7870-on7xelte-u-boot.dtsi [new file with mode: 0644]

diff --git a/arch/arm/dts/exynos7870-on7xelte-u-boot.dtsi b/arch/arm/dts/exynos7870-on7xelte-u-boot.dtsi
new file mode 100644 (file)
index 0000000..c7bd710
--- /dev/null
@@ -0,0 +1,21 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (c) 2026 Kaustabh Chakraborty <kauschluss@disroot.org>
+ */
+
+/ {
+       chosen {
+               #address-cells = <2>;
+               #size-cells = <1>;
+               ranges;
+
+               framebuffer@67000000 {
+                       compatible = "simple-framebuffer";
+                       reg = <0x0 0x67000000 (1080 * 1920 * 4)>;
+                       width = <1080>;
+                       height = <1920>;
+                       stride = <(1080 * 4)>;
+                       format = "a8r8g8b8";
+               };
+       };
+};