← Documents Documentation/devicetree/bindings/media/i2c/ti,tvp514x.txt GitHub 원문 ↗

Linux 6.18.37 · Devicetree Bindings

Texas Instruments TVP514x Video Decoder

RGB·YPbPr·NTSC·PAL·SECAM을 digital component video로 변환하는 decoder입니다.

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

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

1. 요약·해설

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

요약과 해설

ti,tvp514x.txt:1-44

네 decoder variant와 endpoint sync·clock polarity를 설명합니다.

2. 영어 원문 전체

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

원문 전체 펼치기
1 * Texas Instruments TVP514x video decoder
2
3 The TVP5146/TVP5146m2/TVP5147/TVP5147m1 device is high quality, single-chip
4 digital video decoder that digitizes and decodes all popular baseband analog
5 video formats into digital video component. The tvp514x decoder supports analog-
6 to-digital (A/D) conversion of component RGB and YPbPr signals as well as A/D
7 conversion and decoding of NTSC, PAL and SECAM composite and S-video into
8 component YCbCr.
9
10 Required Properties :
11 - compatible : value should be either one among the following
12 (a) "ti,tvp5146" for tvp5146 decoder.
13 (b) "ti,tvp5146m2" for tvp5146m2 decoder.
14 (c) "ti,tvp5147" for tvp5147 decoder.
15 (d) "ti,tvp5147m1" for tvp5147m1 decoder.
16
17 - hsync-active: HSYNC Polarity configuration for endpoint.
18
19 - vsync-active: VSYNC Polarity configuration for endpoint.
20
21 - pclk-sample: Clock polarity of the endpoint.
22
23 For further reading on port node refer to Documentation/devicetree/bindings/
24 media/video-interfaces.txt.
25
26 Example:
27
28 i2c0@1c22000 {
29 ...
30 ...
31 tvp514x@5c {
32 compatible = "ti,tvp5146";
33 reg = <0x5c>;
34
35 port {
36 tvp514x_1: endpoint {
37 hsync-active = <1>;
38 vsync-active = <1>;
39 pclk-sample = <0>;
40 };
41 };
42 };
43 ...
44 };
45

3. 한국어 전문 번역

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

TVP514x analog video decoder

1-9

TVP5146, TVP5146m2, TVP5147, TVP5147m1은 널리 쓰이는 baseband analog video format을 digital video component로 digitize하고 decode하는 고품질 single-chip decoder입니다.

Component RGB와 YPbPr 신호의 A/D conversion을 지원하며 NTSC, PAL, SECAM composite와 S-Video를 A/D conversion하고 component YCbCr로 decode합니다.

TVP514x decode 경로
RGB / YPbPrA/D conversion
NTSC / PAL / SECAMComposite 또는 S-Video decode
TVP514xDigital YCbCr component
Parallel endpointVideo receiver

여러 analog baseband 입력을 digital component video로 변환합니다.

Decoder variant와 endpoint polarity

10-25

`compatible`은 `ti,tvp5146`, `ti,tvp5146m2`, `ti,tvp5147`, `ti,tvp5147m1` 중 실제 decoder variant에 맞는 값을 사용합니다.

Endpoint의 `hsync-active`는 HSYNC polarity, `vsync-active`는 VSYNC polarity, `pclk-sample`은 clock polarity를 설정합니다. Port node에 관한 추가 규칙은 `Documentation/devicetree/bindings/media/video-interfaces.txt`를 참조합니다.

TVP5146 active-high sync 예제

26-44

예제는 I2C 주소 `0x5c`의 TVP5146 endpoint에 active-high HSYNC·VSYNC와 `pclk-sample = <0>`을 설정합니다.

i2c0@1c22000 {
        ...
        ...
        tvp514x@5c {
                compatible = "ti,tvp5146";
                reg = <0x5c>;

                port {
                        tvp514x_1: endpoint {
                                hsync-active = <1>;
                                vsync-active = <1>;
                                pclk-sample = <0>;
                        };
                };
        };
        ...
};