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

Linux 6.18.37 · Devicetree Bindings

Raydium RM32380 Touchscreen

RM32380 I2C touchscreen의 power, reset과 interrupt 바인딩입니다.

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

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

1. 요약·해설

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

요약과 해설

raydium_i2c_ts.txt:1-19

두 power rail과 falling-edge IRQ를 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Raydium I2C touchscreen
2
3 Required properties:
4 - compatible: must be "raydium,rm32380"
5 - reg: The I2C address of the device
6 - interrupts: interrupt to which the chip is connected
7 See ../interrupt-controller/interrupts.txt
8 Optional properties:
9 - avdd-supply: analog power supply needed to power device
10 - vccio-supply: IO Power source
11 - reset-gpios: reset gpio the chip is connected to.
12
13 Example:
14 touchscreen@39 {
15 compatible = "raydium,rm32380";
16 reg = <0x39>;
17 interrupt-parent = <&gpio>;
18 interrupts = <0x0 IRQ_TYPE_EDGE_FALLING>;
19 };
20

3. 한국어 전문 번역

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

Raydium RM32380 속성

1-12

Raydium I2C touchscreen의 필수 `compatible`은 `raydium,rm32380`, `reg`는 device I2C address, `interrupts`는 chip이 연결된 interrupt이며 `../interrupt-controller/interrupts.txt`를 참조합니다. 선택 `avdd-supply`는 analog power, `vccio-supply`는 I/O power source, `reset-gpios`는 chip reset GPIO입니다.

Raydium touchscreen resources
avdd-supplyAnalog domain
vccio-supplyI/O domain
reset-gpiosController reset
RM32380 at 0x39Falling-edge touch IRQ

두 power rail과 reset/interrupt가 I2C touch controller를 지원합니다.

RM32380 address 0x39 예제

13-19

예제 touchscreen은 I2C address `0x39`에서 GPIO parent의 pin 0 falling-edge interrupt를 사용합니다.

touchscreen@39 {
        compatible = "raydium,rm32380";
        reg = <0x39>;
        interrupt-parent = <&gpio>;
        interrupts = <0x0 IRQ_TYPE_EDGE_FALLING>;
};