← Documents Documentation/devicetree/bindings/arm/marvell/mvebu-cpu-config.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

MVEBU CPU Config registers

Armada 370/XP의 per-CPU configuration register binding입니다.

Source pathDocumentation/devicetree/bindings/arm/marvell/mvebu-cpu-config.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

mvebu-cpu-config.txt:1-20

SoC에 맞는 CPU config compatible과 per-CPU register range를 지정합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 MVEBU CPU Config registers
2 --------------------------
3
4 MVEBU (Marvell SOCs: Armada 370/XP)
5
6 Required properties:
7
8 - compatible: one of:
9 - "marvell,armada-370-cpu-config"
10 - "marvell,armada-xp-cpu-config"
11
12 - reg: Should contain CPU config registers location and length, in
13 their per-CPU variant
14
15 Example:
16
17 cpu-config@21000 {
18 compatible = "marvell,armada-xp-cpu-config";
19 reg = <0x21000 0x8>;
20 };
21

3. 한국어 전문 번역

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

MVEBU CPU configuration register

1-20

MVEBU CPU Config register

이 binding은 Marvell Armada 370/XP SoC에 적용됩니다.

`compatible`은 `marvell,armada-370-cpu-config` 또는 `marvell,armada-xp-cpu-config` 중 하나입니다.

`reg`에는 per-CPU variant의 CPU configuration register 위치와 길이가 들어가야 합니다.

cpu-config@21000 {
        compatible = "marvell,armada-xp-cpu-config";
        reg = <0x21000 0x8>;
};