tvp7002.txt 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. * Texas Instruments TV7002 video decoder
  2. The TVP7002 device supports digitizing of video and graphics signal in RGB and
  3. YPbPr color space.
  4. Required Properties :
  5. - compatible : Must be "ti,tvp7002"
  6. Optional Properties:
  7. - hsync-active: HSYNC Polarity configuration for the bus. Default value when
  8. this property is not specified is <0>.
  9. - vsync-active: VSYNC Polarity configuration for the bus. Default value when
  10. this property is not specified is <0>.
  11. - pclk-sample: Clock polarity of the bus. Default value when this property is
  12. not specified is <0>.
  13. - sync-on-green-active: Active state of Sync-on-green signal property of the
  14. endpoint.
  15. 0 = Normal Operation (Active Low, Default)
  16. 1 = Inverted operation
  17. - field-even-active: Active-high Field ID output polarity control of the bus.
  18. Under normal operation, the field ID output is set to logic 1 for an odd field
  19. (field 1) and set to logic 0 for an even field (field 0).
  20. 0 = Normal Operation (Active Low, Default)
  21. 1 = FID output polarity inverted
  22. For further reading of port node refer Documentation/devicetree/bindings/media/
  23. video-interfaces.txt.
  24. Example:
  25. i2c0@1c22000 {
  26. ...
  27. ...
  28. tvp7002@5c {
  29. compatible = "ti,tvp7002";
  30. reg = <0x5c>;
  31. port {
  32. tvp7002_1: endpoint {
  33. hsync-active = <1>;
  34. vsync-active = <1>;
  35. pclk-sample = <0>;
  36. sync-on-green-active = <1>;
  37. field-even-active = <0>;
  38. };
  39. };
  40. };
  41. ...
  42. };