← Documents Documentation/devicetree/bindings/arm/marvell/coherency-fabric.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

Marvell coherency fabric

Armada family별 coherency fabric compatible, register pair layout과 broken-idle을 설명합니다.

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

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

1. 요약·해설

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

요약과 해설

coherency-fabric.txt:1-48

Armada 370/XP는 fabric과 per-CPU register pair 두 개를 사용하고 375/38x는 per-CPU pair 하나만 사용합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Coherency fabric
2 ----------------
3 Available on Marvell SOCs: Armada 370, Armada 375, Armada 38x and Armada XP
4
5 Required properties:
6
7 - compatible: the possible values are:
8
9 * "marvell,coherency-fabric", to be used for the coherency fabric of
10 the Armada 370 and Armada XP.
11
12 * "marvell,armada-375-coherency-fabric", for the Armada 375 coherency
13 fabric.
14
15 * "marvell,armada-380-coherency-fabric", for the Armada 38x coherency
16 fabric.
17
18 - reg: Should contain coherency fabric registers location and
19 length.
20
21 * For "marvell,coherency-fabric", the first pair for the coherency
22 fabric registers, second pair for the per-CPU fabric registers.
23
24 * For "marvell,armada-375-coherency-fabric", only one pair is needed
25 for the per-CPU fabric registers.
26
27 * For "marvell,armada-380-coherency-fabric", only one pair is needed
28 for the per-CPU fabric registers.
29
30 Optional properties:
31
32 - broken-idle: boolean to set when the Idle mode is not supported by the
33 hardware.
34
35 Examples:
36
37 coherency-fabric@d0020200 {
38 compatible = "marvell,coherency-fabric";
39 reg = <0xd0020200 0xb0>,
40 <0xd0021810 0x1c>;
41
42 };
43
44 coherency-fabric@21810 {
45 compatible = "marvell,armada-375-coherency-fabric";
46 reg = <0x21810 0x1c>;
47 };
48
49

3. 한국어 전문 번역

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

Marvell coherency fabric

1-48

Coherency fabric

이 fabric은 Marvell Armada 370, Armada 375, Armada 38x 및 Armada XP SoC에서 사용할 수 있습니다.

Armada 370과 Armada XP는 `marvell,coherency-fabric`, Armada 375는 `marvell,armada-375-coherency-fabric`, Armada 38x는 `marvell,armada-380-coherency-fabric`을 사용합니다.

`reg`에는 coherency fabric register 위치와 길이가 들어갑니다. `marvell,coherency-fabric`은 첫 pair에 coherency fabric register, 두 번째 pair에 per-CPU fabric register를 둡니다. Armada 375 및 Armada 38x 전용 compatible은 per-CPU fabric register pair 하나만 필요합니다.

Optional boolean `broken-idle`은 hardware가 Idle mode를 지원하지 않을 때 설정합니다.

Armada 370/XP와 Armada 375 node 예

coherency-fabric@d0020200 {
        compatible = "marvell,coherency-fabric";
        reg = <0xd0020200 0xb0>,
                <0xd0021810 0x1c>;

};

coherency-fabric@21810 {
        compatible = "marvell,armada-375-coherency-fabric";
        reg = <0x21810 0x1c>;
};
Coherency fabric compatible과 reg layout
SoCCompatiblereg layout
Armada 370 / XPmarvell,coherency-fabricFabric pair + per-CPU pair
Armada 375marvell,armada-375-coherency-fabricper-CPU pair 1개
Armada 38xmarvell,armada-380-coherency-fabricper-CPU pair 1개

SoC family별 compatible 및 register pair 수를 비교합니다.