blob: d9907ce8ad4bd8e241c7f7252a0ffe91b0c2ed16 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * device driver for Conexant 2388x based TV cards
4 * MPEG Transport Stream (DVB) routines
5 *
Chris Pascoefc40b262006-01-09 15:25:35 -02006 * (c) 2004, 2005 Chris Pascoe <c.pascoe@itee.uq.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
8 *
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., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/device.h>
27#include <linux/fs.h>
28#include <linux/kthread.h>
29#include <linux/file.h>
30#include <linux/suspend.h>
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "cx88.h"
33#include "dvb-pll.h"
Michael Krufky5e453dc2006-01-09 15:32:31 -020034#include <media/v4l2-common.h>
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070035
Andrew de Quincey1f10c7a2006-08-08 09:10:09 -030036#include "mt352.h"
37#include "mt352_priv.h"
38#ifdef HAVE_VP3054_I2C
39# include "cx88-vp3054-i2c.h"
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070040#endif
Andrew de Quincey1f10c7a2006-08-08 09:10:09 -030041#include "zl10353.h"
42#include "cx22702.h"
43#include "or51132.h"
44#include "lgdt330x.h"
Michael Krufky76db93d2006-11-19 19:45:26 -030045#include "lgh06xf.h"
Andrew de Quincey1f10c7a2006-08-08 09:10:09 -030046#include "nxt200x.h"
47#include "cx24123.h"
Andrew de Quinceycd20ca92006-05-12 20:31:51 -030048#include "isl6421.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50MODULE_DESCRIPTION("driver for cx2388x based DVB cards");
51MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
52MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
53MODULE_LICENSE("GPL");
54
55static unsigned int debug = 0;
56module_param(debug, int, 0644);
57MODULE_PARM_DESC(debug,"enable debug messages [dvb]");
58
59#define dprintk(level,fmt, arg...) if (debug >= level) \
Steven Toth6c5be742006-12-02 21:15:51 -020060 printk(KERN_DEBUG "%s/2-dvb: " fmt, core->name, ## arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/* ------------------------------------------------------------------ */
63
64static int dvb_buf_setup(struct videobuf_queue *q,
65 unsigned int *count, unsigned int *size)
66{
67 struct cx8802_dev *dev = q->priv_data;
68
69 dev->ts_packet_size = 188 * 4;
70 dev->ts_packet_count = 32;
71
72 *size = dev->ts_packet_size * dev->ts_packet_count;
73 *count = 32;
74 return 0;
75}
76
77static int dvb_buf_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
78 enum v4l2_field field)
79{
80 struct cx8802_dev *dev = q->priv_data;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -030081 return cx8802_buf_prepare(q, dev, (struct cx88_buffer*)vb,field);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
84static void dvb_buf_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
85{
86 struct cx8802_dev *dev = q->priv_data;
87 cx8802_buf_queue(dev, (struct cx88_buffer*)vb);
88}
89
90static void dvb_buf_release(struct videobuf_queue *q, struct videobuf_buffer *vb)
91{
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -030092 cx88_free_buffer(q, (struct cx88_buffer*)vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Adrian Bunk408b6642005-05-01 08:59:29 -070095static struct videobuf_queue_ops dvb_qops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 .buf_setup = dvb_buf_setup,
97 .buf_prepare = dvb_buf_prepare,
98 .buf_queue = dvb_buf_queue,
99 .buf_release = dvb_buf_release,
100};
101
102/* ------------------------------------------------------------------ */
Chris Pascoe3d7d0272006-01-09 18:21:31 -0200103static int dvico_fusionhdtv_demod_init(struct dvb_frontend* fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x39 };
106 static u8 reset [] = { RESET, 0x80 };
107 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
108 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
109 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
110 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
111
112 mt352_write(fe, clock_config, sizeof(clock_config));
113 udelay(200);
114 mt352_write(fe, reset, sizeof(reset));
115 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
116
117 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
118 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
119 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
120 return 0;
121}
122
Chris Pascoe43eabb42006-01-09 18:21:28 -0200123static int dvico_dual_demod_init(struct dvb_frontend *fe)
124{
125 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x38 };
126 static u8 reset [] = { RESET, 0x80 };
127 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
128 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
129 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
130 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
131
132 mt352_write(fe, clock_config, sizeof(clock_config));
133 udelay(200);
134 mt352_write(fe, reset, sizeof(reset));
135 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
136
137 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
138 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
139 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
140
141 return 0;
142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static int dntv_live_dvbt_demod_init(struct dvb_frontend* fe)
145{
146 static u8 clock_config [] = { 0x89, 0x38, 0x39 };
147 static u8 reset [] = { 0x50, 0x80 };
148 static u8 adc_ctl_1_cfg [] = { 0x8E, 0x40 };
149 static u8 agc_cfg [] = { 0x67, 0x10, 0x23, 0x00, 0xFF, 0xFF,
Mauro Carvalho Chehabf2421ca2005-11-08 21:37:45 -0800150 0x00, 0xFF, 0x00, 0x40, 0x40 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 static u8 dntv_extra[] = { 0xB5, 0x7A };
152 static u8 capt_range_cfg[] = { 0x75, 0x32 };
153
154 mt352_write(fe, clock_config, sizeof(clock_config));
155 udelay(2000);
156 mt352_write(fe, reset, sizeof(reset));
157 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
158
159 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
160 udelay(2000);
161 mt352_write(fe, dntv_extra, sizeof(dntv_extra));
162 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
163
164 return 0;
165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static struct mt352_config dvico_fusionhdtv = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300168 .demod_address = 0x0f,
Chris Pascoe3d7d0272006-01-09 18:21:31 -0200169 .demod_init = dvico_fusionhdtv_demod_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170};
171
172static struct mt352_config dntv_live_dvbt_config = {
173 .demod_address = 0x0f,
174 .demod_init = dntv_live_dvbt_demod_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175};
Chris Pascoefc40b262006-01-09 15:25:35 -0200176
Chris Pascoe43eabb42006-01-09 18:21:28 -0200177static struct mt352_config dvico_fusionhdtv_dual = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300178 .demod_address = 0x0f,
Chris Pascoe43eabb42006-01-09 18:21:28 -0200179 .demod_init = dvico_dual_demod_init,
Chris Pascoe43eabb42006-01-09 18:21:28 -0200180};
181
Chris Pascoefc40b262006-01-09 15:25:35 -0200182#ifdef HAVE_VP3054_I2C
Chris Pascoe3d7d0272006-01-09 18:21:31 -0200183static int dntv_live_dvbt_pro_demod_init(struct dvb_frontend* fe)
184{
185 static u8 clock_config [] = { 0x89, 0x38, 0x38 };
186 static u8 reset [] = { 0x50, 0x80 };
187 static u8 adc_ctl_1_cfg [] = { 0x8E, 0x40 };
188 static u8 agc_cfg [] = { 0x67, 0x10, 0x20, 0x00, 0xFF, 0xFF,
189 0x00, 0xFF, 0x00, 0x40, 0x40 };
190 static u8 dntv_extra[] = { 0xB5, 0x7A };
191 static u8 capt_range_cfg[] = { 0x75, 0x32 };
192
193 mt352_write(fe, clock_config, sizeof(clock_config));
194 udelay(2000);
195 mt352_write(fe, reset, sizeof(reset));
196 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
197
198 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
199 udelay(2000);
200 mt352_write(fe, dntv_extra, sizeof(dntv_extra));
201 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
202
203 return 0;
204}
205
Chris Pascoefc40b262006-01-09 15:25:35 -0200206static int philips_fmd1216_pll_init(struct dvb_frontend *fe)
207{
208 struct cx8802_dev *dev= fe->dvb->priv;
209
210 /* this message is to set up ATC and ALC */
211 static u8 fmd1216_init[] = { 0x0b, 0xdc, 0x9c, 0xa0 };
212 struct i2c_msg msg =
213 { .addr = dev->core->pll_addr, .flags = 0,
214 .buf = fmd1216_init, .len = sizeof(fmd1216_init) };
215 int err;
216
Patrick Boettcherdea74862006-05-14 05:01:31 -0300217 if (fe->ops.i2c_gate_ctrl)
218 fe->ops.i2c_gate_ctrl(fe, 1);
Chris Pascoefc40b262006-01-09 15:25:35 -0200219 if ((err = i2c_transfer(&dev->core->i2c_adap, &msg, 1)) != 1) {
220 if (err < 0)
221 return err;
222 else
223 return -EREMOTEIO;
224 }
225
226 return 0;
227}
228
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300229static int dntv_live_dvbt_pro_tuner_set_params(struct dvb_frontend* fe,
230 struct dvb_frontend_parameters* params)
Chris Pascoefc40b262006-01-09 15:25:35 -0200231{
232 struct cx8802_dev *dev= fe->dvb->priv;
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300233 u8 buf[4];
Chris Pascoefc40b262006-01-09 15:25:35 -0200234 struct i2c_msg msg =
235 { .addr = dev->core->pll_addr, .flags = 0,
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300236 .buf = buf, .len = 4 };
Chris Pascoefc40b262006-01-09 15:25:35 -0200237 int err;
238
239 /* Switch PLL to DVB mode */
240 err = philips_fmd1216_pll_init(fe);
241 if (err)
242 return err;
243
244 /* Tune PLL */
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300245 dvb_pll_configure(dev->core->pll_desc, buf,
Chris Pascoefc40b262006-01-09 15:25:35 -0200246 params->frequency,
247 params->u.ofdm.bandwidth);
Patrick Boettcherdea74862006-05-14 05:01:31 -0300248 if (fe->ops.i2c_gate_ctrl)
249 fe->ops.i2c_gate_ctrl(fe, 1);
Chris Pascoefc40b262006-01-09 15:25:35 -0200250 if ((err = i2c_transfer(&dev->core->i2c_adap, &msg, 1)) != 1) {
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300251
Chris Pascoefc40b262006-01-09 15:25:35 -0200252 printk(KERN_WARNING "cx88-dvb: %s error "
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300253 "(addr %02x <- %02x, err = %i)\n",
254 __FUNCTION__, dev->core->pll_addr, buf[0], err);
Chris Pascoefc40b262006-01-09 15:25:35 -0200255 if (err < 0)
256 return err;
257 else
258 return -EREMOTEIO;
259 }
260
261 return 0;
262}
263
264static struct mt352_config dntv_live_dvbt_pro_config = {
265 .demod_address = 0x0f,
266 .no_tuner = 1,
Chris Pascoe3d7d0272006-01-09 18:21:31 -0200267 .demod_init = dntv_live_dvbt_pro_demod_init,
Chris Pascoefc40b262006-01-09 15:25:35 -0200268};
269#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Chris Pascoe780dfef2006-02-28 08:34:59 -0300271static struct zl10353_config dvico_fusionhdtv_hybrid = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300272 .demod_address = 0x0f,
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300273 .no_tuner = 1,
Chris Pascoe780dfef2006-02-28 08:34:59 -0300274};
275
276static struct zl10353_config dvico_fusionhdtv_plus_v1_1 = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300277 .demod_address = 0x0f,
Chris Pascoe780dfef2006-02-28 08:34:59 -0300278};
Chris Pascoe780dfef2006-02-28 08:34:59 -0300279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static struct cx22702_config connexant_refboard_config = {
281 .demod_address = 0x43,
Patrick Boettcher38d84c32005-07-15 12:20:26 -0700282 .output_mode = CX22702_SERIAL_OUTPUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283};
284
Michael Krufkyed355262006-12-05 01:34:56 -0300285static struct cx22702_config hauppauge_hvr_config = {
Steven Tothaa481a62006-09-14 15:41:13 -0300286 .demod_address = 0x63,
287 .output_mode = CX22702_SERIAL_OUTPUT,
288};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Steven Toth6c5be742006-12-02 21:15:51 -0200290static int cx88_dvb_bus_ctrl(struct dvb_frontend* fe,
291 int acquire)
292{
293 struct cx8802_dev *dev= fe->dvb->priv;
294 struct cx8802_driver *drv = NULL;
295 int ret = 0;
296
297 drv = cx8802_get_driver(dev, CX88_MPEG_DVB);
298 if (drv) {
299 if(acquire)
300 ret = drv->request_acquire(drv);
301 else
302 ret = drv->request_release(drv);
303 }
304
305 return ret;
306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308static int or51132_set_ts_param(struct dvb_frontend* fe,
309 int is_punctured)
310{
311 struct cx8802_dev *dev= fe->dvb->priv;
312 dev->ts_gen_cntrl = is_punctured ? 0x04 : 0x00;
313 return 0;
314}
315
Adrian Bunk408b6642005-05-01 08:59:29 -0700316static struct or51132_config pchdtv_hd3000 = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300317 .demod_address = 0x15,
318 .set_ts_params = or51132_set_ts_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Michael Krufky6ddcc912005-07-27 11:46:00 -0700321static int lgdt330x_pll_rf_set(struct dvb_frontend* fe, int index)
Michael Krufky0ccef6d2005-07-27 11:45:55 -0700322{
323 struct cx8802_dev *dev= fe->dvb->priv;
324 struct cx88_core *core = dev->core;
325
326 dprintk(1, "%s: index = %d\n", __FUNCTION__, index);
327 if (index == 0)
328 cx_clear(MO_GP0_IO, 8);
329 else
330 cx_set(MO_GP0_IO, 8);
331 return 0;
332}
333
Michael Krufky6ddcc912005-07-27 11:46:00 -0700334static int lgdt330x_set_ts_param(struct dvb_frontend* fe, int is_punctured)
Michael Krufkyf1798492005-07-07 17:58:39 -0700335{
336 struct cx8802_dev *dev= fe->dvb->priv;
337 if (is_punctured)
338 dev->ts_gen_cntrl |= 0x04;
339 else
340 dev->ts_gen_cntrl &= ~0x04;
341 return 0;
342}
343
Michael Krufky6ddcc912005-07-27 11:46:00 -0700344static struct lgdt330x_config fusionhdtv_3_gold = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300345 .demod_address = 0x0e,
346 .demod_chip = LGDT3302,
347 .serial_mpeg = 0x04, /* TPSERIAL for 3302 in TOP_CONTROL */
348 .set_ts_params = lgdt330x_set_ts_param,
Michael Krufky0d723c02005-07-07 17:58:42 -0700349};
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700350
351static struct lgdt330x_config fusionhdtv_5_gold = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300352 .demod_address = 0x0e,
353 .demod_chip = LGDT3303,
354 .serial_mpeg = 0x40, /* TPSERIAL for 3303 in TOP_CONTROL */
355 .set_ts_params = lgdt330x_set_ts_param,
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700356};
Rusty Scottda215d22006-04-07 02:21:31 -0300357
358static struct lgdt330x_config pchdtv_hd5500 = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300359 .demod_address = 0x59,
360 .demod_chip = LGDT3303,
361 .serial_mpeg = 0x40, /* TPSERIAL for 3303 in TOP_CONTROL */
362 .set_ts_params = lgdt330x_set_ts_param,
Rusty Scottda215d22006-04-07 02:21:31 -0300363};
Michael Krufkyf1798492005-07-07 17:58:39 -0700364
Kirk Laprayfde6d312005-11-08 21:38:18 -0800365static int nxt200x_set_ts_param(struct dvb_frontend* fe,
366 int is_punctured)
367{
368 struct cx8802_dev *dev= fe->dvb->priv;
369 dev->ts_gen_cntrl = is_punctured ? 0x04 : 0x00;
370 return 0;
371}
372
Kirk Laprayd4c34aa2005-11-08 21:38:40 -0800373static int nxt200x_set_pll_input(u8* buf, int input)
374{
375 if (input)
376 buf[3] |= 0x08;
377 else
378 buf[3] &= ~0x08;
379 return 0;
380}
381
Kirk Laprayfde6d312005-11-08 21:38:18 -0800382static struct nxt200x_config ati_hdtvwonder = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300383 .demod_address = 0x0a,
384 .set_pll_input = nxt200x_set_pll_input,
385 .set_ts_params = nxt200x_set_ts_param,
Kirk Laprayfde6d312005-11-08 21:38:18 -0800386};
Kirk Laprayfde6d312005-11-08 21:38:18 -0800387
Steven Toth0fa14aa2006-01-09 15:25:02 -0200388static int cx24123_set_ts_param(struct dvb_frontend* fe,
389 int is_punctured)
390{
391 struct cx8802_dev *dev= fe->dvb->priv;
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300392 dev->ts_gen_cntrl = 0x02;
Steven Toth0fa14aa2006-01-09 15:25:02 -0200393 return 0;
394}
395
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300396static int kworld_dvbs_100_set_voltage(struct dvb_frontend* fe,
397 fe_sec_voltage_t voltage)
Vadim Catana0e0351e2006-01-09 15:25:02 -0200398{
399 struct cx8802_dev *dev= fe->dvb->priv;
400 struct cx88_core *core = dev->core;
401
Andrew de Quinceycd20ca92006-05-12 20:31:51 -0300402 if (voltage == SEC_VOLTAGE_OFF) {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300403 cx_write(MO_GP0_IO, 0x000006fb);
Andrew de Quinceycd20ca92006-05-12 20:31:51 -0300404 } else {
405 cx_write(MO_GP0_IO, 0x000006f9);
406 }
407
408 if (core->prev_set_voltage)
409 return core->prev_set_voltage(fe, voltage);
410 return 0;
Vadim Catana0e0351e2006-01-09 15:25:02 -0200411}
412
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300413static int geniatech_dvbs_set_voltage(struct dvb_frontend *fe,
414 fe_sec_voltage_t voltage)
Saqeb Akhterc02a34f2006-06-29 20:29:33 -0300415{
416 struct cx8802_dev *dev= fe->dvb->priv;
417 struct cx88_core *core = dev->core;
418
419 if (voltage == SEC_VOLTAGE_OFF) {
420 dprintk(1,"LNB Voltage OFF\n");
421 cx_write(MO_GP0_IO, 0x0000efff);
422 }
423
424 if (core->prev_set_voltage)
425 return core->prev_set_voltage(fe, voltage);
426 return 0;
427}
428
429static struct cx24123_config geniatech_dvbs_config = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300430 .demod_address = 0x55,
431 .set_ts_params = cx24123_set_ts_param,
Saqeb Akhterc02a34f2006-06-29 20:29:33 -0300432};
433
Steven Toth0fa14aa2006-01-09 15:25:02 -0200434static struct cx24123_config hauppauge_novas_config = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300435 .demod_address = 0x55,
436 .set_ts_params = cx24123_set_ts_param,
Vadim Catana0e0351e2006-01-09 15:25:02 -0200437};
438
439static struct cx24123_config kworld_dvbs_100_config = {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300440 .demod_address = 0x15,
441 .set_ts_params = cx24123_set_ts_param,
Yeasah Pellef768562006-09-26 12:30:14 -0300442 .lnb_polarity = 1,
Steven Toth0fa14aa2006-01-09 15:25:02 -0200443};
Steven Toth0fa14aa2006-01-09 15:25:02 -0200444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445static int dvb_register(struct cx8802_dev *dev)
446{
447 /* init struct videobuf_dvb */
448 dev->dvb.name = dev->core->name;
449 dev->ts_gen_cntrl = 0x0c;
450
451 /* init frontend */
452 switch (dev->core->board) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300454 dev->dvb.frontend = dvb_attach(cx22702_attach,
Michael Krufkyed355262006-12-05 01:34:56 -0300455 &connexant_refboard_config,
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300456 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300457 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300458 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300459 &dev->core->i2c_adap,
460 &dvb_pll_thomson_dtt759x);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 break;
Michael Krufkye057ee12005-07-07 17:58:40 -0700463 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 case CX88_BOARD_CONEXANT_DVB_T1:
Manenti Marcof39624f2006-01-09 15:32:45 -0200465 case CX88_BOARD_KWORLD_DVB_T_CX22702:
David Shirley2b5200a2005-11-08 21:37:22 -0800466 case CX88_BOARD_WINFAST_DTV1000:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300467 dev->dvb.frontend = dvb_attach(cx22702_attach,
468 &connexant_refboard_config,
469 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300470 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300471 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x60,
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300472 &dev->core->i2c_adap,
473 &dvb_pll_thomson_dtt7579);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 break;
Malcolm Valentine4bd6e9d2006-05-29 13:51:59 -0300476 case CX88_BOARD_WINFAST_DTV2000H:
Steven Toth611900c2006-01-09 15:25:12 -0200477 case CX88_BOARD_HAUPPAUGE_HVR1100:
478 case CX88_BOARD_HAUPPAUGE_HVR1100LP:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300479 dev->dvb.frontend = dvb_attach(cx22702_attach,
Michael Krufkyed355262006-12-05 01:34:56 -0300480 &hauppauge_hvr_config,
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300481 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300482 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300483 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300484 &dev->core->i2c_adap,
485 &dvb_pll_fmd1216me);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300486 }
Steven Toth611900c2006-01-09 15:25:12 -0200487 break;
Chris Pascoe780dfef2006-02-28 08:34:59 -0300488 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300489 dev->dvb.frontend = dvb_attach(mt352_attach,
490 &dvico_fusionhdtv,
491 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300492 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300493 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x60,
Chris Pascoec162dff2006-08-08 15:48:08 -0300494 NULL, &dvb_pll_thomson_dtt7579);
Chris Pascoe780dfef2006-02-28 08:34:59 -0300495 break;
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300496 }
Chris Pascoe780dfef2006-02-28 08:34:59 -0300497 /* ZL10353 replaces MT352 on later cards */
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300498 dev->dvb.frontend = dvb_attach(zl10353_attach,
499 &dvico_fusionhdtv_plus_v1_1,
500 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300501 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300502 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x60,
Chris Pascoec162dff2006-08-08 15:48:08 -0300503 NULL, &dvb_pll_thomson_dtt7579);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300504 }
Chris Pascoe780dfef2006-02-28 08:34:59 -0300505 break;
Michael Krufkyc2af3cd2006-06-12 14:06:22 -0300506 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL:
Michael Krufkyc2af3cd2006-06-12 14:06:22 -0300507 /* The tin box says DEE1601, but it seems to be DTT7579
508 * compatible, with a slightly different MT352 AGC gain. */
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300509 dev->dvb.frontend = dvb_attach(mt352_attach,
510 &dvico_fusionhdtv_dual,
511 &dev->core->i2c_adap);
Michael Krufkyc2af3cd2006-06-12 14:06:22 -0300512 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300513 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
Chris Pascoec162dff2006-08-08 15:48:08 -0300514 NULL, &dvb_pll_thomson_dtt7579);
Michael Krufkyc2af3cd2006-06-12 14:06:22 -0300515 break;
516 }
Michael Krufkyc2af3cd2006-06-12 14:06:22 -0300517 /* ZL10353 replaces MT352 on later cards */
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300518 dev->dvb.frontend = dvb_attach(zl10353_attach,
519 &dvico_fusionhdtv_plus_v1_1,
520 &dev->core->i2c_adap);
Michael Krufkyc2af3cd2006-06-12 14:06:22 -0300521 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300522 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
Chris Pascoec162dff2006-08-08 15:48:08 -0300523 NULL, &dvb_pll_thomson_dtt7579);
Michael Krufkyc2af3cd2006-06-12 14:06:22 -0300524 }
Michael Krufkyc2af3cd2006-06-12 14:06:22 -0300525 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300527 dev->dvb.frontend = dvb_attach(mt352_attach,
528 &dvico_fusionhdtv,
529 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300530 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300531 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
Chris Pascoec162dff2006-08-08 15:48:08 -0300532 NULL, &dvb_pll_lg_z201);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 case CX88_BOARD_KWORLD_DVB_T:
536 case CX88_BOARD_DNTV_LIVE_DVB_T:
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700537 case CX88_BOARD_ADSTECH_DVB_T_PCI:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300538 dev->dvb.frontend = dvb_attach(mt352_attach,
539 &dntv_live_dvbt_config,
540 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300541 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300542 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
Chris Pascoec162dff2006-08-08 15:48:08 -0300543 NULL, &dvb_pll_unknown_1);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 break;
Chris Pascoefc40b262006-01-09 15:25:35 -0200546 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
547#ifdef HAVE_VP3054_I2C
548 dev->core->pll_addr = 0x61;
549 dev->core->pll_desc = &dvb_pll_fmd1216me;
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300550 dev->dvb.frontend = dvb_attach(mt352_attach, &dntv_live_dvbt_pro_config,
Chris Pascoefc40b262006-01-09 15:25:35 -0200551 &((struct vp3054_i2c_state *)dev->card_priv)->adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300552 if (dev->dvb.frontend != NULL) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300553 dev->dvb.frontend->ops.tuner_ops.set_params = dntv_live_dvbt_pro_tuner_set_params;
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300554 }
Chris Pascoefc40b262006-01-09 15:25:35 -0200555#else
556 printk("%s: built without vp3054 support\n", dev->core->name);
557#endif
558 break;
Chris Pascoe780dfef2006-02-28 08:34:59 -0300559 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300560 dev->dvb.frontend = dvb_attach(zl10353_attach,
561 &dvico_fusionhdtv_hybrid,
562 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300563 if (dev->dvb.frontend != NULL) {
Michael Krufky5786a342006-12-05 01:21:19 -0300564 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
565 &dev->core->i2c_adap,
566 &dvb_pll_thomson_fe6600);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300567 }
Chris Pascoe780dfef2006-02-28 08:34:59 -0300568 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 case CX88_BOARD_PCHDTV_HD3000:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300570 dev->dvb.frontend = dvb_attach(or51132_attach,
571 &pchdtv_hd3000,
572 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300573 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300574 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300575 &dev->core->i2c_adap,
576 &dvb_pll_thomson_dtt761x);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 break;
Michael Krufkyf1798492005-07-07 17:58:39 -0700579 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q:
580 dev->ts_gen_cntrl = 0x08;
581 {
582 /* Do a hardware reset of chip before using it. */
583 struct cx88_core *core = dev->core;
584
585 cx_clear(MO_GP0_IO, 1);
586 mdelay(100);
Michael Krufky0ccef6d2005-07-27 11:45:55 -0700587 cx_set(MO_GP0_IO, 1);
Michael Krufkyf1798492005-07-07 17:58:39 -0700588 mdelay(200);
Michael Krufky0ccef6d2005-07-27 11:45:55 -0700589
590 /* Select RF connector callback */
Michael Krufky6ddcc912005-07-27 11:46:00 -0700591 fusionhdtv_3_gold.pll_rf_set = lgdt330x_pll_rf_set;
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300592 dev->dvb.frontend = dvb_attach(lgdt330x_attach,
593 &fusionhdtv_3_gold,
594 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300595 if (dev->dvb.frontend != NULL) {
Michael Krufky1d4bb7d2006-12-05 01:01:39 -0300596 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
597 &dev->core->i2c_adap,
598 &dvb_pll_microtune_4042);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300599 }
Michael Krufkyf1798492005-07-07 17:58:39 -0700600 }
601 break;
Michael Krufky0d723c02005-07-07 17:58:42 -0700602 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T:
603 dev->ts_gen_cntrl = 0x08;
604 {
605 /* Do a hardware reset of chip before using it. */
606 struct cx88_core *core = dev->core;
607
608 cx_clear(MO_GP0_IO, 1);
609 mdelay(100);
Michael Krufkyd9758722005-07-27 11:45:56 -0700610 cx_set(MO_GP0_IO, 9);
Michael Krufky0d723c02005-07-07 17:58:42 -0700611 mdelay(200);
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300612 dev->dvb.frontend = dvb_attach(lgdt330x_attach,
613 &fusionhdtv_3_gold,
614 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300615 if (dev->dvb.frontend != NULL) {
Michael Krufky1d4bb7d2006-12-05 01:01:39 -0300616 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
617 &dev->core->i2c_adap,
618 &dvb_pll_thomson_dtt761x);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300619 }
Michael Krufky0d723c02005-07-07 17:58:42 -0700620 }
621 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700622 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
623 dev->ts_gen_cntrl = 0x08;
624 {
625 /* Do a hardware reset of chip before using it. */
626 struct cx88_core *core = dev->core;
627
628 cx_clear(MO_GP0_IO, 1);
629 mdelay(100);
630 cx_set(MO_GP0_IO, 1);
631 mdelay(200);
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300632 dev->dvb.frontend = dvb_attach(lgdt330x_attach,
633 &fusionhdtv_5_gold,
634 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300635 if (dev->dvb.frontend != NULL) {
Michael Krufky76db93d2006-11-19 19:45:26 -0300636 dvb_attach(lgh06xf_attach, dev->dvb.frontend,
637 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300638 }
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700639 }
640 break;
Rusty Scottda215d22006-04-07 02:21:31 -0300641 case CX88_BOARD_PCHDTV_HD5500:
642 dev->ts_gen_cntrl = 0x08;
643 {
644 /* Do a hardware reset of chip before using it. */
645 struct cx88_core *core = dev->core;
646
647 cx_clear(MO_GP0_IO, 1);
648 mdelay(100);
649 cx_set(MO_GP0_IO, 1);
650 mdelay(200);
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300651 dev->dvb.frontend = dvb_attach(lgdt330x_attach,
652 &pchdtv_hd5500,
653 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300654 if (dev->dvb.frontend != NULL) {
Michael Krufky76db93d2006-11-19 19:45:26 -0300655 dvb_attach(lgh06xf_attach, dev->dvb.frontend,
656 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300657 }
Rusty Scottda215d22006-04-07 02:21:31 -0300658 }
659 break;
Kirk Laprayfde6d312005-11-08 21:38:18 -0800660 case CX88_BOARD_ATI_HDTVWONDER:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300661 dev->dvb.frontend = dvb_attach(nxt200x_attach,
662 &ati_hdtvwonder,
663 &dev->core->i2c_adap);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300664 if (dev->dvb.frontend != NULL) {
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300665 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
Michael Krufky4ad8eee52006-08-08 15:48:08 -0300666 NULL, &dvb_pll_tuv1236d);
Andrew de Quinceyf54376e2006-04-18 17:56:10 -0300667 }
Kirk Laprayfde6d312005-11-08 21:38:18 -0800668 break;
Steven Toth0fa14aa2006-01-09 15:25:02 -0200669 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
670 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300671 dev->dvb.frontend = dvb_attach(cx24123_attach,
672 &hauppauge_novas_config,
673 &dev->core->i2c_adap);
Andrew de Quinceycd20ca92006-05-12 20:31:51 -0300674 if (dev->dvb.frontend) {
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300675 dvb_attach(isl6421_attach, dev->dvb.frontend,
676 &dev->core->i2c_adap, 0x08, 0x00, 0x00);
Andrew de Quinceycd20ca92006-05-12 20:31:51 -0300677 }
Steven Toth0fa14aa2006-01-09 15:25:02 -0200678 break;
Vadim Catana0e0351e2006-01-09 15:25:02 -0200679 case CX88_BOARD_KWORLD_DVBS_100:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300680 dev->dvb.frontend = dvb_attach(cx24123_attach,
681 &kworld_dvbs_100_config,
682 &dev->core->i2c_adap);
Andrew de Quinceycd20ca92006-05-12 20:31:51 -0300683 if (dev->dvb.frontend) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300684 dev->core->prev_set_voltage = dev->dvb.frontend->ops.set_voltage;
685 dev->dvb.frontend->ops.set_voltage = kworld_dvbs_100_set_voltage;
Andrew de Quinceycd20ca92006-05-12 20:31:51 -0300686 }
Vadim Catana0e0351e2006-01-09 15:25:02 -0200687 break;
Saqeb Akhterc02a34f2006-06-29 20:29:33 -0300688 case CX88_BOARD_GENIATECH_DVBS:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300689 dev->dvb.frontend = dvb_attach(cx24123_attach,
690 &geniatech_dvbs_config,
691 &dev->core->i2c_adap);
Saqeb Akhterc02a34f2006-06-29 20:29:33 -0300692 if (dev->dvb.frontend) {
693 dev->core->prev_set_voltage = dev->dvb.frontend->ops.set_voltage;
694 dev->dvb.frontend->ops.set_voltage = geniatech_dvbs_set_voltage;
695 }
696 break;
Steven Toth6c5be742006-12-02 21:15:51 -0200697 case CX88_BOARD_HAUPPAUGE_HVR1300:
698 dev->dvb.frontend = dvb_attach(cx22702_attach,
Michael Krufkyed355262006-12-05 01:34:56 -0300699 &hauppauge_hvr_config,
Steven Toth6c5be742006-12-02 21:15:51 -0200700 &dev->core->i2c_adap);
701 if (dev->dvb.frontend != NULL) {
702 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
703 &dev->core->i2c_adap,
704 &dvb_pll_fmd1216me);
705 }
706 break;
707 case CX88_BOARD_HAUPPAUGE_HVR3000:
708 dev->dvb.frontend = dvb_attach(cx22702_attach,
Michael Krufkyed355262006-12-05 01:34:56 -0300709 &hauppauge_hvr_config,
Steven Toth6c5be742006-12-02 21:15:51 -0200710 &dev->core->i2c_adap);
711 if (dev->dvb.frontend != NULL) {
712 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
713 &dev->core->i2c_adap,
714 &dvb_pll_fmd1216me);
715 }
716 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 default:
Gerd Knorr1622c3f2005-05-01 08:59:19 -0700718 printk("%s: The frontend of your DVB/ATSC card isn't supported yet\n",
719 dev->core->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 break;
721 }
722 if (NULL == dev->dvb.frontend) {
723 printk("%s: frontend initialization failed\n",dev->core->name);
724 return -1;
725 }
726
727 if (dev->core->pll_desc) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300728 dev->dvb.frontend->ops.info.frequency_min = dev->core->pll_desc->min;
729 dev->dvb.frontend->ops.info.frequency_max = dev->core->pll_desc->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
Steven Toth6c5be742006-12-02 21:15:51 -0200731 /* Ensure all frontends negotiate bus access */
732 dev->dvb.frontend->ops.ts_bus_ctrl = cx88_dvb_bus_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Mauro Carvalho Chehab93352f52005-09-13 01:25:42 -0700734 /* Put the analog decoder in standby to keep it quiet */
735 cx88_call_i2c_clients (dev->core, TUNER_SET_STANDBY, NULL);
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 /* register everything */
Andrew de Quinceyd09dbf92006-04-10 09:27:37 -0300738 return videobuf_dvb_register(&dev->dvb, THIS_MODULE, dev, &dev->pci->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
741/* ----------------------------------------------------------- */
742
Steven Toth6c5be742006-12-02 21:15:51 -0200743/* CX8802 MPEG -> mini driver - We have been given the hardware */
744static int cx8802_dvb_advise_acquire(struct cx8802_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Steven Toth6c5be742006-12-02 21:15:51 -0200746 struct cx88_core *core = drv->core;
747 int err = 0;
748 dprintk( 1, "%s\n", __FUNCTION__);
749
750 switch (core->board) {
751 case CX88_BOARD_HAUPPAUGE_HVR1300:
752 /* We arrive here with either the cx23416 or the cx22702
753 * on the bus. Take the bus from the cx23416 and enable the
754 * cx22702 demod
755 */
756 cx_set(MO_GP0_IO, 0x00000080); /* cx22702 out of reset and enable */
757 cx_clear(MO_GP0_IO, 0x00000004);
758 udelay(1000);
759 break;
760 default:
761 err = -ENODEV;
762 }
763 return err;
764}
765
766/* CX8802 MPEG -> mini driver - We no longer have the hardware */
767static int cx8802_dvb_advise_release(struct cx8802_driver *drv)
768{
769 struct cx88_core *core = drv->core;
770 int err = 0;
771 dprintk( 1, "%s\n", __FUNCTION__);
772
773 switch (core->board) {
774 case CX88_BOARD_HAUPPAUGE_HVR1300:
775 /* Do Nothing, leave the cx22702 on the bus. */
776 break;
777 default:
778 err = -ENODEV;
779 }
780 return err;
781}
782
783static int cx8802_dvb_probe(struct cx8802_driver *drv)
784{
785 struct cx88_core *core = drv->core;
786 struct cx8802_dev *dev = drv->core->dvbdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 int err;
788
Steven Toth6c5be742006-12-02 21:15:51 -0200789 dprintk( 1, "%s\n", __FUNCTION__);
790 dprintk( 1, " ->being probed by Card=%d Name=%s, PCI %02x:%02x\n",
791 core->board,
792 core->name,
793 core->pci_bus,
794 core->pci_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 err = -ENODEV;
Michael Krufky48d5e802006-09-25 14:09:10 -0300797 if (!(cx88_boards[core->board].mpeg & CX88_MPEG_DVB))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 goto fail_core;
799
Chris Pascoefc40b262006-01-09 15:25:35 -0200800#ifdef HAVE_VP3054_I2C
801 err = vp3054_i2c_probe(dev);
802 if (0 != err)
Steven Toth6c5be742006-12-02 21:15:51 -0200803 goto fail_core;
Chris Pascoefc40b262006-01-09 15:25:35 -0200804#endif
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* dvb stuff */
807 printk("%s/2: cx2388x based dvb card\n", core->name);
808 videobuf_queue_init(&dev->dvb.dvbq, &dvb_qops,
809 dev->pci, &dev->slock,
810 V4L2_BUF_TYPE_VIDEO_CAPTURE,
811 V4L2_FIELD_TOP,
812 sizeof(struct cx88_buffer),
813 dev);
814 err = dvb_register(dev);
Steven Toth6c5be742006-12-02 21:15:51 -0200815 if (err != 0)
816 printk("%s dvb_register failed err = %d\n", __FUNCTION__, err);
Steven Toth611900c2006-01-09 15:25:12 -0200817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 fail_core:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return err;
820}
821
Steven Toth6c5be742006-12-02 21:15:51 -0200822static int cx8802_dvb_remove(struct cx8802_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Steven Toth6c5be742006-12-02 21:15:51 -0200824 struct cx8802_dev *dev = drv->core->dvbdev;
Steven Toth611900c2006-01-09 15:25:12 -0200825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 /* dvb */
827 videobuf_dvb_unregister(&dev->dvb);
828
Chris Pascoefc40b262006-01-09 15:25:35 -0200829#ifdef HAVE_VP3054_I2C
830 vp3054_i2c_remove(dev);
831#endif
832
Steven Toth6c5be742006-12-02 21:15:51 -0200833 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Steven Toth6c5be742006-12-02 21:15:51 -0200836static struct cx8802_driver cx8802_dvb_driver = {
837 .type_id = CX88_MPEG_DVB,
838 .hw_access = CX8802_DRVCTL_SHARED,
839 .probe = cx8802_dvb_probe,
840 .remove = cx8802_dvb_remove,
841 .advise_acquire = cx8802_dvb_advise_acquire,
842 .advise_release = cx8802_dvb_advise_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843};
844
845static int dvb_init(void)
846{
847 printk(KERN_INFO "cx2388x dvb driver version %d.%d.%d loaded\n",
848 (CX88_VERSION_CODE >> 16) & 0xff,
849 (CX88_VERSION_CODE >> 8) & 0xff,
850 CX88_VERSION_CODE & 0xff);
851#ifdef SNAPSHOT
852 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
853 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
854#endif
Steven Toth6c5be742006-12-02 21:15:51 -0200855 return cx8802_register_driver(&cx8802_dvb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
858static void dvb_fini(void)
859{
Steven Toth6c5be742006-12-02 21:15:51 -0200860 cx8802_unregister_driver(&cx8802_dvb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
863module_init(dvb_init);
864module_exit(dvb_fini);
865
866/*
867 * Local variables:
868 * c-basic-offset: 8
869 * compile-command: "make DVB=1"
870 * End:
871 */