Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 1 | * MAXI MAX11801 Resistive touch screen controller with i2c interface |
2 | |||||
3 | Required properties: | ||||
4 | - compatible: must be "maxim,max11801" | ||||
5 | - reg: i2c slave address | ||||
6 | - interrupts: touch controller interrupt | ||||
7 | |||||
8 | Example: | ||||
9 | |||||
10 | &i2c1 { | ||||
11 | max11801: touchscreen@48 { | ||||
12 | compatible = "maxim,max11801"; | ||||
13 | reg = <0x48>; | ||||
14 | interrupt-parent = <&gpio3>; | ||||
15 | interrupts = <31 IRQ_TYPE_EDGE_FALLING>; | ||||
16 | }; | ||||
17 | }; |