요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
* AUO in-cell touchscreen controller using Pixcir sensors
Required properties:
- compatible: must be "auo,auo_pixcir_ts"
- reg: I2C address of the chip
- interrupts: interrupt to which the chip is connected
- gpios: gpios the chip is connected to
first one is the interrupt gpio and second one the reset gpio
- x-size: horizontal resolution of touchscreen
- y-size: vertical resolution of touchscreen
Example:
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>;
};
/* ... */
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
AUO Pixcir in-cell touchscreen
1-11Pixcir 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입니다.
두 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>;
};
/* ... */
};
요약과 해설
auo_pixcir_ts.txt:1-30Interrupt/reset GPIO와 800x600 예제를 설명합니다.