blob: 1dc070da8652b8bcc5fdca72cfae39760944fe65 [file] [log] [blame]
Steven Tothd19770e2007-03-11 20:44:05 -03001/*
2 * Driver for the Conexant CX23885 PCIe bridge
3 *
Steven Toth6d897612008-09-03 17:12:12 -03004 * Copyright (c) 2006 Steven Toth <stoth@linuxtv.org>
Steven Tothd19770e2007-03-11 20:44:05 -03005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 *
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include <linux/module.h>
23#include <linux/init.h>
24#include <linux/device.h>
25#include <linux/fs.h>
26#include <linux/kthread.h>
27#include <linux/file.h>
28#include <linux/suspend.h>
29
30#include "cx23885.h"
Steven Tothd19770e2007-03-11 20:44:05 -030031#include <media/v4l2-common.h>
32
Igor M. Liplianin5a23b072009-03-03 12:06:09 -030033#include "dvb_ca_en50221.h"
Steven Tothd19770e2007-03-11 20:44:05 -030034#include "s5h1409.h"
Michael Krufky52b50452008-07-09 02:18:49 -030035#include "s5h1411.h"
Steven Tothd19770e2007-03-11 20:44:05 -030036#include "mt2131.h"
Michael Krufky3ba71d22007-12-07 01:40:36 -030037#include "tda8290.h"
Michael Krufky4041f1a2007-12-24 04:52:08 -030038#include "tda18271.h"
Michael Krufky9bc37ca2007-09-08 15:17:13 -030039#include "lgdt330x.h"
Steven Tothd1987d52007-12-18 01:57:06 -030040#include "xc5000.h"
Steven Tothb3ea0162008-04-19 01:14:19 -030041#include "tda10048.h"
Michael Krufky07b4a832007-12-18 01:09:11 -030042#include "tuner-xc2028.h"
Michael Krufky827855d2008-04-22 14:46:16 -030043#include "tuner-simple.h"
Steven Toth66762372008-04-22 15:38:26 -030044#include "dib7000p.h"
45#include "dibx000_common.h"
Steven Tothaef2d182008-08-04 21:39:53 -030046#include "zl10353.h"
Igor M. Liplianin5a23b072009-03-03 12:06:09 -030047#include "stv0900.h"
48#include "stv6110.h"
49#include "lnbh24.h"
Igor M. Liplianin96318d02009-01-17 12:11:20 -030050#include "cx24116.h"
Igor M. Liplianin5a23b072009-03-03 12:06:09 -030051#include "cimax2.h"
52#include "netup-eeprom.h"
53#include "netup-init.h"
Steven Tothd19770e2007-03-11 20:44:05 -030054
Steven Toth4513fc692008-01-12 11:36:36 -030055static unsigned int debug;
Steven Tothd19770e2007-03-11 20:44:05 -030056
Steven Toth4513fc692008-01-12 11:36:36 -030057#define dprintk(level, fmt, arg...)\
58 do { if (debug >= level)\
59 printk(KERN_DEBUG "%s/0: " fmt, dev->name, ## arg);\
60 } while (0)
Steven Tothd19770e2007-03-11 20:44:05 -030061
62/* ------------------------------------------------------------------ */
63
Michael Krufky3ba71d22007-12-07 01:40:36 -030064static unsigned int alt_tuner;
65module_param(alt_tuner, int, 0644);
66MODULE_PARM_DESC(alt_tuner, "Enable alternate tuner configuration");
67
Janne Grunau78e92002008-04-09 19:13:13 -030068DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
69
Michael Krufky3ba71d22007-12-07 01:40:36 -030070/* ------------------------------------------------------------------ */
71
Steven Tothd19770e2007-03-11 20:44:05 -030072static int dvb_buf_setup(struct videobuf_queue *q,
73 unsigned int *count, unsigned int *size)
74{
75 struct cx23885_tsport *port = q->priv_data;
76
77 port->ts_packet_size = 188 * 4;
78 port->ts_packet_count = 32;
79
80 *size = port->ts_packet_size * port->ts_packet_count;
81 *count = 32;
82 return 0;
83}
84
Michael Krufky44a64812007-03-20 23:00:18 -030085static int dvb_buf_prepare(struct videobuf_queue *q,
86 struct videobuf_buffer *vb, enum v4l2_field field)
Steven Tothd19770e2007-03-11 20:44:05 -030087{
88 struct cx23885_tsport *port = q->priv_data;
Steven Toth9c8ced52008-10-16 20:18:44 -030089 return cx23885_buf_prepare(q, port, (struct cx23885_buffer *)vb, field);
Steven Tothd19770e2007-03-11 20:44:05 -030090}
91
92static void dvb_buf_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
93{
94 struct cx23885_tsport *port = q->priv_data;
Steven Toth9c8ced52008-10-16 20:18:44 -030095 cx23885_buf_queue(port, (struct cx23885_buffer *)vb);
Steven Tothd19770e2007-03-11 20:44:05 -030096}
97
Michael Krufky44a64812007-03-20 23:00:18 -030098static void dvb_buf_release(struct videobuf_queue *q,
99 struct videobuf_buffer *vb)
Steven Tothd19770e2007-03-11 20:44:05 -0300100{
Steven Toth9c8ced52008-10-16 20:18:44 -0300101 cx23885_free_buffer(q, (struct cx23885_buffer *)vb);
Steven Tothd19770e2007-03-11 20:44:05 -0300102}
103
104static struct videobuf_queue_ops dvb_qops = {
105 .buf_setup = dvb_buf_setup,
106 .buf_prepare = dvb_buf_prepare,
107 .buf_queue = dvb_buf_queue,
108 .buf_release = dvb_buf_release,
109};
110
Steven Toth86184e02007-09-04 21:40:47 -0300111static struct s5h1409_config hauppauge_generic_config = {
Steven Tothd19770e2007-03-11 20:44:05 -0300112 .demod_address = 0x32 >> 1,
113 .output_mode = S5H1409_SERIAL_OUTPUT,
Steven Tothfc959be2007-09-08 19:08:17 -0300114 .gpio = S5H1409_GPIO_ON,
Michael Krufky2b032382007-12-13 10:04:10 -0300115 .qam_if = 44000,
Steven Tothfc959be2007-09-08 19:08:17 -0300116 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300117 .status_mode = S5H1409_DEMODLOCKING,
118 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothfc959be2007-09-08 19:08:17 -0300119};
120
Steven Tothb3ea0162008-04-19 01:14:19 -0300121static struct tda10048_config hauppauge_hvr1200_config = {
122 .demod_address = 0x10 >> 1,
123 .output_mode = TDA10048_SERIAL_OUTPUT,
124 .fwbulkwritelen = TDA10048_BULKWRITE_200,
125 .inversion = TDA10048_INVERSION_ON
126};
127
Michael Krufky3ba71d22007-12-07 01:40:36 -0300128static struct s5h1409_config hauppauge_ezqam_config = {
129 .demod_address = 0x32 >> 1,
130 .output_mode = S5H1409_SERIAL_OUTPUT,
131 .gpio = S5H1409_GPIO_OFF,
132 .qam_if = 4000,
133 .inversion = S5H1409_INVERSION_ON,
Steven Tothdfc1c082008-01-15 21:35:22 -0300134 .status_mode = S5H1409_DEMODLOCKING,
135 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300136};
137
Steven Tothfc959be2007-09-08 19:08:17 -0300138static struct s5h1409_config hauppauge_hvr1800lp_config = {
139 .demod_address = 0x32 >> 1,
140 .output_mode = S5H1409_SERIAL_OUTPUT,
Steven Tothd19770e2007-03-11 20:44:05 -0300141 .gpio = S5H1409_GPIO_OFF,
Michael Krufky2b032382007-12-13 10:04:10 -0300142 .qam_if = 44000,
Steven Tothfe475162007-03-20 15:27:53 -0300143 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300144 .status_mode = S5H1409_DEMODLOCKING,
145 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothd19770e2007-03-11 20:44:05 -0300146};
147
Michael Krufky07b4a832007-12-18 01:09:11 -0300148static struct s5h1409_config hauppauge_hvr1500_config = {
149 .demod_address = 0x32 >> 1,
150 .output_mode = S5H1409_SERIAL_OUTPUT,
151 .gpio = S5H1409_GPIO_OFF,
152 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300153 .status_mode = S5H1409_DEMODLOCKING,
154 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Michael Krufky07b4a832007-12-18 01:09:11 -0300155};
156
Steven Toth86184e02007-09-04 21:40:47 -0300157static struct mt2131_config hauppauge_generic_tunerconfig = {
Steven Totha77743b2007-08-22 21:01:20 -0300158 0x61
159};
160
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300161static struct lgdt330x_config fusionhdtv_5_express = {
162 .demod_address = 0x0e,
163 .demod_chip = LGDT3303,
164 .serial_mpeg = 0x40,
165};
166
Steven Tothd1987d52007-12-18 01:57:06 -0300167static struct s5h1409_config hauppauge_hvr1500q_config = {
168 .demod_address = 0x32 >> 1,
169 .output_mode = S5H1409_SERIAL_OUTPUT,
170 .gpio = S5H1409_GPIO_ON,
171 .qam_if = 44000,
172 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300173 .status_mode = S5H1409_DEMODLOCKING,
174 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothd1987d52007-12-18 01:57:06 -0300175};
176
Michael Krufky335377b2008-05-07 01:43:10 -0300177static struct s5h1409_config dvico_s5h1409_config = {
178 .demod_address = 0x32 >> 1,
179 .output_mode = S5H1409_SERIAL_OUTPUT,
180 .gpio = S5H1409_GPIO_ON,
181 .qam_if = 44000,
182 .inversion = S5H1409_INVERSION_OFF,
183 .status_mode = S5H1409_DEMODLOCKING,
184 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
185};
186
Michael Krufky52b50452008-07-09 02:18:49 -0300187static struct s5h1411_config dvico_s5h1411_config = {
188 .output_mode = S5H1411_SERIAL_OUTPUT,
189 .gpio = S5H1411_GPIO_ON,
190 .qam_if = S5H1411_IF_44000,
191 .vsb_if = S5H1411_IF_44000,
192 .inversion = S5H1411_INVERSION_OFF,
193 .status_mode = S5H1411_DEMODLOCKING,
194 .mpeg_timing = S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
195};
196
Steven Tothd1987d52007-12-18 01:57:06 -0300197static struct xc5000_config hauppauge_hvr1500q_tunerconfig = {
Steven Tothe12671c2007-12-20 01:14:43 -0300198 .i2c_address = 0x61,
199 .if_khz = 5380,
Steven Tothd1987d52007-12-18 01:57:06 -0300200};
201
Michael Krufky335377b2008-05-07 01:43:10 -0300202static struct xc5000_config dvico_xc5000_tunerconfig = {
203 .i2c_address = 0x64,
204 .if_khz = 5380,
Michael Krufky335377b2008-05-07 01:43:10 -0300205};
206
Michael Krufky4041f1a2007-12-24 04:52:08 -0300207static struct tda829x_config tda829x_no_probe = {
208 .probe_tuner = TDA829X_DONT_PROBE,
209};
210
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300211static struct tda18271_std_map hauppauge_tda18271_std_map = {
Michael Krufkyc0dc0c12008-04-22 14:46:22 -0300212 .atsc_6 = { .if_freq = 5380, .agc_mode = 3, .std = 3,
213 .if_lvl = 6, .rfagc_top = 0x37 },
214 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 0,
215 .if_lvl = 6, .rfagc_top = 0x37 },
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300216};
217
218static struct tda18271_config hauppauge_tda18271_config = {
219 .std_map = &hauppauge_tda18271_std_map,
220 .gate = TDA18271_GATE_ANALOG,
221};
222
Steven Tothb3ea0162008-04-19 01:14:19 -0300223static struct tda18271_config hauppauge_hvr1200_tuner_config = {
224 .gate = TDA18271_GATE_ANALOG,
225};
226
Harvey Harrisonb1721d02008-04-25 19:03:08 -0700227static struct dibx000_agc_config xc3028_agc_config = {
Steven Toth66762372008-04-22 15:38:26 -0300228 BAND_VHF | BAND_UHF, /* band_caps */
229
230 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=0,
231 * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0,
232 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0,
233 * P_agc_nb_est=2, P_agc_write=0
234 */
235 (0 << 15) | (0 << 14) | (0 << 11) | (0 << 10) | (0 << 9) | (0 << 8) |
236 (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0), /* setup */
237
238 712, /* inv_gain */
239 21, /* time_stabiliz */
240
241 0, /* alpha_level */
242 118, /* thlock */
243
244 0, /* wbd_inv */
245 2867, /* wbd_ref */
246 0, /* wbd_sel */
247 2, /* wbd_alpha */
248
249 0, /* agc1_max */
250 0, /* agc1_min */
251 39718, /* agc2_max */
252 9930, /* agc2_min */
253 0, /* agc1_pt1 */
254 0, /* agc1_pt2 */
255 0, /* agc1_pt3 */
256 0, /* agc1_slope1 */
257 0, /* agc1_slope2 */
258 0, /* agc2_pt1 */
259 128, /* agc2_pt2 */
260 29, /* agc2_slope1 */
261 29, /* agc2_slope2 */
262
263 17, /* alpha_mant */
264 27, /* alpha_exp */
265 23, /* beta_mant */
266 51, /* beta_exp */
267
268 1, /* perform_agc_softsplit */
269};
270
271/* PLL Configuration for COFDM BW_MHz = 8.000000
272 * With external clock = 30.000000 */
Harvey Harrisonb1721d02008-04-25 19:03:08 -0700273static struct dibx000_bandwidth_config xc3028_bw_config = {
Steven Toth66762372008-04-22 15:38:26 -0300274 60000, /* internal */
275 30000, /* sampling */
276 1, /* pll_cfg: prediv */
277 8, /* pll_cfg: ratio */
278 3, /* pll_cfg: range */
279 1, /* pll_cfg: reset */
280 0, /* pll_cfg: bypass */
281 0, /* misc: refdiv */
282 0, /* misc: bypclk_div */
283 1, /* misc: IO_CLK_en_core */
284 1, /* misc: ADClkSrc */
285 0, /* misc: modulo */
286 (3 << 14) | (1 << 12) | (524 << 0), /* sad_cfg: refsel, sel, freq_15k */
287 (1 << 25) | 5816102, /* ifreq = 5.200000 MHz */
288 20452225, /* timf */
289 30000000 /* xtal_hz */
290};
291
292static struct dib7000p_config hauppauge_hvr1400_dib7000_config = {
293 .output_mpeg2_in_188_bytes = 1,
294 .hostbus_diversity = 1,
295 .tuner_is_baseband = 0,
296 .update_lna = NULL,
297
298 .agc_config_count = 1,
299 .agc = &xc3028_agc_config,
300 .bw = &xc3028_bw_config,
301
302 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
303 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
304 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
305
306 .pwm_freq_div = 0,
307 .agc_control = NULL,
308 .spur_protect = 0,
309
310 .output_mode = OUTMODE_MPEG2_SERIAL,
311};
312
Steven Tothaef2d182008-08-04 21:39:53 -0300313static struct zl10353_config dvico_fusionhdtv_xc3028 = {
314 .demod_address = 0x0f,
315 .if2 = 45600,
316 .no_tuner = 1,
Christopher Pascoed4dc6732009-04-27 11:27:04 -0300317 .disable_i2c_gate_ctrl = 1,
Steven Tothaef2d182008-08-04 21:39:53 -0300318};
319
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300320static struct stv0900_config netup_stv0900_config = {
321 .demod_address = 0x68,
322 .xtal = 27000000,
323 .clkmode = 3,/* 0-CLKI, 2-XTALI, else AUTO */
324 .diseqc_mode = 2,/* 2/3 PWM */
325 .path1_mode = 2,/*Serial continues clock */
326 .path2_mode = 2,/*Serial continues clock */
327 .tun1_maddress = 0,/* 0x60 */
328 .tun2_maddress = 3,/* 0x63 */
329 .tun1_adc = 1,/* 1 Vpp */
330 .tun2_adc = 1,/* 1 Vpp */
331};
332
333static struct stv6110_config netup_stv6110_tunerconfig_a = {
334 .i2c_address = 0x60,
335 .mclk = 27000000,
336 .iq_wiring = 0,
337};
338
339static struct stv6110_config netup_stv6110_tunerconfig_b = {
340 .i2c_address = 0x63,
341 .mclk = 27000000,
342 .iq_wiring = 1,
343};
344
Igor M. Liplianin96318d02009-01-17 12:11:20 -0300345static int tbs_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
346{
347 struct cx23885_tsport *port = fe->dvb->priv;
348 struct cx23885_dev *dev = port->dev;
349
350 if (voltage == SEC_VOLTAGE_18)
351 cx_write(MC417_RWD, 0x00001e00);/* GPIO-13 high */
352 else if (voltage == SEC_VOLTAGE_13)
353 cx_write(MC417_RWD, 0x00001a00);/* GPIO-13 low */
354 else
355 cx_write(MC417_RWD, 0x00001800);/* GPIO-12 low */
356 return 0;
357}
358
359static struct cx24116_config tbs_cx24116_config = {
360 .demod_address = 0x05,
361};
362
Igor M. Liplianin579943f2009-01-17 12:18:26 -0300363static struct cx24116_config tevii_cx24116_config = {
364 .demod_address = 0x55,
365};
366
Igor M. Liplianinc9b8b042009-01-17 12:23:31 -0300367static struct cx24116_config dvbworld_cx24116_config = {
368 .demod_address = 0x05,
369};
370
Steven Tothd19770e2007-03-11 20:44:05 -0300371static int dvb_register(struct cx23885_tsport *port)
372{
373 struct cx23885_dev *dev = port->dev;
Michael Krufkyf139fa72007-09-09 03:55:34 -0300374 struct cx23885_i2c *i2c_bus = NULL;
Steven Toth363c35f2008-10-11 11:05:50 -0300375 struct videobuf_dvb_frontend *fe0;
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300376 int ret;
Steven Toth363c35f2008-10-11 11:05:50 -0300377
Darron Broadf972e0b2008-10-11 11:24:30 -0300378 /* Get the first frontend */
Darron Broad92abe9e2008-10-11 11:18:53 -0300379 fe0 = videobuf_dvb_get_frontend(&port->frontends, 1);
Steven Toth363c35f2008-10-11 11:05:50 -0300380 if (!fe0)
381 return -EINVAL;
Steven Tothd19770e2007-03-11 20:44:05 -0300382
383 /* init struct videobuf_dvb */
Steven Toth363c35f2008-10-11 11:05:50 -0300384 fe0->dvb.name = dev->name;
Steven Tothd19770e2007-03-11 20:44:05 -0300385
386 /* init frontend */
387 switch (dev->board) {
Steven Totha77743b2007-08-22 21:01:20 -0300388 case CX23885_BOARD_HAUPPAUGE_HVR1250:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300389 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300390 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Toth86184e02007-09-04 21:40:47 -0300391 &hauppauge_generic_config,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300392 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300393 if (fe0->dvb.frontend != NULL) {
394 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300395 &i2c_bus->i2c_adap,
Steven Toth86184e02007-09-04 21:40:47 -0300396 &hauppauge_generic_tunerconfig, 0);
Steven Tothd19770e2007-03-11 20:44:05 -0300397 }
398 break;
Michael Krufky3ba71d22007-12-07 01:40:36 -0300399 case CX23885_BOARD_HAUPPAUGE_HVR1800:
400 i2c_bus = &dev->i2c_bus[0];
Darron Broad92abe9e2008-10-11 11:18:53 -0300401 switch (alt_tuner) {
Michael Krufky3ba71d22007-12-07 01:40:36 -0300402 case 1:
Steven Toth363c35f2008-10-11 11:05:50 -0300403 fe0->dvb.frontend =
Michael Krufky3ba71d22007-12-07 01:40:36 -0300404 dvb_attach(s5h1409_attach,
405 &hauppauge_ezqam_config,
406 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300407 if (fe0->dvb.frontend != NULL) {
408 dvb_attach(tda829x_attach, fe0->dvb.frontend,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300409 &dev->i2c_bus[1].i2c_adap, 0x42,
Michael Krufky4041f1a2007-12-24 04:52:08 -0300410 &tda829x_no_probe);
Steven Toth363c35f2008-10-11 11:05:50 -0300411 dvb_attach(tda18271_attach, fe0->dvb.frontend,
Michael Krufky4041f1a2007-12-24 04:52:08 -0300412 0x60, &dev->i2c_bus[1].i2c_adap,
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300413 &hauppauge_tda18271_config);
Michael Krufky3ba71d22007-12-07 01:40:36 -0300414 }
415 break;
416 case 0:
417 default:
Steven Toth363c35f2008-10-11 11:05:50 -0300418 fe0->dvb.frontend =
Michael Krufky3ba71d22007-12-07 01:40:36 -0300419 dvb_attach(s5h1409_attach,
420 &hauppauge_generic_config,
421 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300422 if (fe0->dvb.frontend != NULL)
423 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300424 &i2c_bus->i2c_adap,
425 &hauppauge_generic_tunerconfig, 0);
426 break;
427 }
428 break;
Steven Tothfc959be2007-09-08 19:08:17 -0300429 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300430 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300431 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Tothfc959be2007-09-08 19:08:17 -0300432 &hauppauge_hvr1800lp_config,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300433 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300434 if (fe0->dvb.frontend != NULL) {
435 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300436 &i2c_bus->i2c_adap,
Steven Tothfc959be2007-09-08 19:08:17 -0300437 &hauppauge_generic_tunerconfig, 0);
438 }
439 break;
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300440 case CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300441 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300442 fe0->dvb.frontend = dvb_attach(lgdt330x_attach,
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300443 &fusionhdtv_5_express,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300444 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300445 if (fe0->dvb.frontend != NULL) {
446 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufky827855d2008-04-22 14:46:16 -0300447 &i2c_bus->i2c_adap, 0x61,
448 TUNER_LG_TDVS_H06XF);
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300449 }
450 break;
Steven Tothd1987d52007-12-18 01:57:06 -0300451 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
452 i2c_bus = &dev->i2c_bus[1];
Steven Toth363c35f2008-10-11 11:05:50 -0300453 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Tothd1987d52007-12-18 01:57:06 -0300454 &hauppauge_hvr1500q_config,
455 &dev->i2c_bus[0].i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300456 if (fe0->dvb.frontend != NULL)
457 dvb_attach(xc5000_attach, fe0->dvb.frontend,
Michael Krufky30650962008-09-06 14:56:58 -0300458 &i2c_bus->i2c_adap,
459 &hauppauge_hvr1500q_tunerconfig);
Steven Tothd1987d52007-12-18 01:57:06 -0300460 break;
Michael Krufky07b4a832007-12-18 01:09:11 -0300461 case CX23885_BOARD_HAUPPAUGE_HVR1500:
462 i2c_bus = &dev->i2c_bus[1];
Steven Toth363c35f2008-10-11 11:05:50 -0300463 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Michael Krufky07b4a832007-12-18 01:09:11 -0300464 &hauppauge_hvr1500_config,
465 &dev->i2c_bus[0].i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300466 if (fe0->dvb.frontend != NULL) {
Michael Krufky07b4a832007-12-18 01:09:11 -0300467 struct dvb_frontend *fe;
468 struct xc2028_config cfg = {
469 .i2c_adap = &i2c_bus->i2c_adap,
470 .i2c_addr = 0x61,
Michael Krufky07b4a832007-12-18 01:09:11 -0300471 };
472 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfe2008-09-16 02:15:30 -0300473 .fname = XC2028_DEFAULT_FIRMWARE,
Michael Krufky07b4a832007-12-18 01:09:11 -0300474 .max_len = 64,
Steven Toth52c3d292009-04-20 22:42:00 -0300475 .demod = XC3028_FE_OREN538,
Michael Krufky07b4a832007-12-18 01:09:11 -0300476 };
477
478 fe = dvb_attach(xc2028_attach,
Steven Toth363c35f2008-10-11 11:05:50 -0300479 fe0->dvb.frontend, &cfg);
Michael Krufky07b4a832007-12-18 01:09:11 -0300480 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
481 fe->ops.tuner_ops.set_config(fe, &ctl);
482 }
483 break;
Steven Tothb3ea0162008-04-19 01:14:19 -0300484 case CX23885_BOARD_HAUPPAUGE_HVR1200:
Steven Totha780a312008-04-19 01:25:52 -0300485 case CX23885_BOARD_HAUPPAUGE_HVR1700:
Steven Tothb3ea0162008-04-19 01:14:19 -0300486 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300487 fe0->dvb.frontend = dvb_attach(tda10048_attach,
Steven Tothb3ea0162008-04-19 01:14:19 -0300488 &hauppauge_hvr1200_config,
489 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300490 if (fe0->dvb.frontend != NULL) {
491 dvb_attach(tda829x_attach, fe0->dvb.frontend,
Steven Tothb3ea0162008-04-19 01:14:19 -0300492 &dev->i2c_bus[1].i2c_adap, 0x42,
493 &tda829x_no_probe);
Steven Toth363c35f2008-10-11 11:05:50 -0300494 dvb_attach(tda18271_attach, fe0->dvb.frontend,
Steven Tothb3ea0162008-04-19 01:14:19 -0300495 0x60, &dev->i2c_bus[1].i2c_adap,
496 &hauppauge_hvr1200_tuner_config);
497 }
498 break;
Steven Toth66762372008-04-22 15:38:26 -0300499 case CX23885_BOARD_HAUPPAUGE_HVR1400:
500 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300501 fe0->dvb.frontend = dvb_attach(dib7000p_attach,
Steven Toth66762372008-04-22 15:38:26 -0300502 &i2c_bus->i2c_adap,
503 0x12, &hauppauge_hvr1400_dib7000_config);
Steven Toth363c35f2008-10-11 11:05:50 -0300504 if (fe0->dvb.frontend != NULL) {
Steven Toth66762372008-04-22 15:38:26 -0300505 struct dvb_frontend *fe;
506 struct xc2028_config cfg = {
507 .i2c_adap = &dev->i2c_bus[1].i2c_adap,
508 .i2c_addr = 0x64,
Steven Toth66762372008-04-22 15:38:26 -0300509 };
510 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfe2008-09-16 02:15:30 -0300511 .fname = XC3028L_DEFAULT_FIRMWARE,
Steven Toth66762372008-04-22 15:38:26 -0300512 .max_len = 64,
513 .demod = 5000,
Steven Toth9c8ced52008-10-16 20:18:44 -0300514 /* This is true for all demods with
515 v36 firmware? */
Mauro Carvalho Chehab0975fc62008-09-28 02:24:44 -0300516 .type = XC2028_D2633,
Steven Toth66762372008-04-22 15:38:26 -0300517 };
518
519 fe = dvb_attach(xc2028_attach,
Steven Toth363c35f2008-10-11 11:05:50 -0300520 fe0->dvb.frontend, &cfg);
Steven Toth66762372008-04-22 15:38:26 -0300521 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
522 fe->ops.tuner_ops.set_config(fe, &ctl);
523 }
524 break;
Michael Krufky335377b2008-05-07 01:43:10 -0300525 case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP:
526 i2c_bus = &dev->i2c_bus[port->nr - 1];
527
Steven Toth363c35f2008-10-11 11:05:50 -0300528 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Michael Krufky335377b2008-05-07 01:43:10 -0300529 &dvico_s5h1409_config,
530 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300531 if (fe0->dvb.frontend == NULL)
532 fe0->dvb.frontend = dvb_attach(s5h1411_attach,
Michael Krufky52b50452008-07-09 02:18:49 -0300533 &dvico_s5h1411_config,
534 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300535 if (fe0->dvb.frontend != NULL)
536 dvb_attach(xc5000_attach, fe0->dvb.frontend,
Michael Krufky30650962008-09-06 14:56:58 -0300537 &i2c_bus->i2c_adap,
538 &dvico_xc5000_tunerconfig);
Michael Krufky335377b2008-05-07 01:43:10 -0300539 break;
Steven Tothaef2d182008-08-04 21:39:53 -0300540 case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP: {
541 i2c_bus = &dev->i2c_bus[port->nr - 1];
542
Steven Toth363c35f2008-10-11 11:05:50 -0300543 fe0->dvb.frontend = dvb_attach(zl10353_attach,
Steven Tothaef2d182008-08-04 21:39:53 -0300544 &dvico_fusionhdtv_xc3028,
545 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300546 if (fe0->dvb.frontend != NULL) {
Steven Tothaef2d182008-08-04 21:39:53 -0300547 struct dvb_frontend *fe;
548 struct xc2028_config cfg = {
549 .i2c_adap = &i2c_bus->i2c_adap,
550 .i2c_addr = 0x61,
Steven Tothaef2d182008-08-04 21:39:53 -0300551 };
552 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfe2008-09-16 02:15:30 -0300553 .fname = XC2028_DEFAULT_FIRMWARE,
Steven Tothaef2d182008-08-04 21:39:53 -0300554 .max_len = 64,
555 .demod = XC3028_FE_ZARLINK456,
556 };
557
Steven Toth363c35f2008-10-11 11:05:50 -0300558 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend,
Steven Tothaef2d182008-08-04 21:39:53 -0300559 &cfg);
560 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
561 fe->ops.tuner_ops.set_config(fe, &ctl);
562 }
563 break;
564 }
Steven Toth4c56b042008-08-12 13:30:03 -0300565 case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
Igor M. Liplianin9bb1b7e2008-11-23 14:11:16 -0300566 case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
Steven Toth4c56b042008-08-12 13:30:03 -0300567 i2c_bus = &dev->i2c_bus[0];
568
Steven Toth363c35f2008-10-11 11:05:50 -0300569 fe0->dvb.frontend = dvb_attach(zl10353_attach,
Steven Toth4c56b042008-08-12 13:30:03 -0300570 &dvico_fusionhdtv_xc3028,
571 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300572 if (fe0->dvb.frontend != NULL) {
Steven Toth4c56b042008-08-12 13:30:03 -0300573 struct dvb_frontend *fe;
574 struct xc2028_config cfg = {
575 .i2c_adap = &dev->i2c_bus[1].i2c_adap,
576 .i2c_addr = 0x61,
Steven Toth4c56b042008-08-12 13:30:03 -0300577 };
578 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfe2008-09-16 02:15:30 -0300579 .fname = XC2028_DEFAULT_FIRMWARE,
Steven Toth4c56b042008-08-12 13:30:03 -0300580 .max_len = 64,
581 .demod = XC3028_FE_ZARLINK456,
582 };
583
Steven Toth363c35f2008-10-11 11:05:50 -0300584 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend,
Steven Toth4c56b042008-08-12 13:30:03 -0300585 &cfg);
586 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
587 fe->ops.tuner_ops.set_config(fe, &ctl);
588 }
589 break;
Igor M. Liplianin96318d02009-01-17 12:11:20 -0300590 case CX23885_BOARD_TBS_6920:
591 i2c_bus = &dev->i2c_bus[0];
592
593 fe0->dvb.frontend = dvb_attach(cx24116_attach,
594 &tbs_cx24116_config,
595 &i2c_bus->i2c_adap);
596 if (fe0->dvb.frontend != NULL)
597 fe0->dvb.frontend->ops.set_voltage = tbs_set_voltage;
598
599 break;
Igor M. Liplianin579943f2009-01-17 12:18:26 -0300600 case CX23885_BOARD_TEVII_S470:
601 i2c_bus = &dev->i2c_bus[1];
602
603 fe0->dvb.frontend = dvb_attach(cx24116_attach,
604 &tevii_cx24116_config,
605 &i2c_bus->i2c_adap);
606 if (fe0->dvb.frontend != NULL)
607 fe0->dvb.frontend->ops.set_voltage = tbs_set_voltage;
608
609 break;
Igor M. Liplianinc9b8b042009-01-17 12:23:31 -0300610 case CX23885_BOARD_DVBWORLD_2005:
611 i2c_bus = &dev->i2c_bus[1];
612
613 fe0->dvb.frontend = dvb_attach(cx24116_attach,
614 &dvbworld_cx24116_config,
615 &i2c_bus->i2c_adap);
616 break;
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300617 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
618 i2c_bus = &dev->i2c_bus[0];
619 switch (port->nr) {
620 /* port B */
621 case 1:
622 fe0->dvb.frontend = dvb_attach(stv0900_attach,
623 &netup_stv0900_config,
624 &i2c_bus->i2c_adap, 0);
625 if (fe0->dvb.frontend != NULL) {
626 if (dvb_attach(stv6110_attach,
627 fe0->dvb.frontend,
628 &netup_stv6110_tunerconfig_a,
629 &i2c_bus->i2c_adap)) {
630 if (!dvb_attach(lnbh24_attach,
631 fe0->dvb.frontend,
632 &i2c_bus->i2c_adap,
633 LNBH24_PCL, 0, 0x09))
634 printk(KERN_ERR
635 "No LNBH24 found!\n");
636
637 }
638 }
639 break;
640 /* port C */
641 case 2:
642 fe0->dvb.frontend = dvb_attach(stv0900_attach,
643 &netup_stv0900_config,
644 &i2c_bus->i2c_adap, 1);
645 if (fe0->dvb.frontend != NULL) {
646 if (dvb_attach(stv6110_attach,
647 fe0->dvb.frontend,
648 &netup_stv6110_tunerconfig_b,
649 &i2c_bus->i2c_adap)) {
650 if (!dvb_attach(lnbh24_attach,
651 fe0->dvb.frontend,
652 &i2c_bus->i2c_adap,
653 LNBH24_PCL, 0, 0x0a))
654 printk(KERN_ERR
655 "No LNBH24 found!\n");
656
657 }
658 }
659 break;
660 }
661 break;
Steven Tothd19770e2007-03-11 20:44:05 -0300662 default:
Steven Toth9c8ced52008-10-16 20:18:44 -0300663 printk(KERN_INFO "%s: The frontend of your DVB/ATSC card "
664 " isn't supported yet\n",
Steven Tothd19770e2007-03-11 20:44:05 -0300665 dev->name);
666 break;
667 }
Steven Toth363c35f2008-10-11 11:05:50 -0300668 if (NULL == fe0->dvb.frontend) {
Steven Toth9c8ced52008-10-16 20:18:44 -0300669 printk(KERN_ERR "%s: frontend initialization failed\n",
670 dev->name);
Steven Tothd19770e2007-03-11 20:44:05 -0300671 return -1;
672 }
Michael Krufkyd7cba042008-09-12 13:31:45 -0300673 /* define general-purpose callback pointer */
Steven Toth363c35f2008-10-11 11:05:50 -0300674 fe0->dvb.frontend->callback = cx23885_tuner_callback;
Steven Tothd19770e2007-03-11 20:44:05 -0300675
676 /* Put the analog decoder in standby to keep it quiet */
Hans Verkuil7c9fc9d2009-04-01 03:49:59 -0300677 call_all(dev, tuner, s_standby);
Steven Tothd19770e2007-03-11 20:44:05 -0300678
Steven Toth363c35f2008-10-11 11:05:50 -0300679 if (fe0->dvb.frontend->ops.analog_ops.standby)
680 fe0->dvb.frontend->ops.analog_ops.standby(fe0->dvb.frontend);
Michael Krufky3ba71d22007-12-07 01:40:36 -0300681
Steven Tothd19770e2007-03-11 20:44:05 -0300682 /* register everything */
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300683 ret = videobuf_dvb_register_bus(&port->frontends, THIS_MODULE, port,
Darron Broad59b18422008-10-11 11:44:05 -0300684 &dev->pci->dev, adapter_nr, 0);
Steven Toth363c35f2008-10-11 11:05:50 -0300685
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300686 /* init CI & MAC */
687 switch (dev->board) {
688 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI: {
689 static struct netup_card_info cinfo;
690
691 netup_get_card_info(&dev->i2c_bus[0].i2c_adap, &cinfo);
692 memcpy(port->frontends.adapter.proposed_mac,
693 cinfo.port[port->nr - 1].mac, 6);
694 printk(KERN_INFO "NetUP Dual DVB-S2 CI card port%d MAC="
695 "%02X:%02X:%02X:%02X:%02X:%02X\n",
696 port->nr,
697 port->frontends.adapter.proposed_mac[0],
698 port->frontends.adapter.proposed_mac[1],
699 port->frontends.adapter.proposed_mac[2],
700 port->frontends.adapter.proposed_mac[3],
701 port->frontends.adapter.proposed_mac[4],
702 port->frontends.adapter.proposed_mac[5]);
703
704 netup_ci_init(port);
705 break;
706 }
707 }
708
709 return ret;
Steven Tothd19770e2007-03-11 20:44:05 -0300710}
711
712int cx23885_dvb_register(struct cx23885_tsport *port)
713{
Steven Toth363c35f2008-10-11 11:05:50 -0300714
715 struct videobuf_dvb_frontend *fe0;
Steven Tothd19770e2007-03-11 20:44:05 -0300716 struct cx23885_dev *dev = port->dev;
Steven Totheb0c58b2008-10-11 12:34:39 -0300717 int err, i;
Steven Tothd19770e2007-03-11 20:44:05 -0300718
Steven Totheb0c58b2008-10-11 12:34:39 -0300719 /* Here we need to allocate the correct number of frontends,
720 * as reflected in the cards struct. The reality is that currrently
721 * no cx23885 boards support this - yet. But, if we don't modify this
722 * code then the second frontend would never be allocated (later)
723 * and fail with error before the attach in dvb_register().
724 * Without these changes we risk an OOPS later. The changes here
725 * are for safety, and should provide a good foundation for the
726 * future addition of any multi-frontend cx23885 based boards.
727 */
728 printk(KERN_INFO "%s() allocating %d frontend(s)\n", __func__,
729 port->num_frontends);
Steven Toth363c35f2008-10-11 11:05:50 -0300730
Steven Totheb0c58b2008-10-11 12:34:39 -0300731 for (i = 1; i <= port->num_frontends; i++) {
Darron Broad96b7a1a2008-10-15 20:26:34 -0300732 if (videobuf_dvb_alloc_frontend(
Steven Toth9c8ced52008-10-16 20:18:44 -0300733 &port->frontends, i) == NULL) {
Steven Totheb0c58b2008-10-11 12:34:39 -0300734 printk(KERN_ERR "%s() failed to alloc\n", __func__);
735 return -ENOMEM;
736 }
Steven Tothd19770e2007-03-11 20:44:05 -0300737
Steven Totheb0c58b2008-10-11 12:34:39 -0300738 fe0 = videobuf_dvb_get_frontend(&port->frontends, i);
739 if (!fe0)
740 err = -EINVAL;
Steven Tothd19770e2007-03-11 20:44:05 -0300741
Steven Totheb0c58b2008-10-11 12:34:39 -0300742 dprintk(1, "%s\n", __func__);
Steven Toth9c8ced52008-10-16 20:18:44 -0300743 dprintk(1, " ->probed by Card=%d Name=%s, PCI %02x:%02x\n",
Steven Totheb0c58b2008-10-11 12:34:39 -0300744 dev->board,
745 dev->name,
746 dev->pci_bus,
747 dev->pci_slot);
748
749 err = -ENODEV;
750
751 /* dvb stuff */
752 /* We have to init the queue for each frontend on a port. */
Steven Toth9c8ced52008-10-16 20:18:44 -0300753 printk(KERN_INFO "%s: cx23885 based dvb card\n", dev->name);
754 videobuf_queue_sg_init(&fe0->dvb.dvbq, &dvb_qops,
755 &dev->pci->dev, &port->slock,
Michael Krufky44a64812007-03-20 23:00:18 -0300756 V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_TOP,
757 sizeof(struct cx23885_buffer), port);
Steven Totheb0c58b2008-10-11 12:34:39 -0300758 }
Steven Tothd19770e2007-03-11 20:44:05 -0300759 err = dvb_register(port);
760 if (err != 0)
Steven Toth9c8ced52008-10-16 20:18:44 -0300761 printk(KERN_ERR "%s() dvb_register failed err = %d\n",
762 __func__, err);
Steven Tothd19770e2007-03-11 20:44:05 -0300763
Steven Tothd19770e2007-03-11 20:44:05 -0300764 return err;
765}
766
767int cx23885_dvb_unregister(struct cx23885_tsport *port)
768{
Steven Toth363c35f2008-10-11 11:05:50 -0300769 struct videobuf_dvb_frontend *fe0;
770
Steven Totheb0c58b2008-10-11 12:34:39 -0300771 /* FIXME: in an error condition where the we have
772 * an expected number of frontends (attach problem)
773 * then this might not clean up correctly, if 1
774 * is invalid.
775 * This comment only applies to future boards IF they
776 * implement MFE support.
777 */
Darron Broad92abe9e2008-10-11 11:18:53 -0300778 fe0 = videobuf_dvb_get_frontend(&port->frontends, 1);
Steven Toth9c8ced52008-10-16 20:18:44 -0300779 if (fe0->dvb.frontend)
Steven Toth363c35f2008-10-11 11:05:50 -0300780 videobuf_dvb_unregister_bus(&port->frontends);
Steven Tothd19770e2007-03-11 20:44:05 -0300781
Hans Verkuilafd96662009-03-13 13:24:19 -0300782 switch (port->dev->board) {
783 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
784 netup_ci_exit(port);
785 break;
786 }
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300787
Steven Tothd19770e2007-03-11 20:44:05 -0300788 return 0;
789}
Michael Krufky44a64812007-03-20 23:00:18 -0300790