← Documents Documentation/devicetree/bindings/power/reset/ocelot-reset.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

Microsemi Ocelot Reset

Ocelot·Luton·Jaguar2·Sparx5 SOFT_RST register binding입니다.

Source pathDocumentation/devicetree/bindings/power/reset/ocelot-reset.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

ocelot-reset.txt:1-19

네 compatible과 4byte reset register 예제를 정리합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Microsemi Ocelot reset controller
2
3 The DEVCPU_GCB:CHIP_REGS have a SOFT_RST register that can be used to reset the
4 SoC core.
5
6 The reset registers are both present in the MSCC vcoreiii MIPS and
7 microchip Sparx5 armv8 SoC's.
8
9 Required Properties:
10
11 - compatible: "mscc,ocelot-chip-reset", "mscc,luton-chip-reset",
12 "mscc,jaguar2-chip-reset" or "microchip,sparx5-chip-reset"
13
14 Example:
15 reset@1070008 {
16 compatible = "mscc,ocelot-chip-reset";
17 reg = <0x1070008 0x4>;
18 };
19
20

3. 한국어 전문 번역

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

Ocelot·Luton·Jaguar2·Sparx5 reset

1-13

`DEVCPU_GCB:CHIP_REGS`에는 SoC core를 reset하는 `SOFT_RST` register가 있습니다. 이 reset register는 MSCC vcoreiii MIPS SoC와 Microchip Sparx5 armv8 SoC 양쪽에 존재합니다.

필수 `compatible`은 다음 네 값 중 하나입니다.

CompatiblePlatform
mscc,ocelot-chip-resetMSCC Ocelot
mscc,luton-chip-resetMSCC Luton
mscc,jaguar2-chip-resetMSCC Jaguar2
microchip,sparx5-chip-resetMicrochip Sparx5

Ocelot SOFT_RST 예제

14-19

Ocelot reset register를 0x1070008에 있는 4byte memory resource로 선언합니다.

reset@1070008 {
        compatible = "mscc,ocelot-chip-reset";
        reg = <0x1070008 0x4>;
};