blob: a6b62a7bf6180800b2ae255f9d6311c2ea93f595 [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
33#include "s5h1409.h"
Michael Krufky52b50452008-07-09 02:18:49 -030034#include "s5h1411.h"
Steven Tothd19770e2007-03-11 20:44:05 -030035#include "mt2131.h"
Michael Krufky3ba71d22007-12-07 01:40:36 -030036#include "tda8290.h"
Michael Krufky4041f1a2007-12-24 04:52:08 -030037#include "tda18271.h"
Michael Krufky9bc37ca2007-09-08 15:17:13 -030038#include "lgdt330x.h"
Steven Tothd1987d52007-12-18 01:57:06 -030039#include "xc5000.h"
Steven Tothb3ea0162008-04-19 01:14:19 -030040#include "tda10048.h"
Michael Krufky07b4a832007-12-18 01:09:11 -030041#include "tuner-xc2028.h"
Michael Krufky827855d2008-04-22 14:46:16 -030042#include "tuner-simple.h"
Steven Toth66762372008-04-22 15:38:26 -030043#include "dib7000p.h"
44#include "dibx000_common.h"
Steven Tothaef2d182008-08-04 21:39:53 -030045#include "zl10353.h"
Igor M. Liplianin96318d02009-01-17 12:11:20 -030046#include "cx24116.h"
Steven Tothd19770e2007-03-11 20:44:05 -030047
Steven Toth4513fc692008-01-12 11:36:36 -030048static unsigned int debug;
Steven Tothd19770e2007-03-11 20:44:05 -030049
Steven Toth4513fc692008-01-12 11:36:36 -030050#define dprintk(level, fmt, arg...)\
51 do { if (debug >= level)\
52 printk(KERN_DEBUG "%s/0: " fmt, dev->name, ## arg);\
53 } while (0)
Steven Tothd19770e2007-03-11 20:44:05 -030054
55/* ------------------------------------------------------------------ */
56
Michael Krufky3ba71d22007-12-07 01:40:36 -030057static unsigned int alt_tuner;
58module_param(alt_tuner, int, 0644);
59MODULE_PARM_DESC(alt_tuner, "Enable alternate tuner configuration");
60
Janne Grunau78e92002008-04-09 19:13:13 -030061DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
62
Michael Krufky3ba71d22007-12-07 01:40:36 -030063/* ------------------------------------------------------------------ */
64
Steven Tothd19770e2007-03-11 20:44:05 -030065static int dvb_buf_setup(struct videobuf_queue *q,
66 unsigned int *count, unsigned int *size)
67{
68 struct cx23885_tsport *port = q->priv_data;
69
70 port->ts_packet_size = 188 * 4;
71 port->ts_packet_count = 32;
72
73 *size = port->ts_packet_size * port->ts_packet_count;
74 *count = 32;
75 return 0;
76}
77
Michael Krufky44a64812007-03-20 23:00:18 -030078static int dvb_buf_prepare(struct videobuf_queue *q,
79 struct videobuf_buffer *vb, enum v4l2_field field)
Steven Tothd19770e2007-03-11 20:44:05 -030080{
81 struct cx23885_tsport *port = q->priv_data;
Steven Toth9c8ced52008-10-16 20:18:44 -030082 return cx23885_buf_prepare(q, port, (struct cx23885_buffer *)vb, field);
Steven Tothd19770e2007-03-11 20:44:05 -030083}
84
85static void dvb_buf_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
86{
87 struct cx23885_tsport *port = q->priv_data;
Steven Toth9c8ced52008-10-16 20:18:44 -030088 cx23885_buf_queue(port, (struct cx23885_buffer *)vb);
Steven Tothd19770e2007-03-11 20:44:05 -030089}
90
Michael Krufky44a64812007-03-20 23:00:18 -030091static void dvb_buf_release(struct videobuf_queue *q,
92 struct videobuf_buffer *vb)
Steven Tothd19770e2007-03-11 20:44:05 -030093{
Steven Toth9c8ced52008-10-16 20:18:44 -030094 cx23885_free_buffer(q, (struct cx23885_buffer *)vb);
Steven Tothd19770e2007-03-11 20:44:05 -030095}
96
97static struct videobuf_queue_ops dvb_qops = {
98 .buf_setup = dvb_buf_setup,
99 .buf_prepare = dvb_buf_prepare,
100 .buf_queue = dvb_buf_queue,
101 .buf_release = dvb_buf_release,
102};
103
Steven Toth86184e02007-09-04 21:40:47 -0300104static struct s5h1409_config hauppauge_generic_config = {
Steven Tothd19770e2007-03-11 20:44:05 -0300105 .demod_address = 0x32 >> 1,
106 .output_mode = S5H1409_SERIAL_OUTPUT,
Steven Tothfc959be2007-09-08 19:08:17 -0300107 .gpio = S5H1409_GPIO_ON,
Michael Krufky2b032382007-12-13 10:04:10 -0300108 .qam_if = 44000,
Steven Tothfc959be2007-09-08 19:08:17 -0300109 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300110 .status_mode = S5H1409_DEMODLOCKING,
111 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothfc959be2007-09-08 19:08:17 -0300112};
113
Steven Tothb3ea0162008-04-19 01:14:19 -0300114static struct tda10048_config hauppauge_hvr1200_config = {
115 .demod_address = 0x10 >> 1,
116 .output_mode = TDA10048_SERIAL_OUTPUT,
117 .fwbulkwritelen = TDA10048_BULKWRITE_200,
118 .inversion = TDA10048_INVERSION_ON
119};
120
Michael Krufky3ba71d22007-12-07 01:40:36 -0300121static struct s5h1409_config hauppauge_ezqam_config = {
122 .demod_address = 0x32 >> 1,
123 .output_mode = S5H1409_SERIAL_OUTPUT,
124 .gpio = S5H1409_GPIO_OFF,
125 .qam_if = 4000,
126 .inversion = S5H1409_INVERSION_ON,
Steven Tothdfc1c082008-01-15 21:35:22 -0300127 .status_mode = S5H1409_DEMODLOCKING,
128 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300129};
130
Steven Tothfc959be2007-09-08 19:08:17 -0300131static struct s5h1409_config hauppauge_hvr1800lp_config = {
132 .demod_address = 0x32 >> 1,
133 .output_mode = S5H1409_SERIAL_OUTPUT,
Steven Tothd19770e2007-03-11 20:44:05 -0300134 .gpio = S5H1409_GPIO_OFF,
Michael Krufky2b032382007-12-13 10:04:10 -0300135 .qam_if = 44000,
Steven Tothfe475162007-03-20 15:27:53 -0300136 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300137 .status_mode = S5H1409_DEMODLOCKING,
138 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothd19770e2007-03-11 20:44:05 -0300139};
140
Michael Krufky07b4a832007-12-18 01:09:11 -0300141static struct s5h1409_config hauppauge_hvr1500_config = {
142 .demod_address = 0x32 >> 1,
143 .output_mode = S5H1409_SERIAL_OUTPUT,
144 .gpio = S5H1409_GPIO_OFF,
145 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300146 .status_mode = S5H1409_DEMODLOCKING,
147 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Michael Krufky07b4a832007-12-18 01:09:11 -0300148};
149
Steven Toth86184e02007-09-04 21:40:47 -0300150static struct mt2131_config hauppauge_generic_tunerconfig = {
Steven Totha77743b2007-08-22 21:01:20 -0300151 0x61
152};
153
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300154static struct lgdt330x_config fusionhdtv_5_express = {
155 .demod_address = 0x0e,
156 .demod_chip = LGDT3303,
157 .serial_mpeg = 0x40,
158};
159
Steven Tothd1987d52007-12-18 01:57:06 -0300160static struct s5h1409_config hauppauge_hvr1500q_config = {
161 .demod_address = 0x32 >> 1,
162 .output_mode = S5H1409_SERIAL_OUTPUT,
163 .gpio = S5H1409_GPIO_ON,
164 .qam_if = 44000,
165 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300166 .status_mode = S5H1409_DEMODLOCKING,
167 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothd1987d52007-12-18 01:57:06 -0300168};
169
Michael Krufky335377b2008-05-07 01:43:10 -0300170static struct s5h1409_config dvico_s5h1409_config = {
171 .demod_address = 0x32 >> 1,
172 .output_mode = S5H1409_SERIAL_OUTPUT,
173 .gpio = S5H1409_GPIO_ON,
174 .qam_if = 44000,
175 .inversion = S5H1409_INVERSION_OFF,
176 .status_mode = S5H1409_DEMODLOCKING,
177 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
178};
179
Michael Krufky52b50452008-07-09 02:18:49 -0300180static struct s5h1411_config dvico_s5h1411_config = {
181 .output_mode = S5H1411_SERIAL_OUTPUT,
182 .gpio = S5H1411_GPIO_ON,
183 .qam_if = S5H1411_IF_44000,
184 .vsb_if = S5H1411_IF_44000,
185 .inversion = S5H1411_INVERSION_OFF,
186 .status_mode = S5H1411_DEMODLOCKING,
187 .mpeg_timing = S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
188};
189
Steven Tothd1987d52007-12-18 01:57:06 -0300190static struct xc5000_config hauppauge_hvr1500q_tunerconfig = {
Steven Tothe12671c2007-12-20 01:14:43 -0300191 .i2c_address = 0x61,
192 .if_khz = 5380,
Steven Tothd1987d52007-12-18 01:57:06 -0300193};
194
Michael Krufky335377b2008-05-07 01:43:10 -0300195static struct xc5000_config dvico_xc5000_tunerconfig = {
196 .i2c_address = 0x64,
197 .if_khz = 5380,
Michael Krufky335377b2008-05-07 01:43:10 -0300198};
199
Michael Krufky4041f1a2007-12-24 04:52:08 -0300200static struct tda829x_config tda829x_no_probe = {
201 .probe_tuner = TDA829X_DONT_PROBE,
202};
203
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300204static struct tda18271_std_map hauppauge_tda18271_std_map = {
Michael Krufkyc0dc0c12008-04-22 14:46:22 -0300205 .atsc_6 = { .if_freq = 5380, .agc_mode = 3, .std = 3,
206 .if_lvl = 6, .rfagc_top = 0x37 },
207 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 0,
208 .if_lvl = 6, .rfagc_top = 0x37 },
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300209};
210
211static struct tda18271_config hauppauge_tda18271_config = {
212 .std_map = &hauppauge_tda18271_std_map,
213 .gate = TDA18271_GATE_ANALOG,
214};
215
Steven Tothb3ea0162008-04-19 01:14:19 -0300216static struct tda18271_config hauppauge_hvr1200_tuner_config = {
217 .gate = TDA18271_GATE_ANALOG,
218};
219
Harvey Harrisonb1721d02008-04-25 19:03:08 -0700220static struct dibx000_agc_config xc3028_agc_config = {
Steven Toth66762372008-04-22 15:38:26 -0300221 BAND_VHF | BAND_UHF, /* band_caps */
222
223 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=0,
224 * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0,
225 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0,
226 * P_agc_nb_est=2, P_agc_write=0
227 */
228 (0 << 15) | (0 << 14) | (0 << 11) | (0 << 10) | (0 << 9) | (0 << 8) |
229 (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0), /* setup */
230
231 712, /* inv_gain */
232 21, /* time_stabiliz */
233
234 0, /* alpha_level */
235 118, /* thlock */
236
237 0, /* wbd_inv */
238 2867, /* wbd_ref */
239 0, /* wbd_sel */
240 2, /* wbd_alpha */
241
242 0, /* agc1_max */
243 0, /* agc1_min */
244 39718, /* agc2_max */
245 9930, /* agc2_min */
246 0, /* agc1_pt1 */
247 0, /* agc1_pt2 */
248 0, /* agc1_pt3 */
249 0, /* agc1_slope1 */
250 0, /* agc1_slope2 */
251 0, /* agc2_pt1 */
252 128, /* agc2_pt2 */
253 29, /* agc2_slope1 */
254 29, /* agc2_slope2 */
255
256 17, /* alpha_mant */
257 27, /* alpha_exp */
258 23, /* beta_mant */
259 51, /* beta_exp */
260
261 1, /* perform_agc_softsplit */
262};
263
264/* PLL Configuration for COFDM BW_MHz = 8.000000
265 * With external clock = 30.000000 */
Harvey Harrisonb1721d02008-04-25 19:03:08 -0700266static struct dibx000_bandwidth_config xc3028_bw_config = {
Steven Toth66762372008-04-22 15:38:26 -0300267 60000, /* internal */
268 30000, /* sampling */
269 1, /* pll_cfg: prediv */
270 8, /* pll_cfg: ratio */
271 3, /* pll_cfg: range */
272 1, /* pll_cfg: reset */
273 0, /* pll_cfg: bypass */
274 0, /* misc: refdiv */
275 0, /* misc: bypclk_div */
276 1, /* misc: IO_CLK_en_core */
277 1, /* misc: ADClkSrc */
278 0, /* misc: modulo */
279 (3 << 14) | (1 << 12) | (524 << 0), /* sad_cfg: refsel, sel, freq_15k */
280 (1 << 25) | 5816102, /* ifreq = 5.200000 MHz */
281 20452225, /* timf */
282 30000000 /* xtal_hz */
283};
284
285static struct dib7000p_config hauppauge_hvr1400_dib7000_config = {
286 .output_mpeg2_in_188_bytes = 1,
287 .hostbus_diversity = 1,
288 .tuner_is_baseband = 0,
289 .update_lna = NULL,
290
291 .agc_config_count = 1,
292 .agc = &xc3028_agc_config,
293 .bw = &xc3028_bw_config,
294
295 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
296 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
297 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
298
299 .pwm_freq_div = 0,
300 .agc_control = NULL,
301 .spur_protect = 0,
302
303 .output_mode = OUTMODE_MPEG2_SERIAL,
304};
305
Steven Tothaef2d182008-08-04 21:39:53 -0300306static struct zl10353_config dvico_fusionhdtv_xc3028 = {
307 .demod_address = 0x0f,
308 .if2 = 45600,
309 .no_tuner = 1,
310};
311
Igor M. Liplianin96318d02009-01-17 12:11:20 -0300312static int tbs_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
313{
314 struct cx23885_tsport *port = fe->dvb->priv;
315 struct cx23885_dev *dev = port->dev;
316
317 if (voltage == SEC_VOLTAGE_18)
318 cx_write(MC417_RWD, 0x00001e00);/* GPIO-13 high */
319 else if (voltage == SEC_VOLTAGE_13)
320 cx_write(MC417_RWD, 0x00001a00);/* GPIO-13 low */
321 else
322 cx_write(MC417_RWD, 0x00001800);/* GPIO-12 low */
323 return 0;
324}
325
326static struct cx24116_config tbs_cx24116_config = {
327 .demod_address = 0x05,
328};
329
Igor M. Liplianin579943f2009-01-17 12:18:26 -0300330static struct cx24116_config tevii_cx24116_config = {
331 .demod_address = 0x55,
332};
333
Steven Tothd19770e2007-03-11 20:44:05 -0300334static int dvb_register(struct cx23885_tsport *port)
335{
336 struct cx23885_dev *dev = port->dev;
Michael Krufkyf139fa72007-09-09 03:55:34 -0300337 struct cx23885_i2c *i2c_bus = NULL;
Steven Toth363c35f2008-10-11 11:05:50 -0300338 struct videobuf_dvb_frontend *fe0;
339
Darron Broadf972e0b2008-10-11 11:24:30 -0300340 /* Get the first frontend */
Darron Broad92abe9e2008-10-11 11:18:53 -0300341 fe0 = videobuf_dvb_get_frontend(&port->frontends, 1);
Steven Toth363c35f2008-10-11 11:05:50 -0300342 if (!fe0)
343 return -EINVAL;
Steven Tothd19770e2007-03-11 20:44:05 -0300344
345 /* init struct videobuf_dvb */
Steven Toth363c35f2008-10-11 11:05:50 -0300346 fe0->dvb.name = dev->name;
Steven Tothd19770e2007-03-11 20:44:05 -0300347
348 /* init frontend */
349 switch (dev->board) {
Steven Totha77743b2007-08-22 21:01:20 -0300350 case CX23885_BOARD_HAUPPAUGE_HVR1250:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300351 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300352 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Toth86184e02007-09-04 21:40:47 -0300353 &hauppauge_generic_config,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300354 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300355 if (fe0->dvb.frontend != NULL) {
356 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300357 &i2c_bus->i2c_adap,
Steven Toth86184e02007-09-04 21:40:47 -0300358 &hauppauge_generic_tunerconfig, 0);
Steven Tothd19770e2007-03-11 20:44:05 -0300359 }
360 break;
Michael Krufky3ba71d22007-12-07 01:40:36 -0300361 case CX23885_BOARD_HAUPPAUGE_HVR1800:
362 i2c_bus = &dev->i2c_bus[0];
Darron Broad92abe9e2008-10-11 11:18:53 -0300363 switch (alt_tuner) {
Michael Krufky3ba71d22007-12-07 01:40:36 -0300364 case 1:
Steven Toth363c35f2008-10-11 11:05:50 -0300365 fe0->dvb.frontend =
Michael Krufky3ba71d22007-12-07 01:40:36 -0300366 dvb_attach(s5h1409_attach,
367 &hauppauge_ezqam_config,
368 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300369 if (fe0->dvb.frontend != NULL) {
370 dvb_attach(tda829x_attach, fe0->dvb.frontend,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300371 &dev->i2c_bus[1].i2c_adap, 0x42,
Michael Krufky4041f1a2007-12-24 04:52:08 -0300372 &tda829x_no_probe);
Steven Toth363c35f2008-10-11 11:05:50 -0300373 dvb_attach(tda18271_attach, fe0->dvb.frontend,
Michael Krufky4041f1a2007-12-24 04:52:08 -0300374 0x60, &dev->i2c_bus[1].i2c_adap,
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300375 &hauppauge_tda18271_config);
Michael Krufky3ba71d22007-12-07 01:40:36 -0300376 }
377 break;
378 case 0:
379 default:
Steven Toth363c35f2008-10-11 11:05:50 -0300380 fe0->dvb.frontend =
Michael Krufky3ba71d22007-12-07 01:40:36 -0300381 dvb_attach(s5h1409_attach,
382 &hauppauge_generic_config,
383 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300384 if (fe0->dvb.frontend != NULL)
385 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300386 &i2c_bus->i2c_adap,
387 &hauppauge_generic_tunerconfig, 0);
388 break;
389 }
390 break;
Steven Tothfc959be2007-09-08 19:08:17 -0300391 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300392 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300393 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Tothfc959be2007-09-08 19:08:17 -0300394 &hauppauge_hvr1800lp_config,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300395 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300396 if (fe0->dvb.frontend != NULL) {
397 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300398 &i2c_bus->i2c_adap,
Steven Tothfc959be2007-09-08 19:08:17 -0300399 &hauppauge_generic_tunerconfig, 0);
400 }
401 break;
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300402 case CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300403 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300404 fe0->dvb.frontend = dvb_attach(lgdt330x_attach,
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300405 &fusionhdtv_5_express,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300406 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300407 if (fe0->dvb.frontend != NULL) {
408 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufky827855d2008-04-22 14:46:16 -0300409 &i2c_bus->i2c_adap, 0x61,
410 TUNER_LG_TDVS_H06XF);
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300411 }
412 break;
Steven Tothd1987d52007-12-18 01:57:06 -0300413 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
414 i2c_bus = &dev->i2c_bus[1];
Steven Toth363c35f2008-10-11 11:05:50 -0300415 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Tothd1987d52007-12-18 01:57:06 -0300416 &hauppauge_hvr1500q_config,
417 &dev->i2c_bus[0].i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300418 if (fe0->dvb.frontend != NULL)
419 dvb_attach(xc5000_attach, fe0->dvb.frontend,
Michael Krufky30650962008-09-06 14:56:58 -0300420 &i2c_bus->i2c_adap,
421 &hauppauge_hvr1500q_tunerconfig);
Steven Tothd1987d52007-12-18 01:57:06 -0300422 break;
Michael Krufky07b4a832007-12-18 01:09:11 -0300423 case CX23885_BOARD_HAUPPAUGE_HVR1500:
424 i2c_bus = &dev->i2c_bus[1];
Steven Toth363c35f2008-10-11 11:05:50 -0300425 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Michael Krufky07b4a832007-12-18 01:09:11 -0300426 &hauppauge_hvr1500_config,
427 &dev->i2c_bus[0].i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300428 if (fe0->dvb.frontend != NULL) {
Michael Krufky07b4a832007-12-18 01:09:11 -0300429 struct dvb_frontend *fe;
430 struct xc2028_config cfg = {
431 .i2c_adap = &i2c_bus->i2c_adap,
432 .i2c_addr = 0x61,
Michael Krufky07b4a832007-12-18 01:09:11 -0300433 };
434 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfe2008-09-16 02:15:30 -0300435 .fname = XC2028_DEFAULT_FIRMWARE,
Michael Krufky07b4a832007-12-18 01:09:11 -0300436 .max_len = 64,
Mauro Carvalho Chehab33e53162008-04-21 06:58:48 -0300437 .scode_table = XC3028_FE_OREN538,
Michael Krufky07b4a832007-12-18 01:09:11 -0300438 };
439
440 fe = dvb_attach(xc2028_attach,
Steven Toth363c35f2008-10-11 11:05:50 -0300441 fe0->dvb.frontend, &cfg);
Michael Krufky07b4a832007-12-18 01:09:11 -0300442 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
443 fe->ops.tuner_ops.set_config(fe, &ctl);
444 }
445 break;
Steven Tothb3ea0162008-04-19 01:14:19 -0300446 case CX23885_BOARD_HAUPPAUGE_HVR1200:
Steven Totha780a312008-04-19 01:25:52 -0300447 case CX23885_BOARD_HAUPPAUGE_HVR1700:
Steven Tothb3ea0162008-04-19 01:14:19 -0300448 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300449 fe0->dvb.frontend = dvb_attach(tda10048_attach,
Steven Tothb3ea0162008-04-19 01:14:19 -0300450 &hauppauge_hvr1200_config,
451 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300452 if (fe0->dvb.frontend != NULL) {
453 dvb_attach(tda829x_attach, fe0->dvb.frontend,
Steven Tothb3ea0162008-04-19 01:14:19 -0300454 &dev->i2c_bus[1].i2c_adap, 0x42,
455 &tda829x_no_probe);
Steven Toth363c35f2008-10-11 11:05:50 -0300456 dvb_attach(tda18271_attach, fe0->dvb.frontend,
Steven Tothb3ea0162008-04-19 01:14:19 -0300457 0x60, &dev->i2c_bus[1].i2c_adap,
458 &hauppauge_hvr1200_tuner_config);
459 }
460 break;
Steven Toth66762372008-04-22 15:38:26 -0300461 case CX23885_BOARD_HAUPPAUGE_HVR1400:
462 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300463 fe0->dvb.frontend = dvb_attach(dib7000p_attach,
Steven Toth66762372008-04-22 15:38:26 -0300464 &i2c_bus->i2c_adap,
465 0x12, &hauppauge_hvr1400_dib7000_config);
Steven Toth363c35f2008-10-11 11:05:50 -0300466 if (fe0->dvb.frontend != NULL) {
Steven Toth66762372008-04-22 15:38:26 -0300467 struct dvb_frontend *fe;
468 struct xc2028_config cfg = {
469 .i2c_adap = &dev->i2c_bus[1].i2c_adap,
470 .i2c_addr = 0x64,
Steven Toth66762372008-04-22 15:38:26 -0300471 };
472 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfe2008-09-16 02:15:30 -0300473 .fname = XC3028L_DEFAULT_FIRMWARE,
Steven Toth66762372008-04-22 15:38:26 -0300474 .max_len = 64,
475 .demod = 5000,
Steven Toth9c8ced52008-10-16 20:18:44 -0300476 /* This is true for all demods with
477 v36 firmware? */
Mauro Carvalho Chehab0975fc62008-09-28 02:24:44 -0300478 .type = XC2028_D2633,
Steven Toth66762372008-04-22 15:38:26 -0300479 };
480
481 fe = dvb_attach(xc2028_attach,
Steven Toth363c35f2008-10-11 11:05:50 -0300482 fe0->dvb.frontend, &cfg);
Steven Toth66762372008-04-22 15:38:26 -0300483 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
484 fe->ops.tuner_ops.set_config(fe, &ctl);
485 }
486 break;
Michael Krufky335377b2008-05-07 01:43:10 -0300487 case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP:
488 i2c_bus = &dev->i2c_bus[port->nr - 1];
489
Steven Toth363c35f2008-10-11 11:05:50 -0300490 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Michael Krufky335377b2008-05-07 01:43:10 -0300491 &dvico_s5h1409_config,
492 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300493 if (fe0->dvb.frontend == NULL)
494 fe0->dvb.frontend = dvb_attach(s5h1411_attach,
Michael Krufky52b50452008-07-09 02:18:49 -0300495 &dvico_s5h1411_config,
496 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300497 if (fe0->dvb.frontend != NULL)
498 dvb_attach(xc5000_attach, fe0->dvb.frontend,
Michael Krufky30650962008-09-06 14:56:58 -0300499 &i2c_bus->i2c_adap,
500 &dvico_xc5000_tunerconfig);
Michael Krufky335377b2008-05-07 01:43:10 -0300501 break;
Steven Tothaef2d182008-08-04 21:39:53 -0300502 case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP: {
503 i2c_bus = &dev->i2c_bus[port->nr - 1];
504
Steven Toth363c35f2008-10-11 11:05:50 -0300505 fe0->dvb.frontend = dvb_attach(zl10353_attach,
Steven Tothaef2d182008-08-04 21:39:53 -0300506 &dvico_fusionhdtv_xc3028,
507 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300508 if (fe0->dvb.frontend != NULL) {
Steven Tothaef2d182008-08-04 21:39:53 -0300509 struct dvb_frontend *fe;
510 struct xc2028_config cfg = {
511 .i2c_adap = &i2c_bus->i2c_adap,
512 .i2c_addr = 0x61,
Steven Tothaef2d182008-08-04 21:39:53 -0300513 };
514 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfe2008-09-16 02:15:30 -0300515 .fname = XC2028_DEFAULT_FIRMWARE,
Steven Tothaef2d182008-08-04 21:39:53 -0300516 .max_len = 64,
517 .demod = XC3028_FE_ZARLINK456,
518 };
519
Steven Toth363c35f2008-10-11 11:05:50 -0300520 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend,
Steven Tothaef2d182008-08-04 21:39:53 -0300521 &cfg);
522 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
523 fe->ops.tuner_ops.set_config(fe, &ctl);
524 }
525 break;
526 }
Steven Toth4c56b042008-08-12 13:30:03 -0300527 case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
Igor M. Liplianin9bb1b7e2008-11-23 14:11:16 -0300528 case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
Steven Toth4c56b042008-08-12 13:30:03 -0300529 i2c_bus = &dev->i2c_bus[0];
530
Steven Toth363c35f2008-10-11 11:05:50 -0300531 fe0->dvb.frontend = dvb_attach(zl10353_attach,
Steven Toth4c56b042008-08-12 13:30:03 -0300532 &dvico_fusionhdtv_xc3028,
533 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300534 if (fe0->dvb.frontend != NULL) {
Steven Toth4c56b042008-08-12 13:30:03 -0300535 struct dvb_frontend *fe;
536 struct xc2028_config cfg = {
537 .i2c_adap = &dev->i2c_bus[1].i2c_adap,
538 .i2c_addr = 0x61,
Steven Toth4c56b042008-08-12 13:30:03 -0300539 };
540 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfe2008-09-16 02:15:30 -0300541 .fname = XC2028_DEFAULT_FIRMWARE,
Steven Toth4c56b042008-08-12 13:30:03 -0300542 .max_len = 64,
543 .demod = XC3028_FE_ZARLINK456,
544 };
545
Steven Toth363c35f2008-10-11 11:05:50 -0300546 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend,
Steven Toth4c56b042008-08-12 13:30:03 -0300547 &cfg);
548 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
549 fe->ops.tuner_ops.set_config(fe, &ctl);
550 }
551 break;
Igor M. Liplianin96318d02009-01-17 12:11:20 -0300552 case CX23885_BOARD_TBS_6920:
553 i2c_bus = &dev->i2c_bus[0];
554
555 fe0->dvb.frontend = dvb_attach(cx24116_attach,
556 &tbs_cx24116_config,
557 &i2c_bus->i2c_adap);
558 if (fe0->dvb.frontend != NULL)
559 fe0->dvb.frontend->ops.set_voltage = tbs_set_voltage;
560
561 break;
Igor M. Liplianin579943f2009-01-17 12:18:26 -0300562 case CX23885_BOARD_TEVII_S470:
563 i2c_bus = &dev->i2c_bus[1];
564
565 fe0->dvb.frontend = dvb_attach(cx24116_attach,
566 &tevii_cx24116_config,
567 &i2c_bus->i2c_adap);
568 if (fe0->dvb.frontend != NULL)
569 fe0->dvb.frontend->ops.set_voltage = tbs_set_voltage;
570
571 break;
Steven Tothd19770e2007-03-11 20:44:05 -0300572 default:
Steven Toth9c8ced52008-10-16 20:18:44 -0300573 printk(KERN_INFO "%s: The frontend of your DVB/ATSC card "
574 " isn't supported yet\n",
Steven Tothd19770e2007-03-11 20:44:05 -0300575 dev->name);
576 break;
577 }
Steven Toth363c35f2008-10-11 11:05:50 -0300578 if (NULL == fe0->dvb.frontend) {
Steven Toth9c8ced52008-10-16 20:18:44 -0300579 printk(KERN_ERR "%s: frontend initialization failed\n",
580 dev->name);
Steven Tothd19770e2007-03-11 20:44:05 -0300581 return -1;
582 }
Michael Krufkyd7cba042008-09-12 13:31:45 -0300583 /* define general-purpose callback pointer */
Steven Toth363c35f2008-10-11 11:05:50 -0300584 fe0->dvb.frontend->callback = cx23885_tuner_callback;
Steven Tothd19770e2007-03-11 20:44:05 -0300585
586 /* Put the analog decoder in standby to keep it quiet */
Michael Krufkyf139fa72007-09-09 03:55:34 -0300587 cx23885_call_i2c_clients(i2c_bus, TUNER_SET_STANDBY, NULL);
Steven Tothd19770e2007-03-11 20:44:05 -0300588
Steven Toth363c35f2008-10-11 11:05:50 -0300589 if (fe0->dvb.frontend->ops.analog_ops.standby)
590 fe0->dvb.frontend->ops.analog_ops.standby(fe0->dvb.frontend);
Michael Krufky3ba71d22007-12-07 01:40:36 -0300591
Steven Tothd19770e2007-03-11 20:44:05 -0300592 /* register everything */
Steven Toth363c35f2008-10-11 11:05:50 -0300593 return videobuf_dvb_register_bus(&port->frontends, THIS_MODULE, port,
Darron Broad59b18422008-10-11 11:44:05 -0300594 &dev->pci->dev, adapter_nr, 0);
Steven Toth363c35f2008-10-11 11:05:50 -0300595
Steven Tothd19770e2007-03-11 20:44:05 -0300596}
597
598int cx23885_dvb_register(struct cx23885_tsport *port)
599{
Steven Toth363c35f2008-10-11 11:05:50 -0300600
601 struct videobuf_dvb_frontend *fe0;
Steven Tothd19770e2007-03-11 20:44:05 -0300602 struct cx23885_dev *dev = port->dev;
Steven Totheb0c58b2008-10-11 12:34:39 -0300603 int err, i;
Steven Tothd19770e2007-03-11 20:44:05 -0300604
Steven Totheb0c58b2008-10-11 12:34:39 -0300605 /* Here we need to allocate the correct number of frontends,
606 * as reflected in the cards struct. The reality is that currrently
607 * no cx23885 boards support this - yet. But, if we don't modify this
608 * code then the second frontend would never be allocated (later)
609 * and fail with error before the attach in dvb_register().
610 * Without these changes we risk an OOPS later. The changes here
611 * are for safety, and should provide a good foundation for the
612 * future addition of any multi-frontend cx23885 based boards.
613 */
614 printk(KERN_INFO "%s() allocating %d frontend(s)\n", __func__,
615 port->num_frontends);
Steven Toth363c35f2008-10-11 11:05:50 -0300616
Steven Totheb0c58b2008-10-11 12:34:39 -0300617 for (i = 1; i <= port->num_frontends; i++) {
Darron Broad96b7a1a2008-10-15 20:26:34 -0300618 if (videobuf_dvb_alloc_frontend(
Steven Toth9c8ced52008-10-16 20:18:44 -0300619 &port->frontends, i) == NULL) {
Steven Totheb0c58b2008-10-11 12:34:39 -0300620 printk(KERN_ERR "%s() failed to alloc\n", __func__);
621 return -ENOMEM;
622 }
Steven Tothd19770e2007-03-11 20:44:05 -0300623
Steven Totheb0c58b2008-10-11 12:34:39 -0300624 fe0 = videobuf_dvb_get_frontend(&port->frontends, i);
625 if (!fe0)
626 err = -EINVAL;
Steven Tothd19770e2007-03-11 20:44:05 -0300627
Steven Totheb0c58b2008-10-11 12:34:39 -0300628 dprintk(1, "%s\n", __func__);
Steven Toth9c8ced52008-10-16 20:18:44 -0300629 dprintk(1, " ->probed by Card=%d Name=%s, PCI %02x:%02x\n",
Steven Totheb0c58b2008-10-11 12:34:39 -0300630 dev->board,
631 dev->name,
632 dev->pci_bus,
633 dev->pci_slot);
634
635 err = -ENODEV;
636
637 /* dvb stuff */
638 /* We have to init the queue for each frontend on a port. */
Steven Toth9c8ced52008-10-16 20:18:44 -0300639 printk(KERN_INFO "%s: cx23885 based dvb card\n", dev->name);
640 videobuf_queue_sg_init(&fe0->dvb.dvbq, &dvb_qops,
641 &dev->pci->dev, &port->slock,
Michael Krufky44a64812007-03-20 23:00:18 -0300642 V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_TOP,
643 sizeof(struct cx23885_buffer), port);
Steven Totheb0c58b2008-10-11 12:34:39 -0300644 }
Steven Tothd19770e2007-03-11 20:44:05 -0300645 err = dvb_register(port);
646 if (err != 0)
Steven Toth9c8ced52008-10-16 20:18:44 -0300647 printk(KERN_ERR "%s() dvb_register failed err = %d\n",
648 __func__, err);
Steven Tothd19770e2007-03-11 20:44:05 -0300649
Steven Tothd19770e2007-03-11 20:44:05 -0300650 return err;
651}
652
653int cx23885_dvb_unregister(struct cx23885_tsport *port)
654{
Steven Toth363c35f2008-10-11 11:05:50 -0300655 struct videobuf_dvb_frontend *fe0;
656
Steven Totheb0c58b2008-10-11 12:34:39 -0300657 /* FIXME: in an error condition where the we have
658 * an expected number of frontends (attach problem)
659 * then this might not clean up correctly, if 1
660 * is invalid.
661 * This comment only applies to future boards IF they
662 * implement MFE support.
663 */
Darron Broad92abe9e2008-10-11 11:18:53 -0300664 fe0 = videobuf_dvb_get_frontend(&port->frontends, 1);
Steven Toth9c8ced52008-10-16 20:18:44 -0300665 if (fe0->dvb.frontend)
Steven Toth363c35f2008-10-11 11:05:50 -0300666 videobuf_dvb_unregister_bus(&port->frontends);
Steven Tothd19770e2007-03-11 20:44:05 -0300667
668 return 0;
669}
Michael Krufky44a64812007-03-20 23:00:18 -0300670