vpss.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (C) 2009 Texas Instruments Inc
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. *
  18. * vpss - video processing subsystem module header file.
  19. *
  20. * Include this header file if a driver needs to configure vpss system
  21. * module. It exports a set of library functions for video drivers to
  22. * configure vpss system module functions such as clock enable/disable,
  23. * vpss interrupt mux to arm, and other common vpss system module
  24. * functions.
  25. */
  26. #ifndef _VPSS_H
  27. #define _VPSS_H
  28. /* selector for ccdc input selection on DM355 */
  29. enum vpss_ccdc_source_sel {
  30. VPSS_CCDCIN,
  31. VPSS_HSSIIN,
  32. VPSS_PGLPBK, /* for DM365 only */
  33. VPSS_CCDCPG /* for DM365 only */
  34. };
  35. struct vpss_sync_pol {
  36. unsigned int ccdpg_hdpol:1;
  37. unsigned int ccdpg_vdpol:1;
  38. };
  39. struct vpss_pg_frame_size {
  40. short hlpfr;
  41. short pplen;
  42. };
  43. /* Used for enable/disable VPSS Clock */
  44. enum vpss_clock_sel {
  45. /* DM355/DM365 */
  46. VPSS_CCDC_CLOCK,
  47. VPSS_IPIPE_CLOCK,
  48. VPSS_H3A_CLOCK,
  49. VPSS_CFALD_CLOCK,
  50. /*
  51. * When using VPSS_VENC_CLOCK_SEL in vpss_enable_clock() api
  52. * following applies:-
  53. * en = 0 selects ENC_CLK
  54. * en = 1 selects ENC_CLK/2
  55. */
  56. VPSS_VENC_CLOCK_SEL,
  57. VPSS_VPBE_CLOCK,
  58. /* DM365 only clocks */
  59. VPSS_IPIPEIF_CLOCK,
  60. VPSS_RSZ_CLOCK,
  61. VPSS_BL_CLOCK,
  62. /*
  63. * When using VPSS_PCLK_INTERNAL in vpss_enable_clock() api
  64. * following applies:-
  65. * en = 0 disable internal PCLK
  66. * en = 1 enables internal PCLK
  67. */
  68. VPSS_PCLK_INTERNAL,
  69. /*
  70. * When using VPSS_PSYNC_CLOCK_SEL in vpss_enable_clock() api
  71. * following applies:-
  72. * en = 0 enables MMR clock
  73. * en = 1 enables VPSS clock
  74. */
  75. VPSS_PSYNC_CLOCK_SEL,
  76. VPSS_LDC_CLOCK_SEL,
  77. VPSS_OSD_CLOCK_SEL,
  78. VPSS_FDIF_CLOCK,
  79. VPSS_LDC_CLOCK
  80. };
  81. /* select input to ccdc on dm355 */
  82. int vpss_select_ccdc_source(enum vpss_ccdc_source_sel src_sel);
  83. /* enable/disable a vpss clock, 0 - success, -1 - failure */
  84. int vpss_enable_clock(enum vpss_clock_sel clock_sel, int en);
  85. /* set sync polarity, only for DM365*/
  86. void dm365_vpss_set_sync_pol(struct vpss_sync_pol);
  87. /* set the PG_FRAME_SIZE register, only for DM365 */
  88. void dm365_vpss_set_pg_frame_size(struct vpss_pg_frame_size);
  89. /* wbl reset for dm644x */
  90. enum vpss_wbl_sel {
  91. VPSS_PCR_AEW_WBL_0 = 16,
  92. VPSS_PCR_AF_WBL_0,
  93. VPSS_PCR_RSZ4_WBL_0,
  94. VPSS_PCR_RSZ3_WBL_0,
  95. VPSS_PCR_RSZ2_WBL_0,
  96. VPSS_PCR_RSZ1_WBL_0,
  97. VPSS_PCR_PREV_WBL_0,
  98. VPSS_PCR_CCDC_WBL_O,
  99. };
  100. /* clear wbl overflow flag for DM6446 */
  101. int vpss_clear_wbl_overflow(enum vpss_wbl_sel wbl_sel);
  102. /* set sync polarity*/
  103. void vpss_set_sync_pol(struct vpss_sync_pol sync);
  104. /* set the PG_FRAME_SIZE register */
  105. void vpss_set_pg_frame_size(struct vpss_pg_frame_size frame_size);
  106. /*
  107. * vpss_check_and_clear_interrupt - check and clear interrupt
  108. * @irq - common enumerator for IRQ
  109. *
  110. * Following return values used:-
  111. * 0 - interrupt occurred and cleared
  112. * 1 - interrupt not occurred
  113. * 2 - interrupt status not available
  114. */
  115. int vpss_dma_complete_interrupt(void);
  116. #endif