hc
2023-11-07 5e8555e3ea324daaf0e38422bcba48c4df33a0d9
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
* Pixcir I2C touchscreen controllers
 
Required properties:
- compatible: must be "pixcir,pixcir_ts" or "pixcir,pixcir_tangoc"
- reg: I2C address of the chip
- interrupts: interrupt to which the chip is connected
- attb-gpio: GPIO connected to the ATTB line of the chip
- touchscreen-size-x: horizontal resolution of touchscreen (in pixels)
- touchscreen-size-y: vertical resolution of touchscreen (in pixels)
 
Optional properties:
- reset-gpios: GPIO connected to the RESET line of the chip
- enable-gpios: GPIO connected to the ENABLE line of the chip
- wake-gpios: GPIO connected to the WAKE line of the chip
 
Example:
 
   i2c@00000000 {
       /* ... */
 
       pixcir_ts@5c {
           compatible = "pixcir,pixcir_ts";
           reg = <0x5c>;
           interrupts = <2 0>;
           attb-gpio = <&gpf 2 0 2>;
           touchscreen-size-x = <800>;
           touchscreen-size-y = <600>;
       };
 
       /* ... */
   };