2 * tm6000.h - driver for TM5600/TM6000/TM6010 USB video capture devices
4 * Copyright (C) 2006-2007 Mauro Carvalho Chehab <mchehab@infradead.org>
6 * Copyright (C) 2007 Michel Ludwig <michel.ludwig@gmail.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation version 2
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 /* Use the tm6000-hack, instead of the proper initialization code i*/
26 #include <linux/videodev2.h>
27 #include <media/v4l2-common.h>
28 #include <media/videobuf-vmalloc.h>
29 #include "tm6000-usb-isoc.h"
30 #include <linux/i2c.h>
31 #include <linux/mutex.h>
32 #include <media/v4l2-device.h>
35 #include <linux/dvb/frontend.h>
36 #include "dvb_demux.h"
37 #include "dvb_frontend.h"
40 #define TM6000_VERSION KERNEL_VERSION(0, 0, 2)
46 TM6000_INPUT_COMPOSITE
,
64 /* ------------------------------------------------------------------
66 * ------------------------------------------------------------------
71 u32 fourcc
; /* v4l2 format id */
75 /* buffer for one video frame */
76 struct tm6000_buffer
{
77 /* common v4l buffer stuff -- must be first */
78 struct videobuf_buffer vb
;
80 struct tm6000_fmt
*fmt
;
83 struct tm6000_dmaqueue
{
84 struct list_head active
;
85 struct list_head queued
;
87 /* thread for generating video stream*/
88 struct task_struct
*kthread
;
90 /* Counters to control fps rate */
96 enum tm6000_core_state
{
97 DEV_INITIALIZED
= 0x01,
98 DEV_DISCONNECTED
= 0x02,
99 DEV_MISCONFIGURED
= 0x04,
103 enum tm6000_io_method
{
110 TM6000_MODE_UNKNOWN
= 0,
125 struct tm6000_capabilities
{
126 unsigned int has_tuner
:1;
127 unsigned int has_tda9874
:1;
128 unsigned int has_dvb
:1;
129 unsigned int has_zl10353
:1;
130 unsigned int has_eeprom
:1;
131 unsigned int has_remote
:1;
132 unsigned int has_input_comp
:1;
133 unsigned int has_input_svid
:1;
137 struct dvb_adapter adapter
;
138 struct dvb_demux demux
;
139 struct dvb_frontend
*frontend
;
140 struct dmxdev dmxdev
;
141 unsigned int streams
;
142 struct urb
*bulk_urb
;
146 struct snd_tm6000_card
{
147 struct snd_card
*card
;
149 struct tm6000_core
*core
;
150 struct snd_pcm_substream
*substream
;
152 /* temporary data for buffer fill processing */
157 struct tm6000_endpoint
{
158 struct usb_host_endpoint
*endp
;
159 __u8 bInterfaceNumber
;
160 __u8 bAlternateSetting
;
165 /* generic device properties */
166 char name
[30]; /* name (including minor) of the device */
167 int model
; /* index in the device_data struct */
168 int devno
; /* marks the number of this device */
169 enum tm6000_devtype dev_type
; /* type of device */
171 v4l2_std_id norm
; /* Current norm */
172 int width
, height
; /* Selected resolution */
174 enum tm6000_core_state state
;
176 /* Device Capabilities*/
177 struct tm6000_capabilities caps
;
179 /* Tuner configuration */
180 int tuner_type
; /* type of the tuner */
181 int tuner_addr
; /* tuner address */
183 struct tm6000_gpio gpio
;
189 /* Demodulator configuration */
190 int demod_addr
; /* demodulator address */
194 struct i2c_adapter i2c_adap
;
195 struct i2c_client i2c_client
;
199 struct list_head devlist
;
201 /* video for linux */
204 /* various device info */
205 struct tm6000_fh
*resources
; /* Points to fh that is streaming */
208 struct video_device
*vfd
;
209 struct video_device
*radio_dev
;
210 struct tm6000_dmaqueue vidq
;
211 struct v4l2_device v4l2_dev
;
217 enum tm6000_mode mode
;
219 int ctl_mute
; /* audio */
223 struct tm6000_dvb
*dvb
;
226 struct snd_tm6000_card
*adev
;
227 struct work_struct wq_trigger
; /* Trigger to start/stop audio for alsa module */
228 atomic_t stream_started
; /* stream should be running if true */
229 enum tm6000_inaudio avideo
;
230 enum tm6000_inaudio aradio
;
232 struct tm6000_IR
*ir
;
238 struct usb_device
*udev
; /* the usb device */
240 struct tm6000_endpoint bulk_in
, bulk_out
, isoc_in
, isoc_out
;
241 struct tm6000_endpoint int_in
, int_out
;
243 /* scaler!=0 if scaler is active*/
246 /* Isoc control struct */
247 struct usb_isoc_ctl isoc_ctl
;
252 enum tm6000_ops_type
{
258 struct list_head next
;
260 enum tm6000_ops_type type
;
261 int (*init
)(struct tm6000_core
*);
262 int (*fini
)(struct tm6000_core
*);
263 int (*fillbuf
)(struct tm6000_core
*, char *buf
, int size
);
267 struct tm6000_core
*dev
;
271 struct tm6000_fmt
*fmt
;
272 unsigned int width
, height
;
273 struct videobuf_queue vb_vidq
;
275 enum v4l2_buf_type type
;
278 #define TM6000_STD (V4L2_STD_PAL|V4L2_STD_PAL_N|V4L2_STD_PAL_Nc| \
279 V4L2_STD_PAL_M|V4L2_STD_PAL_60|V4L2_STD_NTSC_M| \
280 V4L2_STD_NTSC_M_JP|V4L2_STD_SECAM)
282 /* In tm6000-cards.c */
284 int tm6000_tuner_callback(void *ptr
, int component
, int command
, int arg
);
285 int tm6000_xc5000_callback(void *ptr
, int component
, int command
, int arg
);
286 int tm6000_cards_setup(struct tm6000_core
*dev
);
287 void tm6000_flash_led(struct tm6000_core
*dev
, u8 state
);
289 /* In tm6000-core.c */
291 int tm6000_read_write_usb(struct tm6000_core
*dev
, u8 reqtype
, u8 req
,
292 u16 value
, u16 index
, u8
*buf
, u16 len
);
293 int tm6000_get_reg(struct tm6000_core
*dev
, u8 req
, u16 value
, u16 index
);
294 int tm6000_get_reg16(struct tm6000_core
*dev
, u8 req
, u16 value
, u16 index
);
295 int tm6000_get_reg32(struct tm6000_core
*dev
, u8 req
, u16 value
, u16 index
);
296 int tm6000_set_reg(struct tm6000_core
*dev
, u8 req
, u16 value
, u16 index
);
297 int tm6000_set_reg_mask(struct tm6000_core
*dev
, u8 req
, u16 value
,
298 u16 index
, u16 mask
);
299 int tm6000_i2c_reset(struct tm6000_core
*dev
, u16 tsleep
);
300 int tm6000_init(struct tm6000_core
*dev
);
302 int tm6000_init_analog_mode(struct tm6000_core
*dev
);
303 int tm6000_init_digital_mode(struct tm6000_core
*dev
);
304 int tm6000_set_audio_bitrate(struct tm6000_core
*dev
, int bitrate
);
305 int tm6000_set_audio_input(struct tm6000_core
*dev
, enum tm6000_inaudio ainp
);
306 int tm6000_tvaudio_set_mute(struct tm6000_core
*dev
, u8 mute
);
307 void tm6000_set_volume(struct tm6000_core
*dev
, int vol
);
309 int tm6000_v4l2_register(struct tm6000_core
*dev
);
310 int tm6000_v4l2_unregister(struct tm6000_core
*dev
);
311 int tm6000_v4l2_exit(void);
312 void tm6000_set_fourcc_format(struct tm6000_core
*dev
);
314 void tm6000_remove_from_devlist(struct tm6000_core
*dev
);
315 void tm6000_add_into_devlist(struct tm6000_core
*dev
);
316 int tm6000_register_extension(struct tm6000_ops
*ops
);
317 void tm6000_unregister_extension(struct tm6000_ops
*ops
);
318 void tm6000_init_extension(struct tm6000_core
*dev
);
319 void tm6000_close_extension(struct tm6000_core
*dev
);
320 int tm6000_call_fillbuf(struct tm6000_core
*dev
, enum tm6000_ops_type type
,
321 char *buf
, int size
);
324 /* In tm6000-stds.c */
325 void tm6000_get_std_res(struct tm6000_core
*dev
);
326 int tm6000_set_standard(struct tm6000_core
*dev
, v4l2_std_id
*norm
);
328 /* In tm6000-i2c.c */
329 int tm6000_i2c_register(struct tm6000_core
*dev
);
330 int tm6000_i2c_unregister(struct tm6000_core
*dev
);
332 /* In tm6000-queue.c */
334 int tm6000_v4l2_mmap(struct file
*filp
, struct vm_area_struct
*vma
);
336 int tm6000_vidioc_streamon(struct file
*file
, void *priv
,
337 enum v4l2_buf_type i
);
338 int tm6000_vidioc_streamoff(struct file
*file
, void *priv
,
339 enum v4l2_buf_type i
);
340 int tm6000_vidioc_reqbufs(struct file
*file
, void *priv
,
341 struct v4l2_requestbuffers
*rb
);
342 int tm6000_vidioc_querybuf(struct file
*file
, void *priv
,
343 struct v4l2_buffer
*b
);
344 int tm6000_vidioc_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
);
345 int tm6000_vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*b
);
346 ssize_t
tm6000_v4l2_read(struct file
*filp
, char __user
* buf
, size_t count
,
348 unsigned int tm6000_v4l2_poll(struct file
*file
,
349 struct poll_table_struct
*wait
);
350 int tm6000_queue_init(struct tm6000_core
*dev
);
352 /* In tm6000-alsa.c */
353 /*int tm6000_audio_init(struct tm6000_core *dev, int idx);*/
355 /* In tm6000-input.c */
356 int tm6000_ir_init(struct tm6000_core
*dev
);
357 int tm6000_ir_fini(struct tm6000_core
*dev
);
358 void tm6000_ir_wait(struct tm6000_core
*dev
, u8 state
);
359 int tm6000_ir_int_start(struct tm6000_core
*dev
);
360 void tm6000_ir_int_stop(struct tm6000_core
*dev
);
364 extern int tm6000_debug
;
366 #define dprintk(dev, level, fmt, arg...) do {\
367 if (tm6000_debug & level) \
368 printk(KERN_INFO "(%lu) %s %s :"fmt, jiffies, \
369 dev->name, __FUNCTION__ , ##arg); } while (0)
371 #define V4L2_DEBUG_REG 0x0004
372 #define V4L2_DEBUG_I2C 0x0008
373 #define V4L2_DEBUG_QUEUE 0x0010
374 #define V4L2_DEBUG_ISOC 0x0020
375 #define V4L2_DEBUG_RES_LOCK 0x0040 /* Resource locking */
376 #define V4L2_DEBUG_OPEN 0x0080 /* video open/close debug */
378 #define tm6000_err(fmt, arg...) do {\
379 printk(KERN_ERR "tm6000 %s :"fmt, \
380 __FUNCTION__ , ##arg); } while (0)