요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
* Broadcom Digital Timing Engine(DTE) based PTP clock
3
Required properties:
4
- compatible: should contain the core compatibility string
5
and the SoC compatibility string. The SoC
6
compatibility string is to handle SoC specific
7
hardware differences.
8
Core compatibility string:
9
"brcm,ptp-dte"
10
SoC compatibility strings:
11
"brcm,iproc-ptp-dte" - for iproc based SoC's
12
- reg: address and length of the DTE block's NCO registers
14
Example:
16
ptp: ptp-dte@180af650 {
17
compatible = "brcm,iproc-ptp-dte", "brcm,ptp-dte";
18
reg = <0x180af650 0x10>;
19
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Broadcom DTE PTP clock
1-13Broadcom Digital Timing Engine(DTE) 기반 PTP clock의 `compatible`에는 core string `brcm,ptp-dte`와 SoC별 hardware 차이용 string이 모두 들어갑니다. iProc SoC는 `brcm,iproc-ptp-dte`를 사용합니다. `reg`는 DTE block NCO register의 address와 length입니다.
iProc DTE 예제
14-19예제는 0x180af650에 0x10-byte NCO register block을 선언합니다.
ptp: ptp-dte@180af650 {
compatible = "brcm,iproc-ptp-dte", "brcm,ptp-dte";
reg = <0x180af650 0x10>;
};
요약과 해설
brcm,ptp-dte.txt:1-19iProc DTE register 예제를 설명합니다.