xref: /freebsd/sys/contrib/device-tree/Bindings/input/touchscreen/elan,ektf2127.yaml (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
1*0e8011faSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2*0e8011faSEmmanuel Vadot%YAML 1.2
3*0e8011faSEmmanuel Vadot---
4*0e8011faSEmmanuel Vadot$id: http://devicetree.org/schemas/input/touchscreen/elan,ektf2127.yaml#
5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*0e8011faSEmmanuel Vadot
7*0e8011faSEmmanuel Vadottitle: Elan eKTF2127 I2C touchscreen controller
8*0e8011faSEmmanuel Vadot
9*0e8011faSEmmanuel Vadotmaintainers:
10*0e8011faSEmmanuel Vadot  - Siebren Vroegindeweij <siebren.vroegindeweij@hotmail.com>
11*0e8011faSEmmanuel Vadot
12*0e8011faSEmmanuel VadotallOf:
13*0e8011faSEmmanuel Vadot  - $ref: touchscreen.yaml#
14*0e8011faSEmmanuel Vadot
15*0e8011faSEmmanuel Vadotproperties:
16*0e8011faSEmmanuel Vadot  compatible:
17*0e8011faSEmmanuel Vadot    enum:
18*0e8011faSEmmanuel Vadot      - elan,ektf2127
19*0e8011faSEmmanuel Vadot      - elan,ektf2132
20*0e8011faSEmmanuel Vadot      - elan,ektf2232
21*0e8011faSEmmanuel Vadot
22*0e8011faSEmmanuel Vadot  reg:
23*0e8011faSEmmanuel Vadot    maxItems: 1
24*0e8011faSEmmanuel Vadot
25*0e8011faSEmmanuel Vadot  interrupts:
26*0e8011faSEmmanuel Vadot    maxItems: 1
27*0e8011faSEmmanuel Vadot
28*0e8011faSEmmanuel Vadot  power-gpios:
29*0e8011faSEmmanuel Vadot    maxItems: 1
30*0e8011faSEmmanuel Vadot
31*0e8011faSEmmanuel Vadotrequired:
32*0e8011faSEmmanuel Vadot  - compatible
33*0e8011faSEmmanuel Vadot  - reg
34*0e8011faSEmmanuel Vadot  - interrupts
35*0e8011faSEmmanuel Vadot  - power-gpios
36*0e8011faSEmmanuel Vadot
37*0e8011faSEmmanuel VadotunevaluatedProperties: false
38*0e8011faSEmmanuel Vadot
39*0e8011faSEmmanuel Vadotexamples:
40*0e8011faSEmmanuel Vadot  - |
41*0e8011faSEmmanuel Vadot    #include <dt-bindings/gpio/gpio.h>
42*0e8011faSEmmanuel Vadot    #include <dt-bindings/interrupt-controller/irq.h>
43*0e8011faSEmmanuel Vadot
44*0e8011faSEmmanuel Vadot    i2c {
45*0e8011faSEmmanuel Vadot        #address-cells = <1>;
46*0e8011faSEmmanuel Vadot        #size-cells = <0>;
47*0e8011faSEmmanuel Vadot
48*0e8011faSEmmanuel Vadot        touchscreen@15 {
49*0e8011faSEmmanuel Vadot            compatible = "elan,ektf2127";
50*0e8011faSEmmanuel Vadot            reg = <0x15>;
51*0e8011faSEmmanuel Vadot            interrupt-parent = <&pio>;
52*0e8011faSEmmanuel Vadot            interrupts = <6 11 IRQ_TYPE_EDGE_FALLING>;
53*0e8011faSEmmanuel Vadot            power-gpios = <&pio 1 3 GPIO_ACTIVE_HIGH>;
54*0e8011faSEmmanuel Vadot            touchscreen-inverted-x;
55*0e8011faSEmmanuel Vadot            touchscreen-swapped-x-y;
56*0e8011faSEmmanuel Vadot        };
57*0e8011faSEmmanuel Vadot    };
58*0e8011faSEmmanuel Vadot...
59