blob: ba4c3ceffbb35ff71a040db700b387af348be5c6 [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
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030050/* add your revision and whatnot here */
51static struct pci_device_id cx18_pci_tbl[] __devinitdata = {
52 {PCI_VENDOR_ID_CX, PCI_DEVICE_ID_CX23418,
53 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
54 {0,}
55};
56
57MODULE_DEVICE_TABLE(pci, cx18_pci_tbl);
58
Andy Walls5811cf92009-02-14 17:08:37 -030059static atomic_t cx18_instance = ATOMIC_INIT(0);
60
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030061/* Parameter declarations */
62static int cardtype[CX18_MAX_CARDS];
63static int tuner[CX18_MAX_CARDS] = { -1, -1, -1, -1, -1, -1, -1, -1,
64 -1, -1, -1, -1, -1, -1, -1, -1,
65 -1, -1, -1, -1, -1, -1, -1, -1,
66 -1, -1, -1, -1, -1, -1, -1, -1 };
67static int radio[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 };
Hans Verkuilc6eb8ea2008-09-03 17:11:54 -030071static unsigned cardtype_c = 1;
72static unsigned tuner_c = 1;
73static unsigned radio_c = 1;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030074static char pal[] = "--";
75static char secam[] = "--";
76static char ntsc[] = "-";
77
78/* Buffers */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030079static int enc_ts_buffers = CX18_DEFAULT_ENC_TS_BUFFERS;
Andy Walls6ecd86d2008-12-07 23:30:17 -030080static int enc_mpg_buffers = CX18_DEFAULT_ENC_MPG_BUFFERS;
81static int enc_idx_buffers = CX18_DEFAULT_ENC_IDX_BUFFERS;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030082static int enc_yuv_buffers = CX18_DEFAULT_ENC_YUV_BUFFERS;
83static int enc_vbi_buffers = CX18_DEFAULT_ENC_VBI_BUFFERS;
84static int enc_pcm_buffers = CX18_DEFAULT_ENC_PCM_BUFFERS;
85
Andy Walls6ecd86d2008-12-07 23:30:17 -030086static int enc_ts_bufsize = CX18_DEFAULT_ENC_TS_BUFSIZE;
87static int enc_mpg_bufsize = CX18_DEFAULT_ENC_MPG_BUFSIZE;
88static int enc_idx_bufsize = CX18_DEFAULT_ENC_IDX_BUFSIZE;
89static int enc_yuv_bufsize = CX18_DEFAULT_ENC_YUV_BUFSIZE;
90/* VBI bufsize based on standards supported by card tuner for now */
91static int enc_pcm_bufsize = CX18_DEFAULT_ENC_PCM_BUFSIZE;
92
93static int enc_ts_bufs = -1;
94static int enc_mpg_bufs = -1;
95static int enc_idx_bufs = -1;
96static int enc_yuv_bufs = -1;
97static int enc_vbi_bufs = -1;
98static int enc_pcm_bufs = -1;
99
100
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300101static int cx18_pci_latency = 1;
102
Andy Walls3f75c612008-11-16 23:33:41 -0300103static int mmio_ndelay;
104static int retry_mmio = 1;
105
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300106int cx18_debug;
107
108module_param_array(tuner, int, &tuner_c, 0644);
109module_param_array(radio, bool, &radio_c, 0644);
110module_param_array(cardtype, int, &cardtype_c, 0644);
111module_param_string(pal, pal, sizeof(pal), 0644);
112module_param_string(secam, secam, sizeof(secam), 0644);
113module_param_string(ntsc, ntsc, sizeof(ntsc), 0644);
114module_param_named(debug, cx18_debug, int, 0644);
Andy Walls3f75c612008-11-16 23:33:41 -0300115module_param(mmio_ndelay, int, 0644);
116module_param(retry_mmio, int, 0644);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300117module_param(cx18_pci_latency, int, 0644);
118module_param(cx18_first_minor, int, 0644);
119
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300120module_param(enc_ts_buffers, int, 0644);
Andy Walls6ecd86d2008-12-07 23:30:17 -0300121module_param(enc_mpg_buffers, int, 0644);
122module_param(enc_idx_buffers, int, 0644);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300123module_param(enc_yuv_buffers, int, 0644);
124module_param(enc_vbi_buffers, int, 0644);
125module_param(enc_pcm_buffers, int, 0644);
126
Andy Walls6ecd86d2008-12-07 23:30:17 -0300127module_param(enc_ts_bufsize, int, 0644);
128module_param(enc_mpg_bufsize, int, 0644);
129module_param(enc_idx_bufsize, int, 0644);
130module_param(enc_yuv_bufsize, int, 0644);
131/* VBI bufsize based on standards supported by card tuner for now */
132module_param(enc_pcm_bufsize, int, 0644);
133
134module_param(enc_ts_bufs, int, 0644);
135module_param(enc_mpg_bufs, int, 0644);
136module_param(enc_idx_bufs, int, 0644);
137module_param(enc_yuv_bufs, int, 0644);
138module_param(enc_vbi_bufs, int, 0644);
139module_param(enc_pcm_bufs, int, 0644);
140
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300141MODULE_PARM_DESC(tuner, "Tuner type selection,\n"
142 "\t\t\tsee tuner.h for values");
143MODULE_PARM_DESC(radio,
144 "Enable or disable the radio. Use only if autodetection\n"
145 "\t\t\tfails. 0 = disable, 1 = enable");
146MODULE_PARM_DESC(cardtype,
147 "Only use this option if your card is not detected properly.\n"
148 "\t\tSpecify card type:\n"
149 "\t\t\t 1 = Hauppauge HVR 1600 (ESMT memory)\n"
150 "\t\t\t 2 = Hauppauge HVR 1600 (Samsung memory)\n"
151 "\t\t\t 3 = Compro VideoMate H900\n"
152 "\t\t\t 4 = Yuan MPC718\n"
Sri Deevi03c28082008-06-21 11:06:44 -0300153 "\t\t\t 5 = Conexant Raptor PAL/SECAM\n"
Andy Walls9eee4fb2008-10-04 20:28:40 -0300154 "\t\t\t 6 = Toshiba Qosmio DVB-T/Analog\n"
Andy Walls9d5af862009-06-09 20:37:24 -0300155 "\t\t\t 7 = Leadtek WinFast PVR2100\n"
156 "\t\t\t 8 = Leadtek WinFast DVR3100 H\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300157 "\t\t\t 0 = Autodetect (default)\n"
158 "\t\t\t-1 = Ignore this card\n\t\t");
159MODULE_PARM_DESC(pal, "Set PAL standard: B, G, H, D, K, I, M, N, Nc, 60");
160MODULE_PARM_DESC(secam, "Set SECAM standard: B, G, H, D, K, L, LC");
161MODULE_PARM_DESC(ntsc, "Set NTSC standard: M, J, K");
162MODULE_PARM_DESC(debug,
163 "Debug level (bitmask). Default: 0\n"
164 "\t\t\t 1/0x0001: warning\n"
165 "\t\t\t 2/0x0002: info\n"
166 "\t\t\t 4/0x0004: mailbox\n"
167 "\t\t\t 8/0x0008: dma\n"
168 "\t\t\t 16/0x0010: ioctl\n"
169 "\t\t\t 32/0x0020: file\n"
170 "\t\t\t 64/0x0040: i2c\n"
171 "\t\t\t128/0x0080: irq\n"
172 "\t\t\t256/0x0100: high volume\n");
173MODULE_PARM_DESC(cx18_pci_latency,
174 "Change the PCI latency to 64 if lower: 0 = No, 1 = Yes,\n"
175 "\t\t\tDefault: Yes");
Andy Wallsd267d852008-09-28 21:46:02 -0300176MODULE_PARM_DESC(retry_mmio,
Andy Walls3f75c612008-11-16 23:33:41 -0300177 "(Deprecated) MMIO writes are now always checked and retried\n"
178 "\t\t\tEffectively: 1 [Yes]");
Andy Wallsc641d092008-09-01 00:40:41 -0300179MODULE_PARM_DESC(mmio_ndelay,
Andy Walls3f75c612008-11-16 23:33:41 -0300180 "(Deprecated) MMIO accesses are now never purposely delayed\n"
181 "\t\t\tEffectively: 0 ns");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300182MODULE_PARM_DESC(enc_ts_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300183 "Encoder TS buffer memory (MB). (enc_ts_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300184 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_TS_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300185MODULE_PARM_DESC(enc_ts_bufsize,
186 "Size of an encoder TS buffer (kB)\n"
187 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_TS_BUFSIZE));
188MODULE_PARM_DESC(enc_ts_bufs,
189 "Number of encoder TS buffers\n"
190 "\t\t\tDefault is computed from other enc_ts_* parameters");
191MODULE_PARM_DESC(enc_mpg_buffers,
192 "Encoder MPG buffer memory (MB). (enc_mpg_bufs can override)\n"
193 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_MPG_BUFFERS));
194MODULE_PARM_DESC(enc_mpg_bufsize,
195 "Size of an encoder MPG buffer (kB)\n"
196 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_MPG_BUFSIZE));
197MODULE_PARM_DESC(enc_mpg_bufs,
198 "Number of encoder MPG buffers\n"
199 "\t\t\tDefault is computed from other enc_mpg_* parameters");
200MODULE_PARM_DESC(enc_idx_buffers,
201 "Encoder IDX buffer memory (MB). (enc_idx_bufs can override)\n"
202 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_IDX_BUFFERS));
203MODULE_PARM_DESC(enc_idx_bufsize,
204 "Size of an encoder IDX buffer (kB)\n"
205 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_IDX_BUFSIZE));
206MODULE_PARM_DESC(enc_idx_bufs,
207 "Number of encoder IDX buffers\n"
208 "\t\t\tDefault is computed from other enc_idx_* parameters");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300209MODULE_PARM_DESC(enc_yuv_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300210 "Encoder YUV buffer memory (MB). (enc_yuv_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300211 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_YUV_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300212MODULE_PARM_DESC(enc_yuv_bufsize,
213 "Size of an encoder YUV buffer (kB)\n"
214 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_YUV_BUFSIZE));
215MODULE_PARM_DESC(enc_yuv_bufs,
216 "Number of encoder YUV buffers\n"
217 "\t\t\tDefault is computed from other enc_yuv_* parameters");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300218MODULE_PARM_DESC(enc_vbi_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300219 "Encoder VBI buffer memory (MB). (enc_vbi_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300220 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_VBI_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300221MODULE_PARM_DESC(enc_vbi_bufs,
222 "Number of encoder VBI buffers\n"
223 "\t\t\tDefault is computed from enc_vbi_buffers & tuner std");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300224MODULE_PARM_DESC(enc_pcm_buffers,
Andy Walls6ecd86d2008-12-07 23:30:17 -0300225 "Encoder PCM buffer memory (MB). (enc_pcm_bufs can override)\n"
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300226 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_PCM_BUFFERS));
Andy Walls6ecd86d2008-12-07 23:30:17 -0300227MODULE_PARM_DESC(enc_pcm_bufsize,
228 "Size of an encoder PCM buffer (kB)\n"
229 "\t\t\tDefault: " __stringify(CX18_DEFAULT_ENC_PCM_BUFSIZE));
230MODULE_PARM_DESC(enc_pcm_bufs,
231 "Number of encoder PCM buffers\n"
232 "\t\t\tDefault is computed from other enc_pcm_* parameters");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300233
Hans Verkuil581644d2009-06-19 11:54:00 -0300234MODULE_PARM_DESC(cx18_first_minor, "Set device node number assigned to first card");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300235
236MODULE_AUTHOR("Hans Verkuil");
237MODULE_DESCRIPTION("CX23418 driver");
238MODULE_SUPPORTED_DEVICE("CX23418 MPEG2 encoder");
239MODULE_LICENSE("GPL");
240
241MODULE_VERSION(CX18_VERSION);
242
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300243/* Generic utility functions */
244int cx18_msleep_timeout(unsigned int msecs, int intr)
245{
Andy Walls330c6ec2008-11-08 14:19:37 -0300246 long int timeout = msecs_to_jiffies(msecs);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300247 int sig;
248
249 do {
250 set_current_state(intr ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
251 timeout = schedule_timeout(timeout);
252 sig = intr ? signal_pending(current) : 0;
253 } while (!sig && timeout);
254 return sig;
255}
256
257/* Release ioremapped memory */
258static void cx18_iounmap(struct cx18 *cx)
259{
260 if (cx == NULL)
261 return;
262
263 /* Release io memory */
264 if (cx->enc_mem != NULL) {
265 CX18_DEBUG_INFO("releasing enc_mem\n");
266 iounmap(cx->enc_mem);
267 cx->enc_mem = NULL;
268 }
269}
270
Andy Walls25a42e42009-07-05 17:09:28 -0300271static void cx18_eeprom_dump(struct cx18 *cx, unsigned char *eedata, int len)
272{
273 int i;
274
275 CX18_INFO("eeprom dump:\n");
276 for (i = 0; i < len; i++) {
277 if (0 == (i % 16))
278 CX18_INFO("eeprom %02x:", i);
279 printk(KERN_CONT " %02x", eedata[i]);
280 if (15 == (i % 16))
281 printk(KERN_CONT "\n");
282 }
283}
284
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300285/* Hauppauge card? get values from tveeprom */
286void cx18_read_eeprom(struct cx18 *cx, struct tveeprom *tv)
287{
Andy Wallsff2a2002009-02-20 23:52:13 -0300288 struct i2c_client c;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300289 u8 eedata[256];
290
Andy Walls6246d4e2009-02-21 22:27:37 -0300291 memset(&c, 0, sizeof(c));
Andy Walls098003d2009-02-28 13:19:45 -0300292 strlcpy(c.name, "cx18 tveeprom tmp", sizeof(c.name));
Andy Wallsff2a2002009-02-20 23:52:13 -0300293 c.adapter = &cx->i2c_adap[0];
294 c.addr = 0xA0 >> 1;
295
Andy Walls25a42e42009-07-05 17:09:28 -0300296 memset(tv, 0, sizeof(*tv));
297 if (tveeprom_read(&c, eedata, sizeof(eedata)))
298 return;
299
300 switch (cx->card->type) {
301 case CX18_CARD_HVR_1600_ESMT:
302 case CX18_CARD_HVR_1600_SAMSUNG:
303 tveeprom_hauppauge_analog(&c, tv, eedata);
304 break;
305 case CX18_CARD_YUAN_MPC718:
306 tv->model = 0x718;
307 cx18_eeprom_dump(cx, eedata, sizeof(eedata));
308 CX18_INFO("eeprom PCI ID: %02x%02x:%02x%02x\n",
309 eedata[2], eedata[1], eedata[4], eedata[3]);
310 break;
311 default:
312 tv->model = 0xffffffff;
313 cx18_eeprom_dump(cx, eedata, sizeof(eedata));
314 break;
315 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300316}
317
318static void cx18_process_eeprom(struct cx18 *cx)
319{
320 struct tveeprom tv;
321
322 cx18_read_eeprom(cx, &tv);
323
324 /* Many thanks to Steven Toth from Hauppauge for providing the
325 model numbers */
Hans Verkuil1d081602008-05-12 14:45:19 -0300326 /* Note: the Samsung memory models cannot be reliably determined
327 from the model number. Use the cardtype module option if you
328 have one of these preproduction models. */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300329 switch (tv.model) {
Hans Verkuil1d081602008-05-12 14:45:19 -0300330 case 74000 ... 74999:
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300331 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
332 break;
Andy Walls25a42e42009-07-05 17:09:28 -0300333 case 0x718:
334 return;
335 case 0xffffffff:
336 CX18_INFO("Unknown EEPROM encoding\n");
337 return;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300338 case 0:
339 CX18_ERR("Invalid EEPROM\n");
340 return;
341 default:
342 CX18_ERR("Unknown model %d, defaulting to HVR-1600\n", tv.model);
343 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
344 break;
345 }
346
347 cx->v4l2_cap = cx->card->v4l2_capabilities;
348 cx->card_name = cx->card->name;
349 cx->card_i2c = cx->card->i2c;
350
351 CX18_INFO("Autodetected %s\n", cx->card_name);
352
353 if (tv.tuner_type == TUNER_ABSENT)
Andy Walls4442ee82009-05-09 00:34:31 -0300354 CX18_ERR("tveeprom cannot autodetect tuner!\n");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300355
356 if (cx->options.tuner == -1)
357 cx->options.tuner = tv.tuner_type;
358 if (cx->options.radio == -1)
359 cx->options.radio = (tv.has_radio != 0);
360
361 if (cx->std != 0)
362 /* user specified tuner standard */
363 return;
364
365 /* autodetect tuner standard */
366 if (tv.tuner_formats & V4L2_STD_PAL) {
367 CX18_DEBUG_INFO("PAL tuner detected\n");
368 cx->std |= V4L2_STD_PAL_BG | V4L2_STD_PAL_H;
369 } else if (tv.tuner_formats & V4L2_STD_NTSC) {
370 CX18_DEBUG_INFO("NTSC tuner detected\n");
371 cx->std |= V4L2_STD_NTSC_M;
372 } else if (tv.tuner_formats & V4L2_STD_SECAM) {
373 CX18_DEBUG_INFO("SECAM tuner detected\n");
374 cx->std |= V4L2_STD_SECAM_L;
375 } else {
376 CX18_INFO("No tuner detected, default to NTSC-M\n");
377 cx->std |= V4L2_STD_NTSC_M;
378 }
379}
380
381static v4l2_std_id cx18_parse_std(struct cx18 *cx)
382{
383 switch (pal[0]) {
384 case '6':
385 return V4L2_STD_PAL_60;
386 case 'b':
387 case 'B':
388 case 'g':
389 case 'G':
390 return V4L2_STD_PAL_BG;
391 case 'h':
392 case 'H':
393 return V4L2_STD_PAL_H;
394 case 'n':
395 case 'N':
396 if (pal[1] == 'c' || pal[1] == 'C')
397 return V4L2_STD_PAL_Nc;
398 return V4L2_STD_PAL_N;
399 case 'i':
400 case 'I':
401 return V4L2_STD_PAL_I;
402 case 'd':
403 case 'D':
404 case 'k':
405 case 'K':
406 return V4L2_STD_PAL_DK;
407 case 'M':
408 case 'm':
409 return V4L2_STD_PAL_M;
410 case '-':
411 break;
412 default:
413 CX18_WARN("pal= argument not recognised\n");
414 return 0;
415 }
416
417 switch (secam[0]) {
418 case 'b':
419 case 'B':
420 case 'g':
421 case 'G':
422 case 'h':
423 case 'H':
424 return V4L2_STD_SECAM_B | V4L2_STD_SECAM_G | V4L2_STD_SECAM_H;
425 case 'd':
426 case 'D':
427 case 'k':
428 case 'K':
429 return V4L2_STD_SECAM_DK;
430 case 'l':
431 case 'L':
432 if (secam[1] == 'C' || secam[1] == 'c')
433 return V4L2_STD_SECAM_LC;
434 return V4L2_STD_SECAM_L;
435 case '-':
436 break;
437 default:
438 CX18_WARN("secam= argument not recognised\n");
439 return 0;
440 }
441
442 switch (ntsc[0]) {
443 case 'm':
444 case 'M':
445 return V4L2_STD_NTSC_M;
446 case 'j':
447 case 'J':
448 return V4L2_STD_NTSC_M_JP;
449 case 'k':
450 case 'K':
451 return V4L2_STD_NTSC_M_KR;
452 case '-':
453 break;
454 default:
455 CX18_WARN("ntsc= argument not recognised\n");
456 return 0;
457 }
458
459 /* no match found */
460 return 0;
461}
462
463static void cx18_process_options(struct cx18 *cx)
464{
465 int i, j;
466
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300467 cx->options.megabytes[CX18_ENC_STREAM_TYPE_TS] = enc_ts_buffers;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300468 cx->options.megabytes[CX18_ENC_STREAM_TYPE_MPG] = enc_mpg_buffers;
469 cx->options.megabytes[CX18_ENC_STREAM_TYPE_IDX] = enc_idx_buffers;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300470 cx->options.megabytes[CX18_ENC_STREAM_TYPE_YUV] = enc_yuv_buffers;
471 cx->options.megabytes[CX18_ENC_STREAM_TYPE_VBI] = enc_vbi_buffers;
472 cx->options.megabytes[CX18_ENC_STREAM_TYPE_PCM] = enc_pcm_buffers;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300473 cx->options.megabytes[CX18_ENC_STREAM_TYPE_RAD] = 0; /* control only */
474
475 cx->stream_buffers[CX18_ENC_STREAM_TYPE_TS] = enc_ts_bufs;
476 cx->stream_buffers[CX18_ENC_STREAM_TYPE_MPG] = enc_mpg_bufs;
477 cx->stream_buffers[CX18_ENC_STREAM_TYPE_IDX] = enc_idx_bufs;
478 cx->stream_buffers[CX18_ENC_STREAM_TYPE_YUV] = enc_yuv_bufs;
479 cx->stream_buffers[CX18_ENC_STREAM_TYPE_VBI] = enc_vbi_bufs;
480 cx->stream_buffers[CX18_ENC_STREAM_TYPE_PCM] = enc_pcm_bufs;
481 cx->stream_buffers[CX18_ENC_STREAM_TYPE_RAD] = 0; /* control, no data */
482
483 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_TS] = enc_ts_bufsize;
484 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_MPG] = enc_mpg_bufsize;
485 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_IDX] = enc_idx_bufsize;
486 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_YUV] = enc_yuv_bufsize;
Andy Walls466df462009-02-07 15:47:28 -0300487 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_VBI] = vbi_active_samples * 36;
Andy Walls6ecd86d2008-12-07 23:30:17 -0300488 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_PCM] = enc_pcm_bufsize;
489 cx->stream_buf_size[CX18_ENC_STREAM_TYPE_RAD] = 0; /* control no data */
490
Andy Walls466df462009-02-07 15:47:28 -0300491 /* Ensure stream_buffers & stream_buf_size are valid */
Andy Walls6ecd86d2008-12-07 23:30:17 -0300492 for (i = 0; i < CX18_MAX_STREAMS; i++) {
Andy Walls466df462009-02-07 15:47:28 -0300493 if (cx->stream_buffers[i] == 0 || /* User said 0 buffers */
494 cx->options.megabytes[i] <= 0 || /* User said 0 MB total */
495 cx->stream_buf_size[i] <= 0) { /* User said buf size 0 */
Andy Walls6ecd86d2008-12-07 23:30:17 -0300496 cx->options.megabytes[i] = 0;
497 cx->stream_buffers[i] = 0;
498 cx->stream_buf_size[i] = 0;
499 continue;
500 }
Andy Walls466df462009-02-07 15:47:28 -0300501 /*
502 * VBI is a special case where the stream_buf_size is fixed
503 * and already in bytes
504 */
505 if (i == CX18_ENC_STREAM_TYPE_VBI) {
506 if (cx->stream_buffers[i] < 0) {
507 cx->stream_buffers[i] =
508 cx->options.megabytes[i] * 1024 * 1024
509 / cx->stream_buf_size[i];
510 } else {
511 /* N.B. This might round down to 0 */
512 cx->options.megabytes[i] =
513 cx->stream_buffers[i]
514 * cx->stream_buf_size[i]/(1024 * 1024);
Andy Walls6ecd86d2008-12-07 23:30:17 -0300515 }
516 continue;
517 }
Andy Walls466df462009-02-07 15:47:28 -0300518 /* All other streams have stream_buf_size in kB at this point */
Andy Walls6ecd86d2008-12-07 23:30:17 -0300519 if (cx->stream_buffers[i] < 0) {
520 cx->stream_buffers[i] = cx->options.megabytes[i] * 1024
521 / cx->stream_buf_size[i];
522 } else {
523 /* N.B. This might round down to 0 */
524 cx->options.megabytes[i] =
525 cx->stream_buffers[i] * cx->stream_buf_size[i] / 1024;
526 }
527 cx->stream_buf_size[i] *= 1024; /* convert from kB to bytes */
528 }
529
Andy Walls5811cf92009-02-14 17:08:37 -0300530 cx->options.cardtype = cardtype[cx->instance];
531 cx->options.tuner = tuner[cx->instance];
532 cx->options.radio = radio[cx->instance];
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300533
534 cx->std = cx18_parse_std(cx);
535 if (cx->options.cardtype == -1) {
536 CX18_INFO("Ignore card\n");
537 return;
538 }
539 cx->card = cx18_get_card(cx->options.cardtype - 1);
540 if (cx->card)
541 CX18_INFO("User specified %s card\n", cx->card->name);
542 else if (cx->options.cardtype != 0)
543 CX18_ERR("Unknown user specified type, trying to autodetect card\n");
544 if (cx->card == NULL) {
Andy Walls3d059132009-01-10 21:54:39 -0300545 if (cx->pci_dev->subsystem_vendor == CX18_PCI_ID_HAUPPAUGE) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300546 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
547 CX18_INFO("Autodetected Hauppauge card\n");
548 }
549 }
550 if (cx->card == NULL) {
551 for (i = 0; (cx->card = cx18_get_card(i)); i++) {
552 if (cx->card->pci_list == NULL)
553 continue;
554 for (j = 0; cx->card->pci_list[j].device; j++) {
Andy Walls3d059132009-01-10 21:54:39 -0300555 if (cx->pci_dev->device !=
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300556 cx->card->pci_list[j].device)
557 continue;
Andy Walls3d059132009-01-10 21:54:39 -0300558 if (cx->pci_dev->subsystem_vendor !=
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300559 cx->card->pci_list[j].subsystem_vendor)
560 continue;
Andy Walls3d059132009-01-10 21:54:39 -0300561 if (cx->pci_dev->subsystem_device !=
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300562 cx->card->pci_list[j].subsystem_device)
563 continue;
564 CX18_INFO("Autodetected %s card\n", cx->card->name);
565 goto done;
566 }
567 }
568 }
569done:
570
571 if (cx->card == NULL) {
572 cx->card = cx18_get_card(CX18_CARD_HVR_1600_ESMT);
Bjorn Helgaas29e66a62008-09-04 17:24:51 -0300573 CX18_ERR("Unknown card: vendor/device: [%04x:%04x]\n",
Andy Walls3d059132009-01-10 21:54:39 -0300574 cx->pci_dev->vendor, cx->pci_dev->device);
Bjorn Helgaas29e66a62008-09-04 17:24:51 -0300575 CX18_ERR(" subsystem vendor/device: [%04x:%04x]\n",
Andy Walls3d059132009-01-10 21:54:39 -0300576 cx->pci_dev->subsystem_vendor,
577 cx->pci_dev->subsystem_device);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300578 CX18_ERR("Defaulting to %s card\n", cx->card->name);
579 CX18_ERR("Please mail the vendor/device and subsystem vendor/device IDs and what kind of\n");
580 CX18_ERR("card you have to the ivtv-devel mailinglist (www.ivtvdriver.org)\n");
581 CX18_ERR("Prefix your subject line with [UNKNOWN CX18 CARD].\n");
582 }
583 cx->v4l2_cap = cx->card->v4l2_capabilities;
584 cx->card_name = cx->card->name;
585 cx->card_i2c = cx->card->i2c;
586}
587
Andy Walls87116152009-04-13 22:42:43 -0300588static int __devinit cx18_create_in_workq(struct cx18 *cx)
589{
590 snprintf(cx->in_workq_name, sizeof(cx->in_workq_name), "%s-in",
591 cx->v4l2_dev.name);
592 cx->in_work_queue = create_singlethread_workqueue(cx->in_workq_name);
593 if (cx->in_work_queue == NULL) {
594 CX18_ERR("Unable to create incoming mailbox handler thread\n");
595 return -ENOMEM;
596 }
597 return 0;
598}
599
600static int __devinit cx18_create_out_workq(struct cx18 *cx)
601{
602 snprintf(cx->out_workq_name, sizeof(cx->out_workq_name), "%s-out",
603 cx->v4l2_dev.name);
604 cx->out_work_queue = create_workqueue(cx->out_workq_name);
605 if (cx->out_work_queue == NULL) {
606 CX18_ERR("Unable to create outgoing mailbox handler threads\n");
607 return -ENOMEM;
608 }
609 return 0;
610}
611
612static void __devinit cx18_init_in_work_orders(struct cx18 *cx)
613{
614 int i;
615 for (i = 0; i < CX18_MAX_IN_WORK_ORDERS; i++) {
616 cx->in_work_order[i].cx = cx;
617 cx->in_work_order[i].str = cx->epu_debug_str;
618 INIT_WORK(&cx->in_work_order[i].work, cx18_in_work_handler);
619 }
620}
621
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300622/* Precondition: the cx18 structure has been memset to 0. Only
Andy Walls5811cf92009-02-14 17:08:37 -0300623 the dev and instance fields have been filled in.
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300624 No assumptions on the card type may be made here (see cx18_init_struct2
625 for that).
626 */
627static int __devinit cx18_init_struct1(struct cx18 *cx)
628{
Andy Walls87116152009-04-13 22:42:43 -0300629 int ret;
Andy Wallsee2d64f2008-11-16 01:38:19 -0300630
Andy Walls3d059132009-01-10 21:54:39 -0300631 cx->base_addr = pci_resource_start(cx->pci_dev, 0);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300632
633 mutex_init(&cx->serialize_lock);
Andy Walls8abdd002008-07-13 19:05:25 -0300634 mutex_init(&cx->gpio_lock);
Andy Walls72c2d6d2008-11-06 01:15:41 -0300635 mutex_init(&cx->epu2apu_mb_lock);
636 mutex_init(&cx->epu2cpu_mb_lock);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300637
Andy Walls87116152009-04-13 22:42:43 -0300638 ret = cx18_create_out_workq(cx);
639 if (ret)
640 return ret;
641
642 ret = cx18_create_in_workq(cx);
643 if (ret) {
644 destroy_workqueue(cx->out_work_queue);
645 return ret;
Andy Walls572bfea2008-11-25 21:43:05 -0300646 }
647
Andy Walls87116152009-04-13 22:42:43 -0300648 cx18_init_in_work_orders(cx);
Andy Walls1d6782b2008-11-05 00:49:14 -0300649
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300650 /* start counting open_id at 1 */
651 cx->open_id = 1;
652
653 /* Initial settings */
654 cx2341x_fill_defaults(&cx->params);
655 cx->temporal_strength = cx->params.video_temporal_filter;
656 cx->spatial_strength = cx->params.video_spatial_filter;
657 cx->filter_mode = cx->params.video_spatial_filter_mode |
658 (cx->params.video_temporal_filter_mode << 1) |
659 (cx->params.video_median_filter_type << 2);
660 cx->params.port = CX2341X_PORT_MEMORY;
Andy Walls302df972009-01-31 00:33:02 -0300661 cx->params.capabilities =
Andy Walls006e7172009-02-21 22:44:50 -0300662 CX2341X_CAP_HAS_TS | CX2341X_CAP_HAS_SLICED_VBI;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300663 init_waitqueue_head(&cx->cap_w);
664 init_waitqueue_head(&cx->mb_apu_waitq);
665 init_waitqueue_head(&cx->mb_cpu_waitq);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300666 init_waitqueue_head(&cx->dma_waitq);
667
668 /* VBI */
Andy Wallsdd073432008-12-12 16:24:04 -0300669 cx->vbi.in.type = V4L2_BUF_TYPE_VBI_CAPTURE;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300670 cx->vbi.sliced_in = &cx->vbi.in.fmt.sliced;
Andy Wallsaf009cf2008-12-12 20:00:29 -0300671
Andy Walls52fcb3e2009-11-08 23:45:24 -0300672 /* IVTV style VBI insertion into MPEG streams */
673 INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_buf.list);
674 INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_mdl.list);
675 INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_mdl.buf_list);
676 list_add(&cx->vbi.sliced_mpeg_buf.list,
677 &cx->vbi.sliced_mpeg_mdl.buf_list);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300678 return 0;
679}
680
681/* Second initialization part. Here the card type has been
682 autodetected. */
683static void __devinit cx18_init_struct2(struct cx18 *cx)
684{
685 int i;
686
687 for (i = 0; i < CX18_CARD_MAX_VIDEO_INPUTS; i++)
688 if (cx->card->video_inputs[i].video_type == 0)
689 break;
690 cx->nof_inputs = i;
691 for (i = 0; i < CX18_CARD_MAX_AUDIO_INPUTS; i++)
692 if (cx->card->audio_inputs[i].audio_type == 0)
693 break;
694 cx->nof_audio_inputs = i;
695
696 /* Find tuner input */
697 for (i = 0; i < cx->nof_inputs; i++) {
698 if (cx->card->video_inputs[i].video_type ==
699 CX18_CARD_INPUT_VID_TUNER)
700 break;
701 }
702 if (i == cx->nof_inputs)
703 i = 0;
704 cx->active_input = i;
705 cx->audio_input = cx->card->video_inputs[i].audio_index;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300706}
707
Andy Walls3d059132009-01-10 21:54:39 -0300708static int cx18_setup_pci(struct cx18 *cx, struct pci_dev *pci_dev,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300709 const struct pci_device_id *pci_id)
710{
711 u16 cmd;
712 unsigned char pci_latency;
713
714 CX18_DEBUG_INFO("Enabling pci device\n");
715
Andy Walls3d059132009-01-10 21:54:39 -0300716 if (pci_enable_device(pci_dev)) {
Andy Walls5811cf92009-02-14 17:08:37 -0300717 CX18_ERR("Can't enable device %d!\n", cx->instance);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300718 return -EIO;
719 }
Andy Walls3d059132009-01-10 21:54:39 -0300720 if (pci_set_dma_mask(pci_dev, 0xffffffff)) {
Andy Walls5811cf92009-02-14 17:08:37 -0300721 CX18_ERR("No suitable DMA available, card %d\n", cx->instance);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300722 return -EIO;
723 }
724 if (!request_mem_region(cx->base_addr, CX18_MEM_SIZE, "cx18 encoder")) {
Andy Walls5811cf92009-02-14 17:08:37 -0300725 CX18_ERR("Cannot request encoder memory region, card %d\n",
726 cx->instance);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300727 return -EIO;
728 }
729
Andy Walls45190642008-08-29 16:10:21 -0300730 /* Enable bus mastering and memory mapped IO for the CX23418 */
Andy Walls3d059132009-01-10 21:54:39 -0300731 pci_read_config_word(pci_dev, PCI_COMMAND, &cmd);
Andy Walls45190642008-08-29 16:10:21 -0300732 cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
Andy Walls3d059132009-01-10 21:54:39 -0300733 pci_write_config_word(pci_dev, PCI_COMMAND, cmd);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300734
Andy Walls3d059132009-01-10 21:54:39 -0300735 pci_read_config_byte(pci_dev, PCI_CLASS_REVISION, &cx->card_rev);
736 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &pci_latency);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300737
738 if (pci_latency < 64 && cx18_pci_latency) {
739 CX18_INFO("Unreasonably low latency timer, "
740 "setting to 64 (was %d)\n", pci_latency);
Andy Walls3d059132009-01-10 21:54:39 -0300741 pci_write_config_byte(pci_dev, PCI_LATENCY_TIMER, 64);
742 pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER, &pci_latency);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300743 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300744
745 CX18_DEBUG_INFO("cx%d (rev %d) at %02x:%02x.%x, "
746 "irq: %d, latency: %d, memory: 0x%lx\n",
Andy Walls3d059132009-01-10 21:54:39 -0300747 cx->pci_dev->device, cx->card_rev, pci_dev->bus->number,
748 PCI_SLOT(pci_dev->devfn), PCI_FUNC(pci_dev->devfn),
749 cx->pci_dev->irq, pci_latency, (unsigned long)cx->base_addr);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300750
751 return 0;
752}
753
Andy Wallsff2a2002009-02-20 23:52:13 -0300754static void cx18_init_subdevs(struct cx18 *cx)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300755{
756 u32 hw = cx->card->hw_all;
Andy Wallsff2a2002009-02-20 23:52:13 -0300757 u32 device;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300758 int i;
759
Andy Wallsff2a2002009-02-20 23:52:13 -0300760 for (i = 0, device = 1; i < 32; i++, device <<= 1) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300761
762 if (!(device & hw))
763 continue;
Andy Wallsff2a2002009-02-20 23:52:13 -0300764
765 switch (device) {
Andy Wallsff2a2002009-02-20 23:52:13 -0300766 case CX18_HW_DVB:
767 case CX18_HW_TVEEPROM:
768 /* These subordinate devices do not use probing */
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300769 cx->hw_flags |= device;
Andy Wallsff2a2002009-02-20 23:52:13 -0300770 break;
771 case CX18_HW_418_AV:
772 /* The A/V decoder gets probed earlier to set PLLs */
773 /* Just note that the card uses it (i.e. has analog) */
774 cx->hw_flags |= device;
775 break;
Andy Wallseefe1012009-02-21 18:42:49 -0300776 case CX18_HW_GPIO_RESET_CTRL:
777 /*
778 * The Reset Controller gets probed and added to
779 * hw_flags earlier for i2c adapter/bus initialization
780 */
781 break;
782 case CX18_HW_GPIO_MUX:
783 if (cx18_gpio_register(cx, device) == 0)
784 cx->hw_flags |= device;
785 break;
Andy Wallsff2a2002009-02-20 23:52:13 -0300786 default:
787 if (cx18_i2c_register(cx, i) == 0)
788 cx->hw_flags |= device;
789 break;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300790 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300791 }
792
Andy Wallsff2a2002009-02-20 23:52:13 -0300793 if (cx->hw_flags & CX18_HW_418_AV)
794 cx->sd_av = cx18_find_hw(cx, CX18_HW_418_AV);
795
796 if (cx->card->hw_muxer != 0)
797 cx->sd_extmux = cx18_find_hw(cx, cx->card->hw_muxer);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300798}
799
Andy Walls3d059132009-01-10 21:54:39 -0300800static int __devinit cx18_probe(struct pci_dev *pci_dev,
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300801 const struct pci_device_id *pci_id)
802{
803 int retval = 0;
Andy Wallsff086572008-10-18 08:51:28 -0300804 int i;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300805 u32 devtype;
806 struct cx18 *cx;
807
Andy Walls5811cf92009-02-14 17:08:37 -0300808 /* FIXME - module parameter arrays constrain max instances */
809 i = atomic_inc_return(&cx18_instance) - 1;
810 if (i >= CX18_MAX_CARDS) {
811 printk(KERN_ERR "cx18: cannot manage card %d, driver has a "
812 "limit of 0 - %d\n", i, CX18_MAX_CARDS - 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300813 return -ENOMEM;
814 }
815
816 cx = kzalloc(sizeof(struct cx18), GFP_ATOMIC);
Andy Walls5811cf92009-02-14 17:08:37 -0300817 if (cx == NULL) {
818 printk(KERN_ERR "cx18: cannot manage card %d, out of memory\n",
819 i);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300820 return -ENOMEM;
821 }
Andy Walls888cdb02009-01-11 15:08:53 -0300822 cx->pci_dev = pci_dev;
Andy Walls5811cf92009-02-14 17:08:37 -0300823 cx->instance = i;
824
Andy Walls888cdb02009-01-11 15:08:53 -0300825 retval = v4l2_device_register(&pci_dev->dev, &cx->v4l2_dev);
826 if (retval) {
Andy Walls5811cf92009-02-14 17:08:37 -0300827 printk(KERN_ERR "cx18: v4l2_device_register of card %d failed"
828 "\n", cx->instance);
829 kfree(cx);
830 return retval;
Andy Walls888cdb02009-01-11 15:08:53 -0300831 }
Andy Walls5811cf92009-02-14 17:08:37 -0300832 snprintf(cx->v4l2_dev.name, sizeof(cx->v4l2_dev.name), "cx18-%d",
833 cx->instance);
834 CX18_INFO("Initializing card %d\n", cx->instance);
Andy Walls888cdb02009-01-11 15:08:53 -0300835
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300836 cx18_process_options(cx);
837 if (cx->options.cardtype == -1) {
838 retval = -ENODEV;
Andy Walls5811cf92009-02-14 17:08:37 -0300839 goto err;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300840 }
Andy Walls87116152009-04-13 22:42:43 -0300841
842 retval = cx18_init_struct1(cx);
843 if (retval)
Andy Walls5811cf92009-02-14 17:08:37 -0300844 goto err;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300845
846 CX18_DEBUG_INFO("base addr: 0x%08x\n", cx->base_addr);
847
848 /* PCI Device Setup */
Andy Walls3d059132009-01-10 21:54:39 -0300849 retval = cx18_setup_pci(cx, pci_dev, pci_id);
Andy Walls572bfea2008-11-25 21:43:05 -0300850 if (retval != 0)
Andy Walls87116152009-04-13 22:42:43 -0300851 goto free_workqueues;
Andy Walls572bfea2008-11-25 21:43:05 -0300852
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300853 /* map io memory */
854 CX18_DEBUG_INFO("attempting ioremap at 0x%08x len 0x%08x\n",
855 cx->base_addr + CX18_MEM_OFFSET, CX18_MEM_SIZE);
856 cx->enc_mem = ioremap_nocache(cx->base_addr + CX18_MEM_OFFSET,
857 CX18_MEM_SIZE);
858 if (!cx->enc_mem) {
859 CX18_ERR("ioremap failed, perhaps increasing __VMALLOC_RESERVE in page.h\n");
860 CX18_ERR("or disabling CONFIG_HIGHMEM4G into the kernel would help\n");
861 retval = -ENOMEM;
862 goto free_mem;
863 }
864 cx->reg_mem = cx->enc_mem + CX18_REG_OFFSET;
Andy Wallsb1526422008-08-30 16:03:44 -0300865 devtype = cx18_read_reg(cx, 0xC72028);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300866 switch (devtype & 0xff000000) {
867 case 0xff000000:
868 CX18_INFO("cx23418 revision %08x (A)\n", devtype);
869 break;
870 case 0x01000000:
871 CX18_INFO("cx23418 revision %08x (B)\n", devtype);
872 break;
873 default:
874 CX18_INFO("cx23418 revision %08x (Unknown)\n", devtype);
875 break;
876 }
877
878 cx18_init_power(cx, 1);
879 cx18_init_memory(cx);
880
Al Viro990c81c2008-05-21 00:32:01 -0300881 cx->scb = (struct cx18_scb __iomem *)(cx->enc_mem + SCB_OFFSET);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300882 cx18_init_scb(cx);
883
884 cx18_gpio_init(cx);
885
Andy Wallsff2a2002009-02-20 23:52:13 -0300886 /* Initialize integrated A/V decoder early to set PLLs, just in case */
887 retval = cx18_av_probe(cx);
Andy Wallsfa3e7032009-02-16 02:23:25 -0300888 if (retval) {
889 CX18_ERR("Could not register A/V decoder subdevice\n");
890 goto free_map;
891 }
Hans Verkuilcc26b072009-03-29 19:20:26 -0300892 cx18_call_hw(cx, CX18_HW_418_AV, core, init, 0);
Andy Wallsfa3e7032009-02-16 02:23:25 -0300893
Andy Wallseefe1012009-02-21 18:42:49 -0300894 /* Initialize GPIO Reset Controller to do chip resets during i2c init */
895 if (cx->card->hw_all & CX18_HW_GPIO_RESET_CTRL) {
896 if (cx18_gpio_register(cx, CX18_HW_GPIO_RESET_CTRL) != 0)
897 CX18_WARN("Could not register GPIO reset controller"
898 "subdevice; proceeding anyway.\n");
899 else
900 cx->hw_flags |= CX18_HW_GPIO_RESET_CTRL;
901 }
902
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300903 /* active i2c */
904 CX18_DEBUG_INFO("activating i2c...\n");
Andy Walls9b4a7c82008-10-18 10:20:25 -0300905 retval = init_cx18_i2c(cx);
906 if (retval) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300907 CX18_ERR("Could not initialize i2c\n");
908 goto free_map;
909 }
910
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300911 if (cx->card->hw_all & CX18_HW_TVEEPROM) {
912 /* Based on the model number the cardtype may be changed.
913 The PCI IDs are not always reliable. */
914 cx18_process_eeprom(cx);
915 }
916 if (cx->card->comment)
917 CX18_INFO("%s", cx->card->comment);
918 if (cx->card->v4l2_capabilities == 0) {
919 retval = -ENODEV;
920 goto free_i2c;
921 }
922 cx18_init_memory(cx);
Andy Wallsfd6b9c92008-12-14 21:26:25 -0300923 cx18_init_scb(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300924
925 /* Register IRQ */
Andy Walls3d059132009-01-10 21:54:39 -0300926 retval = request_irq(cx->pci_dev->irq, cx18_irq_handler,
Andy Walls5811cf92009-02-14 17:08:37 -0300927 IRQF_SHARED | IRQF_DISABLED,
928 cx->v4l2_dev.name, (void *)cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300929 if (retval) {
930 CX18_ERR("Failed to register irq %d\n", retval);
931 goto free_i2c;
932 }
933
934 if (cx->std == 0)
935 cx->std = V4L2_STD_NTSC_M;
936
937 if (cx->options.tuner == -1) {
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300938 for (i = 0; i < CX18_CARD_MAX_TUNERS; i++) {
939 if ((cx->std & cx->card->tuners[i].std) == 0)
940 continue;
941 cx->options.tuner = cx->card->tuners[i].tuner;
942 break;
943 }
944 }
945 /* if no tuner was found, then pick the first tuner in the card list */
946 if (cx->options.tuner == -1 && cx->card->tuners[0].std) {
947 cx->std = cx->card->tuners[0].std;
Hans Verkuilc3cb4d92008-06-27 23:27:25 -0300948 if (cx->std & V4L2_STD_PAL)
949 cx->std = V4L2_STD_PAL_BG | V4L2_STD_PAL_H;
950 else if (cx->std & V4L2_STD_NTSC)
951 cx->std = V4L2_STD_NTSC_M;
952 else if (cx->std & V4L2_STD_SECAM)
953 cx->std = V4L2_STD_SECAM_L;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300954 cx->options.tuner = cx->card->tuners[0].tuner;
955 }
956 if (cx->options.radio == -1)
957 cx->options.radio = (cx->card->radio_input.audio_type != 0);
958
959 /* The card is now fully identified, continue with card-specific
960 initialization. */
961 cx18_init_struct2(cx);
962
Andy Wallsff2a2002009-02-20 23:52:13 -0300963 cx18_init_subdevs(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300964
Andy Walls8d037ed2009-02-21 22:35:11 -0300965 if (cx->std & V4L2_STD_525_60)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300966 cx->is_60hz = 1;
Andy Walls8d037ed2009-02-21 22:35:11 -0300967 else
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300968 cx->is_50hz = 1;
Andy Walls8d037ed2009-02-21 22:35:11 -0300969
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300970 cx->params.video_gop_size = cx->is_60hz ? 15 : 12;
971
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300972 if (cx->options.radio > 0)
973 cx->v4l2_cap |= V4L2_CAP_RADIO;
974
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300975 if (cx->options.tuner > -1) {
976 struct tuner_setup setup;
977
978 setup.addr = ADDR_UNSET;
979 setup.type = cx->options.tuner;
980 setup.mode_mask = T_ANALOG_TV; /* matches TV tuners */
981 setup.tuner_callback = (setup.type == TUNER_XC2028) ?
982 cx18_reset_tuner_gpio : NULL;
Andy Wallsff2a2002009-02-20 23:52:13 -0300983 cx18_call_all(cx, tuner, s_type_addr, &setup);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300984 if (setup.type == TUNER_XC2028) {
985 static struct xc2028_ctrl ctrl = {
986 .fname = XC2028_DEFAULT_FIRMWARE,
987 .max_len = 64,
988 };
989 struct v4l2_priv_tun_config cfg = {
990 .tuner = cx->options.tuner,
991 .priv = &ctrl,
992 };
Andy Wallsff2a2002009-02-20 23:52:13 -0300993 cx18_call_all(cx, tuner, s_config, &cfg);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -0300994 }
995 }
996
997 /* The tuner is fixed to the standard. The other inputs (e.g. S-Video)
998 are not. */
999 cx->tuner_std = cx->std;
1000
Hans Verkuil5e7fdc52008-05-30 10:51:53 -03001001 retval = cx18_streams_setup(cx);
1002 if (retval) {
1003 CX18_ERR("Error %d setting up streams\n", retval);
1004 goto free_irq;
1005 }
1006 retval = cx18_streams_register(cx);
1007 if (retval) {
1008 CX18_ERR("Error %d registering devices\n", retval);
1009 goto free_streams;
1010 }
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001011
Andy Walls5811cf92009-02-14 17:08:37 -03001012 CX18_INFO("Initialized card: %s\n", cx->card_name);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001013 return 0;
1014
1015free_streams:
Hans Verkuil3f983872008-05-01 10:31:12 -03001016 cx18_streams_cleanup(cx, 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001017free_irq:
Andy Walls3d059132009-01-10 21:54:39 -03001018 free_irq(cx->pci_dev->irq, (void *)cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001019free_i2c:
1020 exit_cx18_i2c(cx);
1021free_map:
1022 cx18_iounmap(cx);
1023free_mem:
1024 release_mem_region(cx->base_addr, CX18_MEM_SIZE);
Andy Walls87116152009-04-13 22:42:43 -03001025free_workqueues:
Andy Wallsdeed75e2009-04-13 22:22:40 -03001026 destroy_workqueue(cx->in_work_queue);
Andy Walls87116152009-04-13 22:42:43 -03001027 destroy_workqueue(cx->out_work_queue);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001028err:
1029 if (retval == 0)
1030 retval = -ENODEV;
1031 CX18_ERR("Error %d on initialization\n", retval);
1032
Andy Walls5811cf92009-02-14 17:08:37 -03001033 v4l2_device_unregister(&cx->v4l2_dev);
1034 kfree(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001035 return retval;
1036}
1037
1038int cx18_init_on_first_open(struct cx18 *cx)
1039{
1040 int video_input;
1041 int fw_retry_count = 3;
1042 struct v4l2_frequency vf;
Andy Walls3b6fe582008-06-21 08:36:31 -03001043 struct cx18_open_id fh;
1044
1045 fh.cx = cx;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001046
1047 if (test_bit(CX18_F_I_FAILED, &cx->i_flags))
1048 return -ENXIO;
1049
1050 if (test_and_set_bit(CX18_F_I_INITED, &cx->i_flags))
1051 return 0;
1052
1053 while (--fw_retry_count > 0) {
1054 /* load firmware */
1055 if (cx18_firmware_init(cx) == 0)
1056 break;
1057 if (fw_retry_count > 1)
1058 CX18_WARN("Retry loading firmware\n");
1059 }
1060
1061 if (fw_retry_count == 0) {
1062 set_bit(CX18_F_I_FAILED, &cx->i_flags);
1063 return -ENXIO;
1064 }
1065 set_bit(CX18_F_I_LOADED_FW, &cx->i_flags);
1066
Andy Walls350145a2009-01-04 21:51:17 -03001067 /*
1068 * Init the firmware twice to work around a silicon bug
1069 * with the digital TS.
1070 *
1071 * The second firmware load requires us to normalize the APU state,
1072 * or the audio for the first analog capture will be badly incorrect.
1073 *
1074 * I can't seem to call APU_RESETAI and have it succeed without the
1075 * APU capturing audio, so we start and stop it here to do the reset
1076 */
1077
1078 /* MPEG Encoding, 224 kbps, MPEG Layer II, 48 ksps */
1079 cx18_vapi(cx, CX18_APU_START, 2, CX18_APU_ENCODING_METHOD_MPEG|0xb9, 0);
1080 cx18_vapi(cx, CX18_APU_RESETAI, 0);
1081 cx18_vapi(cx, CX18_APU_STOP, 1, CX18_APU_ENCODING_METHOD_MPEG);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001082
1083 fw_retry_count = 3;
1084 while (--fw_retry_count > 0) {
1085 /* load firmware */
1086 if (cx18_firmware_init(cx) == 0)
1087 break;
1088 if (fw_retry_count > 1)
1089 CX18_WARN("Retry loading firmware\n");
1090 }
1091
1092 if (fw_retry_count == 0) {
1093 set_bit(CX18_F_I_FAILED, &cx->i_flags);
1094 return -ENXIO;
1095 }
1096
Andy Wallsd5c02f62009-01-30 22:48:40 -03001097 /*
1098 * The second firmware load requires us to normalize the APU state,
1099 * or the audio for the first analog capture will be badly incorrect.
1100 *
1101 * I can't seem to call APU_RESETAI and have it succeed without the
1102 * APU capturing audio, so we start and stop it here to do the reset
1103 */
1104
1105 /* MPEG Encoding, 224 kbps, MPEG Layer II, 48 ksps */
1106 cx18_vapi(cx, CX18_APU_START, 2, CX18_APU_ENCODING_METHOD_MPEG|0xb9, 0);
1107 cx18_vapi(cx, CX18_APU_RESETAI, 0);
1108 cx18_vapi(cx, CX18_APU_STOP, 1, CX18_APU_ENCODING_METHOD_MPEG);
1109
Andy Wallsfa3e7032009-02-16 02:23:25 -03001110 /* Init the A/V decoder, if it hasn't been already */
Hans Verkuilcc26b072009-03-29 19:20:26 -03001111 v4l2_subdev_call(cx->sd_av, core, load_fw);
Andy Wallsfa3e7032009-02-16 02:23:25 -03001112
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001113 vf.tuner = 0;
1114 vf.type = V4L2_TUNER_ANALOG_TV;
1115 vf.frequency = 6400; /* the tuner 'baseline' frequency */
1116
1117 /* Set initial frequency. For PAL/SECAM broadcasts no
1118 'default' channel exists AFAIK. */
1119 if (cx->std == V4L2_STD_NTSC_M_JP)
1120 vf.frequency = 1460; /* ch. 1 91250*16/1000 */
1121 else if (cx->std & V4L2_STD_NTSC_M)
1122 vf.frequency = 1076; /* ch. 4 67250*16/1000 */
1123
1124 video_input = cx->active_input;
1125 cx->active_input++; /* Force update of input */
Andy Walls3b6fe582008-06-21 08:36:31 -03001126 cx18_s_input(NULL, &fh, video_input);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001127
1128 /* Let the VIDIOC_S_STD ioctl do all the work, keeps the code
1129 in one place. */
1130 cx->std++; /* Force full standard initialization */
Andy Walls3b6fe582008-06-21 08:36:31 -03001131 cx18_s_std(NULL, &fh, &cx->tuner_std);
1132 cx18_s_frequency(NULL, &fh, &vf);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001133 return 0;
1134}
1135
Andy Wallsdeed75e2009-04-13 22:22:40 -03001136static void cx18_cancel_in_work_orders(struct cx18 *cx)
Andy Walls18b5dc22008-11-16 17:15:01 -03001137{
1138 int i;
Andy Wallsdeed75e2009-04-13 22:22:40 -03001139 for (i = 0; i < CX18_MAX_IN_WORK_ORDERS; i++)
1140 cancel_work_sync(&cx->in_work_order[i].work);
Andy Walls18b5dc22008-11-16 17:15:01 -03001141}
1142
Andy Walls21a278b2009-04-15 20:45:10 -03001143static void cx18_cancel_out_work_orders(struct cx18 *cx)
1144{
1145 int i;
1146 for (i = 0; i < CX18_MAX_STREAMS; i++)
1147 if (&cx->streams[i].video_dev != NULL)
1148 cancel_work_sync(&cx->streams[i].out_work_order);
1149}
1150
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001151static void cx18_remove(struct pci_dev *pci_dev)
1152{
Andy Walls888cdb02009-01-11 15:08:53 -03001153 struct v4l2_device *v4l2_dev = pci_get_drvdata(pci_dev);
Andy Walls5811cf92009-02-14 17:08:37 -03001154 struct cx18 *cx = to_cx18(v4l2_dev);
Andy Walls6da6bf52009-02-21 19:53:54 -03001155 int i;
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001156
Andy Walls5811cf92009-02-14 17:08:37 -03001157 CX18_DEBUG_INFO("Removing Card\n");
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001158
1159 /* Stop all captures */
1160 CX18_DEBUG_INFO("Stopping all streams\n");
Hans Verkuil31554ae2008-05-25 11:21:27 -03001161 if (atomic_read(&cx->tot_capturing) > 0)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001162 cx18_stop_all_captures(cx);
1163
Andy Walls87116152009-04-13 22:42:43 -03001164 /* Stop interrupts that cause incoming work to be queued */
Andy Wallsb1526422008-08-30 16:03:44 -03001165 cx18_sw1_irq_disable(cx, IRQ_CPU_TO_EPU | IRQ_APU_TO_EPU);
Andy Walls87116152009-04-13 22:42:43 -03001166
1167 /* Incoming work can cause outgoing work, so clean up incoming first */
1168 cx18_cancel_in_work_orders(cx);
Andy Walls21a278b2009-04-15 20:45:10 -03001169 cx18_cancel_out_work_orders(cx);
Andy Walls87116152009-04-13 22:42:43 -03001170
1171 /* Stop ack interrupts that may have been needed for work to finish */
Andy Wallsb1526422008-08-30 16:03:44 -03001172 cx18_sw2_irq_disable(cx, IRQ_CPU_TO_EPU_ACK | IRQ_APU_TO_EPU_ACK);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001173
1174 cx18_halt_firmware(cx);
1175
Andy Wallsdeed75e2009-04-13 22:22:40 -03001176 destroy_workqueue(cx->in_work_queue);
Andy Walls87116152009-04-13 22:42:43 -03001177 destroy_workqueue(cx->out_work_queue);
Andy Walls572bfea2008-11-25 21:43:05 -03001178
Hans Verkuil3f983872008-05-01 10:31:12 -03001179 cx18_streams_cleanup(cx, 1);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001180
1181 exit_cx18_i2c(cx);
1182
Andy Walls3d059132009-01-10 21:54:39 -03001183 free_irq(cx->pci_dev->irq, (void *)cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001184
Hans Verkuilcba627a2008-05-12 14:48:26 -03001185 cx18_iounmap(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001186
1187 release_mem_region(cx->base_addr, CX18_MEM_SIZE);
1188
Andy Walls3d059132009-01-10 21:54:39 -03001189 pci_disable_device(cx->pci_dev);
Andy Walls6da6bf52009-02-21 19:53:54 -03001190
1191 if (cx->vbi.sliced_mpeg_data[0] != NULL)
1192 for (i = 0; i < CX18_VBI_FRAMES; i++)
1193 kfree(cx->vbi.sliced_mpeg_data[i]);
Andy Walls5811cf92009-02-14 17:08:37 -03001194
1195 CX18_INFO("Removed %s\n", cx->card_name);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001196
Andy Walls888cdb02009-01-11 15:08:53 -03001197 v4l2_device_unregister(v4l2_dev);
Andy Walls5811cf92009-02-14 17:08:37 -03001198 kfree(cx);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001199}
1200
1201/* define a pci_driver for card detection */
1202static struct pci_driver cx18_pci_driver = {
1203 .name = "cx18",
1204 .id_table = cx18_pci_tbl,
1205 .probe = cx18_probe,
1206 .remove = cx18_remove,
1207};
1208
Peter Huewe9710e7a2009-11-04 15:28:33 -03001209static int __init module_start(void)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001210{
1211 printk(KERN_INFO "cx18: Start initialization, version %s\n", CX18_VERSION);
1212
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001213 /* Validate parameters */
1214 if (cx18_first_minor < 0 || cx18_first_minor >= CX18_MAX_CARDS) {
Hans Verkuildd896012008-10-04 08:36:54 -03001215 printk(KERN_ERR "cx18: Exiting, cx18_first_minor must be between 0 and %d\n",
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001216 CX18_MAX_CARDS - 1);
1217 return -1;
1218 }
1219
1220 if (cx18_debug < 0 || cx18_debug > 511) {
1221 cx18_debug = 0;
1222 printk(KERN_INFO "cx18: Debug value must be >= 0 and <= 511!\n");
1223 }
1224
1225 if (pci_register_driver(&cx18_pci_driver)) {
1226 printk(KERN_ERR "cx18: Error detecting PCI card\n");
1227 return -ENODEV;
1228 }
1229 printk(KERN_INFO "cx18: End initialization\n");
1230 return 0;
1231}
1232
Peter Huewe9710e7a2009-11-04 15:28:33 -03001233static void __exit module_cleanup(void)
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001234{
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001235 pci_unregister_driver(&cx18_pci_driver);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001236}
1237
1238module_init(module_start);
1239module_exit(module_cleanup);