← Documents Documentation/devicetree/bindings/powerpc/fsl/mpc512x_lpbfifo.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

MPC512x LocalPlus Bus FIFO

MPC512x SCLPC register, interrupt와 양방향 DMA binding입니다.

Source pathDocumentation/devicetree/bindings/powerpc/fsl/mpc512x_lpbfifo.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약과 해설

mpc512x_lpbfifo.txt:1-21

LocalPlus Bus FIFO의 SCLPC register와 IRQ를 DMA channel 26 및 `rx-tx` 이름에 연결하는 방법을 설명합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 Freescale MPC512x LocalPlus Bus FIFO (called SCLPC in the Reference Manual)
2
3 Required properties:
4 - compatible: should be "fsl,mpc512x-lpbfifo";
5 - reg: should contain the offset and length of SCLPC register set;
6 - interrupts: should contain the interrupt specifier for SCLPC; syntax of an
7 interrupt client node is described in interrupt-controller/interrupts.txt;
8 - dmas: should contain the DMA specifier for SCLPC as described at
9 dma/dma.txt and dma/mpc512x-dma.txt;
10 - dma-names: should be "rx-tx";
11
12 Example:
13
14 sclpc@10100 {
15 compatible = "fsl,mpc512x-lpbfifo";
16 reg = <0x10100 0x50>;
17 interrupts = <7 0x8>;
18 dmas = <&dma0 26>;
19 dma-names = "rx-tx";
20 };
21
22

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

MPC512x LocalPlus Bus FIFO property

1-11

Freescale MPC512x LocalPlus Bus FIFO는 Reference Manual에서 SCLPC라고 부릅니다. 필수 `compatible`은 `fsl,mpc512x-lpbfifo`이고, `reg`에는 SCLPC register set의 offset과 length를 넣습니다.

필수 `interrupts`에는 SCLPC interrupt specifier를 넣습니다. Interrupt client node 문법은 `interrupt-controller/interrupts.txt`에 설명되어 있습니다.

필수 `dmas`에는 `dma/dma.txt`와 `dma/mpc512x-dma.txt`가 정의한 SCLPC DMA specifier를 넣습니다. 필수 `dma-names` 값은 `rx-tx`여야 합니다.

SCLPC 예제

12-21

예제는 offset 0x10100의 0x50-byte register set, interrupt 7, DMA channel 26과 양방향 `rx-tx` 이름을 선언합니다.

sclpc@10100 {
        compatible = "fsl,mpc512x-lpbfifo";
        reg = <0x10100 0x50>;
        interrupts = <7 0x8>;
        dmas = <&dma0 26>;
        dma-names = "rx-tx";
};