blob: 173dcd7a7284085d134ed168cb8c1a0775698529 [file] [log] [blame]
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001/*
Ruslan Pisarevd00586452010-10-20 06:35:54 -03002 * tm6000.h - driver for TM5600/TM6000/TM6010 USB video capture devices
3 *
4 * Copyright (C) 2006-2007 Mauro Carvalho Chehab <mchehab@infradead.org>
5 *
6 * Copyright (C) 2007 Michel Ludwig <michel.ludwig@gmail.com>
7 * - DVB-T support
8 *
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
12 *
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.
17 *
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.
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030021 */
22
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030023#include <linux/videodev2.h>
24#include <media/v4l2-common.h>
25#include <media/videobuf-vmalloc.h>
26#include "tm6000-usb-isoc.h"
27#include <linux/i2c.h>
28#include <linux/mutex.h>
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -030029#include <media/v4l2-device.h>
Thierry Reding3d1a51d2011-08-04 04:14:01 -030030
Michel Ludwig3169c9b2007-08-21 17:37:22 -030031#include <linux/dvb/frontend.h>
32#include "dvb_demux.h"
33#include "dvb_frontend.h"
34#include "dmxdev.h"
35
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030036/* Inputs */
Mauro Carvalho Chehabc85cba32007-07-19 11:09:58 -030037enum tm6000_itype {
Stefan Ringelfb7ef982011-05-09 16:53:51 -030038 TM6000_INPUT_TV = 1,
39 TM6000_INPUT_COMPOSITE1,
40 TM6000_INPUT_COMPOSITE2,
Mauro Carvalho Chehabc85cba32007-07-19 11:09:58 -030041 TM6000_INPUT_SVIDEO,
Stefan Ringelfb7ef982011-05-09 16:53:51 -030042 TM6000_INPUT_DVB,
43 TM6000_INPUT_RADIO,
44};
45
46enum tm6000_mux {
47 TM6000_VMUX_VIDEO_A = 1,
48 TM6000_VMUX_VIDEO_B,
49 TM6000_VMUX_VIDEO_AB,
50 TM6000_AMUX_ADC1,
51 TM6000_AMUX_ADC2,
52 TM6000_AMUX_SIF1,
53 TM6000_AMUX_SIF2,
54 TM6000_AMUX_I2S,
Mauro Carvalho Chehabc85cba32007-07-19 11:09:58 -030055};
56
Mauro Carvalho Chehab29c389b2008-01-08 11:19:22 -030057enum tm6000_devtype {
58 TM6000 = 0,
59 TM5600,
60 TM6010,
61};
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030062
Stefan Ringelfb7ef982011-05-09 16:53:51 -030063struct tm6000_input {
64 enum tm6000_itype type;
65 enum tm6000_mux vmux;
66 enum tm6000_mux amux;
67 unsigned int v_gpio;
68 unsigned int a_gpio;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -030069};
70
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030071/* ------------------------------------------------------------------
Ruslan Pisarev40004e22010-10-20 06:35:34 -030072 * Basic structures
73 * ------------------------------------------------------------------
74 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030075
76struct tm6000_fmt {
77 char *name;
78 u32 fourcc; /* v4l2 format id */
79 int depth;
80};
81
82/* buffer for one video frame */
83struct tm6000_buffer {
84 /* common v4l buffer stuff -- must be first */
85 struct videobuf_buffer vb;
86
87 struct tm6000_fmt *fmt;
88};
89
90struct tm6000_dmaqueue {
91 struct list_head active;
92 struct list_head queued;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030093
94 /* thread for generating video stream*/
95 struct task_struct *kthread;
96 wait_queue_head_t wq;
97 /* Counters to control fps rate */
98 int frame;
99 int ini_jiffies;
100};
101
102/* device states */
103enum tm6000_core_state {
104 DEV_INITIALIZED = 0x01,
105 DEV_DISCONNECTED = 0x02,
106 DEV_MISCONFIGURED = 0x04,
107};
108
109/* io methods */
110enum tm6000_io_method {
111 IO_NONE,
112 IO_READ,
113 IO_MMAP,
114};
115
116enum tm6000_mode {
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300117 TM6000_MODE_UNKNOWN = 0,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300118 TM6000_MODE_ANALOG,
119 TM6000_MODE_DIGITAL,
120};
121
Stefan Ringel32a22322010-03-29 13:51:10 -0300122struct tm6000_gpio {
123 int tuner_reset;
124 int tuner_on;
125 int demod_reset;
126 int demod_on;
127 int power_led;
128 int dvb_led;
129 int ir;
Mauro Carvalho Chehabaf9d9cf2010-04-09 01:57:21 -0300130};
Stefan Ringel32a22322010-03-29 13:51:10 -0300131
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300132struct tm6000_capabilities {
133 unsigned int has_tuner:1;
134 unsigned int has_tda9874:1;
135 unsigned int has_dvb:1;
136 unsigned int has_zl10353:1;
137 unsigned int has_eeprom:1;
Michel Ludwig43861362007-09-24 17:01:49 -0300138 unsigned int has_remote:1;
Stefan Ringel14169102011-05-09 16:53:49 -0300139 unsigned int has_radio:1;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300140};
141
Michel Ludwig3169c9b2007-08-21 17:37:22 -0300142struct tm6000_dvb {
143 struct dvb_adapter adapter;
144 struct dvb_demux demux;
145 struct dvb_frontend *frontend;
146 struct dmxdev dmxdev;
147 unsigned int streams;
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300148 struct urb *bulk_urb;
Michel Ludwig3169c9b2007-08-21 17:37:22 -0300149 struct mutex mutex;
150};
151
Stefan Ringeld77057f2010-05-30 09:19:02 -0300152struct snd_tm6000_card {
153 struct snd_card *card;
154 spinlock_t reg_lock;
Stefan Ringeld77057f2010-05-30 09:19:02 -0300155 struct tm6000_core *core;
Stefan Ringeld77057f2010-05-30 09:19:02 -0300156 struct snd_pcm_substream *substream;
Mauro Carvalho Chehab3f23a812010-06-05 15:10:36 -0300157
158 /* temporary data for buffer fill processing */
159 unsigned buf_pos;
160 unsigned period_pos;
Stefan Ringeld77057f2010-05-30 09:19:02 -0300161};
162
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300163struct tm6000_endpoint {
164 struct usb_host_endpoint *endp;
165 __u8 bInterfaceNumber;
166 __u8 bAlternateSetting;
167 unsigned maxsize;
168};
169
Thierry Reding42845702011-09-01 02:43:03 -0300170#define TM6000_QUIRK_NO_USB_DELAY (1 << 0)
171
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300172struct tm6000_core {
173 /* generic device properties */
174 char name[30]; /* name (including minor) of the device */
175 int model; /* index in the device_data struct */
176 int devno; /* marks the number of this device */
Mauro Carvalho Chehab29c389b2008-01-08 11:19:22 -0300177 enum tm6000_devtype dev_type; /* type of device */
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300178 unsigned char eedata[256]; /* Eeprom data */
179 unsigned eedata_size; /* Size of the eeprom info */
Michel Ludwig3169c9b2007-08-21 17:37:22 -0300180
181 v4l2_std_id norm; /* Current norm */
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300182 int width, height; /* Selected resolution */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300183
184 enum tm6000_core_state state;
185
186 /* Device Capabilities*/
187 struct tm6000_capabilities caps;
188
Mauro Carvalho Chehab6740a932011-11-30 14:54:05 -0300189 /* Used to load alsa/dvb */
190 struct work_struct request_module_wk;
191
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300192 /* Tuner configuration */
Michel Ludwig95a83822007-07-24 08:06:45 -0300193 int tuner_type; /* type of the tuner */
194 int tuner_addr; /* tuner address */
Stefan Ringel32a22322010-03-29 13:51:10 -0300195
196 struct tm6000_gpio gpio;
Michel Ludwig95a83822007-07-24 08:06:45 -0300197
Stefan Ringeld064f962010-06-20 17:16:52 -0300198 char *ir_codes;
199
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300200 __u8 radio;
201
Michel Ludwig95a83822007-07-24 08:06:45 -0300202 /* Demodulator configuration */
203 int demod_addr; /* demodulator address */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300204
Mauro Carvalho Chehabc13dd702007-09-19 07:36:34 -0300205 int audio_bitrate;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300206 /* i2c i/o */
207 struct i2c_adapter i2c_adap;
208 struct i2c_client i2c_client;
209
Stefan Ringel0439db752010-05-10 13:22:51 -0300210
211 /* extension */
212 struct list_head devlist;
213
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300214 /* video for linux */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300215 int users;
216
217 /* various device info */
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300218 struct tm6000_fh *resources; /* Points to fh that is streaming */
219 bool is_res_read;
220
Michel Ludwig7c3f53e2007-06-16 23:21:48 -0300221 struct video_device *vfd;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300222 struct video_device *radio_dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300223 struct tm6000_dmaqueue vidq;
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -0300224 struct v4l2_device v4l2_dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300225
226 int input;
Stefan Ringelfb7ef982011-05-09 16:53:51 -0300227 struct tm6000_input vinput[3]; /* video input */
228 struct tm6000_input rinput; /* radio input */
229
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300230 int freq;
231 unsigned int fourcc;
232
233 enum tm6000_mode mode;
234
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300235 int ctl_mute; /* audio */
236 int ctl_volume;
Stefan Ringel886a3c02011-05-09 16:53:50 -0300237 int amode;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300238
Michel Ludwig3169c9b2007-08-21 17:37:22 -0300239 /* DVB-T support */
240 struct tm6000_dvb *dvb;
241
Stefan Ringeld77057f2010-05-30 09:19:02 -0300242 /* audio support */
243 struct snd_tm6000_card *adev;
Mauro Carvalho Chehab06f08e32010-10-09 21:15:33 -0300244 struct work_struct wq_trigger; /* Trigger to start/stop audio for alsa module */
245 atomic_t stream_started; /* stream should be running if true */
Stefan Ringeld77057f2010-05-30 09:19:02 -0300246
Stefan Ringeld064f962010-06-20 17:16:52 -0300247 struct tm6000_IR *ir;
248
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300249 /* locks */
250 struct mutex lock;
Thierry Redingfc4eab22011-08-04 04:14:10 -0300251 struct mutex usb_lock;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300252
253 /* usb transfer */
254 struct usb_device *udev; /* the usb device */
255
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300256 struct tm6000_endpoint bulk_in, bulk_out, isoc_in, isoc_out;
Stefan Ringeld064f962010-06-20 17:16:52 -0300257 struct tm6000_endpoint int_in, int_out;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300258
259 /* scaler!=0 if scaler is active*/
260 int scaler;
261
262 /* Isoc control struct */
263 struct usb_isoc_ctl isoc_ctl;
264
265 spinlock_t slock;
Thierry Reding42845702011-09-01 02:43:03 -0300266
Julian Scheel16427fa2012-10-04 10:04:28 -0300267 /* urb dma buffers */
268 char **urb_buffer;
269 dma_addr_t *urb_dma;
270 unsigned int urb_size;
271
Thierry Reding42845702011-09-01 02:43:03 -0300272 unsigned long quirks;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300273};
274
Mauro Carvalho Chehab39e12562010-06-03 16:31:20 -0300275enum tm6000_ops_type {
276 TM6000_AUDIO = 0x10,
277 TM6000_DVB = 0x20,
278};
Stefan Ringel0439db752010-05-10 13:22:51 -0300279
280struct tm6000_ops {
281 struct list_head next;
282 char *name;
Mauro Carvalho Chehab39e12562010-06-03 16:31:20 -0300283 enum tm6000_ops_type type;
Stefan Ringel0439db752010-05-10 13:22:51 -0300284 int (*init)(struct tm6000_core *);
285 int (*fini)(struct tm6000_core *);
Mauro Carvalho Chehabb17b8692010-06-03 17:16:28 -0300286 int (*fillbuf)(struct tm6000_core *, char *buf, int size);
Stefan Ringel0439db752010-05-10 13:22:51 -0300287};
288
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300289struct tm6000_fh {
290 struct tm6000_core *dev;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300291 unsigned int radio;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300292
293 /* video capture */
294 struct tm6000_fmt *fmt;
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300295 unsigned int width, height;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300296 struct videobuf_queue vb_vidq;
297
298 enum v4l2_buf_type type;
299};
300
Ruslan Pisarev40004e22010-10-20 06:35:34 -0300301#define TM6000_STD (V4L2_STD_PAL|V4L2_STD_PAL_N|V4L2_STD_PAL_Nc| \
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300302 V4L2_STD_PAL_M|V4L2_STD_PAL_60|V4L2_STD_NTSC_M| \
Ruslan Pisarev40004e22010-10-20 06:35:34 -0300303 V4L2_STD_NTSC_M_JP|V4L2_STD_SECAM)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300304
Stefan Ringele78c8f22010-02-05 19:57:06 -0300305/* In tm6000-cards.c */
306
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300307int tm6000_tuner_callback(void *ptr, int component, int command, int arg);
308int tm6000_xc5000_callback(void *ptr, int component, int command, int arg);
Mauro Carvalho Chehabe3ee9e52010-02-08 08:43:41 -0200309int tm6000_cards_setup(struct tm6000_core *dev);
Dmitri Belimov641d2112010-12-22 05:57:46 -0300310void tm6000_flash_led(struct tm6000_core *dev, u8 state);
Mauro Carvalho Chehabe3ee9e52010-02-08 08:43:41 -0200311
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300312/* In tm6000-core.c */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300313
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300314int tm6000_read_write_usb(struct tm6000_core *dev, u8 reqtype, u8 req,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300315 u16 value, u16 index, u8 *buf, u16 len);
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300316int tm6000_get_reg(struct tm6000_core *dev, u8 req, u16 value, u16 index);
Mauro Carvalho Chehabe3ee9e52010-02-08 08:43:41 -0200317int tm6000_get_reg16(struct tm6000_core *dev, u8 req, u16 value, u16 index);
Stefan Ringel2f790882010-04-02 13:52:49 -0300318int tm6000_get_reg32(struct tm6000_core *dev, u8 req, u16 value, u16 index);
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300319int tm6000_set_reg(struct tm6000_core *dev, u8 req, u16 value, u16 index);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300320int tm6000_set_reg_mask(struct tm6000_core *dev, u8 req, u16 value,
321 u16 index, u16 mask);
Dmitri Belimov2a15ac72010-05-18 04:23:29 -0300322int tm6000_i2c_reset(struct tm6000_core *dev, u16 tsleep);
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300323int tm6000_init(struct tm6000_core *dev);
Thierry Redingdd0c8ab2011-08-04 04:14:13 -0300324int tm6000_reset(struct tm6000_core *dev);
Dmitri Belimov2a15ac72010-05-18 04:23:29 -0300325
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300326int tm6000_init_analog_mode(struct tm6000_core *dev);
327int tm6000_init_digital_mode(struct tm6000_core *dev);
328int tm6000_set_audio_bitrate(struct tm6000_core *dev, int bitrate);
Stefan Ringel0f6040e2011-05-09 16:53:53 -0300329int tm6000_set_audio_rinput(struct tm6000_core *dev);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300330int tm6000_tvaudio_set_mute(struct tm6000_core *dev, u8 mute);
331void tm6000_set_volume(struct tm6000_core *dev, int vol);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300332
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300333int tm6000_v4l2_register(struct tm6000_core *dev);
334int tm6000_v4l2_unregister(struct tm6000_core *dev);
335int tm6000_v4l2_exit(void);
336void tm6000_set_fourcc_format(struct tm6000_core *dev);
337
Stefan Ringel0439db752010-05-10 13:22:51 -0300338void tm6000_remove_from_devlist(struct tm6000_core *dev);
339void tm6000_add_into_devlist(struct tm6000_core *dev);
340int tm6000_register_extension(struct tm6000_ops *ops);
341void tm6000_unregister_extension(struct tm6000_ops *ops);
342void tm6000_init_extension(struct tm6000_core *dev);
343void tm6000_close_extension(struct tm6000_core *dev);
Mauro Carvalho Chehabb17b8692010-06-03 17:16:28 -0300344int tm6000_call_fillbuf(struct tm6000_core *dev, enum tm6000_ops_type type,
345 char *buf, int size);
346
Stefan Ringel0439db752010-05-10 13:22:51 -0300347
Mauro Carvalho Chehab5200401a2007-11-02 09:51:13 -0300348/* In tm6000-stds.c */
349void tm6000_get_std_res(struct tm6000_core *dev);
Stefan Ringel0f6040e2011-05-09 16:53:53 -0300350int tm6000_set_standard(struct tm6000_core *dev);
Mauro Carvalho Chehab5200401a2007-11-02 09:51:13 -0300351
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300352/* In tm6000-i2c.c */
353int tm6000_i2c_register(struct tm6000_core *dev);
354int tm6000_i2c_unregister(struct tm6000_core *dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300355
356/* In tm6000-queue.c */
357
358int tm6000_v4l2_mmap(struct file *filp, struct vm_area_struct *vma);
359
360int tm6000_vidioc_streamon(struct file *file, void *priv,
361 enum v4l2_buf_type i);
362int tm6000_vidioc_streamoff(struct file *file, void *priv,
363 enum v4l2_buf_type i);
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300364int tm6000_vidioc_reqbufs(struct file *file, void *priv,
365 struct v4l2_requestbuffers *rb);
366int tm6000_vidioc_querybuf(struct file *file, void *priv,
367 struct v4l2_buffer *b);
368int tm6000_vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b);
369int tm6000_vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300370ssize_t tm6000_v4l2_read(struct file *filp, char __user * buf, size_t count,
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300371 loff_t *f_pos);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300372unsigned int tm6000_v4l2_poll(struct file *file,
373 struct poll_table_struct *wait);
374int tm6000_queue_init(struct tm6000_core *dev);
375
Mauro Carvalho Chehab576d5732008-01-11 13:55:45 -0300376/* In tm6000-alsa.c */
Stefan Ringel0439db752010-05-10 13:22:51 -0300377/*int tm6000_audio_init(struct tm6000_core *dev, int idx);*/
Mauro Carvalho Chehab576d5732008-01-11 13:55:45 -0300378
Stefan Ringeld064f962010-06-20 17:16:52 -0300379/* In tm6000-input.c */
380int tm6000_ir_init(struct tm6000_core *dev);
381int tm6000_ir_fini(struct tm6000_core *dev);
382void tm6000_ir_wait(struct tm6000_core *dev, u8 state);
Dmitri Belimov641d2112010-12-22 05:57:46 -0300383int tm6000_ir_int_start(struct tm6000_core *dev);
384void tm6000_ir_int_stop(struct tm6000_core *dev);
Mauro Carvalho Chehab576d5732008-01-11 13:55:45 -0300385
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300386/* Debug stuff */
387
388extern int tm6000_debug;
389
390#define dprintk(dev, level, fmt, arg...) do {\
391 if (tm6000_debug & level) \
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300392 printk(KERN_INFO "(%lu) %s %s :"fmt, jiffies, \
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300393 dev->name, __func__ , ##arg); } while (0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300394
395#define V4L2_DEBUG_REG 0x0004
396#define V4L2_DEBUG_I2C 0x0008
397#define V4L2_DEBUG_QUEUE 0x0010
398#define V4L2_DEBUG_ISOC 0x0020
399#define V4L2_DEBUG_RES_LOCK 0x0040 /* Resource locking */
400#define V4L2_DEBUG_OPEN 0x0080 /* video open/close debug */
401
402#define tm6000_err(fmt, arg...) do {\
403 printk(KERN_ERR "tm6000 %s :"fmt, \
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300404 __func__ , ##arg); } while (0)