blob: 870c43e6e2f93a0234a2e1b78892185a3079ce01 [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 Wallsc641d092008-09-01 00:40:41 -03007 * Copyright (C) 2008 Andy Walls <awalls@radix.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"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300159 "\t\t\t 0 = Autodetect (default)\n"
160 "\t\t\t-1 = Ignore this card\n\t\t");
161MODULE_PARM_DESC(pal, "Set PAL standard: B, G, H, D, K, I, M, N, Nc, 60");
162MODULE_PARM_DESC(secam, "Set SECAM standard: B, G, H, D, K, L, LC");
163MODULE_PARM_DESC(ntsc, "Set NTSC standard: M, J, K");
164MODULE_PARM_DESC(debug,
165 "Debug level (bitmask). Default: 0\n"
166 "\t\t\t 1/0x0001: warning\n"
167 "\t\t\t 2/0x0002: info\n"
168 "\t\t\t 4/0x0004: mailbox\n"
169 "\t\t\t 8/0x0008: dma\n"
170 "\t\t\t 16/0x0010: ioctl\n"
171 "\t\t\t 32/0x0020: file\n"
172 "\t\t\t 64/0x0040: i2c\n"
173 "\t\t\t128/0x0080: irq\n"
174 "\t\t\t256/0x0100: high volume\n");
175MODULE_PARM_DESC(cx18_pci_latency,
176 "Change the PCI latency to 64 if lower: 0 = No, 1 = Yes,\n"
177 "\t\t\tDefault: Yes");
Andy Wallsd267d852008-09-28 21:46:02 -0300178MODULE_PARM_DESC(retry_mmio,
Andy Walls3f75c612008-11-16 23:33:41 -0300179 "(Deprecated) MMIO writes are now always checked and retried\n"
180 "\t\t\tEffectively: 1 [Yes]");
Andy Wallsc641d092008-09-01 00:40:41 -0300181MODULE_PARM_DESC(mmio_ndelay,
Andy Walls3f75c612008-11-16 23:33:41 -0300182 "(Deprecated) MMIO accesses are now never purposely delayed\n"
183 "\t\t\tEffectively: 0 ns");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300184MODULE_PARM_DESC(enc_ts_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300185 "Encoder TS buffer memory (MB). (enc_ts_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300186 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_TS_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300187MODULE_PARM_DESC(enc_ts_bufsize,
188 "Size of an encoder TS buffer (kB)\n"
189 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_TS_BUFSIZE));
190MODULE_PARM_DESC(enc_ts_bufs,
191 "Number of encoder TS buffers\n"
192 "\t\t\tDefault is computed from other enc_ts_* parameters");
193MODULE_PARM_DESC(enc_mpg_buffers,
194 "Encoder MPG buffer memory (MB). (enc_mpg_bufs can override)\n"
195 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_MPG_BUFFERS));
196MODULE_PARM_DESC(enc_mpg_bufsize,
197 "Size of an encoder MPG buffer (kB)\n"
198 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_MPG_BUFSIZE));
199MODULE_PARM_DESC(enc_mpg_bufs,
200 "Number of encoder MPG buffers\n"
201 "\t\t\tDefault is computed from other enc_mpg_* parameters");
202MODULE_PARM_DESC(enc_idx_buffers,
Andy Wallsefc0b122009-12-30 22:54:53 -0300203 "(Deprecated) Encoder IDX buffer memory (MB)\n"
204 "\t\t\tIgnored, except 0 disables IDX buffer allocations\n"
205 "\t\t\tDefault: 1 [Enabled]");
Andy Walls6ecd86d2008-12-07 23:30:17 -0300206MODULE_PARM_DESC(enc_idx_bufsize,
207 "Size of an encoder IDX buffer (kB)\n"
Andy Wallsefc0b122009-12-30 22:54:53 -0300208 "\t\t\tAllowed values are multiples of 1.5 kB rounded up\n"
209 "\t\t\t(multiples of size required for 64 index entries)\n"
210 "\t\t\tDefault: 2");
Andy Walls6ecd86d2008-12-07 23:30:17 -0300211MODULE_PARM_DESC(enc_idx_bufs,
212 "Number of encoder IDX buffers\n"
Andy Wallsefc0b122009-12-30 22:54:53 -0300213 "\t\t\tDefault: " __stringify(CX18_MAX_FW_MDLS_PER_STREAM));
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300214MODULE_PARM_DESC(enc_yuv_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300215 "Encoder YUV buffer memory (MB). (enc_yuv_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300216 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_YUV_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300217MODULE_PARM_DESC(enc_yuv_bufsize,
218 "Size of an encoder YUV buffer (kB)\n"
Andy Walls22dce182009-11-09 23:55:30 -0300219 "\t\t\tAllowed values are multiples of 33.75 kB rounded up\n"
220 "\t\t\t(multiples of size required for 32 screen lines)\n"
221 "\t\t\tDefault: 102");
Andy Walls6ecd86d2008-12-07 23:30:17 -0300222MODULE_PARM_DESC(enc_yuv_bufs,
223 "Number of encoder YUV buffers\n"
224 "\t\t\tDefault is computed from other enc_yuv_* parameters");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300225MODULE_PARM_DESC(enc_vbi_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300226 "Encoder VBI buffer memory (MB). (enc_vbi_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300227 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_VBI_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300228MODULE_PARM_DESC(enc_vbi_bufs,
229 "Number of encoder VBI buffers\n"
Andy Walls127ce5f2009-11-11 00:22:57 -0300230 "\t\t\tDefault is computed from enc_vbi_buffers");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300231MODULE_PARM_DESC(enc_pcm_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300232 "Encoder PCM buffer memory (MB). (enc_pcm_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300233 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_PCM_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300234MODULE_PARM_DESC(enc_pcm_bufsize,
235 "Size of an encoder PCM buffer (kB)\n"
236 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_PCM_BUFSIZE));
237MODULE_PARM_DESC(enc_pcm_bufs,
238 "Number of encoder PCM buffers\n"
239 "\t\t\tDefault is computed from other enc_pcm_* parameters");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300240
Hans Verkuil581644d2009-06-19 11:54:00 -0300241MODULE_PARM_DESC(cx18_first_minor, "Set device node number assigned to first card");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300242
243MODULE_AUTHOR("Hans Verkuil");
244MODULE_DESCRIPTION("CX23418 driver");
245MODULE_SUPPORTED_DEVICE("CX23418 MPEG2 encoder");
246MODULE_LICENSE("GPL");
247
248MODULE_VERSION(CX18_VERSION);
249
Devin Heitmuellerd68b6872009-11-20 01:15:54 -0300250/* Forward Declaration */
251static void request_modules(struct cx18 *dev);
252
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300253/* Generic utility functions */
254int cx18_msleep_timeout(unsigned int msecs, int intr)
255{
Andy Walls330c6ec2008-11-08 14:19:37 -0300256 long int timeout = msecs_to_jiffies(msecs);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300257 int sig;
258
259 do {
260 set_current_state(intr ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
261 timeout = schedule_timeout(timeout);
262 sig = intr ? signal_pending(current) : 0;
263 } while (!sig && timeout);
264 return sig;
265}
266
267/* Release ioremapped memory */
268static void cx18_iounmap(struct cx18 *cx)
269{
270 if (cx == NULL)
271 return;
272
273 /* Release io memory */
274 if (cx->enc_mem != NULL) {
275 CX18_DEBUG_INFO("releasing enc_mem\n");
276 iounmap(cx->enc_mem);
277 cx->enc_mem = NULL;
278 }
279}
280
Andy Walls25a42e42009-07-05 17:09:28 -0300281static void cx18_eeprom_dump(struct cx18 *cx, unsigned char *eedata, int len)
282{
283 int i;
284
285 CX18_INFO("eeprom dump:\n");
286 for (i = 0; i < len; i++) {
287 if (0 == (i % 16))
288 CX18_INFO("eeprom %02x:", i);
289 printk(KERN_CONT " %02x", eedata[i]);
290 if (15 == (i % 16))
291 printk(KERN_CONT "\n");
292 }
293}
294
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300295/* Hauppauge card? get values from tveeprom */
296void cx18_read_eeprom(struct cx18 *cx, struct tveeprom *tv)
297{
Andy Wallsff2a2002009-02-20 23:52:13 -0300298 struct i2c_client c;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300299 u8 eedata[256];
300
Andy Walls6246d4e2009-02-21 22:27:37 -0300301 memset(&c, 0, sizeof(c));
Andy Walls098003d2009-02-28 13:19:45 -0300302 strlcpy(c.name, "cx18 tveeprom tmp", sizeof(c.name));
Andy Wallsff2a2002009-02-20 23:52:13 -0300303 c.adapter = &cx->i2c_adap[0];
304 c.addr = 0xA0 >> 1;
305
Andy Walls25a42e42009-07-05 17:09:28 -0300306 memset(tv, 0, sizeof(*tv));
307 if (tveeprom_read(&c, eedata, sizeof(eedata)))
308 return;
309
310 switch (cx->card->type) {
311 case CX18_CARD_HVR_1600_ESMT:
312 case CX18_CARD_HVR_1600_SAMSUNG:
313 tveeprom_hauppauge_analog(&c, tv, eedata);
314 break;
315 case CX18_CARD_YUAN_MPC718:
316 tv->model = 0x718;
317 cx18_eeprom_dump(cx, eedata, sizeof(eedata));
318 CX18_INFO("eeprom PCI ID: %02x%02x:%02x%02x\n",
319 eedata[2], eedata[1], eedata[4], eedata[3]);
320 break;
321 default:
322 tv->model = 0xffffffff;
323 cx18_eeprom_dump(cx, eedata, sizeof(eedata));
324 break;
325 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300326}
327
328static void cx18_process_eeprom(struct cx18 *cx)
329{
330 struct tveeprom tv;
331
332 cx18_read_eeprom(cx, &tv);
333
334 /* Many thanks to Steven Toth from Hauppauge for providing the
335 model numbers */
Hans Verkuil1d081602008-05-12 14:45:19 -0300336 /* Note: the Samsung memory models cannot be reliably determined
337 from the model number. Use the cardtype module option if you
338 have one of these preproduction models. */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300339 switch (tv.model) {
Hans Verkuil1d081602008-05-12 14:45:19 -0300340 case 74000 ... 74999:
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300341 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
342 break;
Andy Walls25a42e42009-07-05 17:09:28 -0300343 case 0x718:
344 return;
345 case 0xffffffff:
346 CX18_INFO("Unknown EEPROM encoding\n");
347 return;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300348 case 0:
349 CX18_ERR("Invalid EEPROM\n");
350 return;
351 default:
352 CX18_ERR("Unknown model %d, defaulting to HVR-1600\n", tv.model);
353 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
354 break;
355 }
356
357 cx->v4l2_cap = cx->card->v4l2_capabilities;
358 cx->card_name = cx->card->name;
359 cx->card_i2c = cx->card->i2c;
360
361 CX18_INFO("Autodetected %s\n", cx->card_name);
362
363 if (tv.tuner_type == TUNER_ABSENT)
Andy Walls4442ee82009-05-09 00:34:31 -0300364 CX18_ERR("tveeprom cannot autodetect tuner!\n");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300365
366 if (cx->options.tuner == -1)
367 cx->options.tuner = tv.tuner_type;
368 if (cx->options.radio == -1)
369 cx->options.radio = (tv.has_radio != 0);
370
371 if (cx->std != 0)
372 /* user specified tuner standard */
373 return;
374
375 /* autodetect tuner standard */
376 if (tv.tuner_formats & V4L2_STD_PAL) {
377 CX18_DEBUG_INFO("PAL tuner detected\n");
378 cx->std |= V4L2_STD_PAL_BG | V4L2_STD_PAL_H;
379 } else if (tv.tuner_formats & V4L2_STD_NTSC) {
380 CX18_DEBUG_INFO("NTSC tuner detected\n");
381 cx->std |= V4L2_STD_NTSC_M;
382 } else if (tv.tuner_formats & V4L2_STD_SECAM) {
383 CX18_DEBUG_INFO("SECAM tuner detected\n");
384 cx->std |= V4L2_STD_SECAM_L;
385 } else {
386 CX18_INFO("No tuner detected, default to NTSC-M\n");
387 cx->std |= V4L2_STD_NTSC_M;
388 }
389}
390
391static v4l2_std_id cx18_parse_std(struct cx18 *cx)
392{
393 switch (pal[0]) {
394 case '6':
395 return V4L2_STD_PAL_60;
396 case 'b':
397 case 'B':
398 case 'g':
399 case 'G':
400 return V4L2_STD_PAL_BG;
401 case 'h':
402 case 'H':
403 return V4L2_STD_PAL_H;
404 case 'n':
405 case 'N':
406 if (pal[1] == 'c' || pal[1] == 'C')
407 return V4L2_STD_PAL_Nc;
408 return V4L2_STD_PAL_N;
409 case 'i':
410 case 'I':
411 return V4L2_STD_PAL_I;
412 case 'd':
413 case 'D':
414 case 'k':
415 case 'K':
416 return V4L2_STD_PAL_DK;
417 case 'M':
418 case 'm':
419 return V4L2_STD_PAL_M;
420 case '-':
421 break;
422 default:
423 CX18_WARN("pal= argument not recognised\n");
424 return 0;
425 }
426
427 switch (secam[0]) {
428 case 'b':
429 case 'B':
430 case 'g':
431 case 'G':
432 case 'h':
433 case 'H':
434 return V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
435 case 'd':
436 case 'D':
437 case 'k':
438 case 'K':
439 return V4L2_STD_SECAM_DK;
440 case 'l':
441 case 'L':
442 if (secam[1] == 'C' || secam[1] == 'c')
443 return V4L2_STD_SECAM_LC;
444 return V4L2_STD_SECAM_L;
445 case '-':
446 break;
447 default:
448 CX18_WARN("secam= argument not recognised\n");
449 return 0;
450 }
451
452 switch (ntsc[0]) {
453 case 'm':
454 case 'M':
455 return V4L2_STD_NTSC_M;
456 case 'j':
457 case 'J':
458 return V4L2_STD_NTSC_M_JP;
459 case 'k':
460 case 'K':
461 return V4L2_STD_NTSC_M_KR;
462 case '-':
463 break;
464 default:
465 CX18_WARN("ntsc= argument not recognised\n");
466 return 0;
467 }
468
469 /* no match found */
470 return 0;
471}
472
473static void cx18_process_options(struct cx18 *cx)
474{
475 int i, j;
476
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300477 cx->options.megabytes[CX18_ENC_STREAM_TYPE_TS] = enc_ts_buffers;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300478 cx->options.megabytes[CX18_ENC_STREAM_TYPE_MPG] = enc_mpg_buffers;
479 cx->options.megabytes[CX18_ENC_STREAM_TYPE_IDX] = enc_idx_buffers;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300480 cx->options.megabytes[CX18_ENC_STREAM_TYPE_YUV] = enc_yuv_buffers;
481 cx->options.megabytes[CX18_ENC_STREAM_TYPE_VBI] = enc_vbi_buffers;
482 cx->options.megabytes[CX18_ENC_STREAM_TYPE_PCM] = enc_pcm_buffers;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300483 cx->options.megabytes[CX18_ENC_STREAM_TYPE_RAD] = 0; /* control only */
484
485 cx->stream_buffers[CX18_ENC_STREAM_TYPE_TS] = enc_ts_bufs;
486 cx->stream_buffers[CX18_ENC_STREAM_TYPE_MPG] = enc_mpg_bufs;
487 cx->stream_buffers[CX18_ENC_STREAM_TYPE_IDX] = enc_idx_bufs;
488 cx->stream_buffers[CX18_ENC_STREAM_TYPE_YUV] = enc_yuv_bufs;
489 cx->stream_buffers[CX18_ENC_STREAM_TYPE_VBI] = enc_vbi_bufs;
490 cx->stream_buffers[CX18_ENC_STREAM_TYPE_PCM] = enc_pcm_bufs;
491 cx->stream_buffers[CX18_ENC_STREAM_TYPE_RAD] = 0; /* control, no data */
492
493 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_TS] = enc_ts_bufsize;
494 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_MPG] = enc_mpg_bufsize;
495 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_IDX] = enc_idx_bufsize;
496 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_YUV] = enc_yuv_bufsize;
Andy Walls466df462009-02-07 15:47:28 -0300497 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_VBI] = vbi_active_samples * 36;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300498 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_PCM] = enc_pcm_bufsize;
499 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_RAD] = 0; /* control no data */
500
Andy Walls466df462009-02-07 15:47:28 -0300501 /* Ensure stream_buffers & stream_buf_size are valid */
Andy Walls6ecd86d2008-12-07 23:30:17 -0300502 for (i = 0; i < CX18_MAX_STREAMS; i++) {
Andy Walls466df462009-02-07 15:47:28 -0300503 if (cx->stream_buffers[i] == 0 || /* User said 0 buffers */
504 cx->options.megabytes[i] <= 0 || /* User said 0 MB total */
505 cx->stream_buf_size[i] <= 0) { /* User said buf size 0 */
Andy Walls6ecd86d2008-12-07 23:30:17 -0300506 cx->options.megabytes[i] = 0;
507 cx->stream_buffers[i] = 0;
508 cx->stream_buf_size[i] = 0;
509 continue;
510 }
Andy Walls466df462009-02-07 15:47:28 -0300511 /*
Andy Walls22dce182009-11-09 23:55:30 -0300512 * YUV is a special case where the stream_buf_size needs to be
513 * an integral multiple of 33.75 kB (storage for 32 screens
Andy Wallsefc0b122009-12-30 22:54:53 -0300514 * lines to maintain alignment in case of lost buffers).
515 *
516 * IDX is a special case where the stream_buf_size should be
517 * an integral multiple of 1.5 kB (storage for 64 index entries
518 * to maintain alignment in case of lost buffers).
519 *
Andy Walls22dce182009-11-09 23:55:30 -0300520 */
521 if (i == CX18_ENC_STREAM_TYPE_YUV) {
522 cx->stream_buf_size[i] *= 1024;
523 cx->stream_buf_size[i] -=
524 (cx->stream_buf_size[i] % CX18_UNIT_ENC_YUV_BUFSIZE);
525
526 if (cx->stream_buf_size[i] < CX18_UNIT_ENC_YUV_BUFSIZE)
527 cx->stream_buf_size[i] =
528 CX18_UNIT_ENC_YUV_BUFSIZE;
Andy Wallsefc0b122009-12-30 22:54:53 -0300529 } else if (i == CX18_ENC_STREAM_TYPE_IDX) {
530 cx->stream_buf_size[i] *= 1024;
531 cx->stream_buf_size[i] -=
532 (cx->stream_buf_size[i] % CX18_UNIT_ENC_IDX_BUFSIZE);
533
534 if (cx->stream_buf_size[i] < CX18_UNIT_ENC_IDX_BUFSIZE)
535 cx->stream_buf_size[i] =
536 CX18_UNIT_ENC_IDX_BUFSIZE;
Andy Walls22dce182009-11-09 23:55:30 -0300537 }
538 /*
Andy Wallsefc0b122009-12-30 22:54:53 -0300539 * YUV and IDX are special cases where the stream_buf_size is
Andy Walls22dce182009-11-09 23:55:30 -0300540 * now in bytes.
Andy Walls466df462009-02-07 15:47:28 -0300541 * VBI is a special case where the stream_buf_size is fixed
542 * and already in bytes
543 */
Andy Walls22dce182009-11-09 23:55:30 -0300544 if (i == CX18_ENC_STREAM_TYPE_VBI ||
Andy Wallsefc0b122009-12-30 22:54:53 -0300545 i == CX18_ENC_STREAM_TYPE_YUV ||
546 i == CX18_ENC_STREAM_TYPE_IDX) {
Andy Walls466df462009-02-07 15:47:28 -0300547 if (cx->stream_buffers[i] < 0) {
548 cx->stream_buffers[i] =
549 cx->options.megabytes[i] * 1024 * 1024
550 / cx->stream_buf_size[i];
551 } else {
552 /* N.B. This might round down to 0 */
553 cx->options.megabytes[i] =
554 cx->stream_buffers[i]
555 * cx->stream_buf_size[i]/(1024 * 1024);
Andy Walls6ecd86d2008-12-07 23:30:17 -0300556 }
Andy Walls6ecd86d2008-12-07 23:30:17 -0300557 } else {
Andy Walls22dce182009-11-09 23:55:30 -0300558 /* All other streams have stream_buf_size in kB here */
559 if (cx->stream_buffers[i] < 0) {
560 cx->stream_buffers[i] =
561 cx->options.megabytes[i] * 1024
562 / cx->stream_buf_size[i];
563 } else {
564 /* N.B. This might round down to 0 */
565 cx->options.megabytes[i] =
566 cx->stream_buffers[i]
567 * cx->stream_buf_size[i] / 1024;
568 }
569 /* convert from kB to bytes */
570 cx->stream_buf_size[i] *= 1024;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300571 }
Andy Walls22dce182009-11-09 23:55:30 -0300572 CX18_DEBUG_INFO("Stream type %d options: %d MB, %d buffers, "
573 "%d bytes\n", i, cx->options.megabytes[i],
574 cx->stream_buffers[i], cx->stream_buf_size[i]);
Andy Walls6ecd86d2008-12-07 23:30:17 -0300575 }
576
Andy Walls5811cf92009-02-14 17:08:37 -0300577 cx->options.cardtype = cardtype[cx->instance];
578 cx->options.tuner = tuner[cx->instance];
579 cx->options.radio = radio[cx->instance];
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300580
581 cx->std = cx18_parse_std(cx);
582 if (cx->options.cardtype == -1) {
583 CX18_INFO("Ignore card\n");
584 return;
585 }
586 cx->card = cx18_get_card(cx->options.cardtype - 1);
587 if (cx->card)
588 CX18_INFO("User specified %s card\n", cx->card->name);
589 else if (cx->options.cardtype != 0)
590 CX18_ERR("Unknown user specified type, trying to autodetect card\n");
591 if (cx->card == NULL) {
Andy Walls3d059132009-01-10 21:54:39 -0300592 if (cx->pci_dev->subsystem_vendor == CX18_PCI_ID_HAUPPAUGE) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300593 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
594 CX18_INFO("Autodetected Hauppauge card\n");
595 }
596 }
597 if (cx->card == NULL) {
598 for (i = 0; (cx->card = cx18_get_card(i)); i++) {
599 if (cx->card->pci_list == NULL)
600 continue;
601 for (j = 0; cx->card->pci_list[j].device; j++) {
Andy Walls3d059132009-01-10 21:54:39 -0300602 if (cx->pci_dev->device !=
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300603 cx->card->pci_list[j].device)
604 continue;
Andy Walls3d059132009-01-10 21:54:39 -0300605 if (cx->pci_dev->subsystem_vendor !=
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300606 cx->card->pci_list[j].subsystem_vendor)
607 continue;
Andy Walls3d059132009-01-10 21:54:39 -0300608 if (cx->pci_dev->subsystem_device !=
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300609 cx->card->pci_list[j].subsystem_device)
610 continue;
611 CX18_INFO("Autodetected %s card\n", cx->card->name);
612 goto done;
613 }
614 }
615 }
616done:
617
618 if (cx->card == NULL) {
619 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
Bjorn Helgaas29e66a62008-09-04 17:24:51 -0300620 CX18_ERR("Unknown card: vendor/device: [%04x:%04x]\n",
Andy Walls3d059132009-01-10 21:54:39 -0300621 cx->pci_dev->vendor, cx->pci_dev->device);
Bjorn Helgaas29e66a62008-09-04 17:24:51 -0300622 CX18_ERR(" subsystem vendor/device: [%04x:%04x]\n",
Andy Walls3d059132009-01-10 21:54:39 -0300623 cx->pci_dev->subsystem_vendor,
624 cx->pci_dev->subsystem_device);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300625 CX18_ERR("Defaulting to %s card\n", cx->card->name);
626 CX18_ERR("Please mail the vendor/device and subsystem vendor/device IDs and what kind of\n");
627 CX18_ERR("card you have to the ivtv-devel mailinglist (www.ivtvdriver.org)\n");
628 CX18_ERR("Prefix your subject line with [UNKNOWN CX18 CARD].\n");
629 }
630 cx->v4l2_cap = cx->card->v4l2_capabilities;
631 cx->card_name = cx->card->name;
632 cx->card_i2c = cx->card->i2c;
633}
634
Andy Walls87116152009-04-13 22:42:43 -0300635static int __devinit cx18_create_in_workq(struct cx18 *cx)
636{
637 snprintf(cx->in_workq_name, sizeof(cx->in_workq_name), "%s-in",
638 cx->v4l2_dev.name);
639 cx->in_work_queue = create_singlethread_workqueue(cx->in_workq_name);
640 if (cx->in_work_queue == NULL) {
641 CX18_ERR("Unable to create incoming mailbox handler thread\n");
642 return -ENOMEM;
643 }
644 return 0;
645}
646
647static int __devinit cx18_create_out_workq(struct cx18 *cx)
648{
649 snprintf(cx->out_workq_name, sizeof(cx->out_workq_name), "%s-out",
650 cx->v4l2_dev.name);
651 cx->out_work_queue = create_workqueue(cx->out_workq_name);
652 if (cx->out_work_queue == NULL) {
653 CX18_ERR("Unable to create outgoing mailbox handler threads\n");
654 return -ENOMEM;
655 }
656 return 0;
657}
658
659static void __devinit cx18_init_in_work_orders(struct cx18 *cx)
660{
661 int i;
662 for (i = 0; i < CX18_MAX_IN_WORK_ORDERS; i++) {
663 cx->in_work_order[i].cx = cx;
664 cx->in_work_order[i].str = cx->epu_debug_str;
665 INIT_WORK(&cx->in_work_order[i].work, cx18_in_work_handler);
666 }
667}
668
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300669/* Precondition: the cx18 structure has been memset to 0. Only
Andy Walls5811cf92009-02-14 17:08:37 -0300670 the dev and instance fields have been filled in.
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300671 No assumptions on the card type may be made here (see cx18_init_struct2
672 for that).
673 */
674static int __devinit cx18_init_struct1(struct cx18 *cx)
675{
Andy Walls87116152009-04-13 22:42:43 -0300676 int ret;
Andy Wallsee2d64f2008-11-16 01:38:19 -0300677
Andy Walls3d059132009-01-10 21:54:39 -0300678 cx->base_addr = pci_resource_start(cx->pci_dev, 0);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300679
680 mutex_init(&cx->serialize_lock);
Andy Walls8abdd002008-07-13 19:05:25 -0300681 mutex_init(&cx->gpio_lock);
Andy Walls72c2d6d2008-11-06 01:15:41 -0300682 mutex_init(&cx->epu2apu_mb_lock);
683 mutex_init(&cx->epu2cpu_mb_lock);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300684
Andy Walls87116152009-04-13 22:42:43 -0300685 ret = cx18_create_out_workq(cx);
686 if (ret)
687 return ret;
688
689 ret = cx18_create_in_workq(cx);
690 if (ret) {
691 destroy_workqueue(cx->out_work_queue);
692 return ret;
Andy Walls572bfea2008-11-25 21:43:05 -0300693 }
694
Andy Walls87116152009-04-13 22:42:43 -0300695 cx18_init_in_work_orders(cx);
Andy Walls1d6782b2008-11-05 00:49:14 -0300696
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300697 /* start counting open_id at 1 */
698 cx->open_id = 1;
699
700 /* Initial settings */
701 cx2341x_fill_defaults(&cx->params);
702 cx->temporal_strength = cx->params.video_temporal_filter;
703 cx->spatial_strength = cx->params.video_spatial_filter;
704 cx->filter_mode = cx->params.video_spatial_filter_mode |
705 (cx->params.video_temporal_filter_mode << 1) |
706 (cx->params.video_median_filter_type << 2);
707 cx->params.port = CX2341X_PORT_MEMORY;
Andy Walls302df972009-01-31 00:33:02 -0300708 cx->params.capabilities =
Andy Walls006e7172009-02-21 22:44:50 -0300709 CX2341X_CAP_HAS_TS | CX2341X_CAP_HAS_SLICED_VBI;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300710 init_waitqueue_head(&cx->cap_w);
711 init_waitqueue_head(&cx->mb_apu_waitq);
712 init_waitqueue_head(&cx->mb_cpu_waitq);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300713 init_waitqueue_head(&cx->dma_waitq);
714
715 /* VBI */
Andy Wallsdd073432008-12-12 16:24:04 -0300716 cx->vbi.in.type = V4L2_BUF_TYPE_VBI_CAPTURE;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300717 cx->vbi.sliced_in = &cx->vbi.in.fmt.sliced;
Andy Wallsaf009cf2008-12-12 20:00:29 -0300718
Andy Walls52fcb3e2009-11-08 23:45:24 -0300719 /* IVTV style VBI insertion into MPEG streams */
720 INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_buf.list);
721 INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_mdl.list);
722 INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_mdl.buf_list);
723 list_add(&cx->vbi.sliced_mpeg_buf.list,
724 &cx->vbi.sliced_mpeg_mdl.buf_list);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300725 return 0;
726}
727
728/* Second initialization part. Here the card type has been
729 autodetected. */
730static void __devinit cx18_init_struct2(struct cx18 *cx)
731{
732 int i;
733
734 for (i = 0; i < CX18_CARD_MAX_VIDEO_INPUTS; i++)
735 if (cx->card->video_inputs[i].video_type == 0)
736 break;
737 cx->nof_inputs = i;
738 for (i = 0; i < CX18_CARD_MAX_AUDIO_INPUTS; i++)
739 if (cx->card->audio_inputs[i].audio_type == 0)
740 break;
741 cx->nof_audio_inputs = i;
742
743 /* Find tuner input */
744 for (i = 0; i < cx->nof_inputs; i++) {
745 if (cx->card->video_inputs[i].video_type ==
746 CX18_CARD_INPUT_VID_TUNER)
747 break;
748 }
749 if (i == cx->nof_inputs)
750 i = 0;
751 cx->active_input = i;
752 cx->audio_input = cx->card->video_inputs[i].audio_index;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300753}
754
Andy Walls3d059132009-01-10 21:54:39 -0300755static int cx18_setup_pci(struct cx18 *cx, struct pci_dev *pci_dev,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300756 const struct pci_device_id *pci_id)
757{
758 u16 cmd;
759 unsigned char pci_latency;
760
761 CX18_DEBUG_INFO("Enabling pci device\n");
762
Andy Walls3d059132009-01-10 21:54:39 -0300763 if (pci_enable_device(pci_dev)) {
Andy Walls5811cf92009-02-14 17:08:37 -0300764 CX18_ERR("Can't enable device %d!\n", cx->instance);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300765 return -EIO;
766 }
Andy Walls3d059132009-01-10 21:54:39 -0300767 if (pci_set_dma_mask(pci_dev, 0xffffffff)) {
Andy Walls5811cf92009-02-14 17:08:37 -0300768 CX18_ERR("No suitable DMA available, card %d\n", cx->instance);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300769 return -EIO;
770 }
771 if (!request_mem_region(cx->base_addr, CX18_MEM_SIZE, "cx18 encoder")) {
Andy Walls5811cf92009-02-14 17:08:37 -0300772 CX18_ERR("Cannot request encoder memory region, card %d\n",
773 cx->instance);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300774 return -EIO;
775 }
776
Andy Walls45190642008-08-29 16:10:21 -0300777 /* Enable bus mastering and memory mapped IO for the CX23418 */
Andy Walls3d059132009-01-10 21:54:39 -0300778 pci_read_config_word(pci_dev, PCI_COMMAND, &cmd);
Andy Walls45190642008-08-29 16:10:21 -0300779 cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
Andy Walls3d059132009-01-10 21:54:39 -0300780 pci_write_config_word(pci_dev, PCI_COMMAND, cmd);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300781
Andy Walls3d059132009-01-10 21:54:39 -0300782 pci_read_config_byte(pci_dev, PCI_CLASS_REVISION, &cx->card_rev);
783 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &pci_latency);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300784
785 if (pci_latency < 64 && cx18_pci_latency) {
786 CX18_INFO("Unreasonably low latency timer, "
787 "setting to 64 (was %d)\n", pci_latency);
Andy Walls3d059132009-01-10 21:54:39 -0300788 pci_write_config_byte(pci_dev, PCI_LATENCY_TIMER, 64);
789 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &pci_latency);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300790 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300791
792 CX18_DEBUG_INFO("cx%d (rev %d) at %02x:%02x.%x, "
793 "irq: %d, latency: %d, memory: 0x%lx\n",
Andy Walls3d059132009-01-10 21:54:39 -0300794 cx->pci_dev->device, cx->card_rev, pci_dev->bus->number,
795 PCI_SLOT(pci_dev->devfn), PCI_FUNC(pci_dev->devfn),
796 cx->pci_dev->irq, pci_latency, (unsigned long)cx->base_addr);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300797
798 return 0;
799}
800
Andy Wallsff2a2002009-02-20 23:52:13 -0300801static void cx18_init_subdevs(struct cx18 *cx)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300802{
803 u32 hw = cx->card->hw_all;
Andy Wallsff2a2002009-02-20 23:52:13 -0300804 u32 device;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300805 int i;
806
Andy Wallsff2a2002009-02-20 23:52:13 -0300807 for (i = 0, device = 1; i < 32; i++, device <<= 1) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300808
809 if (!(device & hw))
810 continue;
Andy Wallsff2a2002009-02-20 23:52:13 -0300811
812 switch (device) {
Andy Wallsff2a2002009-02-20 23:52:13 -0300813 case CX18_HW_DVB:
814 case CX18_HW_TVEEPROM:
815 /* These subordinate devices do not use probing */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300816 cx->hw_flags |= device;
Andy Wallsff2a2002009-02-20 23:52:13 -0300817 break;
818 case CX18_HW_418_AV:
819 /* The A/V decoder gets probed earlier to set PLLs */
820 /* Just note that the card uses it (i.e. has analog) */
821 cx->hw_flags |= device;
822 break;
Andy Wallseefe1012009-02-21 18:42:49 -0300823 case CX18_HW_GPIO_RESET_CTRL:
824 /*
825 * The Reset Controller gets probed and added to
826 * hw_flags earlier for i2c adapter/bus initialization
827 */
828 break;
829 case CX18_HW_GPIO_MUX:
830 if (cx18_gpio_register(cx, device) == 0)
831 cx->hw_flags |= device;
832 break;
Andy Wallsff2a2002009-02-20 23:52:13 -0300833 default:
834 if (cx18_i2c_register(cx, i) == 0)
835 cx->hw_flags |= device;
836 break;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300837 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300838 }
839
Andy Wallsff2a2002009-02-20 23:52:13 -0300840 if (cx->hw_flags & CX18_HW_418_AV)
841 cx->sd_av = cx18_find_hw(cx, CX18_HW_418_AV);
842
843 if (cx->card->hw_muxer != 0)
844 cx->sd_extmux = cx18_find_hw(cx, cx->card->hw_muxer);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300845}
846
Andy Walls3d059132009-01-10 21:54:39 -0300847static int __devinit cx18_probe(struct pci_dev *pci_dev,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300848 const struct pci_device_id *pci_id)
849{
850 int retval = 0;
Andy Wallsff086572008-10-18 08:51:28 -0300851 int i;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300852 u32 devtype;
853 struct cx18 *cx;
854
Andy Walls5811cf92009-02-14 17:08:37 -0300855 /* FIXME - module parameter arrays constrain max instances */
856 i = atomic_inc_return(&cx18_instance) - 1;
857 if (i >= CX18_MAX_CARDS) {
858 printk(KERN_ERR "cx18: cannot manage card %d, driver has a "
859 "limit of 0 - %d\n", i, CX18_MAX_CARDS - 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300860 return -ENOMEM;
861 }
862
863 cx = kzalloc(sizeof(struct cx18), GFP_ATOMIC);
Andy Walls5811cf92009-02-14 17:08:37 -0300864 if (cx == NULL) {
865 printk(KERN_ERR "cx18: cannot manage card %d, out of memory\n",
866 i);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300867 return -ENOMEM;
868 }
Andy Walls888cdb02009-01-11 15:08:53 -0300869 cx->pci_dev = pci_dev;
Andy Walls5811cf92009-02-14 17:08:37 -0300870 cx->instance = i;
871
Andy Walls888cdb02009-01-11 15:08:53 -0300872 retval = v4l2_device_register(&pci_dev->dev, &cx->v4l2_dev);
873 if (retval) {
Andy Walls5811cf92009-02-14 17:08:37 -0300874 printk(KERN_ERR "cx18: v4l2_device_register of card %d failed"
875 "\n", cx->instance);
876 kfree(cx);
877 return retval;
Andy Walls888cdb02009-01-11 15:08:53 -0300878 }
Andy Walls5811cf92009-02-14 17:08:37 -0300879 snprintf(cx->v4l2_dev.name, sizeof(cx->v4l2_dev.name), "cx18-%d",
880 cx->instance);
881 CX18_INFO("Initializing card %d\n", cx->instance);
Andy Walls888cdb02009-01-11 15:08:53 -0300882
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300883 cx18_process_options(cx);
884 if (cx->options.cardtype == -1) {
885 retval = -ENODEV;
Andy Walls5811cf92009-02-14 17:08:37 -0300886 goto err;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300887 }
Andy Walls87116152009-04-13 22:42:43 -0300888
889 retval = cx18_init_struct1(cx);
890 if (retval)
Andy Walls5811cf92009-02-14 17:08:37 -0300891 goto err;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300892
893 CX18_DEBUG_INFO("base addr: 0x%08x\n", cx->base_addr);
894
895 /* PCI Device Setup */
Andy Walls3d059132009-01-10 21:54:39 -0300896 retval = cx18_setup_pci(cx, pci_dev, pci_id);
Andy Walls572bfea2008-11-25 21:43:05 -0300897 if (retval != 0)
Andy Walls87116152009-04-13 22:42:43 -0300898 goto free_workqueues;
Andy Walls572bfea2008-11-25 21:43:05 -0300899
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300900 /* map io memory */
901 CX18_DEBUG_INFO("attempting ioremap at 0x%08x len 0x%08x\n",
902 cx->base_addr + CX18_MEM_OFFSET, CX18_MEM_SIZE);
903 cx->enc_mem = ioremap_nocache(cx->base_addr + CX18_MEM_OFFSET,
904 CX18_MEM_SIZE);
905 if (!cx->enc_mem) {
906 CX18_ERR("ioremap failed, perhaps increasing __VMALLOC_RESERVE in page.h\n");
907 CX18_ERR("or disabling CONFIG_HIGHMEM4G into the kernel would help\n");
908 retval = -ENOMEM;
909 goto free_mem;
910 }
911 cx->reg_mem = cx->enc_mem + CX18_REG_OFFSET;
Andy Wallsb1526422008-08-30 16:03:44 -0300912 devtype = cx18_read_reg(cx, 0xC72028);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300913 switch (devtype & 0xff000000) {
914 case 0xff000000:
915 CX18_INFO("cx23418 revision %08x (A)\n", devtype);
916 break;
917 case 0x01000000:
918 CX18_INFO("cx23418 revision %08x (B)\n", devtype);
919 break;
920 default:
921 CX18_INFO("cx23418 revision %08x (Unknown)\n", devtype);
922 break;
923 }
924
925 cx18_init_power(cx, 1);
926 cx18_init_memory(cx);
927
Al Viro990c81c2008-05-21 00:32:01 -0300928 cx->scb = (struct cx18_scb __iomem *)(cx->enc_mem + SCB_OFFSET);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300929 cx18_init_scb(cx);
930
931 cx18_gpio_init(cx);
932
Andy Wallsff2a2002009-02-20 23:52:13 -0300933 /* Initialize integrated A/V decoder early to set PLLs, just in case */
934 retval = cx18_av_probe(cx);
Andy Wallsfa3e7032009-02-16 02:23:25 -0300935 if (retval) {
936 CX18_ERR("Could not register A/V decoder subdevice\n");
937 goto free_map;
938 }
Andy Wallsfa3e7032009-02-16 02:23:25 -0300939
Andy Wallseefe1012009-02-21 18:42:49 -0300940 /* Initialize GPIO Reset Controller to do chip resets during i2c init */
941 if (cx->card->hw_all & CX18_HW_GPIO_RESET_CTRL) {
942 if (cx18_gpio_register(cx, CX18_HW_GPIO_RESET_CTRL) != 0)
943 CX18_WARN("Could not register GPIO reset controller"
944 "subdevice; proceeding anyway.\n");
945 else
946 cx->hw_flags |= CX18_HW_GPIO_RESET_CTRL;
947 }
948
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300949 /* active i2c */
950 CX18_DEBUG_INFO("activating i2c...\n");
Andy Walls9b4a7c82008-10-18 10:20:25 -0300951 retval = init_cx18_i2c(cx);
952 if (retval) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300953 CX18_ERR("Could not initialize i2c\n");
954 goto free_map;
955 }
956
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300957 if (cx->card->hw_all & CX18_HW_TVEEPROM) {
958 /* Based on the model number the cardtype may be changed.
959 The PCI IDs are not always reliable. */
960 cx18_process_eeprom(cx);
961 }
962 if (cx->card->comment)
963 CX18_INFO("%s", cx->card->comment);
964 if (cx->card->v4l2_capabilities == 0) {
965 retval = -ENODEV;
966 goto free_i2c;
967 }
968 cx18_init_memory(cx);
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300969 cx18_init_scb(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300970
971 /* Register IRQ */
Andy Walls3d059132009-01-10 21:54:39 -0300972 retval = request_irq(cx->pci_dev->irq, cx18_irq_handler,
Andy Walls5811cf92009-02-14 17:08:37 -0300973 IRQF_SHARED | IRQF_DISABLED,
974 cx->v4l2_dev.name, (void *)cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300975 if (retval) {
976 CX18_ERR("Failed to register irq %d\n", retval);
977 goto free_i2c;
978 }
979
980 if (cx->std == 0)
981 cx->std = V4L2_STD_NTSC_M;
982
983 if (cx->options.tuner == -1) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300984 for (i = 0; i < CX18_CARD_MAX_TUNERS; i++) {
985 if ((cx->std & cx->card->tuners[i].std) == 0)
986 continue;
987 cx->options.tuner = cx->card->tuners[i].tuner;
988 break;
989 }
990 }
991 /* if no tuner was found, then pick the first tuner in the card list */
992 if (cx->options.tuner == -1 && cx->card->tuners[0].std) {
993 cx->std = cx->card->tuners[0].std;
Hans Verkuilc3cb4d92008-06-27 23:27:25 -0300994 if (cx->std & V4L2_STD_PAL)
995 cx->std = V4L2_STD_PAL_BG | V4L2_STD_PAL_H;
996 else if (cx->std & V4L2_STD_NTSC)
997 cx->std = V4L2_STD_NTSC_M;
998 else if (cx->std & V4L2_STD_SECAM)
999 cx->std = V4L2_STD_SECAM_L;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001000 cx->options.tuner = cx->card->tuners[0].tuner;
1001 }
1002 if (cx->options.radio == -1)
1003 cx->options.radio = (cx->card->radio_input.audio_type != 0);
1004
1005 /* The card is now fully identified, continue with card-specific
1006 initialization. */
1007 cx18_init_struct2(cx);
1008
Andy Wallsff2a2002009-02-20 23:52:13 -03001009 cx18_init_subdevs(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001010
Andy Walls8d037ed2009-02-21 22:35:11 -03001011 if (cx->std & V4L2_STD_525_60)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001012 cx->is_60hz = 1;
Andy Walls8d037ed2009-02-21 22:35:11 -03001013 else
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001014 cx->is_50hz = 1;
Andy Walls8d037ed2009-02-21 22:35:11 -03001015
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001016 cx->params.video_gop_size = cx->is_60hz ? 15 : 12;
1017
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001018 if (cx->options.radio > 0)
1019 cx->v4l2_cap |= V4L2_CAP_RADIO;
1020
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001021 if (cx->options.tuner > -1) {
1022 struct tuner_setup setup;
1023
1024 setup.addr = ADDR_UNSET;
1025 setup.type = cx->options.tuner;
1026 setup.mode_mask = T_ANALOG_TV; /* matches TV tuners */
1027 setup.tuner_callback = (setup.type == TUNER_XC2028) ?
1028 cx18_reset_tuner_gpio : NULL;
Andy Wallsff2a2002009-02-20 23:52:13 -03001029 cx18_call_all(cx, tuner, s_type_addr, &setup);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001030 if (setup.type == TUNER_XC2028) {
1031 static struct xc2028_ctrl ctrl = {
1032 .fname = XC2028_DEFAULT_FIRMWARE,
1033 .max_len = 64,
1034 };
1035 struct v4l2_priv_tun_config cfg = {
1036 .tuner = cx->options.tuner,
1037 .priv = &ctrl,
1038 };
Andy Wallsff2a2002009-02-20 23:52:13 -03001039 cx18_call_all(cx, tuner, s_config, &cfg);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001040 }
1041 }
1042
1043 /* The tuner is fixed to the standard. The other inputs (e.g. S-Video)
1044 are not. */
1045 cx->tuner_std = cx->std;
1046
Hans Verkuil5e7fdc52008-05-30 10:51:53 -03001047 retval = cx18_streams_setup(cx);
1048 if (retval) {
1049 CX18_ERR("Error %d setting up streams\n", retval);
1050 goto free_irq;
1051 }
1052 retval = cx18_streams_register(cx);
1053 if (retval) {
1054 CX18_ERR("Error %d registering devices\n", retval);
1055 goto free_streams;
1056 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001057
Andy Walls5811cf92009-02-14 17:08:37 -03001058 CX18_INFO("Initialized card: %s\n", cx->card_name);
Devin Heitmuellerd68b6872009-11-20 01:15:54 -03001059
1060 /* Load cx18 submodules (cx18-alsa) */
1061 request_modules(cx);
1062
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001063 return 0;
1064
1065free_streams:
Hans Verkuil3f983872008-05-01 10:31:12 -03001066 cx18_streams_cleanup(cx, 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001067free_irq:
Andy Walls3d059132009-01-10 21:54:39 -03001068 free_irq(cx->pci_dev->irq, (void *)cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001069free_i2c:
1070 exit_cx18_i2c(cx);
1071free_map:
1072 cx18_iounmap(cx);
1073free_mem:
1074 release_mem_region(cx->base_addr, CX18_MEM_SIZE);
Andy Walls87116152009-04-13 22:42:43 -03001075free_workqueues:
Andy Wallsdeed75e2009-04-13 22:22:40 -03001076 destroy_workqueue(cx->in_work_queue);
Andy Walls87116152009-04-13 22:42:43 -03001077 destroy_workqueue(cx->out_work_queue);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001078err:
1079 if (retval == 0)
1080 retval = -ENODEV;
1081 CX18_ERR("Error %d on initialization\n", retval);
1082
Andy Walls5811cf92009-02-14 17:08:37 -03001083 v4l2_device_unregister(&cx->v4l2_dev);
1084 kfree(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001085 return retval;
1086}
1087
1088int cx18_init_on_first_open(struct cx18 *cx)
1089{
1090 int video_input;
1091 int fw_retry_count = 3;
1092 struct v4l2_frequency vf;
Andy Walls3b6fe582008-06-21 08:36:31 -03001093 struct cx18_open_id fh;
1094
1095 fh.cx = cx;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001096
1097 if (test_bit(CX18_F_I_FAILED, &cx->i_flags))
1098 return -ENXIO;
1099
1100 if (test_and_set_bit(CX18_F_I_INITED, &cx->i_flags))
1101 return 0;
1102
1103 while (--fw_retry_count > 0) {
1104 /* load firmware */
1105 if (cx18_firmware_init(cx) == 0)
1106 break;
1107 if (fw_retry_count > 1)
1108 CX18_WARN("Retry loading firmware\n");
1109 }
1110
1111 if (fw_retry_count == 0) {
1112 set_bit(CX18_F_I_FAILED, &cx->i_flags);
1113 return -ENXIO;
1114 }
1115 set_bit(CX18_F_I_LOADED_FW, &cx->i_flags);
1116
Andy Walls350145a2009-01-04 21:51:17 -03001117 /*
1118 * Init the firmware twice to work around a silicon bug
1119 * with the digital TS.
1120 *
1121 * The second firmware load requires us to normalize the APU state,
1122 * or the audio for the first analog capture will be badly incorrect.
1123 *
1124 * I can't seem to call APU_RESETAI and have it succeed without the
1125 * APU capturing audio, so we start and stop it here to do the reset
1126 */
1127
1128 /* MPEG Encoding, 224 kbps, MPEG Layer II, 48 ksps */
1129 cx18_vapi(cx, CX18_APU_START, 2, CX18_APU_ENCODING_METHOD_MPEG|0xb9, 0);
1130 cx18_vapi(cx, CX18_APU_RESETAI, 0);
1131 cx18_vapi(cx, CX18_APU_STOP, 1, CX18_APU_ENCODING_METHOD_MPEG);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001132
1133 fw_retry_count = 3;
1134 while (--fw_retry_count > 0) {
1135 /* load firmware */
1136 if (cx18_firmware_init(cx) == 0)
1137 break;
1138 if (fw_retry_count > 1)
1139 CX18_WARN("Retry loading firmware\n");
1140 }
1141
1142 if (fw_retry_count == 0) {
1143 set_bit(CX18_F_I_FAILED, &cx->i_flags);
1144 return -ENXIO;
1145 }
1146
Andy Wallsd5c02f62009-01-30 22:48:40 -03001147 /*
1148 * The second firmware load requires us to normalize the APU state,
1149 * or the audio for the first analog capture will be badly incorrect.
1150 *
1151 * I can't seem to call APU_RESETAI and have it succeed without the
1152 * APU capturing audio, so we start and stop it here to do the reset
1153 */
1154
1155 /* MPEG Encoding, 224 kbps, MPEG Layer II, 48 ksps */
1156 cx18_vapi(cx, CX18_APU_START, 2, CX18_APU_ENCODING_METHOD_MPEG|0xb9, 0);
1157 cx18_vapi(cx, CX18_APU_RESETAI, 0);
1158 cx18_vapi(cx, CX18_APU_STOP, 1, CX18_APU_ENCODING_METHOD_MPEG);
1159
Andy Wallsfa3e7032009-02-16 02:23:25 -03001160 /* Init the A/V decoder, if it hasn't been already */
Hans Verkuilcc26b072009-03-29 19:20:26 -03001161 v4l2_subdev_call(cx->sd_av, core, load_fw);
Andy Wallsfa3e7032009-02-16 02:23:25 -03001162
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001163 vf.tuner = 0;
1164 vf.type = V4L2_TUNER_ANALOG_TV;
1165 vf.frequency = 6400; /* the tuner 'baseline' frequency */
1166
1167 /* Set initial frequency. For PAL/SECAM broadcasts no
1168 'default' channel exists AFAIK. */
1169 if (cx->std == V4L2_STD_NTSC_M_JP)
1170 vf.frequency = 1460; /* ch. 1 91250*16/1000 */
1171 else if (cx->std & V4L2_STD_NTSC_M)
1172 vf.frequency = 1076; /* ch. 4 67250*16/1000 */
1173
1174 video_input = cx->active_input;
1175 cx->active_input++; /* Force update of input */
Andy Walls3b6fe582008-06-21 08:36:31 -03001176 cx18_s_input(NULL, &fh, video_input);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001177
1178 /* Let the VIDIOC_S_STD ioctl do all the work, keeps the code
1179 in one place. */
1180 cx->std++; /* Force full standard initialization */
Andy Walls3b6fe582008-06-21 08:36:31 -03001181 cx18_s_std(NULL, &fh, &cx->tuner_std);
1182 cx18_s_frequency(NULL, &fh, &vf);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001183 return 0;
1184}
1185
Andy Wallsdeed75e2009-04-13 22:22:40 -03001186static void cx18_cancel_in_work_orders(struct cx18 *cx)
Andy Walls18b5dc22008-11-16 17:15:01 -03001187{
1188 int i;
Andy Wallsdeed75e2009-04-13 22:22:40 -03001189 for (i = 0; i < CX18_MAX_IN_WORK_ORDERS; i++)
1190 cancel_work_sync(&cx->in_work_order[i].work);
Andy Walls18b5dc22008-11-16 17:15:01 -03001191}
1192
Andy Walls21a278b2009-04-15 20:45:10 -03001193static void cx18_cancel_out_work_orders(struct cx18 *cx)
1194{
1195 int i;
1196 for (i = 0; i < CX18_MAX_STREAMS; i++)
1197 if (&cx->streams[i].video_dev != NULL)
1198 cancel_work_sync(&cx->streams[i].out_work_order);
1199}
1200
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001201static void cx18_remove(struct pci_dev *pci_dev)
1202{
Andy Walls888cdb02009-01-11 15:08:53 -03001203 struct v4l2_device *v4l2_dev = pci_get_drvdata(pci_dev);
Andy Walls5811cf92009-02-14 17:08:37 -03001204 struct cx18 *cx = to_cx18(v4l2_dev);
Andy Walls6da6bf52009-02-21 19:53:54 -03001205 int i;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001206
Andy Walls5811cf92009-02-14 17:08:37 -03001207 CX18_DEBUG_INFO("Removing Card\n");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001208
1209 /* Stop all captures */
1210 CX18_DEBUG_INFO("Stopping all streams\n");
Hans Verkuil31554ae2008-05-25 11:21:27 -03001211 if (atomic_read(&cx->tot_capturing) > 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001212 cx18_stop_all_captures(cx);
1213
Andy Walls87116152009-04-13 22:42:43 -03001214 /* Stop interrupts that cause incoming work to be queued */
Andy Wallsb1526422008-08-30 16:03:44 -03001215 cx18_sw1_irq_disable(cx, IRQ_CPU_TO_EPU | IRQ_APU_TO_EPU);
Andy Walls87116152009-04-13 22:42:43 -03001216
1217 /* Incoming work can cause outgoing work, so clean up incoming first */
1218 cx18_cancel_in_work_orders(cx);
Andy Walls21a278b2009-04-15 20:45:10 -03001219 cx18_cancel_out_work_orders(cx);
Andy Walls87116152009-04-13 22:42:43 -03001220
1221 /* Stop ack interrupts that may have been needed for work to finish */
Andy Wallsb1526422008-08-30 16:03:44 -03001222 cx18_sw2_irq_disable(cx, IRQ_CPU_TO_EPU_ACK | IRQ_APU_TO_EPU_ACK);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001223
1224 cx18_halt_firmware(cx);
1225
Andy Wallsdeed75e2009-04-13 22:22:40 -03001226 destroy_workqueue(cx->in_work_queue);
Andy Walls87116152009-04-13 22:42:43 -03001227 destroy_workqueue(cx->out_work_queue);
Andy Walls572bfea2008-11-25 21:43:05 -03001228
Hans Verkuil3f983872008-05-01 10:31:12 -03001229 cx18_streams_cleanup(cx, 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001230
1231 exit_cx18_i2c(cx);
1232
Andy Walls3d059132009-01-10 21:54:39 -03001233 free_irq(cx->pci_dev->irq, (void *)cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001234
Hans Verkuilcba627a2008-05-12 14:48:26 -03001235 cx18_iounmap(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001236
1237 release_mem_region(cx->base_addr, CX18_MEM_SIZE);
1238
Andy Walls3d059132009-01-10 21:54:39 -03001239 pci_disable_device(cx->pci_dev);
Andy Walls6da6bf52009-02-21 19:53:54 -03001240
1241 if (cx->vbi.sliced_mpeg_data[0] != NULL)
1242 for (i = 0; i < CX18_VBI_FRAMES; i++)
1243 kfree(cx->vbi.sliced_mpeg_data[i]);
Andy Walls5811cf92009-02-14 17:08:37 -03001244
1245 CX18_INFO("Removed %s\n", cx->card_name);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001246
Andy Walls888cdb02009-01-11 15:08:53 -03001247 v4l2_device_unregister(v4l2_dev);
Andy Walls5811cf92009-02-14 17:08:37 -03001248 kfree(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001249}
1250
Devin Heitmuellerd68b6872009-11-20 01:15:54 -03001251
1252#if defined(CONFIG_MODULES) && defined(MODULE)
1253static void request_module_async(struct work_struct *work)
1254{
1255 struct cx18 *dev=container_of(work, struct cx18, request_module_wk);
1256
1257 /* Make sure cx18-alsa module is loaded */
1258 request_module("cx18-alsa");
1259
1260 /* Initialize cx18-alsa for this instance of the cx18 device */
1261 if (cx18_ext_init != NULL)
1262 cx18_ext_init(dev);
1263}
1264
1265static void request_modules(struct cx18 *dev)
1266{
1267 INIT_WORK(&dev->request_module_wk, request_module_async);
1268 schedule_work(&dev->request_module_wk);
1269}
1270#else
1271#define request_modules(dev)
1272#endif /* CONFIG_MODULES */
1273
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{
1284 printk(KERN_INFO "cx18: Start initialization, version %s\n", CX18_VERSION);
1285
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001286 /* Validate parameters */
1287 if (cx18_first_minor < 0 || cx18_first_minor >= CX18_MAX_CARDS) {
Hans Verkuildd896012008-10-04 08:36:54 -03001288 printk(KERN_ERR "cx18: Exiting, cx18_first_minor must be between 0 and %d\n",
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001289 CX18_MAX_CARDS - 1);
1290 return -1;
1291 }
1292
1293 if (cx18_debug < 0 || cx18_debug > 511) {
1294 cx18_debug = 0;
1295 printk(KERN_INFO "cx18: Debug value must be >= 0 and <= 511!\n");
1296 }
1297
1298 if (pci_register_driver(&cx18_pci_driver)) {
1299 printk(KERN_ERR "cx18: Error detecting PCI card\n");
1300 return -ENODEV;
1301 }
1302 printk(KERN_INFO "cx18: End initialization\n");
1303 return 0;
1304}
1305
Peter Huewe9710e7a2009-11-04 15:28:33 -03001306static void __exit module_cleanup(void)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001307{
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001308 pci_unregister_driver(&cx18_pci_driver);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001309}
1310
1311module_init(module_start);
1312module_exit(module_cleanup);