← Documents Documentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

AUO Pixcir Touchscreen

AUO in-cell touchscreen의 GPIO order와 resolution 바인딩입니다.

Source pathDocumentation/devicetree/bindings/input/touchscreen/auo_pixcir_ts.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약과 해설

auo_pixcir_ts.txt:1-30

Interrupt/reset GPIO와 800x600 예제를 설명합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
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 IRQ_TYPE_LEVEL_HIGH>;
21
22 gpios = <&gpf 2 0 GPIO_LEVEL_HIGH>, /* INT */
23 <&gpf 5 1 GPIO_LEVEL_LOW>; /* RST */
24
25 x-size = <800>;
26 y-size = <600>;
27 };
28
29 /* ... */
30 };
31

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

AUO Pixcir in-cell touchscreen

1-11

Pixcir sensor를 사용하는 AUO in-cell touchscreen controller입니다. 필수 `compatible`은 `auo,auo_pixcir_ts`, `reg`는 chip I2C address, `interrupts`는 chip interrupt입니다.

`gpios`는 chip에 연결한 GPIO를 순서대로 지정하며 첫째는 interrupt GPIO, 둘째는 reset GPIO입니다. `x-size`와 `y-size`는 각각 touchscreen의 horizontal 및 vertical resolution입니다.

AUO Pixcir GPIO order
GPIO entry 0Interrupt input
GPIO entry 1Reset output
Pixcir at 0x5cTouch sensing
x-size 800 / y-size 600Coordinate range

두 GPIO entry의 고정 순서와 display resolution을 정리합니다.

800x600 Pixcir 예제

12-30

예제는 I2C bus 아래 address `0x5c`의 controller를 두고 level-high interrupt 2를 사용합니다. GPF pin 2는 high-level interrupt, pin 5는 low-level reset이며 resolution은 800x600입니다.

i2c@00000000 {
        /* ... */

        auo_pixcir_ts@5c {
                compatible = "auo,auo_pixcir_ts";
                reg = <0x5c>;
                interrupts = <2 IRQ_TYPE_LEVEL_HIGH>;

                gpios = <&gpf 2 0 GPIO_LEVEL_HIGH>, /* INT */
                        <&gpf 5 1 GPIO_LEVEL_LOW>; /* RST */

                x-size = <800>;
                y-size = <600>;
        };

        /* ... */
};