요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
Coherency fabric
----------------
Available on Marvell SOCs: Armada 370, Armada 375, Armada 38x and Armada XP
Required properties:
- compatible: the possible values are:
* "marvell,coherency-fabric", to be used for the coherency fabric of
the Armada 370 and Armada XP.
* "marvell,armada-375-coherency-fabric", for the Armada 375 coherency
fabric.
* "marvell,armada-380-coherency-fabric", for the Armada 38x coherency
fabric.
- reg: Should contain coherency fabric registers location and
length.
* For "marvell,coherency-fabric", the first pair for the coherency
fabric registers, second pair for the per-CPU fabric registers.
* For "marvell,armada-375-coherency-fabric", only one pair is needed
for the per-CPU fabric registers.
* For "marvell,armada-380-coherency-fabric", only one pair is needed
for the per-CPU fabric registers.
Optional properties:
- broken-idle: boolean to set when the Idle mode is not supported by the
hardware.
Examples:
coherency-fabric@d0020200 {
compatible = "marvell,coherency-fabric";
reg = <0xd0020200 0xb0>,
<0xd0021810 0x1c>;
};
coherency-fabric@21810 {
compatible = "marvell,armada-375-coherency-fabric";
reg = <0x21810 0x1c>;
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Marvell coherency fabric
1-48Coherency 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>;
};
SoC family별 compatible 및 register pair 수를 비교합니다.
요약과 해설
coherency-fabric.txt:1-48Armada 370/XP는 fabric과 per-CPU register pair 두 개를 사용하고 375/38x는 per-CPU pair 하나만 사용합니다.