요약·해설과 원문, 전문 번역을 서로 분리했습니다. 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/watchdog/cnxt,cx92755-wdt.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Conexant Digicolor SoCs Watchdog timer
description: |
The watchdog functionality in Conexant Digicolor SoCs relies on the so called
"Agent Communication" block. This block includes the eight programmable system
timer counters. The first timer (called "Timer A") is the only one that can be
used as watchdog.
maintainers:
- Baruch Siach <baruch@tkos.co.il>
allOf:
- $ref: watchdog.yaml#
properties:
compatible:
const: cnxt,cx92755-wdt
reg:
maxItems: 1
clocks:
maxItems: 1
required:
- compatible
- reg
- clocks
unevaluatedProperties: false
examples:
- |
watchdog@f0000fc0 {
compatible = "cnxt,cx92755-wdt";
reg = <0xf0000fc0 0x8>;
clocks = <&main_clk>;
timeout-sec = <15>;
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Conexant Digicolor 워치독
1-17GPL-2.0-only 또는 BSD-2-Clause로 배포되는 이 스키마는 Conexant Digicolor SoC 워치독을 정의합니다. 워치독 기능은 `Agent Communication` block에 의존합니다. 이 block에는 programmable system timer counter가 8개 있지만, 첫 timer인 `Timer A`만 워치독으로 사용할 수 있습니다. 관리자는 Baruch Siach입니다.
Timer A 레지스터와 클록
18-37공통 `watchdog.yaml`을 상속하고 `compatible`은 `cnxt,cx92755-wdt`로 고정합니다. `reg`와 `clocks`는 각각 최대 하나이며 `compatible`, `reg`, `clocks`가 모두 필수입니다. 평가되지 않은 추가 속성은 허용하지 않습니다.
allOf:
- $ref: watchdog.yaml#
properties:
compatible:
const: cnxt,cx92755-wdt
reg:
maxItems: 1
clocks:
maxItems: 1
required:
- compatible
- reg
- clocks
unevaluatedProperties: false
Digicolor Timer A 예제
38-45예제는 주소 `0xf0000fc0`, 길이 `0x8`인 워치독에 `main_clk`를 연결하고 timeout을 15초로 설정합니다.
examples:
- |
watchdog@f0000fc0 {
compatible = "cnxt,cx92755-wdt";
reg = <0xf0000fc0 0x8>;
clocks = <&main_clk>;
timeout-sec = <15>;
};
요약과 해설
cnxt,cx92755-wdt.yaml:1-45Digicolor Agent Communication block의 Timer A 워치독과 필수 클록을 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며, compatible, register, clock, interrupt, reset, 예제와 원문 줄 좌표를 원형대로 보존합니다.