← Documents Documentation/devicetree/bindings/mips/mscc.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

Microsemi MIPS SoCs

Microsemi MIPS root와 CHIP_REGS·HSIO syscon 바인딩입니다.

Source pathDocumentation/devicetree/bindings/mips/mscc.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

mscc.txt:1-42

Ocelot 계열 root, chip control과 SerDes·thermal 기능을 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 * Microsemi MIPS CPUs
2
3 Boards with a SoC of the Microsemi MIPS family shall have the following
4 properties:
5
6 Required properties:
7 - compatible: "mscc,ocelot", "mscc,luton", "mscc,serval" or "mscc,jr2"
8
9
10 * Other peripherals:
11
12 o CPU chip regs:
13
14 The SoC has a few registers (DEVCPU_GCB:CHIP_REGS) handling miscellaneous
15 functionalities: chip ID, general purpose register for software use, reset
16 controller, hardware status and configuration, efuses.
17
18 Required properties:
19 - compatible: Should be "mscc,ocelot-chip-regs", "simple-mfd", "syscon"
20 - reg : Should contain registers location and length
21
22 Example:
23 syscon@71070000 {
24 compatible = "mscc,ocelot-chip-regs", "simple-mfd", "syscon";
25 reg = <0x71070000 0x1c>;
26 };
27
28 o HSIO regs:
29
30 The SoC has a few registers (HSIO) handling miscellaneous functionalities:
31 configuration and status of PLL5, RCOMP, SyncE, SerDes configurations and
32 status, SerDes muxing and a thermal sensor.
33
34 Required properties:
35 - compatible: Should be "mscc,ocelot-hsio", "syscon", "simple-mfd"
36 - reg : Should contain registers location and length
37
38 Example:
39 syscon@10d0000 {
40 compatible = "mscc,ocelot-hsio", "syscon", "simple-mfd";
41 reg = <0x10d0000 0x10000>;
42 };
43

3. 한국어 전문 번역

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

Microsemi MIPS SoC root

1-9

Microsemi MIPS 계열 SoC board의 root `compatible`은 `mscc,ocelot`, `mscc,luton`, `mscc,serval`, `mscc,jr2` 중 하나입니다.

Microsemi MIPS root compatible
SoC호환 문자열
Ocelotmscc,ocelot
Lutonmscc,luton
Servalmscc,serval
Jaguar2mscc,jr2

지원되는 네 SoC 계열입니다.

CPU chip register syscon

10-27

DEVCPU_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 위치와 길이입니다.

Microsemi shared register 기능
Block기능
CHIP_REGSChip ID, software GPR, reset, status/configuration, eFuses
HSIOPLL5, RCOMP, SyncE, SerDes, muxing, thermal sensor

두 syscon block이 담당하는 기능을 구분합니다.

syscon@71070000 {
        compatible = "mscc,ocelot-chip-regs", "simple-mfd", "syscon";
        reg = <0x71070000 0x1c>;
};

HSIO register syscon

28-42

HSIO 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>;
};