요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
* Microsemi MIPS CPUs
Boards with a SoC of the Microsemi MIPS family shall have the following
properties:
Required properties:
- compatible: "mscc,ocelot", "mscc,luton", "mscc,serval" or "mscc,jr2"
* Other peripherals:
o CPU chip regs:
The SoC has a few registers (DEVCPU_GCB:CHIP_REGS) handling miscellaneous
functionalities: chip ID, general purpose register for software use, reset
controller, hardware status and configuration, efuses.
Required properties:
- compatible: Should be "mscc,ocelot-chip-regs", "simple-mfd", "syscon"
- reg : Should contain registers location and length
Example:
syscon@71070000 {
compatible = "mscc,ocelot-chip-regs", "simple-mfd", "syscon";
reg = <0x71070000 0x1c>;
};
o HSIO regs:
The SoC has a few registers (HSIO) handling miscellaneous functionalities:
configuration and status of PLL5, RCOMP, SyncE, SerDes configurations and
status, SerDes muxing and a thermal sensor.
Required properties:
- compatible: Should be "mscc,ocelot-hsio", "syscon", "simple-mfd"
- reg : Should contain registers location and length
Example:
syscon@10d0000 {
compatible = "mscc,ocelot-hsio", "syscon", "simple-mfd";
reg = <0x10d0000 0x10000>;
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Microsemi MIPS SoC root
1-9Microsemi MIPS 계열 SoC board의 root `compatible`은 `mscc,ocelot`, `mscc,luton`, `mscc,serval`, `mscc,jr2` 중 하나입니다.
지원되는 네 SoC 계열입니다.
CPU chip register syscon
10-27DEVCPU_GCB:CHIP_REGS는 chip ID, software용 general-purpose register, reset controller, hardware status와 configuration, eFuse를 처리하는 잡다한 register 집합입니다.
`compatible`은 `mscc,ocelot-chip-regs`, `simple-mfd`, `syscon`이고 `reg`는 register 위치와 길이입니다.
두 syscon block이 담당하는 기능을 구분합니다.
syscon@71070000 {
compatible = "mscc,ocelot-chip-regs", "simple-mfd", "syscon";
reg = <0x71070000 0x1c>;
};
HSIO register syscon
28-42HSIO register는 PLL5, RCOMP, SyncE의 configuration과 status, SerDes configuration·status·muxing, thermal sensor를 처리합니다.
`compatible`은 `mscc,ocelot-hsio`, `syscon`, `simple-mfd`이고 `reg`는 register 위치와 길이입니다. 예제 범위는 `0x10d0000`에서 `0x10000` bytes입니다.
syscon@10d0000 {
compatible = "mscc,ocelot-hsio", "syscon", "simple-mfd";
reg = <0x10d0000 0x10000>;
};
요약과 해설
mscc.txt:1-42Ocelot 계열 root, chip control과 SerDes·thermal 기능을 설명합니다.