← Documents Documentation/devicetree/bindings/serio/snps-arc_ps2.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Serio

Synopsys ARC PS/2

ARC PS/2 block의 register와 interrupt 이름을 설명합니다.

Source pathDocumentation/devicetree/bindings/serio/snps-arc_ps2.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

snps-arc_ps2.txt:1-16

바인딩의 하드웨어 모델과 속성 순서를 먼저 해설하고, 접을 수 있는 영어 원문 전체와 원문 줄 좌표를 보존한 한국어 전문 번역을 제공합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 * ARC PS/2 driver: PS/2 block used in some ARC FPGA's & nSIM OSCI model
2
3 Required properties:
4 - compatible : "snps,arc_ps2"
5 - reg : offset and length (always 0x14) of registers
6 - interrupts : interrupt
7 - interrupt-names : name of interrupt, must be "arc_ps2_irq"
8
9 Example:
10
11 serio@c9000400 {
12 compatible = "snps,arc_ps2";
13 reg = <0xc9000400 0x14>;
14 interrupts = <13>;
15 interrupt-names = "arc_ps2_irq";
16 }
17

3. 한국어 전문 번역

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

ARC PS/2 필수 속성

1-7

이 PS/2 block은 일부 ARC FPGA와 nSIM OSCI model에서 사용됩니다. `compatible`은 `snps,arc_ps2`이고 `reg`는 register 오프셋과 항상 0x14인 길이입니다.

`interrupts`는 interrupt를 지정하며 `interrupt-names`는 반드시 `arc_ps2_irq`여야 합니다.

ARC PS/2 예제

8-16

예제는 `0xc9000400`의 0x14바이트 register area와 interrupt 13을 연결합니다.

serio@c9000400 {
        compatible = "snps,arc_ps2";
        reg = <0xc9000400 0x14>;
        interrupts = <13>;
        interrupt-names = "arc_ps2_irq";
}