blob: 27ba659cfa85610be14ecd957d5e11d9cdb775c0 [file] [log] [blame]
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -03001/*
Ruslan Pisarevd0058642010-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
Stefan Ringel49e5e032010-02-15 14:37:24 -030036#define TM6000_VERSION KERNEL_VERSION(0, 0, 2)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030037
38/* Inputs */
Mauro Carvalho Chehabc85cba32007-07-19 11:09:58 -030039enum tm6000_itype {
Stefan Ringelfb7ef982011-05-09 16:53:51 -030040 TM6000_INPUT_TV = 1,
41 TM6000_INPUT_COMPOSITE1,
42 TM6000_INPUT_COMPOSITE2,
Mauro Carvalho Chehabc85cba32007-07-19 11:09:58 -030043 TM6000_INPUT_SVIDEO,
Stefan Ringelfb7ef982011-05-09 16:53:51 -030044 TM6000_INPUT_DVB,
45 TM6000_INPUT_RADIO,
46};
47
48enum tm6000_mux {
49 TM6000_VMUX_VIDEO_A = 1,
50 TM6000_VMUX_VIDEO_B,
51 TM6000_VMUX_VIDEO_AB,
52 TM6000_AMUX_ADC1,
53 TM6000_AMUX_ADC2,
54 TM6000_AMUX_SIF1,
55 TM6000_AMUX_SIF2,
56 TM6000_AMUX_I2S,
Mauro Carvalho Chehabc85cba32007-07-19 11:09:58 -030057};
58
Mauro Carvalho Chehab29c389b2008-01-08 11:19:22 -030059enum tm6000_devtype {
60 TM6000 = 0,
61 TM5600,
62 TM6010,
63};
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030064
Stefan Ringelfb7ef982011-05-09 16:53:51 -030065struct tm6000_input {
66 enum tm6000_itype type;
67 enum tm6000_mux vmux;
68 enum tm6000_mux amux;
69 unsigned int v_gpio;
70 unsigned int a_gpio;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -030071};
72
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030073/* ------------------------------------------------------------------
Ruslan Pisarev40004e22010-10-20 06:35:34 -030074 * Basic structures
75 * ------------------------------------------------------------------
76 */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030077
78struct tm6000_fmt {
79 char *name;
80 u32 fourcc; /* v4l2 format id */
81 int depth;
82};
83
84/* buffer for one video frame */
85struct tm6000_buffer {
86 /* common v4l buffer stuff -- must be first */
87 struct videobuf_buffer vb;
88
89 struct tm6000_fmt *fmt;
90};
91
92struct tm6000_dmaqueue {
93 struct list_head active;
94 struct list_head queued;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -030095
96 /* thread for generating video stream*/
97 struct task_struct *kthread;
98 wait_queue_head_t wq;
99 /* Counters to control fps rate */
100 int frame;
101 int ini_jiffies;
102};
103
104/* device states */
105enum tm6000_core_state {
106 DEV_INITIALIZED = 0x01,
107 DEV_DISCONNECTED = 0x02,
108 DEV_MISCONFIGURED = 0x04,
109};
110
111/* io methods */
112enum tm6000_io_method {
113 IO_NONE,
114 IO_READ,
115 IO_MMAP,
116};
117
118enum tm6000_mode {
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300119 TM6000_MODE_UNKNOWN = 0,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300120 TM6000_MODE_ANALOG,
121 TM6000_MODE_DIGITAL,
122};
123
Stefan Ringel32a22322010-03-29 13:51:10 -0300124struct tm6000_gpio {
125 int tuner_reset;
126 int tuner_on;
127 int demod_reset;
128 int demod_on;
129 int power_led;
130 int dvb_led;
131 int ir;
Mauro Carvalho Chehabaf9d9cf2010-04-09 01:57:21 -0300132};
Stefan Ringel32a22322010-03-29 13:51:10 -0300133
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300134struct tm6000_capabilities {
135 unsigned int has_tuner:1;
136 unsigned int has_tda9874:1;
137 unsigned int has_dvb:1;
138 unsigned int has_zl10353:1;
139 unsigned int has_eeprom:1;
Michel Ludwig43861362007-09-24 17:01:49 -0300140 unsigned int has_remote:1;
Stefan Ringel14169102011-05-09 16:53:49 -0300141 unsigned int has_radio:1;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300142};
143
Michel Ludwig3169c9b2007-08-21 17:37:22 -0300144struct tm6000_dvb {
145 struct dvb_adapter adapter;
146 struct dvb_demux demux;
147 struct dvb_frontend *frontend;
148 struct dmxdev dmxdev;
149 unsigned int streams;
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300150 struct urb *bulk_urb;
Michel Ludwig3169c9b2007-08-21 17:37:22 -0300151 struct mutex mutex;
152};
153
Stefan Ringeld77057f2010-05-30 09:19:02 -0300154struct snd_tm6000_card {
155 struct snd_card *card;
156 spinlock_t reg_lock;
Stefan Ringeld77057f2010-05-30 09:19:02 -0300157 struct tm6000_core *core;
Stefan Ringeld77057f2010-05-30 09:19:02 -0300158 struct snd_pcm_substream *substream;
Mauro Carvalho Chehab3f23a812010-06-05 15:10:36 -0300159
160 /* temporary data for buffer fill processing */
161 unsigned buf_pos;
162 unsigned period_pos;
Stefan Ringeld77057f2010-05-30 09:19:02 -0300163};
164
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300165struct tm6000_endpoint {
166 struct usb_host_endpoint *endp;
167 __u8 bInterfaceNumber;
168 __u8 bAlternateSetting;
169 unsigned maxsize;
170};
171
Thierry Reding42845702011-09-01 02:43:03 -0300172#define TM6000_QUIRK_NO_USB_DELAY (1 << 0)
173
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300174struct tm6000_core {
175 /* generic device properties */
176 char name[30]; /* name (including minor) of the device */
177 int model; /* index in the device_data struct */
178 int devno; /* marks the number of this device */
Mauro Carvalho Chehab29c389b2008-01-08 11:19:22 -0300179 enum tm6000_devtype dev_type; /* type of device */
Mauro Carvalho Chehab792bc092011-04-20 18:43:24 -0300180 unsigned char eedata[256]; /* Eeprom data */
181 unsigned eedata_size; /* Size of the eeprom info */
Michel Ludwig3169c9b2007-08-21 17:37:22 -0300182
183 v4l2_std_id norm; /* Current norm */
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300184 int width, height; /* Selected resolution */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300185
186 enum tm6000_core_state state;
187
188 /* Device Capabilities*/
189 struct tm6000_capabilities caps;
190
Mauro Carvalho Chehab6740a932011-11-30 14:54:05 -0300191 /* Used to load alsa/dvb */
192 struct work_struct request_module_wk;
193
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300194 /* Tuner configuration */
Michel Ludwig95a83822007-07-24 08:06:45 -0300195 int tuner_type; /* type of the tuner */
196 int tuner_addr; /* tuner address */
Stefan Ringel32a22322010-03-29 13:51:10 -0300197
198 struct tm6000_gpio gpio;
Michel Ludwig95a83822007-07-24 08:06:45 -0300199
Stefan Ringeld064f962010-06-20 17:16:52 -0300200 char *ir_codes;
201
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300202 __u8 radio;
203
Michel Ludwig95a83822007-07-24 08:06:45 -0300204 /* Demodulator configuration */
205 int demod_addr; /* demodulator address */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300206
Mauro Carvalho Chehabc13dd702007-09-19 07:36:34 -0300207 int audio_bitrate;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300208 /* i2c i/o */
209 struct i2c_adapter i2c_adap;
210 struct i2c_client i2c_client;
211
Stefan Ringel0439db72010-05-10 13:22:51 -0300212
213 /* extension */
214 struct list_head devlist;
215
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300216 /* video for linux */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300217 int users;
218
219 /* various device info */
Mauro Carvalho Chehab9efd85d2010-10-11 10:48:11 -0300220 struct tm6000_fh *resources; /* Points to fh that is streaming */
221 bool is_res_read;
222
Michel Ludwig7c3f53e2007-06-16 23:21:48 -0300223 struct video_device *vfd;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300224 struct video_device *radio_dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300225 struct tm6000_dmaqueue vidq;
Mauro Carvalho Chehab427f7fa2009-09-14 16:37:13 -0300226 struct v4l2_device v4l2_dev;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300227
228 int input;
Stefan Ringelfb7ef982011-05-09 16:53:51 -0300229 struct tm6000_input vinput[3]; /* video input */
230 struct tm6000_input rinput; /* radio input */
231
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300232 int freq;
233 unsigned int fourcc;
234
235 enum tm6000_mode mode;
236
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300237 int ctl_mute; /* audio */
238 int ctl_volume;
Stefan Ringel886a3c02011-05-09 16:53:50 -0300239 int amode;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300240
Michel Ludwig3169c9b2007-08-21 17:37:22 -0300241 /* DVB-T support */
242 struct tm6000_dvb *dvb;
243
Stefan Ringeld77057f2010-05-30 09:19:02 -0300244 /* audio support */
245 struct snd_tm6000_card *adev;
Mauro Carvalho Chehab06f08e32010-10-09 21:15:33 -0300246 struct work_struct wq_trigger; /* Trigger to start/stop audio for alsa module */
247 atomic_t stream_started; /* stream should be running if true */
Stefan Ringeld77057f2010-05-30 09:19:02 -0300248
Stefan Ringeld064f962010-06-20 17:16:52 -0300249 struct tm6000_IR *ir;
250
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300251 /* locks */
252 struct mutex lock;
Thierry Redingfc4eab22011-08-04 04:14:10 -0300253 struct mutex usb_lock;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300254
255 /* usb transfer */
256 struct usb_device *udev; /* the usb device */
257
Mauro Carvalho Chehab6ae635c2010-04-26 11:24:18 -0300258 struct tm6000_endpoint bulk_in, bulk_out, isoc_in, isoc_out;
Stefan Ringeld064f962010-06-20 17:16:52 -0300259 struct tm6000_endpoint int_in, int_out;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300260
261 /* scaler!=0 if scaler is active*/
262 int scaler;
263
264 /* Isoc control struct */
265 struct usb_isoc_ctl isoc_ctl;
266
267 spinlock_t slock;
Thierry Reding42845702011-09-01 02:43:03 -0300268
269 unsigned long quirks;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300270};
271
Mauro Carvalho Chehab39e12562010-06-03 16:31:20 -0300272enum tm6000_ops_type {
273 TM6000_AUDIO = 0x10,
274 TM6000_DVB = 0x20,
275};
Stefan Ringel0439db72010-05-10 13:22:51 -0300276
277struct tm6000_ops {
278 struct list_head next;
279 char *name;
Mauro Carvalho Chehab39e12562010-06-03 16:31:20 -0300280 enum tm6000_ops_type type;
Stefan Ringel0439db72010-05-10 13:22:51 -0300281 int (*init)(struct tm6000_core *);
282 int (*fini)(struct tm6000_core *);
Mauro Carvalho Chehabb17b8692010-06-03 17:16:28 -0300283 int (*fillbuf)(struct tm6000_core *, char *buf, int size);
Stefan Ringel0439db72010-05-10 13:22:51 -0300284};
285
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300286struct tm6000_fh {
287 struct tm6000_core *dev;
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300288 unsigned int radio;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300289
290 /* video capture */
291 struct tm6000_fmt *fmt;
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300292 unsigned int width, height;
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300293 struct videobuf_queue vb_vidq;
294
295 enum v4l2_buf_type type;
296};
297
Ruslan Pisarev40004e22010-10-20 06:35:34 -0300298#define TM6000_STD (V4L2_STD_PAL|V4L2_STD_PAL_N|V4L2_STD_PAL_Nc| \
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300299 V4L2_STD_PAL_M|V4L2_STD_PAL_60|V4L2_STD_NTSC_M| \
Ruslan Pisarev40004e22010-10-20 06:35:34 -0300300 V4L2_STD_NTSC_M_JP|V4L2_STD_SECAM)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300301
Stefan Ringele78c8f22010-02-05 19:57:06 -0300302/* In tm6000-cards.c */
303
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300304int tm6000_tuner_callback(void *ptr, int component, int command, int arg);
305int tm6000_xc5000_callback(void *ptr, int component, int command, int arg);
Mauro Carvalho Chehabe3ee9e52010-02-08 08:43:41 -0200306int tm6000_cards_setup(struct tm6000_core *dev);
Dmitri Belimov641d2112010-12-22 05:57:46 -0300307void tm6000_flash_led(struct tm6000_core *dev, u8 state);
Mauro Carvalho Chehabe3ee9e52010-02-08 08:43:41 -0200308
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300309/* In tm6000-core.c */
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300310
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300311int tm6000_read_write_usb(struct tm6000_core *dev, u8 reqtype, u8 req,
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300312 u16 value, u16 index, u8 *buf, u16 len);
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300313int tm6000_get_reg(struct tm6000_core *dev, u8 req, u16 value, u16 index);
Mauro Carvalho Chehabe3ee9e52010-02-08 08:43:41 -0200314int tm6000_get_reg16(struct tm6000_core *dev, u8 req, u16 value, u16 index);
Stefan Ringel2f790882010-04-02 13:52:49 -0300315int tm6000_get_reg32(struct tm6000_core *dev, u8 req, u16 value, u16 index);
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300316int tm6000_set_reg(struct tm6000_core *dev, u8 req, u16 value, u16 index);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300317int tm6000_set_reg_mask(struct tm6000_core *dev, u8 req, u16 value,
318 u16 index, u16 mask);
Dmitri Belimov2a15ac72010-05-18 04:23:29 -0300319int tm6000_i2c_reset(struct tm6000_core *dev, u16 tsleep);
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300320int tm6000_init(struct tm6000_core *dev);
Thierry Redingdd0c8ab2011-08-04 04:14:13 -0300321int tm6000_reset(struct tm6000_core *dev);
Dmitri Belimov2a15ac72010-05-18 04:23:29 -0300322
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300323int tm6000_init_analog_mode(struct tm6000_core *dev);
324int tm6000_init_digital_mode(struct tm6000_core *dev);
325int tm6000_set_audio_bitrate(struct tm6000_core *dev, int bitrate);
Stefan Ringel0f6040e2011-05-09 16:53:53 -0300326int tm6000_set_audio_rinput(struct tm6000_core *dev);
Dmitri Belimov8aff8ba2011-02-17 22:11:05 -0300327int tm6000_tvaudio_set_mute(struct tm6000_core *dev, u8 mute);
328void tm6000_set_volume(struct tm6000_core *dev, int vol);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300329
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300330int tm6000_v4l2_register(struct tm6000_core *dev);
331int tm6000_v4l2_unregister(struct tm6000_core *dev);
332int tm6000_v4l2_exit(void);
333void tm6000_set_fourcc_format(struct tm6000_core *dev);
334
Stefan Ringel0439db72010-05-10 13:22:51 -0300335void tm6000_remove_from_devlist(struct tm6000_core *dev);
336void tm6000_add_into_devlist(struct tm6000_core *dev);
337int tm6000_register_extension(struct tm6000_ops *ops);
338void tm6000_unregister_extension(struct tm6000_ops *ops);
339void tm6000_init_extension(struct tm6000_core *dev);
340void tm6000_close_extension(struct tm6000_core *dev);
Mauro Carvalho Chehabb17b8692010-06-03 17:16:28 -0300341int tm6000_call_fillbuf(struct tm6000_core *dev, enum tm6000_ops_type type,
342 char *buf, int size);
343
Stefan Ringel0439db72010-05-10 13:22:51 -0300344
Mauro Carvalho Chehab52004012007-11-02 09:51:13 -0300345/* In tm6000-stds.c */
346void tm6000_get_std_res(struct tm6000_core *dev);
Stefan Ringel0f6040e2011-05-09 16:53:53 -0300347int tm6000_set_standard(struct tm6000_core *dev);
Mauro Carvalho Chehab52004012007-11-02 09:51:13 -0300348
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300349/* In tm6000-i2c.c */
350int tm6000_i2c_register(struct tm6000_core *dev);
351int tm6000_i2c_unregister(struct tm6000_core *dev);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300352
353/* In tm6000-queue.c */
354
355int tm6000_v4l2_mmap(struct file *filp, struct vm_area_struct *vma);
356
357int tm6000_vidioc_streamon(struct file *file, void *priv,
358 enum v4l2_buf_type i);
359int tm6000_vidioc_streamoff(struct file *file, void *priv,
360 enum v4l2_buf_type i);
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300361int tm6000_vidioc_reqbufs(struct file *file, void *priv,
362 struct v4l2_requestbuffers *rb);
363int tm6000_vidioc_querybuf(struct file *file, void *priv,
364 struct v4l2_buffer *b);
365int tm6000_vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b);
366int tm6000_vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300367ssize_t tm6000_v4l2_read(struct file *filp, char __user * buf, size_t count,
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300368 loff_t *f_pos);
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300369unsigned int tm6000_v4l2_poll(struct file *file,
370 struct poll_table_struct *wait);
371int tm6000_queue_init(struct tm6000_core *dev);
372
Mauro Carvalho Chehab576d5732008-01-11 13:55:45 -0300373/* In tm6000-alsa.c */
Stefan Ringel0439db72010-05-10 13:22:51 -0300374/*int tm6000_audio_init(struct tm6000_core *dev, int idx);*/
Mauro Carvalho Chehab576d5732008-01-11 13:55:45 -0300375
Stefan Ringeld064f962010-06-20 17:16:52 -0300376/* In tm6000-input.c */
377int tm6000_ir_init(struct tm6000_core *dev);
378int tm6000_ir_fini(struct tm6000_core *dev);
379void tm6000_ir_wait(struct tm6000_core *dev, u8 state);
Dmitri Belimov641d2112010-12-22 05:57:46 -0300380int tm6000_ir_int_start(struct tm6000_core *dev);
381void tm6000_ir_int_stop(struct tm6000_core *dev);
Mauro Carvalho Chehab576d5732008-01-11 13:55:45 -0300382
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300383/* Debug stuff */
384
385extern int tm6000_debug;
386
387#define dprintk(dev, level, fmt, arg...) do {\
388 if (tm6000_debug & level) \
Timofey Trofimov52e0a722010-05-29 13:52:46 -0300389 printk(KERN_INFO "(%lu) %s %s :"fmt, jiffies, \
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300390 dev->name, __func__ , ##arg); } while (0)
Mauro Carvalho Chehab9701dc92009-09-14 09:42:41 -0300391
392#define V4L2_DEBUG_REG 0x0004
393#define V4L2_DEBUG_I2C 0x0008
394#define V4L2_DEBUG_QUEUE 0x0010
395#define V4L2_DEBUG_ISOC 0x0020
396#define V4L2_DEBUG_RES_LOCK 0x0040 /* Resource locking */
397#define V4L2_DEBUG_OPEN 0x0080 /* video open/close debug */
398
399#define tm6000_err(fmt, arg...) do {\
400 printk(KERN_ERR "tm6000 %s :"fmt, \
Mauro Carvalho Chehab45dbf0d2011-09-23 09:26:22 -0300401 __func__ , ##arg); } while (0)