summaryrefslogtreecommitdiffstats
path: root/dts/src/arm/imx6qdl-skov-cpu-revc.dtsi
blob: 8254bce1b8a22831f9f05ffb1895532ec2bb4e34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
//
// Copyright (C) 2020 Pengutronix, Ulrich Oelmann <kernel@pengutronix.de>

&ecspi4 {
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_ecspi4>;
	cs-gpios = <&gpio3 20 GPIO_ACTIVE_LOW>;
	status = "okay";

	touchscreen@0 {
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_touch>;
		compatible = "ti,tsc2046";
		reg = <0>;
		spi-max-frequency = <1000000>;
		interrupts-extended = <&gpio3 19 IRQ_TYPE_LEVEL_LOW>;
		vcc-supply = <&reg_3v3>;
		pendown-gpio = <&gpio3 19 GPIO_ACTIVE_LOW>;
		ti,x-plate-ohms = /bits/ 16 <850>;
		ti,y-plate-ohms = /bits/ 16 <295>;
		ti,pressure-min = /bits/ 16 <2>;
		ti,pressure-max = /bits/ 16 <1500>;
		ti,vref-mv = /bits/ 16 <3300>;
		ti,settle-delay-usec = /bits/ 16 <15>;
		ti,vref-delay-usecs = /bits/ 16 <0>;
		ti,penirq-recheck-delay-usecs = /bits/ 16 <100>;
		ti,debounce-max = /bits/ 16 <100>;
		ti,debounce-tol = /bits/ 16 <(~0)>;
		ti,debounce-rep = /bits/ 16 <4>;
		touchscreen-swapped-x-y;
		touchscreen-inverted-y;
		wakeup-source;
	};
};

&iomuxc {
	pinctrl_ecspi4: ecspi4grp {
		fsl,pins = <
			MX6QDL_PAD_EIM_D28__ECSPI4_MOSI			0x100b1
			MX6QDL_PAD_EIM_D22__ECSPI4_MISO			0x000b1
			MX6QDL_PAD_EIM_D21__ECSPI4_SCLK			0x000b1
			/* *no* external pull up */
			MX6QDL_PAD_EIM_D20__GPIO3_IO20		0x40000058
		>;
	};

	pinctrl_touch: touchgrp {
		fsl,pins = <
			/* external pull up */
			MX6QDL_PAD_EIM_D19__GPIO3_IO19			0x10040
		>;
	};
};