← Documents Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Timer

Intel IXP4xx XScale Timers

Intel IXP4xx timer의 Timer 1·2 interrupt 구성을 설명합니다.

Source pathDocumentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

intel,ixp4xx-timer.yaml:1-43

Intel IXP4xx timer의 Timer 1·2 interrupt 구성을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며 compatible, interrupt, clock, register, phandle, 수치와 줄 좌표를 원형대로 보존합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2 # Copyright 2018 Linaro Ltd.
3 %YAML 1.2
4 ---
5 $id: http://devicetree.org/schemas/timer/intel,ixp4xx-timer.yaml#
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
7
8 title: Intel IXP4xx XScale Networking Processors Timers
9
10 maintainers:
11 - Linus Walleij <[email protected]>
12
13 description: This timer is found in the Intel IXP4xx processors.
14
15 properties:
16 compatible:
17 items:
18 - const: intel,ixp4xx-timer
19
20 reg:
21 maxItems: 1
22
23 interrupts:
24 minItems: 1
25 items:
26 - description: Timer 1 interrupt
27 - description: Timer 2 interrupt
28
29 required:
30 - compatible
31 - reg
32 - interrupts
33
34 additionalProperties: false
35
36 examples:
37 - |
38 #include <dt-bindings/interrupt-controller/irq.h>
39 timer@c8005000 {
40 compatible = "intel,ixp4xx-timer";
41 reg = <0xc8005000 0x100>;
42 interrupts = <5 IRQ_TYPE_LEVEL_HIGH>;
43 };
44

3. 한국어 전문 번역

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

Intel IXP4xx timer

1-14

GPL-2.0 또는 BSD-2-Clause 라이선스의 이 스키마는 Intel IXP4xx XScale networking processor에 탑재된 timer를 정의합니다. 저작권은 2018 Linaro Ltd.에 있으며 Maintainer는 Linus Walleij입니다.

Timer 1·2 interrupt

15-35

`compatible`은 `intel,ixp4xx-timer`이고 `reg`는 최대 한 항목입니다. `interrupts`는 최소 하나이며 Timer 1 interrupt와 선택적인 Timer 2 interrupt를 순서대로 담습니다. `compatible`, `reg`, `interrupts`가 모두 필수이고 추가 속성은 허용되지 않습니다.

properties:
  compatible:
    items:
      - const: intel,ixp4xx-timer

  reg:
    maxItems: 1

  interrupts:
    minItems: 1
    items:
      - description: Timer 1 interrupt
      - description: Timer 2 interrupt

required:
  - compatible
  - reg
  - interrupts

additionalProperties: false

IXP4xx level-high IRQ 예제

36-43

예제는 `timer@c8005000`에 0x100-byte register 영역을 두고 Timer 1에 interrupt 5를 level-high 방식으로 지정합니다.

examples:
  - |
    #include <dt-bindings/interrupt-controller/irq.h>
    timer@c8005000 {
        compatible = "intel,ixp4xx-timer";
        reg = <0xc8005000 0x100>;
        interrupts = <5 IRQ_TYPE_LEVEL_HIGH>;
    };