요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/cnxt,cx92755-timer.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Conexant Digicolor SoCs Timer Controller
maintainers:
- Baruch Siach <baruch@tkos.co.il>
properties:
compatible:
const: cnxt,cx92755-timer
reg:
maxItems: 1
interrupts:
description: Contains 8 interrupts, one for each timer
items:
- description: interrupt for timer 0
- description: interrupt for timer 1
- description: interrupt for timer 2
- description: interrupt for timer 3
- description: interrupt for timer 4
- description: interrupt for timer 5
- description: interrupt for timer 6
- description: interrupt for timer 7
clocks:
maxItems: 1
required:
- compatible
- reg
- interrupts
- clocks
additionalProperties: false
examples:
- |
timer@f0000fc0 {
compatible = "cnxt,cx92755-timer";
reg = <0xf0000fc0 0x40>;
interrupts = <19>, <31>, <34>, <35>, <52>, <53>, <54>, <55>;
clocks = <&main_clk>;
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Conexant Digicolor timer controller
1-11GPL-2.0-only 또는 BSD-2-Clause 라이선스의 이 스키마는 Conexant Digicolor SoC Timer Controller를 정의합니다. Maintainer는 Baruch Siach입니다.
Timer 0~7의 여덟 interrupt
12-41`compatible`은 `cnxt,cx92755-timer`, `reg`와 `clocks`는 각각 최대 한 항목입니다. `interrupts`는 timer 0부터 timer 7까지 각 timer에 하나씩 총 8개를 순서대로 담습니다. `compatible`, `reg`, `interrupts`, `clocks`가 모두 필수이고 추가 속성은 허용되지 않습니다.
properties:
compatible:
const: cnxt,cx92755-timer
reg:
maxItems: 1
interrupts:
description: Contains 8 interrupts, one for each timer
items:
- description: interrupt for timer 0
- description: interrupt for timer 1
- description: interrupt for timer 2
- description: interrupt for timer 3
- description: interrupt for timer 4
- description: interrupt for timer 5
- description: interrupt for timer 6
- description: interrupt for timer 7
clocks:
maxItems: 1
required:
- compatible
- reg
- interrupts
- clocks
additionalProperties: false
Digicolor 여덟 timer IRQ 예제
42-49예제는 `timer@f0000fc0`에 0x40-byte register 영역과 interrupt 19, 31, 34, 35, 52, 53, 54, 55를 지정하고 `main_clk`을 연결합니다.
- |
timer@f0000fc0 {
compatible = "cnxt,cx92755-timer";
reg = <0xf0000fc0 0x40>;
interrupts = <19>, <31>, <34>, <35>, <52>, <53>, <54>, <55>;
clocks = <&main_clk>;
};
요약과 해설
cnxt,cx92755-timer.yaml:1-49Digicolor timer 0~7의 여덟 interrupt와 clock 구성을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며 compatible, interrupt, clock, register, phandle, 수치와 줄 좌표를 원형대로 보존합니다.