요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
Texas Instruments OMAP2 Display Subsystem
=========================================
See Documentation/devicetree/bindings/display/ti/ti,omap-dss.txt for generic
description about OMAP Display Subsystem bindings.
DSS Core
--------
Required properties:
- compatible: "ti,omap2-dss"
- reg: address and length of the register space
- ti,hwmods: "dss_core"
Optional nodes:
- Video port for DPI output
DPI Endpoint required properties:
- data-lines: number of lines used
DISPC
-----
Required properties:
- compatible: "ti,omap2-dispc"
- reg: address and length of the register space
- ti,hwmods: "dss_dispc"
- interrupts: the DISPC interrupt
Optional properties:
- max-memory-bandwidth: Input memory (from main memory to dispc) bandwidth limit
in bytes per second
RFBI
----
Required properties:
- compatible: "ti,omap2-rfbi"
- reg: address and length of the register space
- ti,hwmods: "dss_rfbi"
VENC
----
Required properties:
- compatible: "ti,omap2-venc"
- reg: address and length of the register space
- ti,hwmods: "dss_venc"
- vdda-supply: power supply for DAC
VENC Endpoint required properties:
Required properties:
- ti,invert-polarity: invert the polarity of the video signal
- ti,channels: 1 for composite, 2 for s-video
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
OMAP2 DSS core와 DPI
1-21Texas 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 수를 나타냅니다.
Core와 세 submodule 및 output endpoint를 정리합니다.
OMAP2 DISPC
22-35DISPC의 필수 `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-44RFBI block의 필수 `compatible`은 `ti,omap2-rfbi`, `reg`는 register space의 address와 length, `ti,hwmods`는 `dss_rfbi`입니다.
OMAP2 VENC와 analog channel
45-58VENC의 필수 `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를 뜻합니다.
요약과 해설
ti,omap2-dss.txt:1-58DPI output과 composite/S-video VENC endpoint 구성을 설명합니다.