요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
* Kirkwood Thermal
3
This version is for Kirkwood 88F8262 & 88F6283 SoCs. Other kirkwoods
4
don't contain a thermal sensor.
6
Required properties:
7
- compatible : "marvell,kirkwood-thermal"
8
- reg : Address range of the thermal registers
10
Example:
12
thermal@10078 {
13
compatible = "marvell,kirkwood-thermal";
14
reg = <0x10078 0x4>;
15
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Kirkwood Thermal
1-5이 legacy binding은 thermal sensor를 포함한 Kirkwood 88F8262와 88F6283 SoC용입니다. 다른 Kirkwood SoC에는 thermal sensor가 없습니다.
필수 속성
6-9필수 `compatible`은 `marvell,kirkwood-thermal`이고 `reg`는 thermal register의 주소 범위입니다.
Kirkwood register 예제
10-15예제의 `thermal@10078` node는 0x10078에서 시작하는 4-byte thermal register 범위를 매핑합니다.
thermal@10078 {
compatible = "marvell,kirkwood-thermal";
reg = <0x10078 0x4>;
};
요약과 해설
kirkwood-thermal.txt:1-15Kirkwood 88F8262·88F6283 thermal register binding을 설명합니다. 접을 수 있는 영어 원문 전체는 줄 좌표를 보존하고, 한국어 전문 번역에서는 compatible·property·phandle·register·interrupt·수치·예제 코드를 원형대로 유지합니다.