요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
* Marvell PXA1928 Clock Controllers
The PXA1928 clock subsystem generates and supplies clock to various
controllers within the PXA1928 SoC. The PXA1928 contains 3 clock controller
blocks called APMU, MPMU, and APBC roughly corresponding to internal buses.
Required Properties:
- compatible: should be one of the following.
- "marvell,pxa1928-apmu" - APMU controller compatible
- "marvell,pxa1928-mpmu" - MPMU controller compatible
- "marvell,pxa1928-apbc" - APBC controller compatible
- reg: physical base address of the clock controller and length of memory mapped
region.
- #clock-cells: should be 1.
- #reset-cells: should be 1.
Each clock is assigned an identifier and client nodes use the clock controller
phandle and this identifier to specify the clock which they consume.
All these identifiers can be found in <dt-bindings/clock/marvell,pxa1928.h>.
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
PXA1928 clock controllers
1-21Marvell PXA1928 Clock Controllers
PXA1928 clock subsystem은 SoC 안의 여러 controller에 clock을 생성하여 공급합니다. PXA1928에는 internal bus에 대략 대응하는 APMU, MPMU, APBC 세 clock controller block이 있습니다.
필수 `compatible`은 APMU의 `marvell,pxa1928-apmu`, MPMU의 `marvell,pxa1928-mpmu`, APBC의 `marvell,pxa1928-apbc` 중 하나입니다.
`reg`에는 해당 clock controller의 physical base address와 memory-mapped region 길이를 지정합니다. `#clock-cells`와 `#reset-cells`는 모두 1이어야 합니다.
각 clock에는 identifier가 할당되며 client node는 clock controller phandle과 identifier로 소비할 clock을 지정합니다. Identifier는 `<dt-bindings/clock/marvell,pxa1928.h>`에 정의되어 있습니다.
Controller block별 compatible 값을 정리합니다.
요약과 해설
marvell,pxa1928.txt:1-21Controller block별 compatible과 clock identifier 선택을 설명합니다.