@@ -1,4 +1,8 @@
# SPDX-License-Identifier: GPL-2.0-only
+stm32mp257d-engicam-microgea-rmm-overlay-am-1280800w8tzqw-t00h-dtbs := \
+ stm32mp257d-engicam-microgea-rmm.dtb \
+ stm32mp257d-engicam-microgea-rmm-overlay-am-1280800w8tzqw-t00h.dtbo
+
stm32mp257d-engicam-microgea-rmm-overlay-rk050hr345-ct106a-dtbs := \
stm32mp257d-engicam-microgea-rmm.dtb \
stm32mp257d-engicam-microgea-rmm-overlay-rk050hr345-ct106a.dtbo
@@ -7,6 +11,8 @@ dtb-$(CONFIG_ARCH_STM32) += \
stm32mp215f-dk.dtb \
stm32mp235f-dk.dtb \
stm32mp257d-engicam-microgea-rmm.dtb \
+ stm32mp257d-engicam-microgea-rmm-overlay-am-1280800w8tzqw-t00h.dtb \
+ stm32mp257d-engicam-microgea-rmm-overlay-am-1280800w8tzqw-t00h.dtbo \
stm32mp257d-engicam-microgea-rmm-overlay-rk050hr345-ct106a.dtb \
stm32mp257d-engicam-microgea-rmm-overlay-rk050hr345-ct106a.dtbo \
stm32mp257f-dk.dtb \
new file mode 100644
@@ -0,0 +1,67 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright (C) 2026 Amarula Solutions, Dario Binacchi <dario.binacchi@amarulasolutions.com>
+ * Copyright (C) 2026 Engicam srl
+ *
+ * Ampire AM-1280800W8TZQW-T00H 10.1" 1280x800 LVDS panel. Its touchscreen
+ * controller is connected over USB.
+ */
+
+/dts-v1/;
+/plugin/;
+
+#include <dt-bindings/clock/st,stm32mp25-rcc.h>
+
+&{/} {
+ panel-lvds {
+ compatible = "ampire,am-1280800w8tzqw-t00h";
+ backlight = <&backlight>;
+ power-supply = <®_3v3>;
+
+ port {
+ panel_in: endpoint {
+ remote-endpoint = <&lvds_out>;
+ };
+ };
+ };
+};
+
+&framebuffer {
+ clocks = <&rcc CK_BUS_LTDC>, <&rcc CK_KER_LTDC>,
+ <&rcc CK_BUS_LVDS>, <&rcc CK_KER_LVDSPHY>;
+};
+
+<dc {
+ status = "okay";
+
+ port {
+ ltdc_out: endpoint {
+ remote-endpoint = <&lvds_in>;
+ };
+ };
+};
+
+&lvds {
+ status = "okay";
+
+ ports {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ port@0 {
+ reg = <0>;
+
+ lvds_in: endpoint {
+ remote-endpoint = <<dc_out>;
+ };
+ };
+
+ port@1 {
+ reg = <1>;
+
+ lvds_out: endpoint {
+ remote-endpoint = <&panel_in>;
+ };
+ };
+ };
+};
@@ -43,7 +43,7 @@ chosen {
#size-cells = <2>;
ranges;
- framebuffer {
+ framebuffer: framebuffer {
compatible = "simple-framebuffer";
clocks = <&rcc CK_BUS_LTDC>, <&rcc CK_KER_LTDC>;
lcd-supply = <®_3v3>;
Add an overlay for the variant fitted with the AM-1280800W8TZQW-T00H 10.1" 1280x800 LVDS panel. Its touchscreen is connected over USB, so there is no touchscreen node. Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> --- arch/arm64/boot/dts/st/Makefile | 6 ++ ...gea-rmm-overlay-am-1280800w8tzqw-t00h.dtso | 67 +++++++++++++++++++ .../st/stm32mp257d-engicam-microgea-rmm.dts | 2 +- 3 files changed, 74 insertions(+), 1 deletion(-) create mode 100644 arch/arm64/boot/dts/st/stm32mp257d-engicam-microgea-rmm-overlay-am-1280800w8tzqw-t00h.dtso