10145a714SAndi Shyti* Samsung S6SY761 touchscreen controller
20145a714SAndi Shyti
30145a714SAndi ShytiRequired properties:
40145a714SAndi Shyti- compatible		: must be "samsung,s6sy761"
50145a714SAndi Shyti- reg			: I2C slave address, (e.g. 0x48)
60145a714SAndi Shyti- interrupts		: interrupt specification
70145a714SAndi Shyti- avdd-supply		: analogic power supply
80145a714SAndi Shyti- vdd-supply		: power supply
90145a714SAndi Shyti
100145a714SAndi ShytiOptional properties:
110145a714SAndi Shyti- touchscreen-size-x	: see touchscreen.txt. This property is embedded in the
120145a714SAndi Shyti			  device. If defined it forces a different x resolution.
130145a714SAndi Shyti- touchscreen-size-y	: see touchscreen.txt. This property is embedded in the
140145a714SAndi Shyti			  device. If defined it forces a different y resolution.
150145a714SAndi Shyti
160145a714SAndi ShytiExample:
170145a714SAndi Shyti
180145a714SAndi Shytii2c@00000000 {
190145a714SAndi Shyti
200145a714SAndi Shyti	/* ... */
210145a714SAndi Shyti
220145a714SAndi Shyti	touchscreen@48 {
230145a714SAndi Shyti		compatible = "samsung,s6sy761";
240145a714SAndi Shyti		reg = <0x48>;
250145a714SAndi Shyti		interrupt-parent = <&gpa1>;
260145a714SAndi Shyti		interrupts = <1 IRQ_TYPE_NONE>;
270145a714SAndi Shyti		avdd-supply = <&ldo30_reg>;
280145a714SAndi Shyti		vdd-supply = <&ldo31_reg>;
290145a714SAndi Shyti		touchscreen-size-x = <4096>;
300145a714SAndi Shyti		touchscreen-size-y = <4096>;
310145a714SAndi Shyti	};
320145a714SAndi Shyti};
33