V4L/DVB (5543): Tda10023: Add support for frontend TDA10023
[deliverable/linux.git] / drivers / media / dvb / ttpci / budget-av.c
CommitLineData
1da177e4
LT
1/*
2 * budget-av.c: driver for the SAA7146 based Budget DVB cards
3 * with analog video in
4 *
5 * Compiled from various sources by Michael Hunold <michael@mihu.de>
6 *
7 * CI interface support (c) 2004 Olivier Gournet <ogournet@anevia.com> &
8 * Andrew de Quincey <adq_dvb@lidskialf.net>
9 *
10 * Copyright (C) 2002 Ralph Metzler <rjkm@metzlerbros.de>
11 *
12 * Copyright (C) 1999-2002 Ralph Metzler
13 * & Marcus Metzler for convergence integrated media GmbH
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
19 *
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
31 *
32 *
33 * the project's page is at http://www.linuxtv.org/dvb/
34 */
35
36#include "budget.h"
37#include "stv0299.h"
aa323ac8 38#include "tda1002x.h"
1da177e4 39#include "tda1004x.h"
1c72cfdc 40#include "tua6100.h"
f8bf134d 41#include "dvb-pll.h"
1da177e4
LT
42#include <media/saa7146_vv.h>
43#include <linux/module.h>
44#include <linux/errno.h>
45#include <linux/slab.h>
46#include <linux/interrupt.h>
47#include <linux/input.h>
48#include <linux/spinlock.h>
49
50#include "dvb_ca_en50221.h"
51
52#define DEBICICAM 0x02420000
53
5c1208ba
AQ
54#define SLOTSTATUS_NONE 1
55#define SLOTSTATUS_PRESENT 2
56#define SLOTSTATUS_RESET 4
57#define SLOTSTATUS_READY 8
58#define SLOTSTATUS_OCCUPIED (SLOTSTATUS_PRESENT|SLOTSTATUS_RESET|SLOTSTATUS_READY)
59
1da177e4
LT
60struct budget_av {
61 struct budget budget;
62 struct video_device *vd;
63 int cur_input;
64 int has_saa7113;
65 struct tasklet_struct ciintf_irq_tasklet;
66 int slot_status;
67 struct dvb_ca_en50221 ca;
5c1208ba 68 u8 reinitialise_demod:1;
1da177e4
LT
69};
70
5c1208ba
AQ
71static int ciintf_slot_shutdown(struct dvb_ca_en50221 *ca, int slot);
72
73
86f40cc3
AQ
74/* GPIO Connections:
75 * 0 - Vcc/Reset (Reset is controlled by capacitor). Resets the frontend *AS WELL*!
76 * 1 - CI memory select 0=>IO memory, 1=>Attribute Memory
77 * 2 - CI Card Enable (Active Low)
78 * 3 - CI Card Detect
b82a96a7 79 */
1da177e4
LT
80
81/****************************************************************************
82 * INITIALIZATION
83 ****************************************************************************/
84
85static u8 i2c_readreg(struct i2c_adapter *i2c, u8 id, u8 reg)
86{
87 u8 mm1[] = { 0x00 };
88 u8 mm2[] = { 0x00 };
89 struct i2c_msg msgs[2];
90
91 msgs[0].flags = 0;
92 msgs[1].flags = I2C_M_RD;
93 msgs[0].addr = msgs[1].addr = id / 2;
94 mm1[0] = reg;
95 msgs[0].len = 1;
96 msgs[1].len = 1;
97 msgs[0].buf = mm1;
98 msgs[1].buf = mm2;
99
100 i2c_transfer(i2c, msgs, 2);
101
102 return mm2[0];
103}
104
105static int i2c_readregs(struct i2c_adapter *i2c, u8 id, u8 reg, u8 * buf, u8 len)
106{
107 u8 mm1[] = { reg };
108 struct i2c_msg msgs[2] = {
109 {.addr = id / 2,.flags = 0,.buf = mm1,.len = 1},
110 {.addr = id / 2,.flags = I2C_M_RD,.buf = buf,.len = len}
111 };
112
113 if (i2c_transfer(i2c, msgs, 2) != 2)
114 return -EIO;
115
116 return 0;
117}
118
119static int i2c_writereg(struct i2c_adapter *i2c, u8 id, u8 reg, u8 val)
120{
121 u8 msg[2] = { reg, val };
122 struct i2c_msg msgs;
123
124 msgs.flags = 0;
125 msgs.addr = id / 2;
126 msgs.len = 2;
127 msgs.buf = msg;
128 return i2c_transfer(i2c, &msgs, 1);
129}
130
131static int ciintf_read_attribute_mem(struct dvb_ca_en50221 *ca, int slot, int address)
132{
133 struct budget_av *budget_av = (struct budget_av *) ca->data;
134 int result;
135
136 if (slot != 0)
137 return -EINVAL;
138
139 saa7146_setgpio(budget_av->budget.dev, 1, SAA7146_GPIO_OUTHI);
140 udelay(1);
141
2d0235df 142 result = ttpci_budget_debiread(&budget_av->budget, DEBICICAM, address & 0xfff, 1, 0, 1);
5c1208ba
AQ
143 if (result == -ETIMEDOUT) {
144 ciintf_slot_shutdown(ca, slot);
145 printk(KERN_INFO "budget-av: cam ejected 1\n");
146 }
1da177e4
LT
147 return result;
148}
149
150static int ciintf_write_attribute_mem(struct dvb_ca_en50221 *ca, int slot, int address, u8 value)
151{
152 struct budget_av *budget_av = (struct budget_av *) ca->data;
153 int result;
154
155 if (slot != 0)
156 return -EINVAL;
157
158 saa7146_setgpio(budget_av->budget.dev, 1, SAA7146_GPIO_OUTHI);
159 udelay(1);
160
2d0235df 161 result = ttpci_budget_debiwrite(&budget_av->budget, DEBICICAM, address & 0xfff, 1, value, 0, 1);
5c1208ba
AQ
162 if (result == -ETIMEDOUT) {
163 ciintf_slot_shutdown(ca, slot);
164 printk(KERN_INFO "budget-av: cam ejected 2\n");
165 }
1da177e4
LT
166 return result;
167}
168
169static int ciintf_read_cam_control(struct dvb_ca_en50221 *ca, int slot, u8 address)
170{
171 struct budget_av *budget_av = (struct budget_av *) ca->data;
172 int result;
173
174 if (slot != 0)
175 return -EINVAL;
176
177 saa7146_setgpio(budget_av->budget.dev, 1, SAA7146_GPIO_OUTLO);
178 udelay(1);
179
180 result = ttpci_budget_debiread(&budget_av->budget, DEBICICAM, address & 3, 1, 0, 0);
5c1208ba
AQ
181 if ((result == -ETIMEDOUT) || ((result == 0xff) && ((address & 3) < 2))) {
182 ciintf_slot_shutdown(ca, slot);
183 printk(KERN_INFO "budget-av: cam ejected 3\n");
184 return -ETIMEDOUT;
185 }
1da177e4
LT
186 return result;
187}
188
189static int ciintf_write_cam_control(struct dvb_ca_en50221 *ca, int slot, u8 address, u8 value)
190{
191 struct budget_av *budget_av = (struct budget_av *) ca->data;
192 int result;
193
194 if (slot != 0)
195 return -EINVAL;
196
197 saa7146_setgpio(budget_av->budget.dev, 1, SAA7146_GPIO_OUTLO);
198 udelay(1);
199
200 result = ttpci_budget_debiwrite(&budget_av->budget, DEBICICAM, address & 3, 1, value, 0, 0);
5c1208ba
AQ
201 if (result == -ETIMEDOUT) {
202 ciintf_slot_shutdown(ca, slot);
203 printk(KERN_INFO "budget-av: cam ejected 5\n");
204 }
1da177e4
LT
205 return result;
206}
207
208static int ciintf_slot_reset(struct dvb_ca_en50221 *ca, int slot)
209{
210 struct budget_av *budget_av = (struct budget_av *) ca->data;
211 struct saa7146_dev *saa = budget_av->budget.dev;
1da177e4
LT
212
213 if (slot != 0)
214 return -EINVAL;
215
216 dprintk(1, "ciintf_slot_reset\n");
5c1208ba 217 budget_av->slot_status = SLOTSTATUS_RESET;
1da177e4 218
b82a96a7 219 saa7146_setgpio(saa, 2, SAA7146_GPIO_OUTHI); /* disable card */
1da177e4 220
b82a96a7
JS
221 saa7146_setgpio(saa, 0, SAA7146_GPIO_OUTHI); /* Vcc off */
222 msleep(2);
223 saa7146_setgpio(saa, 0, SAA7146_GPIO_OUTLO); /* Vcc on */
224 msleep(20); /* 20 ms Vcc settling time */
225
226 saa7146_setgpio(saa, 2, SAA7146_GPIO_OUTLO); /* enable card */
5c1208ba
AQ
227 ttpci_budget_set_video_port(saa, BUDGET_VIDEO_PORTB);
228 msleep(20);
b82a96a7 229
5c1208ba
AQ
230 /* reinitialise the frontend if necessary */
231 if (budget_av->reinitialise_demod)
232 dvb_frontend_reinitialise(budget_av->budget.dvb_frontend);
86f40cc3 233
1da177e4
LT
234 return 0;
235}
236
237static int ciintf_slot_shutdown(struct dvb_ca_en50221 *ca, int slot)
238{
239 struct budget_av *budget_av = (struct budget_av *) ca->data;
240 struct saa7146_dev *saa = budget_av->budget.dev;
241
242 if (slot != 0)
243 return -EINVAL;
244
245 dprintk(1, "ciintf_slot_shutdown\n");
246
247 ttpci_budget_set_video_port(saa, BUDGET_VIDEO_PORTB);
5c1208ba
AQ
248 budget_av->slot_status = SLOTSTATUS_NONE;
249
1da177e4
LT
250 return 0;
251}
252
253static int ciintf_slot_ts_enable(struct dvb_ca_en50221 *ca, int slot)
254{
255 struct budget_av *budget_av = (struct budget_av *) ca->data;
256 struct saa7146_dev *saa = budget_av->budget.dev;
257
258 if (slot != 0)
259 return -EINVAL;
260
261 dprintk(1, "ciintf_slot_ts_enable: %d\n", budget_av->slot_status);
262
263 ttpci_budget_set_video_port(saa, BUDGET_VIDEO_PORTA);
5c1208ba 264
1da177e4
LT
265 return 0;
266}
267
268static int ciintf_poll_slot_status(struct dvb_ca_en50221 *ca, int slot, int open)
269{
270 struct budget_av *budget_av = (struct budget_av *) ca->data;
271 struct saa7146_dev *saa = budget_av->budget.dev;
5c1208ba 272 int result;
1da177e4
LT
273
274 if (slot != 0)
275 return -EINVAL;
276
5c1208ba
AQ
277 /* test the card detect line - needs to be done carefully
278 * since it never goes high for some CAMs on this interface (e.g. topuptv) */
279 if (budget_av->slot_status == SLOTSTATUS_NONE) {
1da177e4
LT
280 saa7146_setgpio(saa, 3, SAA7146_GPIO_INPUT);
281 udelay(1);
5c1208ba
AQ
282 if (saa7146_read(saa, PSR) & MASK_06) {
283 if (budget_av->slot_status == SLOTSTATUS_NONE) {
284 budget_av->slot_status = SLOTSTATUS_PRESENT;
285 printk(KERN_INFO "budget-av: cam inserted A\n");
286 }
2d0235df
AQ
287 }
288 saa7146_setgpio(saa, 3, SAA7146_GPIO_OUTLO);
5c1208ba 289 }
2d0235df 290
5c1208ba
AQ
291 /* We also try and read from IO memory to work round the above detection bug. If
292 * there is no CAM, we will get a timeout. Only done if there is no cam
293 * present, since this test actually breaks some cams :(
294 *
295 * if the CI interface is not open, we also do the above test since we
296 * don't care if the cam has problems - we'll be resetting it on open() anyway */
297 if ((budget_av->slot_status == SLOTSTATUS_NONE) || (!open)) {
298 saa7146_setgpio(budget_av->budget.dev, 1, SAA7146_GPIO_OUTLO);
299 result = ttpci_budget_debiread(&budget_av->budget, DEBICICAM, 0, 1, 0, 1);
300 if ((result >= 0) && (budget_av->slot_status == SLOTSTATUS_NONE)) {
301 budget_av->slot_status = SLOTSTATUS_PRESENT;
302 printk(KERN_INFO "budget-av: cam inserted B\n");
303 } else if (result < 0) {
304 if (budget_av->slot_status != SLOTSTATUS_NONE) {
305 ciintf_slot_shutdown(ca, slot);
306 printk(KERN_INFO "budget-av: cam ejected 5\n");
307 return 0;
2d0235df
AQ
308 }
309 }
5c1208ba 310 }
2d0235df 311
5c1208ba
AQ
312 /* read from attribute memory in reset/ready state to know when the CAM is ready */
313 if (budget_av->slot_status == SLOTSTATUS_RESET) {
314 result = ciintf_read_attribute_mem(ca, slot, 0);
315 if (result == 0x1d) {
316 budget_av->slot_status = SLOTSTATUS_READY;
b82a96a7 317 }
1da177e4
LT
318 }
319
5c1208ba
AQ
320 /* work out correct return code */
321 if (budget_av->slot_status != SLOTSTATUS_NONE) {
322 if (budget_av->slot_status & SLOTSTATUS_READY) {
323 return DVB_CA_EN50221_POLL_CAM_PRESENT | DVB_CA_EN50221_POLL_CAM_READY;
324 }
325 return DVB_CA_EN50221_POLL_CAM_PRESENT;
326 }
1da177e4
LT
327 return 0;
328}
329
330static int ciintf_init(struct budget_av *budget_av)
331{
332 struct saa7146_dev *saa = budget_av->budget.dev;
333 int result;
334
335 memset(&budget_av->ca, 0, sizeof(struct dvb_ca_en50221));
336
b82a96a7
JS
337 saa7146_setgpio(saa, 0, SAA7146_GPIO_OUTLO);
338 saa7146_setgpio(saa, 1, SAA7146_GPIO_OUTLO);
1da177e4
LT
339 saa7146_setgpio(saa, 2, SAA7146_GPIO_OUTLO);
340 saa7146_setgpio(saa, 3, SAA7146_GPIO_OUTLO);
341
1da177e4 342 /* Enable DEBI pins */
2a893dea 343 saa7146_write(saa, MC1, MASK_27 | MASK_11);
1da177e4
LT
344
345 /* register CI interface */
346 budget_av->ca.owner = THIS_MODULE;
347 budget_av->ca.read_attribute_mem = ciintf_read_attribute_mem;
348 budget_av->ca.write_attribute_mem = ciintf_write_attribute_mem;
349 budget_av->ca.read_cam_control = ciintf_read_cam_control;
350 budget_av->ca.write_cam_control = ciintf_write_cam_control;
351 budget_av->ca.slot_reset = ciintf_slot_reset;
352 budget_av->ca.slot_shutdown = ciintf_slot_shutdown;
353 budget_av->ca.slot_ts_enable = ciintf_slot_ts_enable;
354 budget_av->ca.poll_slot_status = ciintf_poll_slot_status;
355 budget_av->ca.data = budget_av;
5c1208ba
AQ
356 budget_av->budget.ci_present = 1;
357 budget_av->slot_status = SLOTSTATUS_NONE;
b82a96a7 358
fdc53a6d 359 if ((result = dvb_ca_en50221_init(&budget_av->budget.dvb_adapter,
1da177e4 360 &budget_av->ca, 0, 1)) != 0) {
b82a96a7 361 printk(KERN_ERR "budget-av: ci initialisation failed.\n");
1da177e4
LT
362 goto error;
363 }
b82a96a7
JS
364
365 printk(KERN_INFO "budget-av: ci interface initialised.\n");
1da177e4
LT
366 return 0;
367
368error:
2a893dea 369 saa7146_write(saa, MC1, MASK_27);
1da177e4
LT
370 return result;
371}
372
373static void ciintf_deinit(struct budget_av *budget_av)
374{
375 struct saa7146_dev *saa = budget_av->budget.dev;
376
377 saa7146_setgpio(saa, 0, SAA7146_GPIO_INPUT);
378 saa7146_setgpio(saa, 1, SAA7146_GPIO_INPUT);
379 saa7146_setgpio(saa, 2, SAA7146_GPIO_INPUT);
380 saa7146_setgpio(saa, 3, SAA7146_GPIO_INPUT);
381
382 /* release the CA device */
383 dvb_ca_en50221_release(&budget_av->ca);
384
385 /* disable DEBI pins */
2a893dea 386 saa7146_write(saa, MC1, MASK_27);
1da177e4
LT
387}
388
389
390static const u8 saa7113_tab[] = {
391 0x01, 0x08,
392 0x02, 0xc0,
393 0x03, 0x33,
394 0x04, 0x00,
395 0x05, 0x00,
396 0x06, 0xeb,
397 0x07, 0xe0,
398 0x08, 0x28,
399 0x09, 0x00,
400 0x0a, 0x80,
401 0x0b, 0x47,
402 0x0c, 0x40,
403 0x0d, 0x00,
404 0x0e, 0x01,
405 0x0f, 0x44,
406
407 0x10, 0x08,
408 0x11, 0x0c,
409 0x12, 0x7b,
410 0x13, 0x00,
411 0x15, 0x00, 0x16, 0x00, 0x17, 0x00,
412
413 0x57, 0xff,
414 0x40, 0x82, 0x58, 0x00, 0x59, 0x54, 0x5a, 0x07,
415 0x5b, 0x83, 0x5e, 0x00,
416 0xff
417};
418
419static int saa7113_init(struct budget_av *budget_av)
420{
421 struct budget *budget = &budget_av->budget;
b82a96a7 422 struct saa7146_dev *saa = budget->dev;
1da177e4
LT
423 const u8 *data = saa7113_tab;
424
b82a96a7
JS
425 saa7146_setgpio(saa, 0, SAA7146_GPIO_OUTHI);
426 msleep(200);
427
1da177e4
LT
428 if (i2c_writereg(&budget->i2c_adap, 0x4a, 0x01, 0x08) != 1) {
429 dprintk(1, "saa7113 not found on KNC card\n");
430 return -ENODEV;
431 }
432
433 dprintk(1, "saa7113 detected and initializing\n");
434
435 while (*data != 0xff) {
436 i2c_writereg(&budget->i2c_adap, 0x4a, *data, *(data + 1));
437 data += 2;
438 }
439
440 dprintk(1, "saa7113 status=%02x\n", i2c_readreg(&budget->i2c_adap, 0x4a, 0x1f));
441
442 return 0;
443}
444
445static int saa7113_setinput(struct budget_av *budget_av, int input)
446{
447 struct budget *budget = &budget_av->budget;
448
449 if (1 != budget_av->has_saa7113)
450 return -ENODEV;
451
452 if (input == 1) {
453 i2c_writereg(&budget->i2c_adap, 0x4a, 0x02, 0xc7);
454 i2c_writereg(&budget->i2c_adap, 0x4a, 0x09, 0x80);
455 } else if (input == 0) {
456 i2c_writereg(&budget->i2c_adap, 0x4a, 0x02, 0xc0);
457 i2c_writereg(&budget->i2c_adap, 0x4a, 0x09, 0x00);
458 } else
459 return -EINVAL;
460
461 budget_av->cur_input = input;
462 return 0;
463}
464
465
466static int philips_su1278_ty_ci_set_symbol_rate(struct dvb_frontend *fe, u32 srate, u32 ratio)
467{
468 u8 aclk = 0;
469 u8 bclk = 0;
470 u8 m1;
471
472 aclk = 0xb5;
473 if (srate < 2000000)
474 bclk = 0x86;
475 else if (srate < 5000000)
476 bclk = 0x89;
477 else if (srate < 15000000)
478 bclk = 0x8f;
479 else if (srate < 45000000)
480 bclk = 0x95;
481
482 m1 = 0x14;
483 if (srate < 4000000)
484 m1 = 0x10;
485
486 stv0299_writereg(fe, 0x13, aclk);
487 stv0299_writereg(fe, 0x14, bclk);
488 stv0299_writereg(fe, 0x1f, (ratio >> 16) & 0xff);
489 stv0299_writereg(fe, 0x20, (ratio >> 8) & 0xff);
490 stv0299_writereg(fe, 0x21, (ratio) & 0xf0);
491 stv0299_writereg(fe, 0x0f, 0x80 | m1);
492
493 return 0;
494}
495
e87d41c4
AQ
496static int philips_su1278_ty_ci_tuner_set_params(struct dvb_frontend *fe,
497 struct dvb_frontend_parameters *params)
1da177e4 498{
1da177e4
LT
499 u32 div;
500 u8 buf[4];
e87d41c4 501 struct budget *budget = (struct budget *) fe->dvb->priv;
1da177e4
LT
502 struct i2c_msg msg = {.addr = 0x61,.flags = 0,.buf = buf,.len = sizeof(buf) };
503
504 if ((params->frequency < 950000) || (params->frequency > 2150000))
505 return -EINVAL;
506
507 div = (params->frequency + (125 - 1)) / 125; // round correctly
508 buf[0] = (div >> 8) & 0x7f;
509 buf[1] = div & 0xff;
510 buf[2] = 0x80 | ((div & 0x18000) >> 10) | 4;
511 buf[3] = 0x20;
512
513 if (params->u.qpsk.symbol_rate < 4000000)
514 buf[3] |= 1;
515
516 if (params->frequency < 1250000)
517 buf[3] |= 0;
518 else if (params->frequency < 1550000)
519 buf[3] |= 0x40;
520 else if (params->frequency < 2050000)
521 buf[3] |= 0x80;
522 else if (params->frequency < 2150000)
523 buf[3] |= 0xC0;
524
dea74869
PB
525 if (fe->ops.i2c_gate_ctrl)
526 fe->ops.i2c_gate_ctrl(fe, 1);
e87d41c4 527 if (i2c_transfer(&budget->i2c_adap, &msg, 1) != 1)
1da177e4
LT
528 return -EIO;
529 return 0;
530}
531
532static u8 typhoon_cinergy1200s_inittab[] = {
533 0x01, 0x15,
534 0x02, 0x30,
535 0x03, 0x00,
536 0x04, 0x7d, /* F22FR = 0x7d, F22 = f_VCO / 128 / 0x7d = 22 kHz */
537 0x05, 0x35, /* I2CT = 0, SCLT = 1, SDAT = 1 */
538 0x06, 0x40, /* DAC not used, set to high impendance mode */
539 0x07, 0x00, /* DAC LSB */
540 0x08, 0x40, /* DiSEqC off */
541 0x09, 0x00, /* FIFO */
542 0x0c, 0x51, /* OP1 ctl = Normal, OP1 val = 1 (LNB Power ON) */
543 0x0d, 0x82, /* DC offset compensation = ON, beta_agc1 = 2 */
544 0x0e, 0x23, /* alpha_tmg = 2, beta_tmg = 3 */
545 0x10, 0x3f, // AGC2 0x3d
546 0x11, 0x84,
ff29d06a 547 0x12, 0xb9,
1da177e4
LT
548 0x15, 0xc9, // lock detector threshold
549 0x16, 0x00,
550 0x17, 0x00,
551 0x18, 0x00,
552 0x19, 0x00,
553 0x1a, 0x00,
554 0x1f, 0x50,
555 0x20, 0x00,
556 0x21, 0x00,
557 0x22, 0x00,
558 0x23, 0x00,
559 0x28, 0x00, // out imp: normal out type: parallel FEC mode:0
560 0x29, 0x1e, // 1/2 threshold
561 0x2a, 0x14, // 2/3 threshold
562 0x2b, 0x0f, // 3/4 threshold
563 0x2c, 0x09, // 5/6 threshold
564 0x2d, 0x05, // 7/8 threshold
565 0x2e, 0x01,
566 0x31, 0x1f, // test all FECs
567 0x32, 0x19, // viterbi and synchro search
568 0x33, 0xfc, // rs control
569 0x34, 0x93, // error control
570 0x0f, 0x92,
571 0xff, 0xff
572};
573
574static struct stv0299_config typhoon_config = {
575 .demod_address = 0x68,
576 .inittab = typhoon_cinergy1200s_inittab,
577 .mclk = 88000000UL,
578 .invert = 0,
1da177e4
LT
579 .skip_reinit = 0,
580 .lock_output = STV0229_LOCKOUTPUT_1,
581 .volt13_op0_op1 = STV0299_VOLT13_OP0,
582 .min_delay_ms = 100,
583 .set_symbol_rate = philips_su1278_ty_ci_set_symbol_rate,
1da177e4
LT
584};
585
586
587static struct stv0299_config cinergy_1200s_config = {
588 .demod_address = 0x68,
589 .inittab = typhoon_cinergy1200s_inittab,
590 .mclk = 88000000UL,
591 .invert = 0,
1da177e4
LT
592 .skip_reinit = 0,
593 .lock_output = STV0229_LOCKOUTPUT_0,
594 .volt13_op0_op1 = STV0299_VOLT13_OP0,
595 .min_delay_ms = 100,
596 .set_symbol_rate = philips_su1278_ty_ci_set_symbol_rate,
1da177e4
LT
597};
598
effa791c
AQ
599static struct stv0299_config cinergy_1200s_1894_0010_config = {
600 .demod_address = 0x68,
601 .inittab = typhoon_cinergy1200s_inittab,
602 .mclk = 88000000UL,
603 .invert = 1,
604 .skip_reinit = 0,
605 .lock_output = STV0229_LOCKOUTPUT_1,
606 .volt13_op0_op1 = STV0299_VOLT13_OP0,
607 .min_delay_ms = 100,
608 .set_symbol_rate = philips_su1278_ty_ci_set_symbol_rate,
effa791c 609};
1da177e4 610
e87d41c4 611static int philips_cu1216_tuner_set_params(struct dvb_frontend *fe, struct dvb_frontend_parameters *params)
1da177e4
LT
612{
613 struct budget *budget = (struct budget *) fe->dvb->priv;
aa323ac8 614 u8 buf[6];
1da177e4 615 struct i2c_msg msg = {.addr = 0x60,.flags = 0,.buf = buf,.len = sizeof(buf) };
aa323ac8 616 int i;
1da177e4 617
aa323ac8 618#define CU1216_IF 36125000
1da177e4
LT
619#define TUNER_MUL 62500
620
aa323ac8 621 u32 div = (params->frequency + CU1216_IF + TUNER_MUL / 2) / TUNER_MUL;
1da177e4
LT
622
623 buf[0] = (div >> 8) & 0x7f;
624 buf[1] = div & 0xff;
aa323ac8 625 buf[2] = 0xce;
eef5764d
JS
626 buf[3] = (params->frequency < 150000000 ? 0x01 :
627 params->frequency < 445000000 ? 0x02 : 0x04);
aa323ac8
HB
628 buf[4] = 0xde;
629 buf[5] = 0x20;
1da177e4 630
dea74869
PB
631 if (fe->ops.i2c_gate_ctrl)
632 fe->ops.i2c_gate_ctrl(fe, 1);
1da177e4
LT
633 if (i2c_transfer(&budget->i2c_adap, &msg, 1) != 1)
634 return -EIO;
aa323ac8
HB
635
636 /* wait for the pll lock */
637 msg.flags = I2C_M_RD;
638 msg.len = 1;
639 for (i = 0; i < 20; i++) {
640 if (fe->ops.i2c_gate_ctrl)
641 fe->ops.i2c_gate_ctrl(fe, 1);
642 if (i2c_transfer(&budget->i2c_adap, &msg, 1) == 1 && (buf[0] & 0x40))
643 break;
644 msleep(10);
645 }
646
647 /* switch the charge pump to the lower current */
648 msg.flags = 0;
649 msg.len = 2;
650 msg.buf = &buf[2];
651 buf[2] &= ~0x40;
652 if (fe->ops.i2c_gate_ctrl)
653 fe->ops.i2c_gate_ctrl(fe, 1);
654 if (i2c_transfer(&budget->i2c_adap, &msg, 1) != 1)
655 return -EIO;
656
1da177e4
LT
657 return 0;
658}
659
aa323ac8 660static struct tda1002x_config philips_cu1216_config = {
1da177e4 661 .demod_address = 0x0c,
1da177e4
LT
662};
663
aa323ac8 664static struct tda1002x_config philips_cu1216_config_altaddress = {
61cebe9d
AQ
665 .demod_address = 0x0d,
666};
667
e87d41c4 668static int philips_tu1216_tuner_init(struct dvb_frontend *fe)
1da177e4
LT
669{
670 struct budget *budget = (struct budget *) fe->dvb->priv;
671 static u8 tu1216_init[] = { 0x0b, 0xf5, 0x85, 0xab };
672 struct i2c_msg tuner_msg = {.addr = 0x60,.flags = 0,.buf = tu1216_init,.len = sizeof(tu1216_init) };
673
674 // setup PLL configuration
dea74869
PB
675 if (fe->ops.i2c_gate_ctrl)
676 fe->ops.i2c_gate_ctrl(fe, 1);
1da177e4
LT
677 if (i2c_transfer(&budget->i2c_adap, &tuner_msg, 1) != 1)
678 return -EIO;
679 msleep(1);
680
681 return 0;
682}
683
e87d41c4 684static int philips_tu1216_tuner_set_params(struct dvb_frontend *fe, struct dvb_frontend_parameters *params)
1da177e4
LT
685{
686 struct budget *budget = (struct budget *) fe->dvb->priv;
687 u8 tuner_buf[4];
688 struct i2c_msg tuner_msg = {.addr = 0x60,.flags = 0,.buf = tuner_buf,.len =
689 sizeof(tuner_buf) };
690 int tuner_frequency = 0;
691 u8 band, cp, filter;
692
693 // determine charge pump
694 tuner_frequency = params->frequency + 36166000;
695 if (tuner_frequency < 87000000)
696 return -EINVAL;
697 else if (tuner_frequency < 130000000)
698 cp = 3;
699 else if (tuner_frequency < 160000000)
700 cp = 5;
701 else if (tuner_frequency < 200000000)
702 cp = 6;
703 else if (tuner_frequency < 290000000)
704 cp = 3;
705 else if (tuner_frequency < 420000000)
706 cp = 5;
707 else if (tuner_frequency < 480000000)
708 cp = 6;
709 else if (tuner_frequency < 620000000)
710 cp = 3;
711 else if (tuner_frequency < 830000000)
712 cp = 5;
713 else if (tuner_frequency < 895000000)
714 cp = 7;
715 else
716 return -EINVAL;
717
718 // determine band
719 if (params->frequency < 49000000)
720 return -EINVAL;
721 else if (params->frequency < 161000000)
722 band = 1;
723 else if (params->frequency < 444000000)
724 band = 2;
725 else if (params->frequency < 861000000)
726 band = 4;
727 else
728 return -EINVAL;
729
730 // setup PLL filter
731 switch (params->u.ofdm.bandwidth) {
732 case BANDWIDTH_6_MHZ:
733 filter = 0;
734 break;
735
736 case BANDWIDTH_7_MHZ:
737 filter = 0;
738 break;
739
740 case BANDWIDTH_8_MHZ:
741 filter = 1;
742 break;
743
744 default:
745 return -EINVAL;
746 }
747
748 // calculate divisor
749 // ((36166000+((1000000/6)/2)) + Finput)/(1000000/6)
750 tuner_frequency = (((params->frequency / 1000) * 6) + 217496) / 1000;
751
752 // setup tuner buffer
753 tuner_buf[0] = (tuner_frequency >> 8) & 0x7f;
754 tuner_buf[1] = tuner_frequency & 0xff;
755 tuner_buf[2] = 0xca;
756 tuner_buf[3] = (cp << 5) | (filter << 3) | band;
757
dea74869
PB
758 if (fe->ops.i2c_gate_ctrl)
759 fe->ops.i2c_gate_ctrl(fe, 1);
1da177e4
LT
760 if (i2c_transfer(&budget->i2c_adap, &tuner_msg, 1) != 1)
761 return -EIO;
762
763 msleep(1);
764 return 0;
765}
766
767static int philips_tu1216_request_firmware(struct dvb_frontend *fe,
768 const struct firmware **fw, char *name)
769{
770 struct budget *budget = (struct budget *) fe->dvb->priv;
771
772 return request_firmware(fw, name, &budget->dev->pci->dev);
773}
774
775static struct tda1004x_config philips_tu1216_config = {
776
777 .demod_address = 0x8,
778 .invert = 1,
779 .invert_oclk = 1,
ecb60deb
HH
780 .xtal_freq = TDA10046_XTAL_4M,
781 .agc_config = TDA10046_AGC_DEFAULT,
782 .if_freq = TDA10046_FREQ_3617,
1da177e4
LT
783 .request_firmware = philips_tu1216_request_firmware,
784};
785
f8bf134d
RP
786static u8 philips_sd1878_inittab[] = {
787 0x01, 0x15,
788 0x02, 0x30,
789 0x03, 0x00,
790 0x04, 0x7d,
791 0x05, 0x35,
792 0x06, 0x40,
793 0x07, 0x00,
794 0x08, 0x43,
795 0x09, 0x02,
796 0x0C, 0x51,
797 0x0D, 0x82,
798 0x0E, 0x23,
799 0x10, 0x3f,
800 0x11, 0x84,
801 0x12, 0xb9,
802 0x15, 0xc9,
803 0x16, 0x19,
804 0x17, 0x8c,
805 0x18, 0x59,
806 0x19, 0xf8,
807 0x1a, 0xfe,
808 0x1c, 0x7f,
809 0x1d, 0x00,
810 0x1e, 0x00,
811 0x1f, 0x50,
812 0x20, 0x00,
813 0x21, 0x00,
814 0x22, 0x00,
815 0x23, 0x00,
816 0x28, 0x00,
817 0x29, 0x28,
818 0x2a, 0x14,
819 0x2b, 0x0f,
820 0x2c, 0x09,
821 0x2d, 0x09,
822 0x31, 0x1f,
823 0x32, 0x19,
824 0x33, 0xfc,
825 0x34, 0x93,
826 0xff, 0xff
827};
828
e87d41c4
AQ
829static int philips_sd1878_tda8261_tuner_set_params(struct dvb_frontend *fe,
830 struct dvb_frontend_parameters *params)
f8bf134d
RP
831{
832 u8 buf[4];
833 int rc;
834 struct i2c_msg tuner_msg = {.addr=0x60,.flags=0,.buf=buf,.len=sizeof(buf)};
e87d41c4 835 struct budget *budget = (struct budget *) fe->dvb->priv;
f8bf134d
RP
836
837 if((params->frequency < 950000) || (params->frequency > 2150000))
838 return -EINVAL;
839
840 rc=dvb_pll_configure(&dvb_pll_philips_sd1878_tda8261, buf,
47ae9ae8 841 params->frequency, 0);
f8bf134d 842 if(rc < 0) return rc;
1da177e4 843
dea74869
PB
844 if (fe->ops.i2c_gate_ctrl)
845 fe->ops.i2c_gate_ctrl(fe, 1);
e87d41c4 846 if(i2c_transfer(&budget->i2c_adap, &tuner_msg, 1) != 1)
f8bf134d 847 return -EIO;
1da177e4 848
f8bf134d
RP
849 return 0;
850}
851
852static int philips_sd1878_ci_set_symbol_rate(struct dvb_frontend *fe,
853 u32 srate, u32 ratio)
854{
855 u8 aclk = 0;
856 u8 bclk = 0;
857 u8 m1;
858
859 aclk = 0xb5;
860 if (srate < 2000000)
861 bclk = 0x86;
862 else if (srate < 5000000)
863 bclk = 0x89;
864 else if (srate < 15000000)
865 bclk = 0x8f;
866 else if (srate < 45000000)
867 bclk = 0x95;
868
869 m1 = 0x14;
870 if (srate < 4000000)
871 m1 = 0x10;
872
873 stv0299_writereg(fe, 0x0e, 0x23);
874 stv0299_writereg(fe, 0x0f, 0x94);
875 stv0299_writereg(fe, 0x10, 0x39);
876 stv0299_writereg(fe, 0x13, aclk);
877 stv0299_writereg(fe, 0x14, bclk);
878 stv0299_writereg(fe, 0x15, 0xc9);
879 stv0299_writereg(fe, 0x1f, (ratio >> 16) & 0xff);
880 stv0299_writereg(fe, 0x20, (ratio >> 8) & 0xff);
881 stv0299_writereg(fe, 0x21, (ratio) & 0xf0);
882 stv0299_writereg(fe, 0x0f, 0x80 | m1);
883
884 return 0;
885}
886
887static struct stv0299_config philips_sd1878_config = {
888 .demod_address = 0x68,
5c1208ba 889 .inittab = philips_sd1878_inittab,
f8bf134d
RP
890 .mclk = 88000000UL,
891 .invert = 0,
892 .skip_reinit = 0,
893 .lock_output = STV0229_LOCKOUTPUT_1,
894 .volt13_op0_op1 = STV0299_VOLT13_OP0,
895 .min_delay_ms = 100,
896 .set_symbol_rate = philips_sd1878_ci_set_symbol_rate,
f8bf134d 897};
1da177e4
LT
898
899static u8 read_pwm(struct budget_av *budget_av)
900{
901 u8 b = 0xff;
902 u8 pwm;
903 struct i2c_msg msg[] = { {.addr = 0x50,.flags = 0,.buf = &b,.len = 1},
904 {.addr = 0x50,.flags = I2C_M_RD,.buf = &pwm,.len = 1}
905 };
906
907 if ((i2c_transfer(&budget_av->budget.i2c_adap, msg, 2) != 2)
908 || (pwm == 0xff))
909 pwm = 0x48;
910
911 return pwm;
912}
913
aa323ac8
HB
914#define SUBID_DVBS_KNC1 0x0010
915#define SUBID_DVBS_KNC1_PLUS 0x0011
916#define SUBID_DVBS_TYPHOON 0x4f56
917#define SUBID_DVBS_CINERGY1200 0x1154
918#define SUBID_DVBS_CYNERGY1200N 0x1155
919#define SUBID_DVBS_TV_STAR 0x0014
920#define SUBID_DVBS_TV_STAR_CI 0x0016
921#define SUBID_DVBS_EASYWATCH_1 0x001a
922#define SUBID_DVBS_EASYWATCH 0x001e
923
924#define SUBID_DVBC_EASYWATCH 0x002a
925#define SUBID_DVBC_EASYWATCH_MK3 0x002c
926#define SUBID_DVBC_KNC1 0x0020
927#define SUBID_DVBC_KNC1_PLUS 0x0021
928#define SUBID_DVBC_KNC1_MK3 0x0022
929#define SUBID_DVBC_KNC1_PLUS_MK3 0x0023
930#define SUBID_DVBC_CINERGY1200 0x1156
931#define SUBID_DVBC_CINERGY1200_MK3 0x1176
932
933#define SUBID_DVBT_KNC1_PLUS 0x0031
934#define SUBID_DVBT_KNC1 0x0030
935#define SUBID_DVBT_CINERGY1200 0x1157
1da177e4
LT
936
937static void frontend_init(struct budget_av *budget_av)
938{
b82a96a7
JS
939 struct saa7146_dev * saa = budget_av->budget.dev;
940 struct dvb_frontend * fe = NULL;
941
473f5427
AQ
942 /* Enable / PowerON Frontend */
943 saa7146_setgpio(saa, 0, SAA7146_GPIO_OUTLO);
944
740cf9e1
HB
945 /* Wait for PowerON */
946 msleep(100);
947
473f5427 948 /* additional setup necessary for the PLUS cards */
b82a96a7
JS
949 switch (saa->pci->subsystem_device) {
950 case SUBID_DVBS_KNC1_PLUS:
951 case SUBID_DVBC_KNC1_PLUS:
952 case SUBID_DVBT_KNC1_PLUS:
c01d1e48 953 case SUBID_DVBC_EASYWATCH:
aa323ac8 954 case SUBID_DVBC_KNC1_PLUS_MK3:
b82a96a7 955 saa7146_setgpio(saa, 3, SAA7146_GPIO_OUTHI);
1da177e4 956 break;
b82a96a7
JS
957 }
958
959 switch (saa->pci->subsystem_device) {
960
961 case SUBID_DVBS_KNC1:
4e318bef 962 case SUBID_DVBS_KNC1_PLUS:
60110ce2 963 case SUBID_DVBS_EASYWATCH_1:
effa791c 964 if (saa->pci->subsystem_vendor == 0x1894) {
2bfe031d 965 fe = dvb_attach(stv0299_attach, &cinergy_1200s_1894_0010_config,
effa791c 966 &budget_av->budget.i2c_adap);
e87d41c4 967 if (fe) {
1c72cfdc 968 dvb_attach(tua6100_attach, fe, 0x60, &budget_av->budget.i2c_adap);
e87d41c4 969 }
effa791c 970 } else {
2bfe031d 971 fe = dvb_attach(stv0299_attach, &typhoon_config,
effa791c 972 &budget_av->budget.i2c_adap);
e87d41c4 973 if (fe) {
dea74869 974 fe->ops.tuner_ops.set_params = philips_su1278_ty_ci_tuner_set_params;
e87d41c4 975 }
effa791c
AQ
976 }
977 break;
978
f8bf134d
RP
979 case SUBID_DVBS_TV_STAR:
980 case SUBID_DVBS_TV_STAR_CI:
981 case SUBID_DVBS_CYNERGY1200N:
36f4f334 982 case SUBID_DVBS_EASYWATCH:
2bfe031d 983 fe = dvb_attach(stv0299_attach, &philips_sd1878_config,
f8bf134d 984 &budget_av->budget.i2c_adap);
e87d41c4 985 if (fe) {
dea74869 986 fe->ops.tuner_ops.set_params = philips_sd1878_tda8261_tuner_set_params;
e87d41c4 987 }
f8bf134d
RP
988 break;
989
b82a96a7 990 case SUBID_DVBS_TYPHOON:
2bfe031d 991 fe = dvb_attach(stv0299_attach, &typhoon_config,
b82a96a7 992 &budget_av->budget.i2c_adap);
e87d41c4 993 if (fe) {
dea74869 994 fe->ops.tuner_ops.set_params = philips_su1278_ty_ci_tuner_set_params;
e87d41c4 995 }
1da177e4
LT
996 break;
997
b82a96a7 998 case SUBID_DVBS_CINERGY1200:
2bfe031d 999 fe = dvb_attach(stv0299_attach, &cinergy_1200s_config,
b82a96a7 1000 &budget_av->budget.i2c_adap);
e87d41c4 1001 if (fe) {
dea74869 1002 fe->ops.tuner_ops.set_params = philips_su1278_ty_ci_tuner_set_params;
e87d41c4 1003 }
1da177e4
LT
1004 break;
1005
b82a96a7
JS
1006 case SUBID_DVBC_KNC1:
1007 case SUBID_DVBC_KNC1_PLUS:
5c1208ba 1008 case SUBID_DVBC_CINERGY1200:
c01d1e48 1009 case SUBID_DVBC_EASYWATCH:
5c1208ba 1010 budget_av->reinitialise_demod = 1;
aa323ac8 1011 budget_av->budget.dev->i2c_bitrate = SAA7146_I2C_BUS_BIT_RATE_240;
2bfe031d 1012 fe = dvb_attach(tda10021_attach, &philips_cu1216_config,
b82a96a7
JS
1013 &budget_av->budget.i2c_adap,
1014 read_pwm(budget_av));
61cebe9d
AQ
1015 if (fe == NULL)
1016 fe = dvb_attach(tda10021_attach, &philips_cu1216_config_altaddress,
1017 &budget_av->budget.i2c_adap,
1018 read_pwm(budget_av));
e87d41c4 1019 if (fe) {
dea74869 1020 fe->ops.tuner_ops.set_params = philips_cu1216_tuner_set_params;
e87d41c4 1021 }
1da177e4
LT
1022 break;
1023
aa323ac8
HB
1024 case SUBID_DVBC_EASYWATCH_MK3:
1025 case SUBID_DVBC_CINERGY1200_MK3:
1026 case SUBID_DVBC_KNC1_MK3:
1027 case SUBID_DVBC_KNC1_PLUS_MK3:
1028 budget_av->reinitialise_demod = 1;
1029 budget_av->budget.dev->i2c_bitrate = SAA7146_I2C_BUS_BIT_RATE_240;
1030 fe = dvb_attach(tda10023_attach, &philips_cu1216_config,
1031 &budget_av->budget.i2c_adap,
1032 read_pwm(budget_av));
1033 if (fe) {
1034 fe->ops.tuner_ops.set_params = philips_cu1216_tuner_set_params;
1035 }
1036 break;
1037
b82a96a7
JS
1038 case SUBID_DVBT_KNC1:
1039 case SUBID_DVBT_KNC1_PLUS:
b82a96a7 1040 case SUBID_DVBT_CINERGY1200:
5c1208ba 1041 budget_av->reinitialise_demod = 1;
2bfe031d 1042 fe = dvb_attach(tda10046_attach, &philips_tu1216_config,
b82a96a7 1043 &budget_av->budget.i2c_adap);
6b3ccab7 1044 if (fe) {
dea74869
PB
1045 fe->ops.tuner_ops.init = philips_tu1216_tuner_init;
1046 fe->ops.tuner_ops.set_params = philips_tu1216_tuner_set_params;
6b3ccab7 1047 }
1da177e4
LT
1048 break;
1049 }
1050
b82a96a7
JS
1051 if (fe == NULL) {
1052 printk(KERN_ERR "budget-av: A frontend driver was not found "
1053 "for device %04x/%04x subsystem %04x/%04x\n",
1054 saa->pci->vendor,
1055 saa->pci->device,
1056 saa->pci->subsystem_vendor,
1057 saa->pci->subsystem_device);
1058 return;
1059 }
1060
1061 budget_av->budget.dvb_frontend = fe;
1062
1063 if (dvb_register_frontend(&budget_av->budget.dvb_adapter,
1064 budget_av->budget.dvb_frontend)) {
1065 printk(KERN_ERR "budget-av: Frontend registration failed!\n");
f52a838b 1066 dvb_frontend_detach(budget_av->budget.dvb_frontend);
b82a96a7 1067 budget_av->budget.dvb_frontend = NULL;
1da177e4
LT
1068 }
1069}
1070
1071
1072static void budget_av_irq(struct saa7146_dev *dev, u32 * isr)
1073{
1074 struct budget_av *budget_av = (struct budget_av *) dev->ext_priv;
1075
1076 dprintk(8, "dev: %p, budget_av: %p\n", dev, budget_av);
1077
1078 if (*isr & MASK_10)
1079 ttpci_budget_irq10_handler(dev, isr);
1080}
1081
1082static int budget_av_detach(struct saa7146_dev *dev)
1083{
1084 struct budget_av *budget_av = (struct budget_av *) dev->ext_priv;
1085 int err;
1086
1087 dprintk(2, "dev: %p\n", dev);
1088
1089 if (1 == budget_av->has_saa7113) {
1090 saa7146_setgpio(dev, 0, SAA7146_GPIO_OUTLO);
1091
1092 msleep(200);
1093
1094 saa7146_unregister_device(&budget_av->vd, dev);
716a4e33
MS
1095
1096 saa7146_vv_release(dev);
1da177e4
LT
1097 }
1098
1099 if (budget_av->budget.ci_present)
1100 ciintf_deinit(budget_av);
1101
2bfe031d 1102 if (budget_av->budget.dvb_frontend != NULL) {
1da177e4 1103 dvb_unregister_frontend(budget_av->budget.dvb_frontend);
f52a838b 1104 dvb_frontend_detach(budget_av->budget.dvb_frontend);
2bfe031d 1105 }
1da177e4
LT
1106 err = ttpci_budget_deinit(&budget_av->budget);
1107
1108 kfree(budget_av);
1109
1110 return err;
1111}
1112
1113static struct saa7146_ext_vv vv_data;
1114
1115static int budget_av_attach(struct saa7146_dev *dev, struct saa7146_pci_extension_data *info)
1116{
1117 struct budget_av *budget_av;
1118 u8 *mac;
1119 int err;
1120
1121 dprintk(2, "dev: %p\n", dev);
1122
7408187d 1123 if (!(budget_av = kzalloc(sizeof(struct budget_av), GFP_KERNEL)))
1da177e4
LT
1124 return -ENOMEM;
1125
b82a96a7 1126 budget_av->has_saa7113 = 0;
1da177e4
LT
1127 budget_av->budget.ci_present = 0;
1128
1129 dev->ext_priv = budget_av;
1130
1131 if ((err = ttpci_budget_init(&budget_av->budget, dev, info, THIS_MODULE))) {
1132 kfree(budget_av);
1133 return err;
1134 }
1135
1136 /* knc1 initialization */
1137 saa7146_write(dev, DD1_STREAM_B, 0x04000000);
1138 saa7146_write(dev, DD1_INIT, 0x07000600);
1139 saa7146_write(dev, MC2, MASK_09 | MASK_25 | MASK_10 | MASK_26);
1140
b82a96a7 1141 if (saa7113_init(budget_av) == 0) {
1da177e4
LT
1142 budget_av->has_saa7113 = 1;
1143
1144 if (0 != saa7146_vv_init(dev, &vv_data)) {
1145 /* fixme: proper cleanup here */
1146 ERR(("cannot init vv subsystem.\n"));
1147 return err;
1148 }
1149
1150 if ((err = saa7146_register_device(&budget_av->vd, dev, "knc1", VFL_TYPE_GRABBER))) {
1151 /* fixme: proper cleanup here */
1152 ERR(("cannot register capture v4l2 device.\n"));
716a4e33 1153 saa7146_vv_release(dev);
1da177e4
LT
1154 return err;
1155 }
1156
1157 /* beware: this modifies dev->vv ... */
1158 saa7146_set_hps_source_and_sync(dev, SAA7146_HPS_SOURCE_PORT_A,
1159 SAA7146_HPS_SYNC_PORT_A);
1160
1161 saa7113_setinput(budget_av, 0);
1da177e4
LT
1162 }
1163
1164 /* fixme: find some sane values here... */
1165 saa7146_write(dev, PCI_BT_V1, 0x1c00101f);
1166
fdc53a6d 1167 mac = budget_av->budget.dvb_adapter.proposed_mac;
1da177e4 1168 if (i2c_readregs(&budget_av->budget.i2c_adap, 0xa0, 0x30, mac, 6)) {
b82a96a7 1169 printk(KERN_ERR "KNC1-%d: Could not read MAC from KNC1 card\n",
fdc53a6d 1170 budget_av->budget.dvb_adapter.num);
1da177e4
LT
1171 memset(mac, 0, 6);
1172 } else {
b82a96a7 1173 printk(KERN_INFO "KNC1-%d: MAC addr = %.2x:%.2x:%.2x:%.2x:%.2x:%.2x\n",
fdc53a6d 1174 budget_av->budget.dvb_adapter.num,
1da177e4
LT
1175 mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
1176 }
1177
fdc53a6d 1178 budget_av->budget.dvb_adapter.priv = budget_av;
1da177e4 1179 frontend_init(budget_av);
c5e768a1 1180 ciintf_init(budget_av);
32e4c3a5
OE
1181
1182 ttpci_budget_init_hooks(&budget_av->budget);
1183
1da177e4
LT
1184 return 0;
1185}
1186
1187#define KNC1_INPUTS 2
1188static struct v4l2_input knc1_inputs[KNC1_INPUTS] = {
1189 {0, "Composite", V4L2_INPUT_TYPE_TUNER, 1, 0, V4L2_STD_PAL_BG | V4L2_STD_NTSC_M, 0},
1190 {1, "S-Video", V4L2_INPUT_TYPE_CAMERA, 2, 0, V4L2_STD_PAL_BG | V4L2_STD_NTSC_M, 0},
1191};
1192
1193static struct saa7146_extension_ioctls ioctls[] = {
1194 {VIDIOC_ENUMINPUT, SAA7146_EXCLUSIVE},
1195 {VIDIOC_G_INPUT, SAA7146_EXCLUSIVE},
1196 {VIDIOC_S_INPUT, SAA7146_EXCLUSIVE},
1197 {0, 0}
1198};
1199
1200static int av_ioctl(struct saa7146_fh *fh, unsigned int cmd, void *arg)
1201{
1202 struct saa7146_dev *dev = fh->dev;
1203 struct budget_av *budget_av = (struct budget_av *) dev->ext_priv;
1204
1205 switch (cmd) {
1206 case VIDIOC_ENUMINPUT:{
1207 struct v4l2_input *i = arg;
1208
1209 dprintk(1, "VIDIOC_ENUMINPUT %d.\n", i->index);
1210 if (i->index < 0 || i->index >= KNC1_INPUTS) {
1211 return -EINVAL;
1212 }
1213 memcpy(i, &knc1_inputs[i->index], sizeof(struct v4l2_input));
1214 return 0;
1215 }
1216 case VIDIOC_G_INPUT:{
1217 int *input = (int *) arg;
1218
1219 *input = budget_av->cur_input;
1220
1221 dprintk(1, "VIDIOC_G_INPUT %d.\n", *input);
1222 return 0;
1223 }
1224 case VIDIOC_S_INPUT:{
1225 int input = *(int *) arg;
1226 dprintk(1, "VIDIOC_S_INPUT %d.\n", input);
1227 return saa7113_setinput(budget_av, input);
1228 }
1229 default:
1230 return -ENOIOCTLCMD;
1231 }
1232 return 0;
1233}
1234
1235static struct saa7146_standard standard[] = {
1236 {.name = "PAL",.id = V4L2_STD_PAL,
1237 .v_offset = 0x17,.v_field = 288,
1238 .h_offset = 0x14,.h_pixels = 680,
1239 .v_max_out = 576,.h_max_out = 768 },
1240
1241 {.name = "NTSC",.id = V4L2_STD_NTSC,
1242 .v_offset = 0x16,.v_field = 240,
1243 .h_offset = 0x06,.h_pixels = 708,
1244 .v_max_out = 480,.h_max_out = 640, },
1245};
1246
1247static struct saa7146_ext_vv vv_data = {
1248 .inputs = 2,
1249 .capabilities = 0, // perhaps later: V4L2_CAP_VBI_CAPTURE, but that need tweaking with the saa7113
1250 .flags = 0,
1251 .stds = &standard[0],
1252 .num_stds = sizeof(standard) / sizeof(struct saa7146_standard),
1253 .ioctls = &ioctls[0],
1254 .ioctl = av_ioctl,
1255};
1256
1257static struct saa7146_extension budget_extension;
1258
1259MAKE_BUDGET_INFO(knc1s, "KNC1 DVB-S", BUDGET_KNC1S);
1260MAKE_BUDGET_INFO(knc1c, "KNC1 DVB-C", BUDGET_KNC1C);
1261MAKE_BUDGET_INFO(knc1t, "KNC1 DVB-T", BUDGET_KNC1T);
f8bf134d 1262MAKE_BUDGET_INFO(kncxs, "KNC TV STAR DVB-S", BUDGET_TVSTAR);
36f4f334 1263MAKE_BUDGET_INFO(satewpls, "Satelco EasyWatch DVB-S light", BUDGET_TVSTAR);
60110ce2 1264MAKE_BUDGET_INFO(satewpls1, "Satelco EasyWatch DVB-S light", BUDGET_KNC1S);
c01d1e48 1265MAKE_BUDGET_INFO(satewplc, "Satelco EasyWatch DVB-C", BUDGET_KNC1CP);
aa323ac8 1266MAKE_BUDGET_INFO(satewcmk3, "Satelco EasyWatch DVB-C MK3", BUDGET_KNC1C_MK3);
2d4f2c2e
JS
1267MAKE_BUDGET_INFO(knc1sp, "KNC1 DVB-S Plus", BUDGET_KNC1SP);
1268MAKE_BUDGET_INFO(knc1cp, "KNC1 DVB-C Plus", BUDGET_KNC1CP);
aa323ac8
HB
1269MAKE_BUDGET_INFO(knc1cmk3, "KNC1 DVB-C MK3", BUDGET_KNC1C_MK3);
1270MAKE_BUDGET_INFO(knc1cpmk3, "KNC1 DVB-C Plus MK3", BUDGET_KNC1CP_MK3);
2d4f2c2e 1271MAKE_BUDGET_INFO(knc1tp, "KNC1 DVB-T Plus", BUDGET_KNC1TP);
1da177e4 1272MAKE_BUDGET_INFO(cin1200s, "TerraTec Cinergy 1200 DVB-S", BUDGET_CIN1200S);
f8bf134d 1273MAKE_BUDGET_INFO(cin1200sn, "TerraTec Cinergy 1200 DVB-S", BUDGET_CIN1200S);
1da177e4 1274MAKE_BUDGET_INFO(cin1200c, "Terratec Cinergy 1200 DVB-C", BUDGET_CIN1200C);
aa323ac8 1275MAKE_BUDGET_INFO(cin1200cmk3, "Terratec Cinergy 1200 DVB-C MK3", BUDGET_CIN1200C_MK3);
1da177e4
LT
1276MAKE_BUDGET_INFO(cin1200t, "Terratec Cinergy 1200 DVB-T", BUDGET_CIN1200T);
1277
1278static struct pci_device_id pci_tbl[] = {
1279 MAKE_EXTENSION_PCI(knc1s, 0x1131, 0x4f56),
2d4f2c2e 1280 MAKE_EXTENSION_PCI(knc1s, 0x1131, 0x0010),
effa791c 1281 MAKE_EXTENSION_PCI(knc1s, 0x1894, 0x0010),
2d4f2c2e 1282 MAKE_EXTENSION_PCI(knc1sp, 0x1131, 0x0011),
4e318bef 1283 MAKE_EXTENSION_PCI(knc1sp, 0x1894, 0x0011),
f8bf134d
RP
1284 MAKE_EXTENSION_PCI(kncxs, 0x1894, 0x0014),
1285 MAKE_EXTENSION_PCI(kncxs, 0x1894, 0x0016),
36f4f334 1286 MAKE_EXTENSION_PCI(satewpls, 0x1894, 0x001e),
60110ce2 1287 MAKE_EXTENSION_PCI(satewpls1, 0x1894, 0x001a),
c01d1e48 1288 MAKE_EXTENSION_PCI(satewplc, 0x1894, 0x002a),
aa323ac8 1289 MAKE_EXTENSION_PCI(satewcmk3, 0x1894, 0x002c),
1da177e4 1290 MAKE_EXTENSION_PCI(knc1c, 0x1894, 0x0020),
2d4f2c2e 1291 MAKE_EXTENSION_PCI(knc1cp, 0x1894, 0x0021),
aa323ac8
HB
1292 MAKE_EXTENSION_PCI(knc1cmk3, 0x1894, 0x0022),
1293 MAKE_EXTENSION_PCI(knc1cpmk3, 0x1894, 0x0023),
1da177e4 1294 MAKE_EXTENSION_PCI(knc1t, 0x1894, 0x0030),
2d4f2c2e 1295 MAKE_EXTENSION_PCI(knc1tp, 0x1894, 0x0031),
1da177e4 1296 MAKE_EXTENSION_PCI(cin1200s, 0x153b, 0x1154),
f8bf134d 1297 MAKE_EXTENSION_PCI(cin1200sn, 0x153b, 0x1155),
1da177e4 1298 MAKE_EXTENSION_PCI(cin1200c, 0x153b, 0x1156),
aa323ac8 1299 MAKE_EXTENSION_PCI(cin1200cmk3, 0x153b, 0x1176),
1da177e4
LT
1300 MAKE_EXTENSION_PCI(cin1200t, 0x153b, 0x1157),
1301 {
1302 .vendor = 0,
1303 }
1304};
1305
1306MODULE_DEVICE_TABLE(pci, pci_tbl);
1307
1308static struct saa7146_extension budget_extension = {
27b05fd2 1309 .name = "budget_av",
00c4cc67 1310 .flags = SAA7146_USE_I2C_IRQ,
69459f3d 1311
1da177e4
LT
1312 .pci_tbl = pci_tbl,
1313
1314 .module = THIS_MODULE,
1315 .attach = budget_av_attach,
1316 .detach = budget_av_detach,
1317
1318 .irq_mask = MASK_10,
1319 .irq_func = budget_av_irq,
1320};
1321
1322static int __init budget_av_init(void)
1323{
1324 return saa7146_register_extension(&budget_extension);
1325}
1326
1327static void __exit budget_av_exit(void)
1328{
1329 saa7146_unregister_extension(&budget_extension);
1330}
1331
1332module_init(budget_av_init);
1333module_exit(budget_av_exit);
1334
1335MODULE_LICENSE("GPL");
1336MODULE_AUTHOR("Ralph Metzler, Marcus Metzler, Michael Hunold, others");
1337MODULE_DESCRIPTION("driver for the SAA7146 based so-called "
1338 "budget PCI DVB w/ analog input and CI-module (e.g. the KNC cards)");
This page took 0.264888 seconds and 5 git commands to generate.