Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 1 | /* |
Ruslan Pisarev | d0058645 | 2010-10-20 06:35:54 -0300 | [diff] [blame] | 2 | * 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 Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 21 | */ |
| 22 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 23 | #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 Chehab | 427f7fa | 2009-09-14 16:37:13 -0300 | [diff] [blame] | 29 | #include <media/v4l2-device.h> |
Hans Verkuil | 9f74735 | 2013-01-31 08:23:01 -0300 | [diff] [blame] | 30 | #include <media/v4l2-ctrls.h> |
Hans Verkuil | 770056c | 2012-09-11 11:50:37 -0300 | [diff] [blame] | 31 | #include <media/v4l2-fh.h> |
Thierry Reding | 3d1a51d | 2011-08-04 04:14:01 -0300 | [diff] [blame] | 32 | |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 33 | #include <linux/dvb/frontend.h> |
| 34 | #include "dvb_demux.h" |
| 35 | #include "dvb_frontend.h" |
| 36 | #include "dmxdev.h" |
| 37 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 38 | /* Inputs */ |
Mauro Carvalho Chehab | c85cba3 | 2007-07-19 11:09:58 -0300 | [diff] [blame] | 39 | enum tm6000_itype { |
Stefan Ringel | fb7ef98 | 2011-05-09 16:53:51 -0300 | [diff] [blame] | 40 | TM6000_INPUT_TV = 1, |
| 41 | TM6000_INPUT_COMPOSITE1, |
| 42 | TM6000_INPUT_COMPOSITE2, |
Mauro Carvalho Chehab | c85cba3 | 2007-07-19 11:09:58 -0300 | [diff] [blame] | 43 | TM6000_INPUT_SVIDEO, |
Stefan Ringel | fb7ef98 | 2011-05-09 16:53:51 -0300 | [diff] [blame] | 44 | TM6000_INPUT_DVB, |
| 45 | TM6000_INPUT_RADIO, |
| 46 | }; |
| 47 | |
| 48 | enum 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 Chehab | c85cba3 | 2007-07-19 11:09:58 -0300 | [diff] [blame] | 57 | }; |
| 58 | |
Mauro Carvalho Chehab | 29c389b | 2008-01-08 11:19:22 -0300 | [diff] [blame] | 59 | enum tm6000_devtype { |
| 60 | TM6000 = 0, |
| 61 | TM5600, |
| 62 | TM6010, |
| 63 | }; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 64 | |
Stefan Ringel | fb7ef98 | 2011-05-09 16:53:51 -0300 | [diff] [blame] | 65 | struct 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 Belimov | 8aff8ba | 2011-02-17 22:11:05 -0300 | [diff] [blame] | 71 | }; |
| 72 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 73 | /* ------------------------------------------------------------------ |
Ruslan Pisarev | 40004e2 | 2010-10-20 06:35:34 -0300 | [diff] [blame] | 74 | * Basic structures |
| 75 | * ------------------------------------------------------------------ |
| 76 | */ |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 77 | |
| 78 | struct tm6000_fmt { |
| 79 | char *name; |
| 80 | u32 fourcc; /* v4l2 format id */ |
| 81 | int depth; |
| 82 | }; |
| 83 | |
| 84 | /* buffer for one video frame */ |
| 85 | struct tm6000_buffer { |
| 86 | /* common v4l buffer stuff -- must be first */ |
| 87 | struct videobuf_buffer vb; |
| 88 | |
| 89 | struct tm6000_fmt *fmt; |
| 90 | }; |
| 91 | |
| 92 | struct tm6000_dmaqueue { |
| 93 | struct list_head active; |
| 94 | struct list_head queued; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 95 | |
| 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 */ |
| 105 | enum tm6000_core_state { |
| 106 | DEV_INITIALIZED = 0x01, |
| 107 | DEV_DISCONNECTED = 0x02, |
| 108 | DEV_MISCONFIGURED = 0x04, |
| 109 | }; |
| 110 | |
| 111 | /* io methods */ |
| 112 | enum tm6000_io_method { |
| 113 | IO_NONE, |
| 114 | IO_READ, |
| 115 | IO_MMAP, |
| 116 | }; |
| 117 | |
| 118 | enum tm6000_mode { |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 119 | TM6000_MODE_UNKNOWN = 0, |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 120 | TM6000_MODE_ANALOG, |
| 121 | TM6000_MODE_DIGITAL, |
| 122 | }; |
| 123 | |
Stefan Ringel | 32a2232 | 2010-03-29 13:51:10 -0300 | [diff] [blame] | 124 | struct 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 Chehab | af9d9cf | 2010-04-09 01:57:21 -0300 | [diff] [blame] | 132 | }; |
Stefan Ringel | 32a2232 | 2010-03-29 13:51:10 -0300 | [diff] [blame] | 133 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 134 | struct 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 Ludwig | 4386136 | 2007-09-24 17:01:49 -0300 | [diff] [blame] | 140 | unsigned int has_remote:1; |
Stefan Ringel | 1416910 | 2011-05-09 16:53:49 -0300 | [diff] [blame] | 141 | unsigned int has_radio:1; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 142 | }; |
| 143 | |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 144 | struct 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 Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 150 | struct urb *bulk_urb; |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 151 | struct mutex mutex; |
| 152 | }; |
| 153 | |
Stefan Ringel | d77057f | 2010-05-30 09:19:02 -0300 | [diff] [blame] | 154 | struct snd_tm6000_card { |
| 155 | struct snd_card *card; |
| 156 | spinlock_t reg_lock; |
Stefan Ringel | d77057f | 2010-05-30 09:19:02 -0300 | [diff] [blame] | 157 | struct tm6000_core *core; |
Stefan Ringel | d77057f | 2010-05-30 09:19:02 -0300 | [diff] [blame] | 158 | struct snd_pcm_substream *substream; |
Mauro Carvalho Chehab | 3f23a81 | 2010-06-05 15:10:36 -0300 | [diff] [blame] | 159 | |
| 160 | /* temporary data for buffer fill processing */ |
| 161 | unsigned buf_pos; |
| 162 | unsigned period_pos; |
Stefan Ringel | d77057f | 2010-05-30 09:19:02 -0300 | [diff] [blame] | 163 | }; |
| 164 | |
Mauro Carvalho Chehab | 6ae635c | 2010-04-26 11:24:18 -0300 | [diff] [blame] | 165 | struct tm6000_endpoint { |
| 166 | struct usb_host_endpoint *endp; |
| 167 | __u8 bInterfaceNumber; |
| 168 | __u8 bAlternateSetting; |
| 169 | unsigned maxsize; |
| 170 | }; |
| 171 | |
Thierry Reding | 4284570 | 2011-09-01 02:43:03 -0300 | [diff] [blame] | 172 | #define TM6000_QUIRK_NO_USB_DELAY (1 << 0) |
| 173 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 174 | struct 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 Chehab | 29c389b | 2008-01-08 11:19:22 -0300 | [diff] [blame] | 179 | enum tm6000_devtype dev_type; /* type of device */ |
Mauro Carvalho Chehab | 792bc09 | 2011-04-20 18:43:24 -0300 | [diff] [blame] | 180 | unsigned char eedata[256]; /* Eeprom data */ |
| 181 | unsigned eedata_size; /* Size of the eeprom info */ |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 182 | |
| 183 | v4l2_std_id norm; /* Current norm */ |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 184 | int width, height; /* Selected resolution */ |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 185 | |
| 186 | enum tm6000_core_state state; |
| 187 | |
| 188 | /* Device Capabilities*/ |
| 189 | struct tm6000_capabilities caps; |
| 190 | |
Mauro Carvalho Chehab | 6740a93 | 2011-11-30 14:54:05 -0300 | [diff] [blame] | 191 | /* Used to load alsa/dvb */ |
| 192 | struct work_struct request_module_wk; |
| 193 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 194 | /* Tuner configuration */ |
Michel Ludwig | 95a8382 | 2007-07-24 08:06:45 -0300 | [diff] [blame] | 195 | int tuner_type; /* type of the tuner */ |
| 196 | int tuner_addr; /* tuner address */ |
Stefan Ringel | 32a2232 | 2010-03-29 13:51:10 -0300 | [diff] [blame] | 197 | |
| 198 | struct tm6000_gpio gpio; |
Michel Ludwig | 95a8382 | 2007-07-24 08:06:45 -0300 | [diff] [blame] | 199 | |
Stefan Ringel | d064f96 | 2010-06-20 17:16:52 -0300 | [diff] [blame] | 200 | char *ir_codes; |
| 201 | |
Dmitri Belimov | 8aff8ba | 2011-02-17 22:11:05 -0300 | [diff] [blame] | 202 | __u8 radio; |
| 203 | |
Michel Ludwig | 95a8382 | 2007-07-24 08:06:45 -0300 | [diff] [blame] | 204 | /* Demodulator configuration */ |
| 205 | int demod_addr; /* demodulator address */ |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 206 | |
Mauro Carvalho Chehab | c13dd70 | 2007-09-19 07:36:34 -0300 | [diff] [blame] | 207 | int audio_bitrate; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 208 | /* i2c i/o */ |
| 209 | struct i2c_adapter i2c_adap; |
| 210 | struct i2c_client i2c_client; |
| 211 | |
Stefan Ringel | 0439db75 | 2010-05-10 13:22:51 -0300 | [diff] [blame] | 212 | |
| 213 | /* extension */ |
| 214 | struct list_head devlist; |
| 215 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 216 | /* video for linux */ |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 217 | int users; |
| 218 | |
| 219 | /* various device info */ |
Mauro Carvalho Chehab | 9efd85d | 2010-10-11 10:48:11 -0300 | [diff] [blame] | 220 | struct tm6000_fh *resources; /* Points to fh that is streaming */ |
| 221 | bool is_res_read; |
| 222 | |
Michel Ludwig | 7c3f53e | 2007-06-16 23:21:48 -0300 | [diff] [blame] | 223 | struct video_device *vfd; |
Dmitri Belimov | 8aff8ba | 2011-02-17 22:11:05 -0300 | [diff] [blame] | 224 | struct video_device *radio_dev; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 225 | struct tm6000_dmaqueue vidq; |
Mauro Carvalho Chehab | 427f7fa | 2009-09-14 16:37:13 -0300 | [diff] [blame] | 226 | struct v4l2_device v4l2_dev; |
Hans Verkuil | 9f74735 | 2013-01-31 08:23:01 -0300 | [diff] [blame] | 227 | struct v4l2_ctrl_handler ctrl_handler; |
| 228 | struct v4l2_ctrl_handler radio_ctrl_handler; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 229 | |
| 230 | int input; |
Stefan Ringel | fb7ef98 | 2011-05-09 16:53:51 -0300 | [diff] [blame] | 231 | struct tm6000_input vinput[3]; /* video input */ |
| 232 | struct tm6000_input rinput; /* radio input */ |
| 233 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 234 | int freq; |
| 235 | unsigned int fourcc; |
| 236 | |
| 237 | enum tm6000_mode mode; |
| 238 | |
Dmitri Belimov | 8aff8ba | 2011-02-17 22:11:05 -0300 | [diff] [blame] | 239 | int ctl_mute; /* audio */ |
| 240 | int ctl_volume; |
Stefan Ringel | 886a3c0 | 2011-05-09 16:53:50 -0300 | [diff] [blame] | 241 | int amode; |
Dmitri Belimov | 8aff8ba | 2011-02-17 22:11:05 -0300 | [diff] [blame] | 242 | |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 243 | /* DVB-T support */ |
| 244 | struct tm6000_dvb *dvb; |
| 245 | |
Stefan Ringel | d77057f | 2010-05-30 09:19:02 -0300 | [diff] [blame] | 246 | /* audio support */ |
| 247 | struct snd_tm6000_card *adev; |
Mauro Carvalho Chehab | 06f08e3 | 2010-10-09 21:15:33 -0300 | [diff] [blame] | 248 | struct work_struct wq_trigger; /* Trigger to start/stop audio for alsa module */ |
| 249 | atomic_t stream_started; /* stream should be running if true */ |
Stefan Ringel | d77057f | 2010-05-30 09:19:02 -0300 | [diff] [blame] | 250 | |
Stefan Ringel | d064f96 | 2010-06-20 17:16:52 -0300 | [diff] [blame] | 251 | struct tm6000_IR *ir; |
| 252 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 253 | /* locks */ |
| 254 | struct mutex lock; |
Thierry Reding | fc4eab2 | 2011-08-04 04:14:10 -0300 | [diff] [blame] | 255 | struct mutex usb_lock; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 256 | |
| 257 | /* usb transfer */ |
| 258 | struct usb_device *udev; /* the usb device */ |
| 259 | |
Mauro Carvalho Chehab | 6ae635c | 2010-04-26 11:24:18 -0300 | [diff] [blame] | 260 | struct tm6000_endpoint bulk_in, bulk_out, isoc_in, isoc_out; |
Stefan Ringel | d064f96 | 2010-06-20 17:16:52 -0300 | [diff] [blame] | 261 | struct tm6000_endpoint int_in, int_out; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 262 | |
| 263 | /* scaler!=0 if scaler is active*/ |
| 264 | int scaler; |
| 265 | |
| 266 | /* Isoc control struct */ |
| 267 | struct usb_isoc_ctl isoc_ctl; |
| 268 | |
| 269 | spinlock_t slock; |
Thierry Reding | 4284570 | 2011-09-01 02:43:03 -0300 | [diff] [blame] | 270 | |
Julian Scheel | 16427fa | 2012-10-04 10:04:28 -0300 | [diff] [blame] | 271 | /* urb dma buffers */ |
| 272 | char **urb_buffer; |
| 273 | dma_addr_t *urb_dma; |
| 274 | unsigned int urb_size; |
| 275 | |
Thierry Reding | 4284570 | 2011-09-01 02:43:03 -0300 | [diff] [blame] | 276 | unsigned long quirks; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 277 | }; |
| 278 | |
Mauro Carvalho Chehab | 39e1256 | 2010-06-03 16:31:20 -0300 | [diff] [blame] | 279 | enum tm6000_ops_type { |
| 280 | TM6000_AUDIO = 0x10, |
| 281 | TM6000_DVB = 0x20, |
| 282 | }; |
Stefan Ringel | 0439db75 | 2010-05-10 13:22:51 -0300 | [diff] [blame] | 283 | |
| 284 | struct tm6000_ops { |
| 285 | struct list_head next; |
| 286 | char *name; |
Mauro Carvalho Chehab | 39e1256 | 2010-06-03 16:31:20 -0300 | [diff] [blame] | 287 | enum tm6000_ops_type type; |
Stefan Ringel | 0439db75 | 2010-05-10 13:22:51 -0300 | [diff] [blame] | 288 | int (*init)(struct tm6000_core *); |
| 289 | int (*fini)(struct tm6000_core *); |
Mauro Carvalho Chehab | b17b869 | 2010-06-03 17:16:28 -0300 | [diff] [blame] | 290 | int (*fillbuf)(struct tm6000_core *, char *buf, int size); |
Stefan Ringel | 0439db75 | 2010-05-10 13:22:51 -0300 | [diff] [blame] | 291 | }; |
| 292 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 293 | struct tm6000_fh { |
Hans Verkuil | 770056c | 2012-09-11 11:50:37 -0300 | [diff] [blame] | 294 | struct v4l2_fh fh; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 295 | struct tm6000_core *dev; |
Dmitri Belimov | 8aff8ba | 2011-02-17 22:11:05 -0300 | [diff] [blame] | 296 | unsigned int radio; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 297 | |
| 298 | /* video capture */ |
| 299 | struct tm6000_fmt *fmt; |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 300 | unsigned int width, height; |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 301 | struct videobuf_queue vb_vidq; |
| 302 | |
| 303 | enum v4l2_buf_type type; |
| 304 | }; |
| 305 | |
Ruslan Pisarev | 40004e2 | 2010-10-20 06:35:34 -0300 | [diff] [blame] | 306 | #define TM6000_STD (V4L2_STD_PAL|V4L2_STD_PAL_N|V4L2_STD_PAL_Nc| \ |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 307 | V4L2_STD_PAL_M|V4L2_STD_PAL_60|V4L2_STD_NTSC_M| \ |
Ruslan Pisarev | 40004e2 | 2010-10-20 06:35:34 -0300 | [diff] [blame] | 308 | V4L2_STD_NTSC_M_JP|V4L2_STD_SECAM) |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 309 | |
Stefan Ringel | e78c8f2 | 2010-02-05 19:57:06 -0300 | [diff] [blame] | 310 | /* In tm6000-cards.c */ |
| 311 | |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 312 | int tm6000_tuner_callback(void *ptr, int component, int command, int arg); |
| 313 | int tm6000_xc5000_callback(void *ptr, int component, int command, int arg); |
Mauro Carvalho Chehab | e3ee9e5 | 2010-02-08 08:43:41 -0200 | [diff] [blame] | 314 | int tm6000_cards_setup(struct tm6000_core *dev); |
Dmitri Belimov | 641d211 | 2010-12-22 05:57:46 -0300 | [diff] [blame] | 315 | void tm6000_flash_led(struct tm6000_core *dev, u8 state); |
Mauro Carvalho Chehab | e3ee9e5 | 2010-02-08 08:43:41 -0200 | [diff] [blame] | 316 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 317 | /* In tm6000-core.c */ |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 318 | |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 319 | int tm6000_read_write_usb(struct tm6000_core *dev, u8 reqtype, u8 req, |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 320 | u16 value, u16 index, u8 *buf, u16 len); |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 321 | int tm6000_get_reg(struct tm6000_core *dev, u8 req, u16 value, u16 index); |
Mauro Carvalho Chehab | e3ee9e5 | 2010-02-08 08:43:41 -0200 | [diff] [blame] | 322 | int tm6000_get_reg16(struct tm6000_core *dev, u8 req, u16 value, u16 index); |
Stefan Ringel | 2f79088 | 2010-04-02 13:52:49 -0300 | [diff] [blame] | 323 | int tm6000_get_reg32(struct tm6000_core *dev, u8 req, u16 value, u16 index); |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 324 | int tm6000_set_reg(struct tm6000_core *dev, u8 req, u16 value, u16 index); |
Dmitri Belimov | 8aff8ba | 2011-02-17 22:11:05 -0300 | [diff] [blame] | 325 | int tm6000_set_reg_mask(struct tm6000_core *dev, u8 req, u16 value, |
| 326 | u16 index, u16 mask); |
Dmitri Belimov | 2a15ac7 | 2010-05-18 04:23:29 -0300 | [diff] [blame] | 327 | int tm6000_i2c_reset(struct tm6000_core *dev, u16 tsleep); |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 328 | int tm6000_init(struct tm6000_core *dev); |
Thierry Reding | dd0c8ab | 2011-08-04 04:14:13 -0300 | [diff] [blame] | 329 | int tm6000_reset(struct tm6000_core *dev); |
Dmitri Belimov | 2a15ac7 | 2010-05-18 04:23:29 -0300 | [diff] [blame] | 330 | |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 331 | int tm6000_init_analog_mode(struct tm6000_core *dev); |
| 332 | int tm6000_init_digital_mode(struct tm6000_core *dev); |
| 333 | int tm6000_set_audio_bitrate(struct tm6000_core *dev, int bitrate); |
Stefan Ringel | 0f6040e | 2011-05-09 16:53:53 -0300 | [diff] [blame] | 334 | int tm6000_set_audio_rinput(struct tm6000_core *dev); |
Dmitri Belimov | 8aff8ba | 2011-02-17 22:11:05 -0300 | [diff] [blame] | 335 | int tm6000_tvaudio_set_mute(struct tm6000_core *dev, u8 mute); |
| 336 | void tm6000_set_volume(struct tm6000_core *dev, int vol); |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 337 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 338 | int tm6000_v4l2_register(struct tm6000_core *dev); |
| 339 | int tm6000_v4l2_unregister(struct tm6000_core *dev); |
| 340 | int tm6000_v4l2_exit(void); |
| 341 | void tm6000_set_fourcc_format(struct tm6000_core *dev); |
| 342 | |
Stefan Ringel | 0439db75 | 2010-05-10 13:22:51 -0300 | [diff] [blame] | 343 | void tm6000_remove_from_devlist(struct tm6000_core *dev); |
| 344 | void tm6000_add_into_devlist(struct tm6000_core *dev); |
| 345 | int tm6000_register_extension(struct tm6000_ops *ops); |
| 346 | void tm6000_unregister_extension(struct tm6000_ops *ops); |
| 347 | void tm6000_init_extension(struct tm6000_core *dev); |
| 348 | void tm6000_close_extension(struct tm6000_core *dev); |
Mauro Carvalho Chehab | b17b869 | 2010-06-03 17:16:28 -0300 | [diff] [blame] | 349 | int tm6000_call_fillbuf(struct tm6000_core *dev, enum tm6000_ops_type type, |
| 350 | char *buf, int size); |
| 351 | |
Stefan Ringel | 0439db75 | 2010-05-10 13:22:51 -0300 | [diff] [blame] | 352 | |
Mauro Carvalho Chehab | 5200401a | 2007-11-02 09:51:13 -0300 | [diff] [blame] | 353 | /* In tm6000-stds.c */ |
| 354 | void tm6000_get_std_res(struct tm6000_core *dev); |
Stefan Ringel | 0f6040e | 2011-05-09 16:53:53 -0300 | [diff] [blame] | 355 | int tm6000_set_standard(struct tm6000_core *dev); |
Mauro Carvalho Chehab | 5200401a | 2007-11-02 09:51:13 -0300 | [diff] [blame] | 356 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 357 | /* In tm6000-i2c.c */ |
| 358 | int tm6000_i2c_register(struct tm6000_core *dev); |
| 359 | int tm6000_i2c_unregister(struct tm6000_core *dev); |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 360 | |
| 361 | /* In tm6000-queue.c */ |
| 362 | |
| 363 | int tm6000_v4l2_mmap(struct file *filp, struct vm_area_struct *vma); |
| 364 | |
| 365 | int tm6000_vidioc_streamon(struct file *file, void *priv, |
| 366 | enum v4l2_buf_type i); |
| 367 | int tm6000_vidioc_streamoff(struct file *file, void *priv, |
| 368 | enum v4l2_buf_type i); |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 369 | int tm6000_vidioc_reqbufs(struct file *file, void *priv, |
| 370 | struct v4l2_requestbuffers *rb); |
| 371 | int tm6000_vidioc_querybuf(struct file *file, void *priv, |
| 372 | struct v4l2_buffer *b); |
| 373 | int tm6000_vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *b); |
| 374 | int tm6000_vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *b); |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 375 | ssize_t tm6000_v4l2_read(struct file *filp, char __user * buf, size_t count, |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 376 | loff_t *f_pos); |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 377 | unsigned int tm6000_v4l2_poll(struct file *file, |
| 378 | struct poll_table_struct *wait); |
| 379 | int tm6000_queue_init(struct tm6000_core *dev); |
| 380 | |
Mauro Carvalho Chehab | 576d573 | 2008-01-11 13:55:45 -0300 | [diff] [blame] | 381 | /* In tm6000-alsa.c */ |
Stefan Ringel | 0439db75 | 2010-05-10 13:22:51 -0300 | [diff] [blame] | 382 | /*int tm6000_audio_init(struct tm6000_core *dev, int idx);*/ |
Mauro Carvalho Chehab | 576d573 | 2008-01-11 13:55:45 -0300 | [diff] [blame] | 383 | |
Stefan Ringel | d064f96 | 2010-06-20 17:16:52 -0300 | [diff] [blame] | 384 | /* In tm6000-input.c */ |
| 385 | int tm6000_ir_init(struct tm6000_core *dev); |
| 386 | int tm6000_ir_fini(struct tm6000_core *dev); |
| 387 | void tm6000_ir_wait(struct tm6000_core *dev, u8 state); |
Dmitri Belimov | 641d211 | 2010-12-22 05:57:46 -0300 | [diff] [blame] | 388 | int tm6000_ir_int_start(struct tm6000_core *dev); |
| 389 | void tm6000_ir_int_stop(struct tm6000_core *dev); |
Mauro Carvalho Chehab | 576d573 | 2008-01-11 13:55:45 -0300 | [diff] [blame] | 390 | |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 391 | /* Debug stuff */ |
| 392 | |
| 393 | extern int tm6000_debug; |
| 394 | |
| 395 | #define dprintk(dev, level, fmt, arg...) do {\ |
| 396 | if (tm6000_debug & level) \ |
Timofey Trofimov | 52e0a72a | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 397 | printk(KERN_INFO "(%lu) %s %s :"fmt, jiffies, \ |
Mauro Carvalho Chehab | 45dbf0d | 2011-09-23 09:26:22 -0300 | [diff] [blame] | 398 | dev->name, __func__ , ##arg); } while (0) |
Mauro Carvalho Chehab | 9701dc9 | 2009-09-14 09:42:41 -0300 | [diff] [blame] | 399 | |
| 400 | #define V4L2_DEBUG_REG 0x0004 |
| 401 | #define V4L2_DEBUG_I2C 0x0008 |
| 402 | #define V4L2_DEBUG_QUEUE 0x0010 |
| 403 | #define V4L2_DEBUG_ISOC 0x0020 |
| 404 | #define V4L2_DEBUG_RES_LOCK 0x0040 /* Resource locking */ |
| 405 | #define V4L2_DEBUG_OPEN 0x0080 /* video open/close debug */ |
| 406 | |
| 407 | #define tm6000_err(fmt, arg...) do {\ |
| 408 | printk(KERN_ERR "tm6000 %s :"fmt, \ |
Mauro Carvalho Chehab | 45dbf0d | 2011-09-23 09:26:22 -0300 | [diff] [blame] | 409 | __func__ , ##arg); } while (0) |