Messages in this thread Patch in this message |  | | From | Adam Ford <> | Subject | [PATCH V2] ARM: dts: imx6q-logicpd: Enable ili2117a Touchscreen | Date | Wed, 6 Nov 2019 08:23:08 -0600 |
| |
The LCD used with the imx6q-logicpd board has an integrated ili2117a touch controller connected to i2c1.
This patch adds the node to enable this feature.
Signed-off-by: Adam Ford <aford173@gmail.com> --- ili2117 support is scheduled to be introduced for Kernel v5.5.
V2: Change node to touchscreen@26 and move comment about 5.5 to under the dashes
diff --git a/arch/arm/boot/dts/imx6q-logicpd.dts b/arch/arm/boot/dts/imx6q-logicpd.dts index d96ae54be338..7a3d1d3e54a9 100644 --- a/arch/arm/boot/dts/imx6q-logicpd.dts +++ b/arch/arm/boot/dts/imx6q-logicpd.dts @@ -73,6 +73,16 @@ status = "okay"; }; +&i2c1 { + touchscreen@26 { + compatible = "ilitek,ili2117"; + reg = <0x26>; + pinctrl-names = "default"; + pinctrl-0 = <&pinctrl_touchscreen>; + interrupts-extended = <&gpio1 6 IRQ_TYPE_EDGE_RISING>; + }; +}; + &ldb { status = "okay"; -- 2.20.1
|  |