The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/media/i2c/tvp514x.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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         };

Cache object: 5ecef8ae2dfab4a6bac42e6a0dfb6d0e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.