Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1* EETI EXC3000 Multiple Touch Controller
2
3Required properties:
4- compatible: must be "eeti,exc3000"
5- reg: i2c slave address
6- interrupt-parent: the phandle for the interrupt controller
7- interrupts: touch controller interrupt
8- touchscreen-size-x: See touchscreen.txt
9- touchscreen-size-y: See touchscreen.txt
10
11Optional properties:
12- touchscreen-inverted-x: See touchscreen.txt
13- touchscreen-inverted-y: See touchscreen.txt
14- touchscreen-swapped-x-y: See touchscreen.txt
15
16Example:
17
18 touchscreen@2a {
19 compatible = "eeti,exc3000";
20 reg = <0x2a>;
21 interrupt-parent = <&gpio1>;
22 interrupts = <9 IRQ_TYPE_LEVEL_LOW>;
23 touchscreen-size-x = <4096>;
24 touchscreen-size-y = <4096>;
25 touchscreen-inverted-x;
26 touchscreen-swapped-x-y;
27 };