← Documents Documentation/devicetree/bindings/timer/ralink,rt2880-timer.yaml GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings / Timer

Ralink RT2880 Timer

Ralink RT2880 timer의 clock·register·interrupt 구성을 설명합니다.

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

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

1. 요약·해설

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

2. 영어 원문 전체

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

원문 전체 펼치기
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/timer/ralink,rt2880-timer.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
6
7 title: Timer present in Ralink family SoCs
8
9 maintainers:
10 - Sergio Paracuellos <sergio.paracuellos@gmail.com>
11
12 properties:
13 compatible:
14 const: ralink,rt2880-timer
15
16 reg:
17 maxItems: 1
18
19 clocks:
20 maxItems: 1
21
22 interrupts:
23 maxItems: 1
24
25 required:
26 - compatible
27 - reg
28 - clocks
29 - interrupts
30
31 additionalProperties: false
32
33 examples:
34 - |
35 timer@100 {
36 compatible = "ralink,rt2880-timer";
37 reg = <0x100 0x20>;
38
39 clocks = <&sysc 3>;
40
41 interrupt-parent = <&intc>;
42 interrupts = <1>;
43 };
44 ...
45

3. 한국어 전문 번역

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