1*7705ce5aSSamuel Holland// SPDX-License-Identifier: (GPL-2.0+ or MIT)
2*7705ce5aSSamuel Holland// Copyright (C) 2022 Samuel Holland <samuel@sholland.org>
3*7705ce5aSSamuel Holland
4*7705ce5aSSamuel Holland#include "sun20i-d1-lichee-rv-86-panel.dtsi"
5*7705ce5aSSamuel Holland
6*7705ce5aSSamuel Holland/ {
7*7705ce5aSSamuel Holland	model = "Sipeed Lichee RV 86 Panel (480p)";
8*7705ce5aSSamuel Holland	compatible = "sipeed,lichee-rv-86-panel-480p", "sipeed,lichee-rv",
9*7705ce5aSSamuel Holland		     "allwinner,sun20i-d1";
10*7705ce5aSSamuel Holland};
11*7705ce5aSSamuel Holland
12*7705ce5aSSamuel Holland&i2c2 {
13*7705ce5aSSamuel Holland	pinctrl-0 = <&i2c2_pb0_pins>;
14*7705ce5aSSamuel Holland	pinctrl-names = "default";
15*7705ce5aSSamuel Holland	status = "okay";
16*7705ce5aSSamuel Holland
17*7705ce5aSSamuel Holland	touchscreen@48 {
18*7705ce5aSSamuel Holland		compatible = "focaltech,ft6236";
19*7705ce5aSSamuel Holland		reg = <0x48>;
20*7705ce5aSSamuel Holland		interrupt-parent = <&pio>;
21*7705ce5aSSamuel Holland		interrupts = <6 14 IRQ_TYPE_LEVEL_LOW>; /* PG14 */
22*7705ce5aSSamuel Holland		iovcc-supply = <&reg_vcc_3v3>;
23*7705ce5aSSamuel Holland		reset-gpios = <&pio 6 15 GPIO_ACTIVE_LOW>; /* PG15 */
24*7705ce5aSSamuel Holland		touchscreen-size-x = <480>;
25*7705ce5aSSamuel Holland		touchscreen-size-y = <480>;
26*7705ce5aSSamuel Holland		vcc-supply = <&reg_vcc_3v3>;
27*7705ce5aSSamuel Holland		wakeup-source;
28*7705ce5aSSamuel Holland	};
29*7705ce5aSSamuel Holland};
30