2019-05-20 09:19:02 +02:00
/* SPDX-License-Identifier: GPL-2.0-or-later */
2009-03-03 14:37:50 -03:00
/*
cx231xx_vbi . h - driver for Conexant Cx23100 / 101 / 102 USB video capture devices
Copyright ( C ) 2008 < srinivasa . deevi at conexant dot com >
2009-03-04 17:49:01 -03:00
Based on cx88 driver
2009-03-03 14:37:50 -03:00
*/
# ifndef _CX231XX_VBI_H
# define _CX231XX_VBI_H
2019-09-05 08:31:11 -03:00
extern struct vb2_ops cx231xx_vbi_qops ;
2009-03-03 14:37:50 -03:00
2009-03-04 17:49:01 -03:00
# define NTSC_VBI_START_LINE 10 /* line 10 - 21 */
# define NTSC_VBI_END_LINE 21
# define NTSC_VBI_LINES (NTSC_VBI_END_LINE-NTSC_VBI_START_LINE+1)
2009-03-03 14:37:50 -03:00
2009-03-04 17:49:01 -03:00
# define PAL_VBI_START_LINE 6
# define PAL_VBI_END_LINE 23
# define PAL_VBI_LINES (PAL_VBI_END_LINE-PAL_VBI_START_LINE+1)
2009-03-03 14:37:50 -03:00
2009-03-04 17:49:01 -03:00
# define VBI_STRIDE 1440
# define VBI_SAMPLES_PER_LINE 1440
2009-03-03 14:37:50 -03:00
# define CX231XX_NUM_VBI_PACKETS 4
# define CX231XX_NUM_VBI_BUFS 5
/* stream functions */
int cx231xx_init_vbi_isoc ( struct cx231xx * dev , int max_packets ,
2009-03-03 06:14:34 -03:00
int num_bufs , int max_pkt_size ,
2010-07-06 18:12:25 -03:00
int ( * bulk_copy ) ( struct cx231xx * dev ,
2009-03-04 17:49:01 -03:00
struct urb * urb ) ) ;
2009-03-03 14:37:50 -03:00
void cx231xx_uninit_vbi_isoc ( struct cx231xx * dev ) ;
/* vbi data copy functions */
2009-03-03 06:14:34 -03:00
u32 cx231xx_get_vbi_line ( struct cx231xx * dev , struct cx231xx_dmaqueue * dma_q ,
2009-03-04 17:49:01 -03:00
u8 sav_eav , u8 * p_buffer , u32 buffer_size ) ;
2009-03-03 06:14:34 -03:00
u32 cx231xx_copy_vbi_line ( struct cx231xx * dev , struct cx231xx_dmaqueue * dma_q ,
2009-03-04 17:49:01 -03:00
u8 * p_line , u32 length , int field_number ) ;
2009-03-03 06:14:34 -03:00
void cx231xx_reset_vbi_buffer ( struct cx231xx * dev ,
struct cx231xx_dmaqueue * dma_q ) ;
2009-03-03 14:37:50 -03:00
int cx231xx_do_vbi_copy ( struct cx231xx * dev , struct cx231xx_dmaqueue * dma_q ,
2009-03-04 17:49:01 -03:00
u8 * p_buffer , u32 bytes_to_copy ) ;
2009-03-03 14:37:50 -03:00
2009-03-03 06:14:34 -03:00
u8 cx231xx_is_vbi_buffer_done ( struct cx231xx * dev ,
struct cx231xx_dmaqueue * dma_q ) ;
2009-03-03 14:37:50 -03:00
# endif