Commit 1fac5db3 authored by Sebastian Reichel's avatar Sebastian Reichel Committed by Shawn Guo
Browse files

ARM: dts: imx6: Add GE B1x5v2



This adds device tree files for the General Electric Healthcare
(GEHC) B1x5v2 series. All models make use of Congatec's QMX6
system on module, which is described in its own device tree include,
so that it can also be used by other boards.

Signed-off-by: default avatarSebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent f4ab3f28
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -516,6 +516,11 @@ dtb-$(CONFIG_SOC_IMX6Q) += \
	imx6q-ds.dtb \
	imx6q-emcon-avari.dtb \
	imx6q-evi.dtb \
	imx6dl-b105pv2.dtb \
	imx6dl-b105v2.dtb \
	imx6dl-b125v2.dtb \
	imx6dl-b125pv2.dtb \
	imx6dl-b155v2.dtb \
	imx6q-gk802.dtb \
	imx6q-gw51xx.dtb \
	imx6q-gw52xx.dtb \
+32 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0 or MIT
//
// Device Tree Source for General Electric B105Pv2
//
// Copyright 2018-2021 General Electric Company
// Copyright 2018-2021 Collabora

/dts-v1/;
#include "imx6dl-b1x5pv2.dtsi"

/ {
	model = "General Electric B105Pv2";
	compatible = "ge,imx6dl-b105pv2", "congatec,qmx6", "fsl,imx6dl";

	panel {
		compatible = "auo,g101evn010";
	};
};

&i2c3 {
	touchscreen@41 {
		compatible = "ilitek,ili251x";
		reg = <0x41>;
		pinctrl-names = "default";
		pinctrl-0 =<&pinctrl_q7_gpio0>;
		interrupt-parent = <&gpio5>;
		interrupts = <2 IRQ_TYPE_EDGE_FALLING>;
		reset-gpios = <&tca6424a 21 GPIO_ACTIVE_LOW>;
		touchscreen-size-x = <1280>;
		touchscreen-size-y = <800>;
	};
};
+32 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0 or MIT
//
// Device Tree Source for General Electric B105v2
//
// Copyright 2018-2021 General Electric Company
// Copyright 2018-2021 Collabora

/dts-v1/;
#include "imx6dl-b1x5v2.dtsi"

/ {
	model = "General Electric B105v2";
	compatible = "ge,imx6dl-b105v2", "congatec,qmx6", "fsl,imx6dl";

	panel {
		compatible = "auo,g101evn010";
	};
};

&i2c3 {
	touchscreen@41 {
		compatible = "ilitek,ili251x";
		reg = <0x41>;
		pinctrl-names = "default";
		pinctrl-0 =<&pinctrl_q7_gpio0>;
		interrupt-parent = <&gpio5>;
		interrupts = <2 IRQ_TYPE_EDGE_FALLING>;
		reset-gpios = <&tca6424a 21 GPIO_ACTIVE_LOW>;
		touchscreen-size-x = <1280>;
		touchscreen-size-y = <800>;
	};
};
+30 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0 or MIT
//
// Device Tree Source for General Electric B125Pv2
//
// Copyright 2018-2021 General Electric Company
// Copyright 2018-2021 Collabora

/dts-v1/;
#include "imx6dl-b1x5pv2.dtsi"

/ {
	model = "General Electric B125Pv2";
	compatible = "ge,imx6dl-b125pv2", "congatec,qmx6", "fsl,imx6dl";

	panel {
		compatible = "auo,g121ean01";
	};
};

&i2c3 {
	touchscreen@2a {
		compatible = "eeti,exc80h60";
		reg = <0x2a>;
		pinctrl-names = "default";
		pinctrl-0 =<&pinctrl_q7_gpio0>;
		interrupt-parent = <&gpio5>;
		interrupts = <2 IRQ_TYPE_LEVEL_LOW>;
		reset-gpios = <&tca6424a 21 GPIO_ACTIVE_HIGH>;
	};
};
+30 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0 or MIT
//
// Device Tree Source for General Electric B125v2
//
// Copyright 2018-2021 General Electric Company
// Copyright 2018-2021 Collabora

/dts-v1/;
#include "imx6dl-b1x5v2.dtsi"

/ {
	model = "General Electric B125v2";
	compatible = "ge,imx6dl-b125v2", "congatec,qmx6", "fsl,imx6dl";

	panel {
		compatible = "auo,g121ean01";
	};
};

&i2c3 {
	touchscreen@2a {
		compatible = "eeti,exc80h60";
		reg = <0x2a>;
		pinctrl-names = "default";
		pinctrl-0 =<&pinctrl_q7_gpio0>;
		interrupt-parent = <&gpio5>;
		interrupts = <2 IRQ_TYPE_LEVEL_LOW>;
		reset-gpios = <&tca6424a 21 GPIO_ACTIVE_HIGH>;
	};
};
Loading