← Documents Documentation/devicetree/bindings/bus/ti,da850-mstpri.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

TI DA850 master priority

DA8xx master peripheral priority register block의 최소 바인딩입니다.

Source pathDocumentation/devicetree/bindings/bus/ti,da850-mstpri.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

ti,da850-mstpri.txt:1-20

Master로 분류된 peripheral의 priority를 변경하는 register offset과 길이를 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 * Device tree bindings for Texas Instruments da8xx master peripheral
2 priority driver
3
4 DA8XX SoCs feature a set of registers allowing to change the priority of all
5 peripherals classified as masters.
6
7 Documentation:
8 OMAP-L138 (DA850) - http://www.ti.com/lit/ug/spruh82c/spruh82c.pdf
9
10 Required properties:
11
12 - compatible: "ti,da850-mstpri" - for da850 based boards
13 - reg: offset and length of the mstpri registers
14
15 Example for da850-lcdk is shown below.
16
17 mstpri {
18 compatible = "ti,da850-mstpri";
19 reg = <0x14110 0x0c>;
20 };
21

3. 한국어 전문 번역

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

DA8xx master peripheral priority

1-15

Texas Instruments DA8xx master peripheral priority driver의 Device Tree 바인딩

DA8XX SoC에는 master로 분류된 모든 peripheral의 priority를 변경할 수 있는 register 집합이 있습니다.

OMAP-L138(DA850) 문서는 `http://www.ti.com/lit/ug/spruh82c/spruh82c.pdf`에서 확인할 수 있습니다.

DA850 기반 보드의 필수 `compatible`은 `ti,da850-mstpri`입니다. `reg`에는 mstpri register의 offset과 length를 지정합니다.

DA850 mstpri 필수 속성
속성
compatibleti,da850-mstpri
regmstpri register offset + length

Master priority register block의 최소 노드 구성입니다.

DA850 LCDK 예

16-20

DA850 LCDK 예제는 0x14110 offset의 0x0c 바이트 priority register 영역을 지정합니다.

mstpri {
        compatible = "ti,da850-mstpri";
        reg = <0x14110 0x0c>;
};