요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
PXA3xx GCU Controller
2
---------------------
4
Required properties:
5
- compatible : "marvell,pxa300-gcu"
6
- reg : should contain the register range (address and length).
7
- interrupts : Controller interrupt.
8
- clocks: phandle to the PXA specific input clock.
10
Example for PXA300:
12
display-controller@54000000 {
13
compatible = "marvell,pxa300-gcu";
14
reg = <0x54000000 0x1000>;
15
interrupts = <39>;
16
clocks = <&clks CLK_PXA300_GCU>;
17
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
PXA3xx GCU controller 자원
1-9PXA3xx GCU Controller 바인딩입니다. 필수 `compatible` 값은 `marvell,pxa300-gcu`입니다. `reg`는 controller register의 address와 length, `interrupts`는 controller interrupt, `clocks`는 PXA 전용 input clock의 phandle을 지정합니다.
속성값 또는 역할
compatiblemarvell,pxa300-gcu
regRegister address and length
interruptsController interrupt
clocksPXA-specific input clock
GCU를 식별하고 MMIO, interrupt와 PXA clock을 연결합니다.
PXA300 GCU 예제
10-17PXA300 예제는 `0x54000000`에서 0x1000 byte register 영역, interrupt 39와 `CLK_PXA300_GCU` clock을 사용합니다.
display-controller@54000000 {
compatible = "marvell,pxa300-gcu";
reg = <0x54000000 0x1000>;
interrupts = <39>;
clocks = <&clks CLK_PXA300_GCU>;
};
요약과 해설
marvell,pxa300-gcu.txt:1-17PXA300 GCU의 네 필수 속성과 예제 자원을 설명합니다.