2 * Copyright (C) 2009 Texas Instruments Inc
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.
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.
14 * vpss - video processing subsystem module header file.
16 * Include this header file if a driver needs to configure vpss system
17 * module. It exports a set of library functions for video drivers to
18 * configure vpss system module functions such as clock enable/disable,
19 * vpss interrupt mux to arm, and other common vpss system module
25 /* selector for ccdc input selection on DM355 */
26 enum vpss_ccdc_source_sel
{
29 VPSS_PGLPBK
, /* for DM365 only */
30 VPSS_CCDCPG
/* for DM365 only */
33 struct vpss_sync_pol
{
34 unsigned int ccdpg_hdpol
:1;
35 unsigned int ccdpg_vdpol
:1;
38 struct vpss_pg_frame_size
{
43 /* Used for enable/disable VPSS Clock */
51 * When using VPSS_VENC_CLOCK_SEL in vpss_enable_clock() api
53 * en = 0 selects ENC_CLK
54 * en = 1 selects ENC_CLK/2
58 /* DM365 only clocks */
63 * When using VPSS_PCLK_INTERNAL in vpss_enable_clock() api
65 * en = 0 disable internal PCLK
66 * en = 1 enables internal PCLK
70 * When using VPSS_PSYNC_CLOCK_SEL in vpss_enable_clock() api
72 * en = 0 enables MMR clock
73 * en = 1 enables VPSS clock
82 /* select input to ccdc on dm355 */
83 int vpss_select_ccdc_source(enum vpss_ccdc_source_sel src_sel
);
84 /* enable/disable a vpss clock, 0 - success, -1 - failure */
85 int vpss_enable_clock(enum vpss_clock_sel clock_sel
, int en
);
86 /* set sync polarity, only for DM365*/
87 void dm365_vpss_set_sync_pol(struct vpss_sync_pol
);
88 /* set the PG_FRAME_SIZE register, only for DM365 */
89 void dm365_vpss_set_pg_frame_size(struct vpss_pg_frame_size
);
91 /* wbl reset for dm644x */
93 VPSS_PCR_AEW_WBL_0
= 16,
102 /* clear wbl overflow flag for DM6446 */
103 int vpss_clear_wbl_overflow(enum vpss_wbl_sel wbl_sel
);
105 /* set sync polarity*/
106 void vpss_set_sync_pol(struct vpss_sync_pol sync
);
107 /* set the PG_FRAME_SIZE register */
108 void vpss_set_pg_frame_size(struct vpss_pg_frame_size frame_size
);
110 * vpss_check_and_clear_interrupt - check and clear interrupt
111 * @irq - common enumerator for IRQ
113 * Following return values used:-
114 * 0 - interrupt occurred and cleared
115 * 1 - interrupt not occurred
116 * 2 - interrupt status not available
118 int vpss_dma_complete_interrupt(void);