upd64031a.h 681 B

123456789101112131415161718192021222324252627
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * upd64031a - NEC Electronics Ghost Reduction input defines
  4. *
  5. * 2006 by Hans Verkuil (hverkuil@kernel.org)
  6. */
  7. #ifndef _UPD64031A_H_
  8. #define _UPD64031A_H_
  9. /* Ghost reduction modes */
  10. #define UPD64031A_GR_ON 0
  11. #define UPD64031A_GR_OFF 1
  12. #define UPD64031A_GR_THROUGH 3
  13. /* Direct 3D/YCS Connection */
  14. #define UPD64031A_3DYCS_DISABLE (0 << 2)
  15. #define UPD64031A_3DYCS_COMPOSITE (2 << 2)
  16. #define UPD64031A_3DYCS_SVIDEO (3 << 2)
  17. /* Composite sync digital separation circuit */
  18. #define UPD64031A_COMPOSITE_EXTERNAL (1 << 4)
  19. /* Vertical sync digital separation circuit */
  20. #define UPD64031A_VERTICAL_EXTERNAL (1 << 5)
  21. #endif