Commit 6121e3a4 authored by Maud Spierings's avatar Maud Spierings Committed by Shawn Guo
Browse files

arm64: dts: freescale: Add the BOE av101hdt-a10 variant of the Moduline Display



Add the BOE av101hdt-a10 variant of the Moduline Display, this variant
comes with a 10.1 1280x720 display with a touchscreen (not working in
mainline).

Reviewed-by: default avatarFrank Li <Frank.Li@nxp.com>
Signed-off-by: default avatarMaud Spierings <maudspierings@gocontroll.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 03f07be5
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -229,6 +229,11 @@ dtb-$(CONFIG_ARCH_MXC) += imx8mp-skov-revc-tian-g07017.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-toradex-smarc-dev.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-tqma8mpql-mba8mpxl.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-tqma8mpql-mba8mp-ras314.dtb

imx8mp-tx8p-ml81-moduline-display-106-av101hdt-a10-dtbs += imx8mp-tx8p-ml81-moduline-display-106.dtb \
	imx8mp-tx8p-ml81-moduline-display-106-av101hdt-a10.dtbo
dtb-$(CONFIG_ARCH_MXC) += imx8mp-tx8p-ml81-moduline-display-106-av101hdt-a10.dtb

dtb-$(CONFIG_ARCH_MXC) += imx8mp-var-som-symphony.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-venice-gw71xx-2x.dtb
dtb-$(CONFIG_ARCH_MXC) += imx8mp-venice-gw72xx-2x.dtb
+94 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
/*
 * Copyright 2025 GOcontroll B.V.
 * Author: Maud Spierings <maudspierings@gocontroll.com>
 */

#include <dt-bindings/clock/imx8mp-clock.h>
#include <dt-bindings/gpio/gpio.h>

#include "imx8mp-pinfunc.h"

/dts-v1/;
/plugin/;

&{/} {
	model = "GOcontroll Moduline Display with BOE av101hdt-a10 display";

	panel {
		compatible = "boe,av101hdt-a10";
		enable-gpios = <&gpio1 7 GPIO_ACTIVE_HIGH>;
		pinctrl-0 = <&pinctrl_panel>;
		pinctrl-names = "default";
		power-supply = <&reg_3v3_per>;
		reset-gpios = <&gpio1 9 GPIO_ACTIVE_LOW>;

		port {
			panel_lvds_in: endpoint {
				remote-endpoint = <&ldb_lvds_ch0>;
			};
		};
	};

	reg_vbus: regulator-vbus {
		compatible = "regulator-fixed";
		power-supply = <&reg_6v4>;
		regulator-always-on;
		regulator-max-microvolt = <5000000>;
		regulator-min-microvolt = <5000000>;
		regulator-name = "usb-c-vbus";
	};
};

&iomuxc {
	pinctrl_panel: panelgrp {
		fsl,pins = <
			MX8MP_IOMUXC_GPIO1_IO07__GPIO1_IO07
				MX8MP_DSE_X1
			MX8MP_IOMUXC_GPIO1_IO09__GPIO1_IO09
				MX8MP_DSE_X1
		>;
	};
};

&lcdif2 {
	status = "okay";
};

&lvds_bridge {
	assigned-clocks = <&clk IMX8MP_CLK_MEDIA_LDB>, <&clk IMX8MP_VIDEO_PLL1>;
	/* IMX8MP_VIDEO_PLL1 = IMX8MP_CLK_MEDIA_DISP2_PIX * 2 * 7 */
	assigned-clock-rates = <0>, <1054620000>;
	status = "okay";

	ports {
		port@1 {
			ldb_lvds_ch0: endpoint {
				remote-endpoint = <&panel_lvds_in>;
			};
		};
	};
};

&usb_dwc3_1 {
	dr_mode = "host";

	connector {
		compatible = "usb-c-connector";
		data-role = "host";
		pd-disable;
		vbus-supply = <&reg_vbus>;

		port {
			high_speed_ep: endpoint {
				remote-endpoint = <&usb1_hs_ep>;
			};
		};
	};

	port {
		usb1_hs_ep: endpoint {
			remote-endpoint = <&high_speed_ep>;
		};
	};
};