요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
Freescale Supplement configuration unit (SCFG)
3
SCFG is the supplemental configuration unit, that provides SoC specific
4
configuration and status registers for the chip. Such as getting PEX port
5
status.
7
Required properties:
9
- compatible: should be "fsl,<chip>-scfg"
10
- reg: should contain base address and length of SCFG memory-mapped
11
registers
13
Example:
15
scfg: global-utilities@fc000 {
16
compatible = "fsl,t1040-scfg";
17
reg = <0xfc000 0x1000>;
18
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Supplemental Configuration Unit
1-12Freescale Supplemental Configuration Unit(SCFG)은 PEX port status 조회 같은 chip별 configuration과 status register를 제공하는 unit입니다.
필수 `compatible`은 `fsl,<chip>-scfg` 형식입니다. 필수 `reg`는 SCFG memory-mapped register의 base address와 length를 포함해야 합니다.
T1040 SCFG 예제
13-18예제는 T1040 SCFG를 0xfc000에 위치한 0x1000-byte `global-utilities` register block으로 선언합니다.
scfg: global-utilities@fc000 {
compatible = "fsl,t1040-scfg";
reg = <0xfc000 0x1000>;
};
요약과 해설
scfg.txt:1-18Chip별 compatible과 memory-mapped register 범위를 T1040 예제로 보여 줍니다.