blob: 98ac2e9357438ac795c687b6f36a5f0580ef8bfc [file] [log] [blame]
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001/*
2 * cx18 driver initialization and card probing
3 *
4 * Derived from ivtv-driver.c
5 *
6 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
Andy Walls6afdeaf2010-05-23 18:53:35 -03007 * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.net>
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03008 *
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; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 * 02111-1307 USA
23 */
24
25#include "cx18-driver.h"
Andy Wallsb1526422008-08-30 16:03:44 -030026#include "cx18-io.h"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030027#include "cx18-version.h"
28#include "cx18-cards.h"
29#include "cx18-i2c.h"
30#include "cx18-irq.h"
31#include "cx18-gpio.h"
32#include "cx18-firmware.h"
Andy Walls21a278b2009-04-15 20:45:10 -030033#include "cx18-queue.h"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030034#include "cx18-streams.h"
35#include "cx18-av-core.h"
36#include "cx18-scb.h"
37#include "cx18-mailbox.h"
38#include "cx18-ioctl.h"
39#include "tuner-xc2028.h"
40
41#include <media/tveeprom.h>
42
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030043/* If you have already X v4l cards, then set this to X. This way
44 the device numbers stay matched. Example: you have a WinTV card
45 without radio and a Compro H900 with. Normally this would give a
46 video1 device together with a radio0 device for the Compro. By
47 setting this to 1 you ensure that radio0 is now also radio1. */
48int cx18_first_minor;
49
Devin Heitmuellerd68b6872009-11-20 01:15:54 -030050/* Callback for registering extensions */
51int (*cx18_ext_init)(struct cx18 *);
52EXPORT_SYMBOL(cx18_ext_init);
53
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030054/* add your revision and whatnot here */
55static struct pci_device_id cx18_pci_tbl[] __devinitdata = {
56 {PCI_VENDOR_ID_CX, PCI_DEVICE_ID_CX23418,
57 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
58 {0,}
59};
60
61MODULE_DEVICE_TABLE(pci, cx18_pci_tbl);
62
Andy Walls5811cf92009-02-14 17:08:37 -030063static atomic_t cx18_instance = ATOMIC_INIT(0);
64
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030065/* Parameter declarations */
66static int cardtype[CX18_MAX_CARDS];
67static int tuner[CX18_MAX_CARDS] = { -1, -1, -1, -1, -1, -1, -1, -1,
68 -1, -1, -1, -1, -1, -1, -1, -1,
69 -1, -1, -1, -1, -1, -1, -1, -1,
70 -1, -1, -1, -1, -1, -1, -1, -1 };
71static int radio[CX18_MAX_CARDS] = { -1, -1, -1, -1, -1, -1, -1, -1,
72 -1, -1, -1, -1, -1, -1, -1, -1,
73 -1, -1, -1, -1, -1, -1, -1, -1,
74 -1, -1, -1, -1, -1, -1, -1, -1 };
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -030075static unsigned cardtype_c = 1;
76static unsigned tuner_c = 1;
77static unsigned radio_c = 1;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030078static char pal[] = "--";
79static char secam[] = "--";
80static char ntsc[] = "-";
81
82/* Buffers */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030083static int enc_ts_buffers = CX18_DEFAULT_ENC_TS_BUFFERS;
Andy Walls6ecd86d2008-12-07 23:30:17 -030084static int enc_mpg_buffers = CX18_DEFAULT_ENC_MPG_BUFFERS;
85static int enc_idx_buffers = CX18_DEFAULT_ENC_IDX_BUFFERS;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030086static int enc_yuv_buffers = CX18_DEFAULT_ENC_YUV_BUFFERS;
87static int enc_vbi_buffers = CX18_DEFAULT_ENC_VBI_BUFFERS;
88static int enc_pcm_buffers = CX18_DEFAULT_ENC_PCM_BUFFERS;
89
Andy Walls6ecd86d2008-12-07 23:30:17 -030090static int enc_ts_bufsize = CX18_DEFAULT_ENC_TS_BUFSIZE;
91static int enc_mpg_bufsize = CX18_DEFAULT_ENC_MPG_BUFSIZE;
92static int enc_idx_bufsize = CX18_DEFAULT_ENC_IDX_BUFSIZE;
93static int enc_yuv_bufsize = CX18_DEFAULT_ENC_YUV_BUFSIZE;
Andy Walls6ecd86d2008-12-07 23:30:17 -030094static int enc_pcm_bufsize = CX18_DEFAULT_ENC_PCM_BUFSIZE;
95
96static int enc_ts_bufs = -1;
97static int enc_mpg_bufs = -1;
Andy Wallsefc0b122009-12-30 22:54:53 -030098static int enc_idx_bufs = CX18_MAX_FW_MDLS_PER_STREAM;
Andy Walls6ecd86d2008-12-07 23:30:17 -030099static int enc_yuv_bufs = -1;
100static int enc_vbi_bufs = -1;
101static int enc_pcm_bufs = -1;
102
103
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300104static int cx18_pci_latency = 1;
105
Andy Walls3f75c612008-11-16 23:33:41 -0300106static int mmio_ndelay;
107static int retry_mmio = 1;
108
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300109int cx18_debug;
110
111module_param_array(tuner, int, &tuner_c, 0644);
112module_param_array(radio, bool, &radio_c, 0644);
113module_param_array(cardtype, int, &cardtype_c, 0644);
114module_param_string(pal, pal, sizeof(pal), 0644);
115module_param_string(secam, secam, sizeof(secam), 0644);
116module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
117module_param_named(debug, cx18_debug, int, 0644);
Andy Walls3f75c612008-11-16 23:33:41 -0300118module_param(mmio_ndelay, int, 0644);
119module_param(retry_mmio, int, 0644);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300120module_param(cx18_pci_latency, int, 0644);
121module_param(cx18_first_minor, int, 0644);
122
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300123module_param(enc_ts_buffers, int, 0644);
Andy Walls6ecd86d2008-12-07 23:30:17 -0300124module_param(enc_mpg_buffers, int, 0644);
125module_param(enc_idx_buffers, int, 0644);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300126module_param(enc_yuv_buffers, int, 0644);
127module_param(enc_vbi_buffers, int, 0644);
128module_param(enc_pcm_buffers, int, 0644);
129
Andy Walls6ecd86d2008-12-07 23:30:17 -0300130module_param(enc_ts_bufsize, int, 0644);
131module_param(enc_mpg_bufsize, int, 0644);
132module_param(enc_idx_bufsize, int, 0644);
133module_param(enc_yuv_bufsize, int, 0644);
Andy Walls6ecd86d2008-12-07 23:30:17 -0300134module_param(enc_pcm_bufsize, int, 0644);
135
136module_param(enc_ts_bufs, int, 0644);
137module_param(enc_mpg_bufs, int, 0644);
138module_param(enc_idx_bufs, int, 0644);
139module_param(enc_yuv_bufs, int, 0644);
140module_param(enc_vbi_bufs, int, 0644);
141module_param(enc_pcm_bufs, int, 0644);
142
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300143MODULE_PARM_DESC(tuner, "Tuner type selection,\n"
144 "\t\t\tsee tuner.h for values");
145MODULE_PARM_DESC(radio,
146 "Enable or disable the radio. Use only if autodetection\n"
147 "\t\t\tfails. 0 = disable, 1 = enable");
148MODULE_PARM_DESC(cardtype,
149 "Only use this option if your card is not detected properly.\n"
150 "\t\tSpecify card type:\n"
151 "\t\t\t 1 = Hauppauge HVR 1600 (ESMT memory)\n"
152 "\t\t\t 2 = Hauppauge HVR 1600 (Samsung memory)\n"
153 "\t\t\t 3 = Compro VideoMate H900\n"
154 "\t\t\t 4 = Yuan MPC718\n"
Sri Deevi03c28082008-06-21 11:06:44 -0300155 "\t\t\t 5 = Conexant Raptor PAL/SECAM\n"
Andy Walls9eee4fb2008-10-04 20:28:40 -0300156 "\t\t\t 6 = Toshiba Qosmio DVB-T/Analog\n"
Andy Walls9d5af862009-06-09 20:37:24 -0300157 "\t\t\t 7 = Leadtek WinFast PVR2100\n"
158 "\t\t\t 8 = Leadtek WinFast DVR3100 H\n"
Alexey Chernova3634362010-10-28 18:12:02 -0300159 "\t\t\t 9 = GoTView PCI DVD3 Hybrid\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300160 "\t\t\t 0 = Autodetect (default)\n"
161 "\t\t\t-1 = Ignore this card\n\t\t");
162MODULE_PARM_DESC(pal, "Set PAL standard: B, G, H, D, K, I, M, N, Nc, 60");
163MODULE_PARM_DESC(secam, "Set SECAM standard: B, G, H, D, K, L, LC");
164MODULE_PARM_DESC(ntsc, "Set NTSC standard: M, J, K");
165MODULE_PARM_DESC(debug,
166 "Debug level (bitmask). Default: 0\n"
167 "\t\t\t 1/0x0001: warning\n"
168 "\t\t\t 2/0x0002: info\n"
169 "\t\t\t 4/0x0004: mailbox\n"
170 "\t\t\t 8/0x0008: dma\n"
171 "\t\t\t 16/0x0010: ioctl\n"
172 "\t\t\t 32/0x0020: file\n"
173 "\t\t\t 64/0x0040: i2c\n"
174 "\t\t\t128/0x0080: irq\n"
175 "\t\t\t256/0x0100: high volume\n");
176MODULE_PARM_DESC(cx18_pci_latency,
177 "Change the PCI latency to 64 if lower: 0 = No, 1 = Yes,\n"
178 "\t\t\tDefault: Yes");
Andy Wallsd267d852008-09-28 21:46:02 -0300179MODULE_PARM_DESC(retry_mmio,
Andy Walls3f75c612008-11-16 23:33:41 -0300180 "(Deprecated) MMIO writes are now always checked and retried\n"
181 "\t\t\tEffectively: 1 [Yes]");
Andy Wallsc641d092008-09-01 00:40:41 -0300182MODULE_PARM_DESC(mmio_ndelay,
Andy Walls3f75c612008-11-16 23:33:41 -0300183 "(Deprecated) MMIO accesses are now never purposely delayed\n"
184 "\t\t\tEffectively: 0 ns");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300185MODULE_PARM_DESC(enc_ts_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300186 "Encoder TS buffer memory (MB). (enc_ts_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300187 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_TS_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300188MODULE_PARM_DESC(enc_ts_bufsize,
189 "Size of an encoder TS buffer (kB)\n"
190 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_TS_BUFSIZE));
191MODULE_PARM_DESC(enc_ts_bufs,
192 "Number of encoder TS buffers\n"
193 "\t\t\tDefault is computed from other enc_ts_* parameters");
194MODULE_PARM_DESC(enc_mpg_buffers,
195 "Encoder MPG buffer memory (MB). (enc_mpg_bufs can override)\n"
196 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_MPG_BUFFERS));
197MODULE_PARM_DESC(enc_mpg_bufsize,
198 "Size of an encoder MPG buffer (kB)\n"
199 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_MPG_BUFSIZE));
200MODULE_PARM_DESC(enc_mpg_bufs,
201 "Number of encoder MPG buffers\n"
202 "\t\t\tDefault is computed from other enc_mpg_* parameters");
203MODULE_PARM_DESC(enc_idx_buffers,
Andy Wallsefc0b122009-12-30 22:54:53 -0300204 "(Deprecated) Encoder IDX buffer memory (MB)\n"
205 "\t\t\tIgnored, except 0 disables IDX buffer allocations\n"
206 "\t\t\tDefault: 1 [Enabled]");
Andy Walls6ecd86d2008-12-07 23:30:17 -0300207MODULE_PARM_DESC(enc_idx_bufsize,
208 "Size of an encoder IDX buffer (kB)\n"
Andy Wallsefc0b122009-12-30 22:54:53 -0300209 "\t\t\tAllowed values are multiples of 1.5 kB rounded up\n"
210 "\t\t\t(multiples of size required for 64 index entries)\n"
211 "\t\t\tDefault: 2");
Andy Walls6ecd86d2008-12-07 23:30:17 -0300212MODULE_PARM_DESC(enc_idx_bufs,
213 "Number of encoder IDX buffers\n"
Andy Wallsefc0b122009-12-30 22:54:53 -0300214 "\t\t\tDefault: " __stringify(CX18_MAX_FW_MDLS_PER_STREAM));
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300215MODULE_PARM_DESC(enc_yuv_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300216 "Encoder YUV buffer memory (MB). (enc_yuv_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300217 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_YUV_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300218MODULE_PARM_DESC(enc_yuv_bufsize,
219 "Size of an encoder YUV buffer (kB)\n"
Andy Walls22dce182009-11-09 23:55:30 -0300220 "\t\t\tAllowed values are multiples of 33.75 kB rounded up\n"
221 "\t\t\t(multiples of size required for 32 screen lines)\n"
222 "\t\t\tDefault: 102");
Andy Walls6ecd86d2008-12-07 23:30:17 -0300223MODULE_PARM_DESC(enc_yuv_bufs,
224 "Number of encoder YUV buffers\n"
225 "\t\t\tDefault is computed from other enc_yuv_* parameters");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300226MODULE_PARM_DESC(enc_vbi_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300227 "Encoder VBI buffer memory (MB). (enc_vbi_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300228 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_VBI_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300229MODULE_PARM_DESC(enc_vbi_bufs,
230 "Number of encoder VBI buffers\n"
Andy Walls127ce5f2009-11-11 00:22:57 -0300231 "\t\t\tDefault is computed from enc_vbi_buffers");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300232MODULE_PARM_DESC(enc_pcm_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300233 "Encoder PCM buffer memory (MB). (enc_pcm_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300234 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_PCM_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300235MODULE_PARM_DESC(enc_pcm_bufsize,
236 "Size of an encoder PCM buffer (kB)\n"
237 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_PCM_BUFSIZE));
238MODULE_PARM_DESC(enc_pcm_bufs,
239 "Number of encoder PCM buffers\n"
240 "\t\t\tDefault is computed from other enc_pcm_* parameters");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300241
Devin Heitmuellerf8bd9d22009-12-20 23:29:02 -0300242MODULE_PARM_DESC(cx18_first_minor,
243 "Set device node number assigned to first card");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300244
245MODULE_AUTHOR("Hans Verkuil");
246MODULE_DESCRIPTION("CX23418 driver");
247MODULE_SUPPORTED_DEVICE("CX23418 MPEG2 encoder");
248MODULE_LICENSE("GPL");
249
250MODULE_VERSION(CX18_VERSION);
251
Mauro Carvalho Chehab583d3382010-01-28 00:19:00 -0200252#if defined(CONFIG_MODULES) && defined(MODULE)
253static void request_module_async(struct work_struct *work)
254{
255 struct cx18 *dev = container_of(work, struct cx18, request_module_wk);
256
257 /* Make sure cx18-alsa module is loaded */
258 request_module("cx18-alsa");
259
260 /* Initialize cx18-alsa for this instance of the cx18 device */
261 if (cx18_ext_init != NULL)
262 cx18_ext_init(dev);
263}
264
265static void request_modules(struct cx18 *dev)
266{
267 INIT_WORK(&dev->request_module_wk, request_module_async);
268 schedule_work(&dev->request_module_wk);
269}
270#else
271#define request_modules(dev)
272#endif /* CONFIG_MODULES */
Devin Heitmuellerd68b6872009-11-20 01:15:54 -0300273
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300274/* Generic utility functions */
275int cx18_msleep_timeout(unsigned int msecs, int intr)
276{
Andy Walls330c6ec2008-11-08 14:19:37 -0300277 long int timeout = msecs_to_jiffies(msecs);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300278 int sig;
279
280 do {
281 set_current_state(intr ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
282 timeout = schedule_timeout(timeout);
283 sig = intr ? signal_pending(current) : 0;
284 } while (!sig && timeout);
285 return sig;
286}
287
288/* Release ioremapped memory */
289static void cx18_iounmap(struct cx18 *cx)
290{
291 if (cx == NULL)
292 return;
293
294 /* Release io memory */
295 if (cx->enc_mem != NULL) {
296 CX18_DEBUG_INFO("releasing enc_mem\n");
297 iounmap(cx->enc_mem);
298 cx->enc_mem = NULL;
299 }
300}
301
Andy Walls25a42e42009-07-05 17:09:28 -0300302static void cx18_eeprom_dump(struct cx18 *cx, unsigned char *eedata, int len)
303{
304 int i;
305
306 CX18_INFO("eeprom dump:\n");
307 for (i = 0; i < len; i++) {
308 if (0 == (i % 16))
309 CX18_INFO("eeprom %02x:", i);
310 printk(KERN_CONT " %02x", eedata[i]);
311 if (15 == (i % 16))
312 printk(KERN_CONT "\n");
313 }
314}
315
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300316/* Hauppauge card? get values from tveeprom */
317void cx18_read_eeprom(struct cx18 *cx, struct tveeprom *tv)
318{
Andy Wallsff2a2002009-02-20 23:52:13 -0300319 struct i2c_client c;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300320 u8 eedata[256];
321
Andy Walls6246d4e2009-02-21 22:27:37 -0300322 memset(&c, 0, sizeof(c));
Andy Walls098003d2009-02-28 13:19:45 -0300323 strlcpy(c.name, "cx18 tveeprom tmp", sizeof(c.name));
Andy Wallsff2a2002009-02-20 23:52:13 -0300324 c.adapter = &cx->i2c_adap[0];
325 c.addr = 0xA0 >> 1;
326
Andy Walls25a42e42009-07-05 17:09:28 -0300327 memset(tv, 0, sizeof(*tv));
328 if (tveeprom_read(&c, eedata, sizeof(eedata)))
329 return;
330
331 switch (cx->card->type) {
332 case CX18_CARD_HVR_1600_ESMT:
333 case CX18_CARD_HVR_1600_SAMSUNG:
334 tveeprom_hauppauge_analog(&c, tv, eedata);
335 break;
336 case CX18_CARD_YUAN_MPC718:
Alexey Chernova3634362010-10-28 18:12:02 -0300337 case CX18_CARD_GOTVIEW_PCI_DVD3:
Andy Walls25a42e42009-07-05 17:09:28 -0300338 tv->model = 0x718;
339 cx18_eeprom_dump(cx, eedata, sizeof(eedata));
340 CX18_INFO("eeprom PCI ID: %02x%02x:%02x%02x\n",
341 eedata[2], eedata[1], eedata[4], eedata[3]);
342 break;
343 default:
344 tv->model = 0xffffffff;
345 cx18_eeprom_dump(cx, eedata, sizeof(eedata));
346 break;
347 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300348}
349
350static void cx18_process_eeprom(struct cx18 *cx)
351{
352 struct tveeprom tv;
353
354 cx18_read_eeprom(cx, &tv);
355
356 /* Many thanks to Steven Toth from Hauppauge for providing the
357 model numbers */
Hans Verkuil1d081602008-05-12 14:45:19 -0300358 /* Note: the Samsung memory models cannot be reliably determined
359 from the model number. Use the cardtype module option if you
360 have one of these preproduction models. */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300361 switch (tv.model) {
Hans Verkuil1d081602008-05-12 14:45:19 -0300362 case 74000 ... 74999:
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300363 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
364 break;
Andy Walls25a42e42009-07-05 17:09:28 -0300365 case 0x718:
366 return;
367 case 0xffffffff:
368 CX18_INFO("Unknown EEPROM encoding\n");
369 return;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300370 case 0:
371 CX18_ERR("Invalid EEPROM\n");
372 return;
373 default:
374 CX18_ERR("Unknown model %d, defaulting to HVR-1600\n", tv.model);
375 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
376 break;
377 }
378
379 cx->v4l2_cap = cx->card->v4l2_capabilities;
380 cx->card_name = cx->card->name;
381 cx->card_i2c = cx->card->i2c;
382
383 CX18_INFO("Autodetected %s\n", cx->card_name);
384
385 if (tv.tuner_type == TUNER_ABSENT)
Andy Walls4442ee82009-05-09 00:34:31 -0300386 CX18_ERR("tveeprom cannot autodetect tuner!\n");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300387
388 if (cx->options.tuner == -1)
389 cx->options.tuner = tv.tuner_type;
390 if (cx->options.radio == -1)
391 cx->options.radio = (tv.has_radio != 0);
392
393 if (cx->std != 0)
394 /* user specified tuner standard */
395 return;
396
397 /* autodetect tuner standard */
398 if (tv.tuner_formats & V4L2_STD_PAL) {
399 CX18_DEBUG_INFO("PAL tuner detected\n");
400 cx->std |= V4L2_STD_PAL_BG | V4L2_STD_PAL_H;
401 } else if (tv.tuner_formats & V4L2_STD_NTSC) {
402 CX18_DEBUG_INFO("NTSC tuner detected\n");
403 cx->std |= V4L2_STD_NTSC_M;
404 } else if (tv.tuner_formats & V4L2_STD_SECAM) {
405 CX18_DEBUG_INFO("SECAM tuner detected\n");
406 cx->std |= V4L2_STD_SECAM_L;
407 } else {
408 CX18_INFO("No tuner detected, default to NTSC-M\n");
409 cx->std |= V4L2_STD_NTSC_M;
410 }
411}
412
413static v4l2_std_id cx18_parse_std(struct cx18 *cx)
414{
415 switch (pal[0]) {
416 case '6':
417 return V4L2_STD_PAL_60;
418 case 'b':
419 case 'B':
420 case 'g':
421 case 'G':
422 return V4L2_STD_PAL_BG;
423 case 'h':
424 case 'H':
425 return V4L2_STD_PAL_H;
426 case 'n':
427 case 'N':
428 if (pal[1] == 'c' || pal[1] == 'C')
429 return V4L2_STD_PAL_Nc;
430 return V4L2_STD_PAL_N;
431 case 'i':
432 case 'I':
433 return V4L2_STD_PAL_I;
434 case 'd':
435 case 'D':
436 case 'k':
437 case 'K':
438 return V4L2_STD_PAL_DK;
439 case 'M':
440 case 'm':
441 return V4L2_STD_PAL_M;
442 case '-':
443 break;
444 default:
445 CX18_WARN("pal= argument not recognised\n");
446 return 0;
447 }
448
449 switch (secam[0]) {
450 case 'b':
451 case 'B':
452 case 'g':
453 case 'G':
454 case 'h':
455 case 'H':
456 return V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
457 case 'd':
458 case 'D':
459 case 'k':
460 case 'K':
461 return V4L2_STD_SECAM_DK;
462 case 'l':
463 case 'L':
464 if (secam[1] == 'C' || secam[1] == 'c')
465 return V4L2_STD_SECAM_LC;
466 return V4L2_STD_SECAM_L;
467 case '-':
468 break;
469 default:
470 CX18_WARN("secam= argument not recognised\n");
471 return 0;
472 }
473
474 switch (ntsc[0]) {
475 case 'm':
476 case 'M':
477 return V4L2_STD_NTSC_M;
478 case 'j':
479 case 'J':
480 return V4L2_STD_NTSC_M_JP;
481 case 'k':
482 case 'K':
483 return V4L2_STD_NTSC_M_KR;
484 case '-':
485 break;
486 default:
487 CX18_WARN("ntsc= argument not recognised\n");
488 return 0;
489 }
490
491 /* no match found */
492 return 0;
493}
494
495static void cx18_process_options(struct cx18 *cx)
496{
497 int i, j;
498
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300499 cx->options.megabytes[CX18_ENC_STREAM_TYPE_TS] = enc_ts_buffers;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300500 cx->options.megabytes[CX18_ENC_STREAM_TYPE_MPG] = enc_mpg_buffers;
501 cx->options.megabytes[CX18_ENC_STREAM_TYPE_IDX] = enc_idx_buffers;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300502 cx->options.megabytes[CX18_ENC_STREAM_TYPE_YUV] = enc_yuv_buffers;
503 cx->options.megabytes[CX18_ENC_STREAM_TYPE_VBI] = enc_vbi_buffers;
504 cx->options.megabytes[CX18_ENC_STREAM_TYPE_PCM] = enc_pcm_buffers;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300505 cx->options.megabytes[CX18_ENC_STREAM_TYPE_RAD] = 0; /* control only */
506
507 cx->stream_buffers[CX18_ENC_STREAM_TYPE_TS] = enc_ts_bufs;
508 cx->stream_buffers[CX18_ENC_STREAM_TYPE_MPG] = enc_mpg_bufs;
509 cx->stream_buffers[CX18_ENC_STREAM_TYPE_IDX] = enc_idx_bufs;
510 cx->stream_buffers[CX18_ENC_STREAM_TYPE_YUV] = enc_yuv_bufs;
511 cx->stream_buffers[CX18_ENC_STREAM_TYPE_VBI] = enc_vbi_bufs;
512 cx->stream_buffers[CX18_ENC_STREAM_TYPE_PCM] = enc_pcm_bufs;
513 cx->stream_buffers[CX18_ENC_STREAM_TYPE_RAD] = 0; /* control, no data */
514
515 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_TS] = enc_ts_bufsize;
516 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_MPG] = enc_mpg_bufsize;
517 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_IDX] = enc_idx_bufsize;
518 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_YUV] = enc_yuv_bufsize;
Andy Walls466df462009-02-07 15:47:28 -0300519 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_VBI] = vbi_active_samples * 36;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300520 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_PCM] = enc_pcm_bufsize;
521 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_RAD] = 0; /* control no data */
522
Andy Walls466df462009-02-07 15:47:28 -0300523 /* Ensure stream_buffers & stream_buf_size are valid */
Andy Walls6ecd86d2008-12-07 23:30:17 -0300524 for (i = 0; i < CX18_MAX_STREAMS; i++) {
Andy Walls466df462009-02-07 15:47:28 -0300525 if (cx->stream_buffers[i] == 0 || /* User said 0 buffers */
526 cx->options.megabytes[i] <= 0 || /* User said 0 MB total */
527 cx->stream_buf_size[i] <= 0) { /* User said buf size 0 */
Andy Walls6ecd86d2008-12-07 23:30:17 -0300528 cx->options.megabytes[i] = 0;
529 cx->stream_buffers[i] = 0;
530 cx->stream_buf_size[i] = 0;
531 continue;
532 }
Andy Walls466df462009-02-07 15:47:28 -0300533 /*
Andy Walls22dce182009-11-09 23:55:30 -0300534 * YUV is a special case where the stream_buf_size needs to be
535 * an integral multiple of 33.75 kB (storage for 32 screens
Andy Wallsefc0b122009-12-30 22:54:53 -0300536 * lines to maintain alignment in case of lost buffers).
537 *
538 * IDX is a special case where the stream_buf_size should be
539 * an integral multiple of 1.5 kB (storage for 64 index entries
540 * to maintain alignment in case of lost buffers).
541 *
Andy Walls22dce182009-11-09 23:55:30 -0300542 */
543 if (i == CX18_ENC_STREAM_TYPE_YUV) {
544 cx->stream_buf_size[i] *= 1024;
545 cx->stream_buf_size[i] -=
546 (cx->stream_buf_size[i] % CX18_UNIT_ENC_YUV_BUFSIZE);
547
548 if (cx->stream_buf_size[i] < CX18_UNIT_ENC_YUV_BUFSIZE)
549 cx->stream_buf_size[i] =
550 CX18_UNIT_ENC_YUV_BUFSIZE;
Andy Wallsefc0b122009-12-30 22:54:53 -0300551 } else if (i == CX18_ENC_STREAM_TYPE_IDX) {
552 cx->stream_buf_size[i] *= 1024;
553 cx->stream_buf_size[i] -=
554 (cx->stream_buf_size[i] % CX18_UNIT_ENC_IDX_BUFSIZE);
555
556 if (cx->stream_buf_size[i] < CX18_UNIT_ENC_IDX_BUFSIZE)
557 cx->stream_buf_size[i] =
558 CX18_UNIT_ENC_IDX_BUFSIZE;
Andy Walls22dce182009-11-09 23:55:30 -0300559 }
560 /*
Andy Wallsefc0b122009-12-30 22:54:53 -0300561 * YUV and IDX are special cases where the stream_buf_size is
Andy Walls22dce182009-11-09 23:55:30 -0300562 * now in bytes.
Andy Walls466df462009-02-07 15:47:28 -0300563 * VBI is a special case where the stream_buf_size is fixed
564 * and already in bytes
565 */
Andy Walls22dce182009-11-09 23:55:30 -0300566 if (i == CX18_ENC_STREAM_TYPE_VBI ||
Andy Wallsefc0b122009-12-30 22:54:53 -0300567 i == CX18_ENC_STREAM_TYPE_YUV ||
568 i == CX18_ENC_STREAM_TYPE_IDX) {
Andy Walls466df462009-02-07 15:47:28 -0300569 if (cx->stream_buffers[i] < 0) {
570 cx->stream_buffers[i] =
571 cx->options.megabytes[i] * 1024 * 1024
572 / cx->stream_buf_size[i];
573 } else {
574 /* N.B. This might round down to 0 */
575 cx->options.megabytes[i] =
576 cx->stream_buffers[i]
577 * cx->stream_buf_size[i]/(1024 * 1024);
Andy Walls6ecd86d2008-12-07 23:30:17 -0300578 }
Andy Walls6ecd86d2008-12-07 23:30:17 -0300579 } else {
Andy Walls22dce182009-11-09 23:55:30 -0300580 /* All other streams have stream_buf_size in kB here */
581 if (cx->stream_buffers[i] < 0) {
582 cx->stream_buffers[i] =
583 cx->options.megabytes[i] * 1024
584 / cx->stream_buf_size[i];
585 } else {
586 /* N.B. This might round down to 0 */
587 cx->options.megabytes[i] =
588 cx->stream_buffers[i]
589 * cx->stream_buf_size[i] / 1024;
590 }
591 /* convert from kB to bytes */
592 cx->stream_buf_size[i] *= 1024;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300593 }
Andy Walls22dce182009-11-09 23:55:30 -0300594 CX18_DEBUG_INFO("Stream type %d options: %d MB, %d buffers, "
595 "%d bytes\n", i, cx->options.megabytes[i],
596 cx->stream_buffers[i], cx->stream_buf_size[i]);
Andy Walls6ecd86d2008-12-07 23:30:17 -0300597 }
598
Andy Walls5811cf92009-02-14 17:08:37 -0300599 cx->options.cardtype = cardtype[cx->instance];
600 cx->options.tuner = tuner[cx->instance];
601 cx->options.radio = radio[cx->instance];
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300602
603 cx->std = cx18_parse_std(cx);
604 if (cx->options.cardtype == -1) {
605 CX18_INFO("Ignore card\n");
606 return;
607 }
608 cx->card = cx18_get_card(cx->options.cardtype - 1);
609 if (cx->card)
610 CX18_INFO("User specified %s card\n", cx->card->name);
611 else if (cx->options.cardtype != 0)
612 CX18_ERR("Unknown user specified type, trying to autodetect card\n");
613 if (cx->card == NULL) {
Andy Walls3d059132009-01-10 21:54:39 -0300614 if (cx->pci_dev->subsystem_vendor == CX18_PCI_ID_HAUPPAUGE) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300615 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
616 CX18_INFO("Autodetected Hauppauge card\n");
617 }
618 }
619 if (cx->card == NULL) {
620 for (i = 0; (cx->card = cx18_get_card(i)); i++) {
621 if (cx->card->pci_list == NULL)
622 continue;
623 for (j = 0; cx->card->pci_list[j].device; j++) {
Andy Walls3d059132009-01-10 21:54:39 -0300624 if (cx->pci_dev->device !=
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300625 cx->card->pci_list[j].device)
626 continue;
Andy Walls3d059132009-01-10 21:54:39 -0300627 if (cx->pci_dev->subsystem_vendor !=
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300628 cx->card->pci_list[j].subsystem_vendor)
629 continue;
Andy Walls3d059132009-01-10 21:54:39 -0300630 if (cx->pci_dev->subsystem_device !=
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300631 cx->card->pci_list[j].subsystem_device)
632 continue;
633 CX18_INFO("Autodetected %s card\n", cx->card->name);
634 goto done;
635 }
636 }
637 }
638done:
639
640 if (cx->card == NULL) {
641 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
Bjorn Helgaas29e66a62008-09-04 17:24:51 -0300642 CX18_ERR("Unknown card: vendor/device: [%04x:%04x]\n",
Andy Walls3d059132009-01-10 21:54:39 -0300643 cx->pci_dev->vendor, cx->pci_dev->device);
Bjorn Helgaas29e66a62008-09-04 17:24:51 -0300644 CX18_ERR(" subsystem vendor/device: [%04x:%04x]\n",
Andy Walls3d059132009-01-10 21:54:39 -0300645 cx->pci_dev->subsystem_vendor,
646 cx->pci_dev->subsystem_device);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300647 CX18_ERR("Defaulting to %s card\n", cx->card->name);
648 CX18_ERR("Please mail the vendor/device and subsystem vendor/device IDs and what kind of\n");
649 CX18_ERR("card you have to the ivtv-devel mailinglist (www.ivtvdriver.org)\n");
650 CX18_ERR("Prefix your subject line with [UNKNOWN CX18 CARD].\n");
651 }
652 cx->v4l2_cap = cx->card->v4l2_capabilities;
653 cx->card_name = cx->card->name;
654 cx->card_i2c = cx->card->i2c;
655}
656
Andy Walls87116152009-04-13 22:42:43 -0300657static int __devinit cx18_create_in_workq(struct cx18 *cx)
658{
659 snprintf(cx->in_workq_name, sizeof(cx->in_workq_name), "%s-in",
660 cx->v4l2_dev.name);
661 cx->in_work_queue = create_singlethread_workqueue(cx->in_workq_name);
662 if (cx->in_work_queue == NULL) {
663 CX18_ERR("Unable to create incoming mailbox handler thread\n");
664 return -ENOMEM;
665 }
666 return 0;
667}
668
669static int __devinit cx18_create_out_workq(struct cx18 *cx)
670{
671 snprintf(cx->out_workq_name, sizeof(cx->out_workq_name), "%s-out",
672 cx->v4l2_dev.name);
673 cx->out_work_queue = create_workqueue(cx->out_workq_name);
674 if (cx->out_work_queue == NULL) {
675 CX18_ERR("Unable to create outgoing mailbox handler threads\n");
676 return -ENOMEM;
677 }
678 return 0;
679}
680
681static void __devinit cx18_init_in_work_orders(struct cx18 *cx)
682{
683 int i;
684 for (i = 0; i < CX18_MAX_IN_WORK_ORDERS; i++) {
685 cx->in_work_order[i].cx = cx;
686 cx->in_work_order[i].str = cx->epu_debug_str;
687 INIT_WORK(&cx->in_work_order[i].work, cx18_in_work_handler);
688 }
689}
690
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300691/* Precondition: the cx18 structure has been memset to 0. Only
Andy Walls5811cf92009-02-14 17:08:37 -0300692 the dev and instance fields have been filled in.
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300693 No assumptions on the card type may be made here (see cx18_init_struct2
694 for that).
695 */
696static int __devinit cx18_init_struct1(struct cx18 *cx)
697{
Andy Walls87116152009-04-13 22:42:43 -0300698 int ret;
Andy Wallsee2d64f2008-11-16 01:38:19 -0300699
Andy Walls3d059132009-01-10 21:54:39 -0300700 cx->base_addr = pci_resource_start(cx->pci_dev, 0);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300701
702 mutex_init(&cx->serialize_lock);
Andy Walls8abdd002008-07-13 19:05:25 -0300703 mutex_init(&cx->gpio_lock);
Andy Walls72c2d6d2008-11-06 01:15:41 -0300704 mutex_init(&cx->epu2apu_mb_lock);
705 mutex_init(&cx->epu2cpu_mb_lock);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300706
Andy Walls87116152009-04-13 22:42:43 -0300707 ret = cx18_create_out_workq(cx);
708 if (ret)
709 return ret;
710
711 ret = cx18_create_in_workq(cx);
712 if (ret) {
713 destroy_workqueue(cx->out_work_queue);
714 return ret;
Andy Walls572bfea2008-11-25 21:43:05 -0300715 }
716
Andy Walls87116152009-04-13 22:42:43 -0300717 cx18_init_in_work_orders(cx);
Andy Walls1d6782b2008-11-05 00:49:14 -0300718
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300719 /* start counting open_id at 1 */
720 cx->open_id = 1;
721
722 /* Initial settings */
723 cx2341x_fill_defaults(&cx->params);
724 cx->temporal_strength = cx->params.video_temporal_filter;
725 cx->spatial_strength = cx->params.video_spatial_filter;
726 cx->filter_mode = cx->params.video_spatial_filter_mode |
727 (cx->params.video_temporal_filter_mode << 1) |
728 (cx->params.video_median_filter_type << 2);
729 cx->params.port = CX2341X_PORT_MEMORY;
Andy Walls302df972009-01-31 00:33:02 -0300730 cx->params.capabilities =
Andy Walls006e7172009-02-21 22:44:50 -0300731 CX2341X_CAP_HAS_TS | CX2341X_CAP_HAS_SLICED_VBI;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300732 init_waitqueue_head(&cx->cap_w);
733 init_waitqueue_head(&cx->mb_apu_waitq);
734 init_waitqueue_head(&cx->mb_cpu_waitq);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300735 init_waitqueue_head(&cx->dma_waitq);
736
737 /* VBI */
Andy Wallsdd073432008-12-12 16:24:04 -0300738 cx->vbi.in.type = V4L2_BUF_TYPE_VBI_CAPTURE;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300739 cx->vbi.sliced_in = &cx->vbi.in.fmt.sliced;
Andy Wallsaf009cf2008-12-12 20:00:29 -0300740
Andy Walls52fcb3e2009-11-08 23:45:24 -0300741 /* IVTV style VBI insertion into MPEG streams */
742 INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_buf.list);
743 INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_mdl.list);
744 INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_mdl.buf_list);
745 list_add(&cx->vbi.sliced_mpeg_buf.list,
746 &cx->vbi.sliced_mpeg_mdl.buf_list);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300747 return 0;
748}
749
750/* Second initialization part. Here the card type has been
751 autodetected. */
752static void __devinit cx18_init_struct2(struct cx18 *cx)
753{
754 int i;
755
756 for (i = 0; i < CX18_CARD_MAX_VIDEO_INPUTS; i++)
757 if (cx->card->video_inputs[i].video_type == 0)
758 break;
759 cx->nof_inputs = i;
760 for (i = 0; i < CX18_CARD_MAX_AUDIO_INPUTS; i++)
761 if (cx->card->audio_inputs[i].audio_type == 0)
762 break;
763 cx->nof_audio_inputs = i;
764
765 /* Find tuner input */
766 for (i = 0; i < cx->nof_inputs; i++) {
767 if (cx->card->video_inputs[i].video_type ==
768 CX18_CARD_INPUT_VID_TUNER)
769 break;
770 }
771 if (i == cx->nof_inputs)
772 i = 0;
773 cx->active_input = i;
774 cx->audio_input = cx->card->video_inputs[i].audio_index;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300775}
776
Andy Walls3d059132009-01-10 21:54:39 -0300777static int cx18_setup_pci(struct cx18 *cx, struct pci_dev *pci_dev,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300778 const struct pci_device_id *pci_id)
779{
780 u16 cmd;
781 unsigned char pci_latency;
782
783 CX18_DEBUG_INFO("Enabling pci device\n");
784
Andy Walls3d059132009-01-10 21:54:39 -0300785 if (pci_enable_device(pci_dev)) {
Andy Walls5811cf92009-02-14 17:08:37 -0300786 CX18_ERR("Can't enable device %d!\n", cx->instance);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300787 return -EIO;
788 }
Andy Walls3d059132009-01-10 21:54:39 -0300789 if (pci_set_dma_mask(pci_dev, 0xffffffff)) {
Andy Walls5811cf92009-02-14 17:08:37 -0300790 CX18_ERR("No suitable DMA available, card %d\n", cx->instance);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300791 return -EIO;
792 }
793 if (!request_mem_region(cx->base_addr, CX18_MEM_SIZE, "cx18 encoder")) {
Andy Walls5811cf92009-02-14 17:08:37 -0300794 CX18_ERR("Cannot request encoder memory region, card %d\n",
795 cx->instance);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300796 return -EIO;
797 }
798
Andy Walls45190642008-08-29 16:10:21 -0300799 /* Enable bus mastering and memory mapped IO for the CX23418 */
Andy Walls3d059132009-01-10 21:54:39 -0300800 pci_read_config_word(pci_dev, PCI_COMMAND, &cmd);
Andy Walls45190642008-08-29 16:10:21 -0300801 cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
Andy Walls3d059132009-01-10 21:54:39 -0300802 pci_write_config_word(pci_dev, PCI_COMMAND, cmd);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300803
Andy Walls3d059132009-01-10 21:54:39 -0300804 pci_read_config_byte(pci_dev, PCI_CLASS_REVISION, &cx->card_rev);
805 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &pci_latency);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300806
807 if (pci_latency < 64 && cx18_pci_latency) {
808 CX18_INFO("Unreasonably low latency timer, "
809 "setting to 64 (was %d)\n", pci_latency);
Andy Walls3d059132009-01-10 21:54:39 -0300810 pci_write_config_byte(pci_dev, PCI_LATENCY_TIMER, 64);
811 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &pci_latency);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300812 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300813
814 CX18_DEBUG_INFO("cx%d (rev %d) at %02x:%02x.%x, "
815 "irq: %d, latency: %d, memory: 0x%lx\n",
Andy Walls3d059132009-01-10 21:54:39 -0300816 cx->pci_dev->device, cx->card_rev, pci_dev->bus->number,
817 PCI_SLOT(pci_dev->devfn), PCI_FUNC(pci_dev->devfn),
818 cx->pci_dev->irq, pci_latency, (unsigned long)cx->base_addr);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300819
820 return 0;
821}
822
Andy Wallsff2a2002009-02-20 23:52:13 -0300823static void cx18_init_subdevs(struct cx18 *cx)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300824{
825 u32 hw = cx->card->hw_all;
Andy Wallsff2a2002009-02-20 23:52:13 -0300826 u32 device;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300827 int i;
828
Andy Wallsff2a2002009-02-20 23:52:13 -0300829 for (i = 0, device = 1; i < 32; i++, device <<= 1) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300830
831 if (!(device & hw))
832 continue;
Andy Wallsff2a2002009-02-20 23:52:13 -0300833
834 switch (device) {
Andy Wallsff2a2002009-02-20 23:52:13 -0300835 case CX18_HW_DVB:
836 case CX18_HW_TVEEPROM:
837 /* These subordinate devices do not use probing */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300838 cx->hw_flags |= device;
Andy Wallsff2a2002009-02-20 23:52:13 -0300839 break;
840 case CX18_HW_418_AV:
841 /* The A/V decoder gets probed earlier to set PLLs */
842 /* Just note that the card uses it (i.e. has analog) */
843 cx->hw_flags |= device;
844 break;
Andy Wallseefe1012009-02-21 18:42:49 -0300845 case CX18_HW_GPIO_RESET_CTRL:
846 /*
847 * The Reset Controller gets probed and added to
848 * hw_flags earlier for i2c adapter/bus initialization
849 */
850 break;
851 case CX18_HW_GPIO_MUX:
852 if (cx18_gpio_register(cx, device) == 0)
853 cx->hw_flags |= device;
854 break;
Andy Wallsff2a2002009-02-20 23:52:13 -0300855 default:
856 if (cx18_i2c_register(cx, i) == 0)
857 cx->hw_flags |= device;
858 break;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300859 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300860 }
861
Andy Wallsff2a2002009-02-20 23:52:13 -0300862 if (cx->hw_flags & CX18_HW_418_AV)
863 cx->sd_av = cx18_find_hw(cx, CX18_HW_418_AV);
864
865 if (cx->card->hw_muxer != 0)
866 cx->sd_extmux = cx18_find_hw(cx, cx->card->hw_muxer);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300867}
868
Andy Walls3d059132009-01-10 21:54:39 -0300869static int __devinit cx18_probe(struct pci_dev *pci_dev,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300870 const struct pci_device_id *pci_id)
871{
872 int retval = 0;
Andy Wallsff086572008-10-18 08:51:28 -0300873 int i;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300874 u32 devtype;
875 struct cx18 *cx;
876
Andy Walls5811cf92009-02-14 17:08:37 -0300877 /* FIXME - module parameter arrays constrain max instances */
878 i = atomic_inc_return(&cx18_instance) - 1;
879 if (i >= CX18_MAX_CARDS) {
880 printk(KERN_ERR "cx18: cannot manage card %d, driver has a "
881 "limit of 0 - %d\n", i, CX18_MAX_CARDS - 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300882 return -ENOMEM;
883 }
884
885 cx = kzalloc(sizeof(struct cx18), GFP_ATOMIC);
Andy Walls5811cf92009-02-14 17:08:37 -0300886 if (cx == NULL) {
887 printk(KERN_ERR "cx18: cannot manage card %d, out of memory\n",
888 i);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300889 return -ENOMEM;
890 }
Andy Walls888cdb02009-01-11 15:08:53 -0300891 cx->pci_dev = pci_dev;
Andy Walls5811cf92009-02-14 17:08:37 -0300892 cx->instance = i;
893
Andy Walls888cdb02009-01-11 15:08:53 -0300894 retval = v4l2_device_register(&pci_dev->dev, &cx->v4l2_dev);
895 if (retval) {
Andy Walls5811cf92009-02-14 17:08:37 -0300896 printk(KERN_ERR "cx18: v4l2_device_register of card %d failed"
897 "\n", cx->instance);
898 kfree(cx);
899 return retval;
Andy Walls888cdb02009-01-11 15:08:53 -0300900 }
Andy Walls5811cf92009-02-14 17:08:37 -0300901 snprintf(cx->v4l2_dev.name, sizeof(cx->v4l2_dev.name), "cx18-%d",
902 cx->instance);
903 CX18_INFO("Initializing card %d\n", cx->instance);
Andy Walls888cdb02009-01-11 15:08:53 -0300904
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300905 cx18_process_options(cx);
906 if (cx->options.cardtype == -1) {
907 retval = -ENODEV;
Andy Walls5811cf92009-02-14 17:08:37 -0300908 goto err;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300909 }
Andy Walls87116152009-04-13 22:42:43 -0300910
911 retval = cx18_init_struct1(cx);
912 if (retval)
Andy Walls5811cf92009-02-14 17:08:37 -0300913 goto err;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300914
915 CX18_DEBUG_INFO("base addr: 0x%08x\n", cx->base_addr);
916
917 /* PCI Device Setup */
Andy Walls3d059132009-01-10 21:54:39 -0300918 retval = cx18_setup_pci(cx, pci_dev, pci_id);
Andy Walls572bfea2008-11-25 21:43:05 -0300919 if (retval != 0)
Andy Walls87116152009-04-13 22:42:43 -0300920 goto free_workqueues;
Andy Walls572bfea2008-11-25 21:43:05 -0300921
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300922 /* map io memory */
923 CX18_DEBUG_INFO("attempting ioremap at 0x%08x len 0x%08x\n",
924 cx->base_addr + CX18_MEM_OFFSET, CX18_MEM_SIZE);
925 cx->enc_mem = ioremap_nocache(cx->base_addr + CX18_MEM_OFFSET,
926 CX18_MEM_SIZE);
927 if (!cx->enc_mem) {
928 CX18_ERR("ioremap failed, perhaps increasing __VMALLOC_RESERVE in page.h\n");
929 CX18_ERR("or disabling CONFIG_HIGHMEM4G into the kernel would help\n");
930 retval = -ENOMEM;
931 goto free_mem;
932 }
933 cx->reg_mem = cx->enc_mem + CX18_REG_OFFSET;
Andy Wallsb1526422008-08-30 16:03:44 -0300934 devtype = cx18_read_reg(cx, 0xC72028);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300935 switch (devtype & 0xff000000) {
936 case 0xff000000:
937 CX18_INFO("cx23418 revision %08x (A)\n", devtype);
938 break;
939 case 0x01000000:
940 CX18_INFO("cx23418 revision %08x (B)\n", devtype);
941 break;
942 default:
943 CX18_INFO("cx23418 revision %08x (Unknown)\n", devtype);
944 break;
945 }
946
947 cx18_init_power(cx, 1);
948 cx18_init_memory(cx);
949
Al Viro990c81c2008-05-21 00:32:01 -0300950 cx->scb = (struct cx18_scb __iomem *)(cx->enc_mem + SCB_OFFSET);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300951 cx18_init_scb(cx);
952
953 cx18_gpio_init(cx);
954
Andy Wallsff2a2002009-02-20 23:52:13 -0300955 /* Initialize integrated A/V decoder early to set PLLs, just in case */
956 retval = cx18_av_probe(cx);
Andy Wallsfa3e7032009-02-16 02:23:25 -0300957 if (retval) {
958 CX18_ERR("Could not register A/V decoder subdevice\n");
959 goto free_map;
960 }
Andy Wallsfa3e7032009-02-16 02:23:25 -0300961
Andy Wallseefe1012009-02-21 18:42:49 -0300962 /* Initialize GPIO Reset Controller to do chip resets during i2c init */
963 if (cx->card->hw_all & CX18_HW_GPIO_RESET_CTRL) {
964 if (cx18_gpio_register(cx, CX18_HW_GPIO_RESET_CTRL) != 0)
965 CX18_WARN("Could not register GPIO reset controller"
966 "subdevice; proceeding anyway.\n");
967 else
968 cx->hw_flags |= CX18_HW_GPIO_RESET_CTRL;
969 }
970
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300971 /* active i2c */
972 CX18_DEBUG_INFO("activating i2c...\n");
Andy Walls9b4a7c82008-10-18 10:20:25 -0300973 retval = init_cx18_i2c(cx);
974 if (retval) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300975 CX18_ERR("Could not initialize i2c\n");
976 goto free_map;
977 }
978
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300979 if (cx->card->hw_all & CX18_HW_TVEEPROM) {
980 /* Based on the model number the cardtype may be changed.
981 The PCI IDs are not always reliable. */
982 cx18_process_eeprom(cx);
983 }
984 if (cx->card->comment)
985 CX18_INFO("%s", cx->card->comment);
986 if (cx->card->v4l2_capabilities == 0) {
987 retval = -ENODEV;
988 goto free_i2c;
989 }
990 cx18_init_memory(cx);
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300991 cx18_init_scb(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300992
993 /* Register IRQ */
Andy Walls3d059132009-01-10 21:54:39 -0300994 retval = request_irq(cx->pci_dev->irq, cx18_irq_handler,
Andy Walls5811cf92009-02-14 17:08:37 -0300995 IRQF_SHARED | IRQF_DISABLED,
996 cx->v4l2_dev.name, (void *)cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300997 if (retval) {
998 CX18_ERR("Failed to register irq %d\n", retval);
999 goto free_i2c;
1000 }
1001
1002 if (cx->std == 0)
1003 cx->std = V4L2_STD_NTSC_M;
1004
1005 if (cx->options.tuner == -1) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001006 for (i = 0; i < CX18_CARD_MAX_TUNERS; i++) {
1007 if ((cx->std & cx->card->tuners[i].std) == 0)
1008 continue;
1009 cx->options.tuner = cx->card->tuners[i].tuner;
1010 break;
1011 }
1012 }
1013 /* if no tuner was found, then pick the first tuner in the card list */
1014 if (cx->options.tuner == -1 && cx->card->tuners[0].std) {
1015 cx->std = cx->card->tuners[0].std;
Hans Verkuilc3cb4d92008-06-27 23:27:25 -03001016 if (cx->std & V4L2_STD_PAL)
1017 cx->std = V4L2_STD_PAL_BG | V4L2_STD_PAL_H;
1018 else if (cx->std & V4L2_STD_NTSC)
1019 cx->std = V4L2_STD_NTSC_M;
1020 else if (cx->std & V4L2_STD_SECAM)
1021 cx->std = V4L2_STD_SECAM_L;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001022 cx->options.tuner = cx->card->tuners[0].tuner;
1023 }
1024 if (cx->options.radio == -1)
1025 cx->options.radio = (cx->card->radio_input.audio_type != 0);
1026
1027 /* The card is now fully identified, continue with card-specific
1028 initialization. */
1029 cx18_init_struct2(cx);
1030
Andy Wallsff2a2002009-02-20 23:52:13 -03001031 cx18_init_subdevs(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001032
Andy Walls8d037ed2009-02-21 22:35:11 -03001033 if (cx->std & V4L2_STD_525_60)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001034 cx->is_60hz = 1;
Andy Walls8d037ed2009-02-21 22:35:11 -03001035 else
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001036 cx->is_50hz = 1;
Andy Walls8d037ed2009-02-21 22:35:11 -03001037
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001038 cx->params.video_gop_size = cx->is_60hz ? 15 : 12;
1039
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001040 if (cx->options.radio > 0)
1041 cx->v4l2_cap |= V4L2_CAP_RADIO;
1042
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001043 if (cx->options.tuner > -1) {
1044 struct tuner_setup setup;
1045
1046 setup.addr = ADDR_UNSET;
1047 setup.type = cx->options.tuner;
1048 setup.mode_mask = T_ANALOG_TV; /* matches TV tuners */
1049 setup.tuner_callback = (setup.type == TUNER_XC2028) ?
1050 cx18_reset_tuner_gpio : NULL;
Andy Wallsff2a2002009-02-20 23:52:13 -03001051 cx18_call_all(cx, tuner, s_type_addr, &setup);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001052 if (setup.type == TUNER_XC2028) {
1053 static struct xc2028_ctrl ctrl = {
1054 .fname = XC2028_DEFAULT_FIRMWARE,
1055 .max_len = 64,
1056 };
1057 struct v4l2_priv_tun_config cfg = {
1058 .tuner = cx->options.tuner,
1059 .priv = &ctrl,
1060 };
Andy Wallsff2a2002009-02-20 23:52:13 -03001061 cx18_call_all(cx, tuner, s_config, &cfg);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001062 }
1063 }
1064
1065 /* The tuner is fixed to the standard. The other inputs (e.g. S-Video)
1066 are not. */
1067 cx->tuner_std = cx->std;
1068
Hans Verkuil5e7fdc52008-05-30 10:51:53 -03001069 retval = cx18_streams_setup(cx);
1070 if (retval) {
1071 CX18_ERR("Error %d setting up streams\n", retval);
1072 goto free_irq;
1073 }
1074 retval = cx18_streams_register(cx);
1075 if (retval) {
1076 CX18_ERR("Error %d registering devices\n", retval);
1077 goto free_streams;
1078 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001079
Andy Walls5811cf92009-02-14 17:08:37 -03001080 CX18_INFO("Initialized card: %s\n", cx->card_name);
Devin Heitmuellerd68b6872009-11-20 01:15:54 -03001081
1082 /* Load cx18 submodules (cx18-alsa) */
1083 request_modules(cx);
1084
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001085 return 0;
1086
1087free_streams:
Hans Verkuil3f983872008-05-01 10:31:12 -03001088 cx18_streams_cleanup(cx, 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001089free_irq:
Andy Walls3d059132009-01-10 21:54:39 -03001090 free_irq(cx->pci_dev->irq, (void *)cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001091free_i2c:
1092 exit_cx18_i2c(cx);
1093free_map:
1094 cx18_iounmap(cx);
1095free_mem:
1096 release_mem_region(cx->base_addr, CX18_MEM_SIZE);
Andy Walls87116152009-04-13 22:42:43 -03001097free_workqueues:
Andy Wallsdeed75e2009-04-13 22:22:40 -03001098 destroy_workqueue(cx->in_work_queue);
Andy Walls87116152009-04-13 22:42:43 -03001099 destroy_workqueue(cx->out_work_queue);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001100err:
1101 if (retval == 0)
1102 retval = -ENODEV;
1103 CX18_ERR("Error %d on initialization\n", retval);
1104
Andy Walls5811cf92009-02-14 17:08:37 -03001105 v4l2_device_unregister(&cx->v4l2_dev);
1106 kfree(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001107 return retval;
1108}
1109
1110int cx18_init_on_first_open(struct cx18 *cx)
1111{
1112 int video_input;
1113 int fw_retry_count = 3;
1114 struct v4l2_frequency vf;
Andy Walls3b6fe582008-06-21 08:36:31 -03001115 struct cx18_open_id fh;
1116
1117 fh.cx = cx;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001118
1119 if (test_bit(CX18_F_I_FAILED, &cx->i_flags))
1120 return -ENXIO;
1121
1122 if (test_and_set_bit(CX18_F_I_INITED, &cx->i_flags))
1123 return 0;
1124
1125 while (--fw_retry_count > 0) {
1126 /* load firmware */
1127 if (cx18_firmware_init(cx) == 0)
1128 break;
1129 if (fw_retry_count > 1)
1130 CX18_WARN("Retry loading firmware\n");
1131 }
1132
1133 if (fw_retry_count == 0) {
1134 set_bit(CX18_F_I_FAILED, &cx->i_flags);
1135 return -ENXIO;
1136 }
1137 set_bit(CX18_F_I_LOADED_FW, &cx->i_flags);
1138
Andy Walls350145a2009-01-04 21:51:17 -03001139 /*
1140 * Init the firmware twice to work around a silicon bug
1141 * with the digital TS.
1142 *
1143 * The second firmware load requires us to normalize the APU state,
1144 * or the audio for the first analog capture will be badly incorrect.
1145 *
1146 * I can't seem to call APU_RESETAI and have it succeed without the
1147 * APU capturing audio, so we start and stop it here to do the reset
1148 */
1149
1150 /* MPEG Encoding, 224 kbps, MPEG Layer II, 48 ksps */
1151 cx18_vapi(cx, CX18_APU_START, 2, CX18_APU_ENCODING_METHOD_MPEG|0xb9, 0);
1152 cx18_vapi(cx, CX18_APU_RESETAI, 0);
1153 cx18_vapi(cx, CX18_APU_STOP, 1, CX18_APU_ENCODING_METHOD_MPEG);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001154
1155 fw_retry_count = 3;
1156 while (--fw_retry_count > 0) {
1157 /* load firmware */
1158 if (cx18_firmware_init(cx) == 0)
1159 break;
1160 if (fw_retry_count > 1)
1161 CX18_WARN("Retry loading firmware\n");
1162 }
1163
1164 if (fw_retry_count == 0) {
1165 set_bit(CX18_F_I_FAILED, &cx->i_flags);
1166 return -ENXIO;
1167 }
1168
Andy Wallsd5c02f62009-01-30 22:48:40 -03001169 /*
1170 * The second firmware load requires us to normalize the APU state,
1171 * or the audio for the first analog capture will be badly incorrect.
1172 *
1173 * I can't seem to call APU_RESETAI and have it succeed without the
1174 * APU capturing audio, so we start and stop it here to do the reset
1175 */
1176
1177 /* MPEG Encoding, 224 kbps, MPEG Layer II, 48 ksps */
1178 cx18_vapi(cx, CX18_APU_START, 2, CX18_APU_ENCODING_METHOD_MPEG|0xb9, 0);
1179 cx18_vapi(cx, CX18_APU_RESETAI, 0);
1180 cx18_vapi(cx, CX18_APU_STOP, 1, CX18_APU_ENCODING_METHOD_MPEG);
1181
Andy Wallsfa3e7032009-02-16 02:23:25 -03001182 /* Init the A/V decoder, if it hasn't been already */
Hans Verkuilcc26b072009-03-29 19:20:26 -03001183 v4l2_subdev_call(cx->sd_av, core, load_fw);
Andy Wallsfa3e7032009-02-16 02:23:25 -03001184
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001185 vf.tuner = 0;
1186 vf.type = V4L2_TUNER_ANALOG_TV;
1187 vf.frequency = 6400; /* the tuner 'baseline' frequency */
1188
1189 /* Set initial frequency. For PAL/SECAM broadcasts no
1190 'default' channel exists AFAIK. */
1191 if (cx->std == V4L2_STD_NTSC_M_JP)
1192 vf.frequency = 1460; /* ch. 1 91250*16/1000 */
1193 else if (cx->std & V4L2_STD_NTSC_M)
1194 vf.frequency = 1076; /* ch. 4 67250*16/1000 */
1195
1196 video_input = cx->active_input;
1197 cx->active_input++; /* Force update of input */
Andy Walls3b6fe582008-06-21 08:36:31 -03001198 cx18_s_input(NULL, &fh, video_input);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001199
1200 /* Let the VIDIOC_S_STD ioctl do all the work, keeps the code
1201 in one place. */
1202 cx->std++; /* Force full standard initialization */
Andy Walls3b6fe582008-06-21 08:36:31 -03001203 cx18_s_std(NULL, &fh, &cx->tuner_std);
1204 cx18_s_frequency(NULL, &fh, &vf);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001205 return 0;
1206}
1207
Andy Wallsdeed75e2009-04-13 22:22:40 -03001208static void cx18_cancel_in_work_orders(struct cx18 *cx)
Andy Walls18b5dc22008-11-16 17:15:01 -03001209{
1210 int i;
Andy Wallsdeed75e2009-04-13 22:22:40 -03001211 for (i = 0; i < CX18_MAX_IN_WORK_ORDERS; i++)
1212 cancel_work_sync(&cx->in_work_order[i].work);
Andy Walls18b5dc22008-11-16 17:15:01 -03001213}
1214
Andy Walls21a278b2009-04-15 20:45:10 -03001215static void cx18_cancel_out_work_orders(struct cx18 *cx)
1216{
1217 int i;
1218 for (i = 0; i < CX18_MAX_STREAMS; i++)
1219 if (&cx->streams[i].video_dev != NULL)
1220 cancel_work_sync(&cx->streams[i].out_work_order);
1221}
1222
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001223static void cx18_remove(struct pci_dev *pci_dev)
1224{
Andy Walls888cdb02009-01-11 15:08:53 -03001225 struct v4l2_device *v4l2_dev = pci_get_drvdata(pci_dev);
Andy Walls5811cf92009-02-14 17:08:37 -03001226 struct cx18 *cx = to_cx18(v4l2_dev);
Andy Walls6da6bf52009-02-21 19:53:54 -03001227 int i;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001228
Andy Walls5811cf92009-02-14 17:08:37 -03001229 CX18_DEBUG_INFO("Removing Card\n");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001230
1231 /* Stop all captures */
1232 CX18_DEBUG_INFO("Stopping all streams\n");
Hans Verkuil31554ae2008-05-25 11:21:27 -03001233 if (atomic_read(&cx->tot_capturing) > 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001234 cx18_stop_all_captures(cx);
1235
Andy Walls87116152009-04-13 22:42:43 -03001236 /* Stop interrupts that cause incoming work to be queued */
Andy Wallsb1526422008-08-30 16:03:44 -03001237 cx18_sw1_irq_disable(cx, IRQ_CPU_TO_EPU | IRQ_APU_TO_EPU);
Andy Walls87116152009-04-13 22:42:43 -03001238
1239 /* Incoming work can cause outgoing work, so clean up incoming first */
1240 cx18_cancel_in_work_orders(cx);
Andy Walls21a278b2009-04-15 20:45:10 -03001241 cx18_cancel_out_work_orders(cx);
Andy Walls87116152009-04-13 22:42:43 -03001242
1243 /* Stop ack interrupts that may have been needed for work to finish */
Andy Wallsb1526422008-08-30 16:03:44 -03001244 cx18_sw2_irq_disable(cx, IRQ_CPU_TO_EPU_ACK | IRQ_APU_TO_EPU_ACK);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001245
1246 cx18_halt_firmware(cx);
1247
Andy Wallsdeed75e2009-04-13 22:22:40 -03001248 destroy_workqueue(cx->in_work_queue);
Andy Walls87116152009-04-13 22:42:43 -03001249 destroy_workqueue(cx->out_work_queue);
Andy Walls572bfea2008-11-25 21:43:05 -03001250
Hans Verkuil3f983872008-05-01 10:31:12 -03001251 cx18_streams_cleanup(cx, 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001252
1253 exit_cx18_i2c(cx);
1254
Andy Walls3d059132009-01-10 21:54:39 -03001255 free_irq(cx->pci_dev->irq, (void *)cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001256
Hans Verkuilcba627a2008-05-12 14:48:26 -03001257 cx18_iounmap(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001258
1259 release_mem_region(cx->base_addr, CX18_MEM_SIZE);
1260
Andy Walls3d059132009-01-10 21:54:39 -03001261 pci_disable_device(cx->pci_dev);
Andy Walls6da6bf52009-02-21 19:53:54 -03001262
1263 if (cx->vbi.sliced_mpeg_data[0] != NULL)
1264 for (i = 0; i < CX18_VBI_FRAMES; i++)
1265 kfree(cx->vbi.sliced_mpeg_data[i]);
Andy Walls5811cf92009-02-14 17:08:37 -03001266
1267 CX18_INFO("Removed %s\n", cx->card_name);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001268
Andy Walls888cdb02009-01-11 15:08:53 -03001269 v4l2_device_unregister(v4l2_dev);
Andy Walls5811cf92009-02-14 17:08:37 -03001270 kfree(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001271}
1272
Devin Heitmuellerd68b6872009-11-20 01:15:54 -03001273
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001274/* define a pci_driver for card detection */
1275static struct pci_driver cx18_pci_driver = {
1276 .name = "cx18",
1277 .id_table = cx18_pci_tbl,
1278 .probe = cx18_probe,
1279 .remove = cx18_remove,
1280};
1281
Peter Huewe9710e7a2009-11-04 15:28:33 -03001282static int __init module_start(void)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001283{
Devin Heitmuellerf8bd9d22009-12-20 23:29:02 -03001284 printk(KERN_INFO "cx18: Start initialization, version %s\n",
1285 CX18_VERSION);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001286
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001287 /* Validate parameters */
1288 if (cx18_first_minor < 0 || cx18_first_minor >= CX18_MAX_CARDS) {
Hans Verkuildd896012008-10-04 08:36:54 -03001289 printk(KERN_ERR "cx18: Exiting, cx18_first_minor must be between 0 and %d\n",
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001290 CX18_MAX_CARDS - 1);
1291 return -1;
1292 }
1293
1294 if (cx18_debug < 0 || cx18_debug > 511) {
1295 cx18_debug = 0;
1296 printk(KERN_INFO "cx18: Debug value must be >= 0 and <= 511!\n");
1297 }
1298
1299 if (pci_register_driver(&cx18_pci_driver)) {
1300 printk(KERN_ERR "cx18: Error detecting PCI card\n");
1301 return -ENODEV;
1302 }
1303 printk(KERN_INFO "cx18: End initialization\n");
1304 return 0;
1305}
1306
Peter Huewe9710e7a2009-11-04 15:28:33 -03001307static void __exit module_cleanup(void)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001308{
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001309 pci_unregister_driver(&cx18_pci_driver);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001310}
1311
1312module_init(module_start);
1313module_exit(module_cleanup);