1* MAXI MAX11801 Resistive touch screen controller with i2c interface 2 3Required properties: 4- compatible: must be "maxim,max11801" 5- reg: i2c slave address 6- interrupt-parent: the phandle for the interrupt controller 7- interrupts: touch controller interrupt 8 9Example: 10 11&i2c1 { 12 max11801: touchscreen@48 { 13 compatible = "maxim,max11801"; 14 reg = <0x48>; 15 interrupt-parent = <&gpio3>; 16 interrupts = <31 IRQ_TYPE_EDGE_FALLING>; 17 }; 18}; 19