요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
Texas Instruments OMAP5 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,omap5-dss"
- reg: address and length of the register space
- ti,hwmods: "dss_core"
- clocks: handle to fclk
- clock-names: "fck"
Required nodes:
- DISPC
Optional nodes:
- DSS Submodules: RFBI, DSI, HDMI
- Video port for DPI output
DPI Endpoint required properties:
- data-lines: number of lines used
DISPC
-----
Required properties:
- compatible: "ti,omap5-dispc"
- reg: address and length of the register space
- ti,hwmods: "dss_dispc"
- interrupts: the DISPC interrupt
- clocks: handle to fclk
- clock-names: "fck"
Optional properties:
- max-memory-bandwidth: Input memory (from main memory to dispc) bandwidth limit
in bytes per second
RFBI
----
Required properties:
- compatible: "ti,omap5-rfbi"
- reg: address and length of the register space
- ti,hwmods: "dss_rfbi"
- clocks: handles to fclk and iclk
- clock-names: "fck", "ick"
Optional nodes:
- Video port for RFBI output
- RFBI controlled peripherals
DSI
---
Required properties:
- compatible: "ti,omap5-dsi"
- reg: addresses and lengths of the register spaces for 'proto', 'phy' and 'pll'
- reg-names: "proto", "phy", "pll"
- interrupts: the DSI interrupt line
- ti,hwmods: "dss_dsi1" or "dss_dsi2"
- vdd-supply: power supply for DSI
- clocks: handles to fclk and pll clock
- clock-names: "fck", "sys_clk"
Optional nodes:
- Video port for DSI output
- DSI controlled peripherals
DSI Endpoint required properties:
- lanes: list of pin numbers for the DSI lanes: CLK+, CLK-, DATA0+, DATA0-,
DATA1+, DATA1-, ...
HDMI
----
Required properties:
- compatible: "ti,omap5-hdmi"
- reg: addresses and lengths of the register spaces for 'wp', 'pll', 'phy',
'core'
- reg-names: "wp", "pll", "phy", "core"
- interrupts: the HDMI interrupt line
- ti,hwmods: "dss_hdmi"
- vdda-supply: vdda power supply
- clocks: handles to fclk and pll clock
- clock-names: "fck", "sys_clk"
Optional nodes:
- Video port for HDMI output
HDMI Endpoint optional properties:
- lanes: list of 8 pin numbers for the HDMI lanes: CLK+, CLK-, D0+, D0-,
D1+, D1-, D2+, D2-. (default: 0,1,2,3,4,5,6,7)
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
OMAP5 DSS core
1-27Texas Instruments OMAP5 Display Subsystem 바인딩이며 공통 설명은 `Documentation/devicetree/bindings/display/ti/ti,omap-dss.txt`를 참조합니다.
DSS core의 필수 `compatible`은 `ti,omap5-dss`, `reg`는 register space, `ti,hwmods`는 `dss_core`입니다. Functional clock은 `clocks`와 `clock-names = "fck"`로 연결합니다.
DISPC node는 필수입니다. RFBI, DSI, HDMI submodule과 DPI output video port는 선택입니다. DPI endpoint의 필수 `data-lines`는 사용하는 line 수입니다.
OMAP5 core에서 제공하는 필수/선택 display block을 정리합니다.
OMAP5 DISPC
28-43DISPC의 필수 `compatible`은 `ti,omap5-dispc`, `reg`는 register space, `ti,hwmods`는 `dss_dispc`, `interrupts`는 DISPC interrupt입니다. Functional clock은 `clocks`와 `clock-names = "fck"`로 지정합니다.
선택 `max-memory-bandwidth`는 main memory에서 DISPC로 들어오는 input bandwidth limit를 byte per second로 지정합니다.
OMAP5 RFBI
44-58RFBI의 필수 `compatible`은 `ti,omap5-rfbi`, `reg`는 register space, `ti,hwmods`는 `dss_rfbi`입니다. `clocks`에는 functional/interface clock을 넣고 `clock-names`는 `fck`, `ick`입니다.
RFBI output용 video port와 RFBI-controlled peripheral은 선택 node입니다.
OMAP5 DSI
59-80DSI의 필수 `compatible`은 `ti,omap5-dsi`이며 `reg`와 `reg-names`는 `proto`, `phy`, `pll`의 세 register space를 같은 순서로 담습니다.
`interrupts`는 DSI interrupt, `ti,hwmods`는 `dss_dsi1` 또는 `dss_dsi2`, `vdd-supply`는 DSI power supply입니다. Functional/PLL clock의 이름은 `fck`, `sys_clk`입니다.
DSI output port와 DSI-controlled peripheral은 선택 node입니다. Endpoint 필수 `lanes`는 `CLK+`, `CLK-`, `DATA0+`, `DATA0-`, `DATA1+`, `DATA1-`, ... pin 번호 목록입니다.
OMAP5 HDMI
81-100HDMI의 필수 `compatible`은 `ti,omap5-hdmi`이며 `reg`와 `reg-names`는 `wp`, `pll`, `phy`, `core`의 네 register space를 같은 순서로 기술합니다.
`interrupts`는 HDMI interrupt, `ti,hwmods`는 `dss_hdmi`, `vdda-supply`는 VDDA power supply입니다. Functional/PLL clock의 `clock-names`는 `fck`, `sys_clk`입니다.
HDMI output video port는 선택 node입니다. Endpoint의 선택 `lanes`는 `CLK+`, `CLK-`, `D0+`, `D0-`, `D1+`, `D1-`, `D2+`, `D2-` 순서의 pin 번호 8개이며 기본값은 `0,1,2,3,4,5,6,7`입니다.
DISPC가 DPI, RFBI, DSI 또는 HDMI 경로로 pixel을 전달합니다.
요약과 해설
ti,omap5-dss.txt:1-100필수 core 자원과 parallel/serial output endpoint를 설명합니다.