← Documents Documentation/devicetree/bindings/display/ti/ti,omap2-dss.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

TI OMAP2 Display Subsystem

OMAP2 DSS core, DISPC, RFBI와 analog VENC 바인딩입니다.

Source pathDocumentation/devicetree/bindings/display/ti/ti,omap2-dss.txt
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

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

1. 요약·해설

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

요약과 해설

ti,omap2-dss.txt:1-58

DPI output과 composite/S-video VENC endpoint 구성을 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 Texas Instruments OMAP2 Display Subsystem
2 =========================================
3
4 See Documentation/devicetree/bindings/display/ti/ti,omap-dss.txt for generic
5 description about OMAP Display Subsystem bindings.
6
7 DSS Core
8 --------
9
10 Required properties:
11 - compatible: "ti,omap2-dss"
12 - reg: address and length of the register space
13 - ti,hwmods: "dss_core"
14
15 Optional nodes:
16 - Video port for DPI output
17
18 DPI Endpoint required properties:
19 - data-lines: number of lines used
20
21
22 DISPC
23 -----
24
25 Required properties:
26 - compatible: "ti,omap2-dispc"
27 - reg: address and length of the register space
28 - ti,hwmods: "dss_dispc"
29 - interrupts: the DISPC interrupt
30
31 Optional properties:
32 - max-memory-bandwidth: Input memory (from main memory to dispc) bandwidth limit
33 in bytes per second
34
35
36 RFBI
37 ----
38
39 Required properties:
40 - compatible: "ti,omap2-rfbi"
41 - reg: address and length of the register space
42 - ti,hwmods: "dss_rfbi"
43
44
45 VENC
46 ----
47
48 Required properties:
49 - compatible: "ti,omap2-venc"
50 - reg: address and length of the register space
51 - ti,hwmods: "dss_venc"
52 - vdda-supply: power supply for DAC
53
54 VENC Endpoint required properties:
55
56 Required properties:
57 - ti,invert-polarity: invert the polarity of the video signal
58 - ti,channels: 1 for composite, 2 for s-video
59

3. 한국어 전문 번역

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

OMAP2 DSS core와 DPI

1-21

Texas Instruments OMAP2 Display Subsystem 바인딩입니다. OMAP DSS의 공통 설명은 `Documentation/devicetree/bindings/display/ti/ti,omap-dss.txt`를 참조합니다.

DSS core의 필수 `compatible`은 `ti,omap2-dss`, `reg`는 register space의 address와 length, `ti,hwmods`는 `dss_core`입니다.

DPI output용 video port는 선택 node입니다. DPI endpoint의 필수 `data-lines`는 사용하는 line 수를 나타냅니다.

OMAP2 DSS block
Blockcompatible주요 자원
DSS coreti,omap2-dssreg, dss_core, optional DPI
DISPCti,omap2-dispcreg, IRQ, bandwidth
RFBIti,omap2-rfbireg, dss_rfbi
VENCti,omap2-vencreg, DAC supply, endpoint

Core와 세 submodule 및 output endpoint를 정리합니다.

OMAP2 DISPC

22-35

DISPC의 필수 `compatible`은 `ti,omap2-dispc`, `reg`는 register space, `ti,hwmods`는 `dss_dispc`, `interrupts`는 DISPC interrupt입니다.

선택 `max-memory-bandwidth`는 main memory에서 DISPC로 들어오는 input memory bandwidth limit를 byte per second 단위로 지정합니다.

OMAP2 RFBI

36-44

RFBI block의 필수 `compatible`은 `ti,omap2-rfbi`, `reg`는 register space의 address와 length, `ti,hwmods`는 `dss_rfbi`입니다.

OMAP2 VENC와 analog channel

45-58

VENC의 필수 `compatible`은 `ti,omap2-venc`, `reg`는 register space, `ti,hwmods`는 `dss_venc`, `vdda-supply`는 DAC power supply입니다.

VENC endpoint에는 video signal polarity를 반전하는 `ti,invert-polarity`와 channel 형식을 정하는 `ti,channels`가 필요합니다. `ti,channels = <1>`은 composite, `<2>`는 S-video를 뜻합니다.