요약·해설과 원문, 전문 번역을 서로 분리했습니다. 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,cevt-systick.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
7
title: System tick counter present in Ralink family SoCs
9
maintainers:
10
- Sergio Paracuellos <[email protected]>
12
properties:
13
compatible:
14
const: ralink,cevt-systick
16
reg:
17
maxItems: 1
19
interrupts:
20
maxItems: 1
22
required:
23
- compatible
24
- reg
25
- interrupts
27
additionalProperties: false
29
examples:
30
- |
31
systick@d00 {
32
compatible = "ralink,cevt-systick";
33
reg = <0xd00 0x10>;
35
interrupt-parent = <&cpuintc>;
36
interrupts = <7>;
37
};
38
...
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Ralink system tick counter
1-11GPL-2.0-only 또는 BSD-2-Clause 라이선스의 이 스키마는 Ralink 계열 SoC에 있는 system tick counter를 정의합니다. Maintainer는 Sergio Paracuellos입니다.
System tick 속성
12-28`compatible`은 `ralink,cevt-systick`입니다. `reg`와 `interrupts`는 각각 최대 한 항목이며 세 속성이 모두 필수입니다. 추가 속성은 허용되지 않습니다.
properties:
compatible:
const: ralink,cevt-systick
reg:
maxItems: 1
interrupts:
maxItems: 1
required:
- compatible
- reg
- interrupts
additionalProperties: false
Ralink systick 예제
29-38예제는 `systick@d00`에 0x10-byte register 영역을 두고 `cpuintc`를 interrupt parent로 사용해 interrupt 7을 연결합니다.
examples:
- |
systick@d00 {
compatible = "ralink,cevt-systick";
reg = <0xd00 0x10>;
interrupt-parent = <&cpuintc>;
interrupts = <7>;
};
...
요약과 해설
ralink,cevt-systick.yaml:1-38Ralink system tick counter의 register와 interrupt 구성을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며 compatible, interrupt, clock, register, phandle, 수치와 줄 좌표를 원형대로 보존합니다.