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