The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/input/touchscreen/auo_pixcir_ts.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 * AUO in-cell touchscreen controller using Pixcir sensors
    2 
    3 Required properties:
    4 - compatible: must be "auo,auo_pixcir_ts"
    5 - reg: I2C address of the chip
    6 - interrupts: interrupt to which the chip is connected
    7 - gpios: gpios the chip is connected to
    8   first one is the interrupt gpio and second one the reset gpio
    9 - x-size: horizontal resolution of touchscreen
   10 - y-size: vertical resolution of touchscreen
   11 
   12 Example:
   13 
   14         i2c@00000000 {
   15                 /* ... */
   16 
   17                 auo_pixcir_ts@5c {
   18                         compatible = "auo,auo_pixcir_ts";
   19                         reg = <0x5c>;
   20                         interrupts = <2 0>;
   21 
   22                         gpios = <&gpf 2 0 2>, /* INT */
   23                                 <&gpf 5 1 0>; /* RST */
   24 
   25                         x-size = <800>;
   26                         y-size = <600>;
   27                 };
   28 
   29                 /* ... */
   30         };

Cache object: 38cd0049c4c73bc39913c710398e9fc3


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.