← Documents Documentation/devicetree/bindings/display/ti/ti,tpd12s015.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

TI TPD12S015 HDMI Protection

HDMI level shifting, ESD protection, GPIO와 input/output port 바인딩입니다.

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

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

1. 요약·해설

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

요약과 해설

ti,tpd12s015.txt:1-44

세 control GPIO와 양방향 endpoint graph를 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 TPD12S015 HDMI level shifter and ESD protection chip
2 ====================================================
3
4 Required properties:
5 - compatible: "ti,tpd12s015"
6
7 Optional properties:
8 - gpios: CT CP HPD, LS OE and HPD gpios
9
10 Required nodes:
11 - Video port 0 for HDMI input
12 - Video port 1 for HDMI output
13
14 Example
15 -------
16
17 tpd12s015: encoder@1 {
18 compatible = "ti,tpd12s015";
19
20 gpios = <&gpio2 28 GPIO_ACTIVE_HIGH>, /* 60, CT CP HPD */
21 <&gpio2 9 GPIO_ACTIVE_HIGH>, /* 41, LS OE */
22 <&gpio2 31 GPIO_ACTIVE_HIGH>; /* 63, HPD */
23
24 ports {
25 #address-cells = <1>;
26 #size-cells = <0>;
27
28 port@0 {
29 reg = <0>;
30
31 tpd12s015_in: endpoint@0 {
32 remote-endpoint = <&hdmi_out>;
33 };
34 };
35
36 port@1 {
37 reg = <1>;
38
39 tpd12s015_out: endpoint@0 {
40 remote-endpoint = <&hdmi_connector_in>;
41 };
42 };
43 };
44 };
45

3. 한국어 전문 번역

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

TPD12S015 HDMI protection 속성

1-16

TPD12S015는 HDMI level shifter이자 ESD protection chip입니다. 필수 `compatible`은 `ti,tpd12s015`입니다.

선택 `gpios`에는 CT CP HPD, LS OE, HPD GPIO를 넣습니다. 필수 video node는 HDMI input용 port 0과 HDMI output용 port 1입니다.

TPD12S015 HDMI 경로
HDMI sourceport 0 input
TPD12S015CT CP HPD + LS OE + HPD
port 1 outputProtected HDMI
HDMI connectorremote endpoint

Input HDMI signal을 level shifting과 ESD protection 후 output connector로 전달합니다.

세 GPIO와 두 port 예제

17-44

예제는 GPIO2의 pin 28, 9, 31을 각각 CT CP HPD, LS OE, HPD로 사용합니다. `tpd12s015_in`은 `hdmi_out`, `tpd12s015_out`은 `hdmi_connector_in`과 상호 graph 연결됩니다.

tpd12s015: encoder@1 {
        compatible = "ti,tpd12s015";

        gpios = <&gpio2 28 GPIO_ACTIVE_HIGH>,        /* 60, CT CP HPD */
                <&gpio2 9 GPIO_ACTIVE_HIGH>,        /* 41, LS OE */
                <&gpio2 31 GPIO_ACTIVE_HIGH>;        /* 63, HPD */

        ports {
                #address-cells = <1>;
                #size-cells = <0>;

                port@0 {
                        reg = <0>;

                        tpd12s015_in: endpoint@0 {
                                remote-endpoint = <&hdmi_out>;
                        };
                };

                port@1 {
                        reg = <1>;

                        tpd12s015_out: endpoint@0 {
                                remote-endpoint = <&hdmi_connector_in>;
                        };
                };
        };
};