blob: f4f046cd81a5354df9d78e73e3bd100dd52a0b72 [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"
Igor M. Liplianinf867c3f2009-06-19 05:45:23 -030048#include "stv0900_reg.h"
Igor M. Liplianin5a23b072009-03-03 12:06:09 -030049#include "stv6110.h"
50#include "lnbh24.h"
Igor M. Liplianin96318d02009-01-17 12:11:20 -030051#include "cx24116.h"
Igor M. Liplianin5a23b072009-03-03 12:06:09 -030052#include "cimax2.h"
David Wong493b7122009-05-18 05:25:49 -030053#include "lgs8gxx.h"
Igor M. Liplianin5a23b072009-03-03 12:06:09 -030054#include "netup-eeprom.h"
55#include "netup-init.h"
Michael Krufkya5dbf452009-05-03 23:27:02 -030056#include "lgdt3305.h"
Steven Tothd19770e2007-03-11 20:44:05 -030057
Steven Toth4513fc692008-01-12 11:36:36 -030058static unsigned int debug;
Steven Tothd19770e2007-03-11 20:44:05 -030059
Steven Toth4513fc692008-01-12 11:36:36 -030060#define dprintk(level, fmt, arg...)\
61 do { if (debug >= level)\
62 printk(KERN_DEBUG "%s/0: " fmt, dev->name, ## arg);\
63 } while (0)
Steven Tothd19770e2007-03-11 20:44:05 -030064
65/* ------------------------------------------------------------------ */
66
Michael Krufky3ba71d22007-12-07 01:40:36 -030067static unsigned int alt_tuner;
68module_param(alt_tuner, int, 0644);
69MODULE_PARM_DESC(alt_tuner, "Enable alternate tuner configuration");
70
Janne Grunau78e92002008-04-09 19:13:13 -030071DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
72
Michael Krufky3ba71d22007-12-07 01:40:36 -030073/* ------------------------------------------------------------------ */
74
Steven Tothd19770e2007-03-11 20:44:05 -030075static int dvb_buf_setup(struct videobuf_queue *q,
76 unsigned int *count, unsigned int *size)
77{
78 struct cx23885_tsport *port = q->priv_data;
79
80 port->ts_packet_size = 188 * 4;
81 port->ts_packet_count = 32;
82
83 *size = port->ts_packet_size * port->ts_packet_count;
84 *count = 32;
85 return 0;
86}
87
Michael Krufky44a64812007-03-20 23:00:18 -030088static int dvb_buf_prepare(struct videobuf_queue *q,
89 struct videobuf_buffer *vb, enum v4l2_field field)
Steven Tothd19770e2007-03-11 20:44:05 -030090{
91 struct cx23885_tsport *port = q->priv_data;
Steven Toth9c8ced52008-10-16 20:18:44 -030092 return cx23885_buf_prepare(q, port, (struct cx23885_buffer *)vb, field);
Steven Tothd19770e2007-03-11 20:44:05 -030093}
94
95static void dvb_buf_queue(struct videobuf_queue *q, struct videobuf_buffer *vb)
96{
97 struct cx23885_tsport *port = q->priv_data;
Steven Toth9c8ced52008-10-16 20:18:44 -030098 cx23885_buf_queue(port, (struct cx23885_buffer *)vb);
Steven Tothd19770e2007-03-11 20:44:05 -030099}
100
Michael Krufky44a64812007-03-20 23:00:18 -0300101static void dvb_buf_release(struct videobuf_queue *q,
102 struct videobuf_buffer *vb)
Steven Tothd19770e2007-03-11 20:44:05 -0300103{
Steven Toth9c8ced52008-10-16 20:18:44 -0300104 cx23885_free_buffer(q, (struct cx23885_buffer *)vb);
Steven Tothd19770e2007-03-11 20:44:05 -0300105}
106
107static struct videobuf_queue_ops dvb_qops = {
108 .buf_setup = dvb_buf_setup,
109 .buf_prepare = dvb_buf_prepare,
110 .buf_queue = dvb_buf_queue,
111 .buf_release = dvb_buf_release,
112};
113
Steven Toth86184e02007-09-04 21:40:47 -0300114static struct s5h1409_config hauppauge_generic_config = {
Steven Tothd19770e2007-03-11 20:44:05 -0300115 .demod_address = 0x32 >> 1,
116 .output_mode = S5H1409_SERIAL_OUTPUT,
Steven Tothfc959be2007-09-08 19:08:17 -0300117 .gpio = S5H1409_GPIO_ON,
Michael Krufky2b032382007-12-13 10:04:10 -0300118 .qam_if = 44000,
Steven Tothfc959be2007-09-08 19:08:17 -0300119 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300120 .status_mode = S5H1409_DEMODLOCKING,
121 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothfc959be2007-09-08 19:08:17 -0300122};
123
Steven Tothb3ea0162008-04-19 01:14:19 -0300124static struct tda10048_config hauppauge_hvr1200_config = {
125 .demod_address = 0x10 >> 1,
126 .output_mode = TDA10048_SERIAL_OUTPUT,
127 .fwbulkwritelen = TDA10048_BULKWRITE_200,
Steven Toth484d9e02009-05-02 11:08:23 -0300128 .inversion = TDA10048_INVERSION_ON,
Steven Toth8816bef2009-05-15 21:04:18 -0300129 .dtv6_if_freq_khz = TDA10048_IF_3300,
130 .dtv7_if_freq_khz = TDA10048_IF_3800,
131 .dtv8_if_freq_khz = TDA10048_IF_4300,
Steven Toth484d9e02009-05-02 11:08:23 -0300132 .clk_freq_khz = TDA10048_CLK_16000,
Steven Tothb3ea0162008-04-19 01:14:19 -0300133};
134
Michael Krufky6b926ec2009-05-12 17:32:17 -0300135static struct tda10048_config hauppauge_hvr1210_config = {
136 .demod_address = 0x10 >> 1,
137 .output_mode = TDA10048_SERIAL_OUTPUT,
138 .fwbulkwritelen = TDA10048_BULKWRITE_200,
139 .inversion = TDA10048_INVERSION_ON,
Michael Krufkyc27586e2009-05-16 11:00:23 -0300140 .dtv6_if_freq_khz = TDA10048_IF_3300,
141 .dtv7_if_freq_khz = TDA10048_IF_3500,
142 .dtv8_if_freq_khz = TDA10048_IF_4000,
Michael Krufky6b926ec2009-05-12 17:32:17 -0300143 .clk_freq_khz = TDA10048_CLK_16000,
144};
145
Michael Krufky3ba71d22007-12-07 01:40:36 -0300146static struct s5h1409_config hauppauge_ezqam_config = {
147 .demod_address = 0x32 >> 1,
148 .output_mode = S5H1409_SERIAL_OUTPUT,
149 .gpio = S5H1409_GPIO_OFF,
150 .qam_if = 4000,
151 .inversion = S5H1409_INVERSION_ON,
Steven Tothdfc1c082008-01-15 21:35:22 -0300152 .status_mode = S5H1409_DEMODLOCKING,
153 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300154};
155
Steven Tothfc959be2007-09-08 19:08:17 -0300156static struct s5h1409_config hauppauge_hvr1800lp_config = {
157 .demod_address = 0x32 >> 1,
158 .output_mode = S5H1409_SERIAL_OUTPUT,
Steven Tothd19770e2007-03-11 20:44:05 -0300159 .gpio = S5H1409_GPIO_OFF,
Michael Krufky2b032382007-12-13 10:04:10 -0300160 .qam_if = 44000,
Steven Tothfe4751632007-03-20 15:27:53 -0300161 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300162 .status_mode = S5H1409_DEMODLOCKING,
163 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothd19770e2007-03-11 20:44:05 -0300164};
165
Michael Krufky07b4a832007-12-18 01:09:11 -0300166static struct s5h1409_config hauppauge_hvr1500_config = {
167 .demod_address = 0x32 >> 1,
168 .output_mode = S5H1409_SERIAL_OUTPUT,
169 .gpio = S5H1409_GPIO_OFF,
170 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300171 .status_mode = S5H1409_DEMODLOCKING,
172 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Michael Krufky07b4a832007-12-18 01:09:11 -0300173};
174
Steven Toth86184e02007-09-04 21:40:47 -0300175static struct mt2131_config hauppauge_generic_tunerconfig = {
Steven Totha77743b2007-08-22 21:01:20 -0300176 0x61
177};
178
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300179static struct lgdt330x_config fusionhdtv_5_express = {
180 .demod_address = 0x0e,
181 .demod_chip = LGDT3303,
182 .serial_mpeg = 0x40,
183};
184
Steven Tothd1987d52007-12-18 01:57:06 -0300185static struct s5h1409_config hauppauge_hvr1500q_config = {
186 .demod_address = 0x32 >> 1,
187 .output_mode = S5H1409_SERIAL_OUTPUT,
188 .gpio = S5H1409_GPIO_ON,
189 .qam_if = 44000,
190 .inversion = S5H1409_INVERSION_OFF,
Steven Tothdfc1c082008-01-15 21:35:22 -0300191 .status_mode = S5H1409_DEMODLOCKING,
192 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
Steven Tothd1987d52007-12-18 01:57:06 -0300193};
194
Michael Krufky335377b2008-05-07 01:43:10 -0300195static struct s5h1409_config dvico_s5h1409_config = {
196 .demod_address = 0x32 >> 1,
197 .output_mode = S5H1409_SERIAL_OUTPUT,
198 .gpio = S5H1409_GPIO_ON,
199 .qam_if = 44000,
200 .inversion = S5H1409_INVERSION_OFF,
201 .status_mode = S5H1409_DEMODLOCKING,
202 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
203};
204
Michael Krufky52b50452008-07-09 02:18:49 -0300205static struct s5h1411_config dvico_s5h1411_config = {
206 .output_mode = S5H1411_SERIAL_OUTPUT,
207 .gpio = S5H1411_GPIO_ON,
208 .qam_if = S5H1411_IF_44000,
209 .vsb_if = S5H1411_IF_44000,
210 .inversion = S5H1411_INVERSION_OFF,
211 .status_mode = S5H1411_DEMODLOCKING,
212 .mpeg_timing = S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
213};
214
Michael Krufky19bc5792009-05-08 16:05:29 -0300215static struct s5h1411_config hcw_s5h1411_config = {
216 .output_mode = S5H1411_SERIAL_OUTPUT,
217 .gpio = S5H1411_GPIO_OFF,
218 .vsb_if = S5H1411_IF_44000,
219 .qam_if = S5H1411_IF_4000,
220 .inversion = S5H1411_INVERSION_ON,
221 .status_mode = S5H1411_DEMODLOCKING,
222 .mpeg_timing = S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
223};
224
Steven Tothd1987d52007-12-18 01:57:06 -0300225static struct xc5000_config hauppauge_hvr1500q_tunerconfig = {
Steven Tothe12671cf2007-12-20 01:14:43 -0300226 .i2c_address = 0x61,
227 .if_khz = 5380,
Steven Tothd1987d52007-12-18 01:57:06 -0300228};
229
Michael Krufky335377b2008-05-07 01:43:10 -0300230static struct xc5000_config dvico_xc5000_tunerconfig = {
231 .i2c_address = 0x64,
232 .if_khz = 5380,
Michael Krufky335377b2008-05-07 01:43:10 -0300233};
234
Michael Krufky4041f1a2007-12-24 04:52:08 -0300235static struct tda829x_config tda829x_no_probe = {
236 .probe_tuner = TDA829X_DONT_PROBE,
237};
238
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300239static struct tda18271_std_map hauppauge_tda18271_std_map = {
Michael Krufkyc0dc0c12008-04-22 14:46:22 -0300240 .atsc_6 = { .if_freq = 5380, .agc_mode = 3, .std = 3,
241 .if_lvl = 6, .rfagc_top = 0x37 },
242 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 0,
243 .if_lvl = 6, .rfagc_top = 0x37 },
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300244};
245
Michael Krufkyb34cdc32009-05-21 12:49:28 -0300246static struct tda18271_std_map hauppauge_hvr1200_tda18271_std_map = {
247 .dvbt_6 = { .if_freq = 3300, .agc_mode = 3, .std = 4,
248 .if_lvl = 1, .rfagc_top = 0x37, },
249 .dvbt_7 = { .if_freq = 3800, .agc_mode = 3, .std = 5,
250 .if_lvl = 1, .rfagc_top = 0x37, },
251 .dvbt_8 = { .if_freq = 4300, .agc_mode = 3, .std = 6,
252 .if_lvl = 1, .rfagc_top = 0x37, },
253};
254
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300255static struct tda18271_config hauppauge_tda18271_config = {
256 .std_map = &hauppauge_tda18271_std_map,
257 .gate = TDA18271_GATE_ANALOG,
Michael Krufky04a68ba2009-09-06 14:11:09 -0300258 .output_opt = TDA18271_OUTPUT_LT_OFF,
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300259};
260
Steven Tothb3ea0162008-04-19 01:14:19 -0300261static struct tda18271_config hauppauge_hvr1200_tuner_config = {
Michael Krufkyb34cdc32009-05-21 12:49:28 -0300262 .std_map = &hauppauge_hvr1200_tda18271_std_map,
Steven Tothb3ea0162008-04-19 01:14:19 -0300263 .gate = TDA18271_GATE_ANALOG,
Michael Krufky04a68ba2009-09-06 14:11:09 -0300264 .output_opt = TDA18271_OUTPUT_LT_OFF,
Steven Tothb3ea0162008-04-19 01:14:19 -0300265};
266
Michael Krufky6b926ec2009-05-12 17:32:17 -0300267static struct tda18271_config hauppauge_hvr1210_tuner_config = {
268 .gate = TDA18271_GATE_DIGITAL,
Michael Krufky04a68ba2009-09-06 14:11:09 -0300269 .output_opt = TDA18271_OUTPUT_LT_OFF,
Michael Krufky6b926ec2009-05-12 17:32:17 -0300270};
271
Michael Krufky247bc542009-05-12 18:53:47 -0300272static struct tda18271_std_map hauppauge_hvr127x_std_map = {
Michael Krufkya5dbf452009-05-03 23:27:02 -0300273 .atsc_6 = { .if_freq = 3250, .agc_mode = 3, .std = 4,
274 .if_lvl = 1, .rfagc_top = 0x58 },
275 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 5,
276 .if_lvl = 1, .rfagc_top = 0x58 },
277};
278
Michael Krufky247bc542009-05-12 18:53:47 -0300279static struct tda18271_config hauppauge_hvr127x_config = {
280 .std_map = &hauppauge_hvr127x_std_map,
Michael Krufky04a68ba2009-09-06 14:11:09 -0300281 .output_opt = TDA18271_OUTPUT_LT_OFF,
Michael Krufkya5dbf452009-05-03 23:27:02 -0300282};
283
Michael Krufky247bc542009-05-12 18:53:47 -0300284static struct lgdt3305_config hauppauge_lgdt3305_config = {
Michael Krufkya5dbf452009-05-03 23:27:02 -0300285 .i2c_addr = 0x0e,
286 .mpeg_mode = LGDT3305_MPEG_SERIAL,
287 .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE,
288 .tpvalid_polarity = LGDT3305_TP_VALID_HIGH,
289 .deny_i2c_rptr = 1,
290 .spectral_inversion = 1,
291 .qam_if_khz = 4000,
292 .vsb_if_khz = 3250,
293};
294
Harvey Harrisonb1721d02008-04-25 19:03:08 -0700295static struct dibx000_agc_config xc3028_agc_config = {
Steven Toth66762372008-04-22 15:38:26 -0300296 BAND_VHF | BAND_UHF, /* band_caps */
297
298 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=0,
299 * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0,
300 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0,
301 * P_agc_nb_est=2, P_agc_write=0
302 */
303 (0 << 15) | (0 << 14) | (0 << 11) | (0 << 10) | (0 << 9) | (0 << 8) |
304 (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0), /* setup */
305
306 712, /* inv_gain */
307 21, /* time_stabiliz */
308
309 0, /* alpha_level */
310 118, /* thlock */
311
312 0, /* wbd_inv */
313 2867, /* wbd_ref */
314 0, /* wbd_sel */
315 2, /* wbd_alpha */
316
317 0, /* agc1_max */
318 0, /* agc1_min */
319 39718, /* agc2_max */
320 9930, /* agc2_min */
321 0, /* agc1_pt1 */
322 0, /* agc1_pt2 */
323 0, /* agc1_pt3 */
324 0, /* agc1_slope1 */
325 0, /* agc1_slope2 */
326 0, /* agc2_pt1 */
327 128, /* agc2_pt2 */
328 29, /* agc2_slope1 */
329 29, /* agc2_slope2 */
330
331 17, /* alpha_mant */
332 27, /* alpha_exp */
333 23, /* beta_mant */
334 51, /* beta_exp */
335
336 1, /* perform_agc_softsplit */
337};
338
339/* PLL Configuration for COFDM BW_MHz = 8.000000
340 * With external clock = 30.000000 */
Harvey Harrisonb1721d02008-04-25 19:03:08 -0700341static struct dibx000_bandwidth_config xc3028_bw_config = {
Steven Toth66762372008-04-22 15:38:26 -0300342 60000, /* internal */
343 30000, /* sampling */
344 1, /* pll_cfg: prediv */
345 8, /* pll_cfg: ratio */
346 3, /* pll_cfg: range */
347 1, /* pll_cfg: reset */
348 0, /* pll_cfg: bypass */
349 0, /* misc: refdiv */
350 0, /* misc: bypclk_div */
351 1, /* misc: IO_CLK_en_core */
352 1, /* misc: ADClkSrc */
353 0, /* misc: modulo */
354 (3 << 14) | (1 << 12) | (524 << 0), /* sad_cfg: refsel, sel, freq_15k */
355 (1 << 25) | 5816102, /* ifreq = 5.200000 MHz */
356 20452225, /* timf */
357 30000000 /* xtal_hz */
358};
359
360static struct dib7000p_config hauppauge_hvr1400_dib7000_config = {
361 .output_mpeg2_in_188_bytes = 1,
362 .hostbus_diversity = 1,
363 .tuner_is_baseband = 0,
364 .update_lna = NULL,
365
366 .agc_config_count = 1,
367 .agc = &xc3028_agc_config,
368 .bw = &xc3028_bw_config,
369
370 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
371 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
372 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
373
374 .pwm_freq_div = 0,
375 .agc_control = NULL,
376 .spur_protect = 0,
377
378 .output_mode = OUTMODE_MPEG2_SERIAL,
379};
380
Steven Tothaef2d182008-08-04 21:39:53 -0300381static struct zl10353_config dvico_fusionhdtv_xc3028 = {
382 .demod_address = 0x0f,
383 .if2 = 45600,
384 .no_tuner = 1,
Christopher Pascoed4dc6732009-04-27 11:27:04 -0300385 .disable_i2c_gate_ctrl = 1,
Steven Tothaef2d182008-08-04 21:39:53 -0300386};
387
Igor M. Liplianinf867c3f2009-06-19 05:45:23 -0300388static struct stv0900_reg stv0900_ts_regs[] = {
389 { R0900_TSGENERAL, 0x00 },
390 { R0900_P1_TSSPEED, 0x40 },
391 { R0900_P2_TSSPEED, 0x40 },
392 { R0900_P1_TSCFGM, 0xc0 },
393 { R0900_P2_TSCFGM, 0xc0 },
394 { R0900_P1_TSCFGH, 0xe0 },
395 { R0900_P2_TSCFGH, 0xe0 },
396 { R0900_P1_TSCFGL, 0x20 },
397 { R0900_P2_TSCFGL, 0x20 },
398 { 0xffff, 0xff }, /* terminate */
399};
400
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300401static struct stv0900_config netup_stv0900_config = {
402 .demod_address = 0x68,
Abylay Ospan644c7ef02009-07-19 18:06:00 -0300403 .xtal = 8000000,
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300404 .clkmode = 3,/* 0-CLKI, 2-XTALI, else AUTO */
405 .diseqc_mode = 2,/* 2/3 PWM */
Igor M. Liplianinf867c3f2009-06-19 05:45:23 -0300406 .ts_config_regs = stv0900_ts_regs,
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300407 .tun1_maddress = 0,/* 0x60 */
408 .tun2_maddress = 3,/* 0x63 */
409 .tun1_adc = 1,/* 1 Vpp */
410 .tun2_adc = 1,/* 1 Vpp */
411};
412
413static struct stv6110_config netup_stv6110_tunerconfig_a = {
414 .i2c_address = 0x60,
Abylay Ospan644c7ef02009-07-19 18:06:00 -0300415 .mclk = 16000000,
416 .clk_div = 1,
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300417};
418
419static struct stv6110_config netup_stv6110_tunerconfig_b = {
420 .i2c_address = 0x63,
Abylay Ospan644c7ef02009-07-19 18:06:00 -0300421 .mclk = 16000000,
422 .clk_div = 1,
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300423};
424
Igor M. Liplianin96318d02009-01-17 12:11:20 -0300425static int tbs_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
426{
427 struct cx23885_tsport *port = fe->dvb->priv;
428 struct cx23885_dev *dev = port->dev;
429
430 if (voltage == SEC_VOLTAGE_18)
431 cx_write(MC417_RWD, 0x00001e00);/* GPIO-13 high */
432 else if (voltage == SEC_VOLTAGE_13)
433 cx_write(MC417_RWD, 0x00001a00);/* GPIO-13 low */
434 else
435 cx_write(MC417_RWD, 0x00001800);/* GPIO-12 low */
436 return 0;
437}
438
439static struct cx24116_config tbs_cx24116_config = {
440 .demod_address = 0x05,
441};
442
Igor M. Liplianin579943f2009-01-17 12:18:26 -0300443static struct cx24116_config tevii_cx24116_config = {
444 .demod_address = 0x55,
445};
446
Igor M. Liplianinc9b8b042009-01-17 12:23:31 -0300447static struct cx24116_config dvbworld_cx24116_config = {
448 .demod_address = 0x05,
449};
450
David Wong493b7122009-05-18 05:25:49 -0300451static struct lgs8gxx_config mygica_x8506_lgs8gl5_config = {
452 .prod = LGS8GXX_PROD_LGS8GL5,
453 .demod_address = 0x19,
454 .serial_ts = 0,
455 .ts_clk_pol = 1,
456 .ts_clk_gated = 1,
457 .if_clk_freq = 30400, /* 30.4 MHz */
458 .if_freq = 5380, /* 5.38 MHz */
459 .if_neg_center = 1,
460 .ext_adc = 0,
461 .adc_signed = 0,
462 .if_neg_edge = 0,
463};
464
465static struct xc5000_config mygica_x8506_xc5000_config = {
466 .i2c_address = 0x61,
467 .if_khz = 5380,
468};
469
Michael Krufkyf35b9e82009-05-08 22:39:24 -0300470static int cx23885_dvb_set_frontend(struct dvb_frontend *fe,
471 struct dvb_frontend_parameters *param)
472{
473 struct cx23885_tsport *port = fe->dvb->priv;
474 struct cx23885_dev *dev = port->dev;
475
476 switch (dev->board) {
477 case CX23885_BOARD_HAUPPAUGE_HVR1275:
478 switch (param->u.vsb.modulation) {
479 case VSB_8:
480 cx23885_gpio_clear(dev, GPIO_5);
481 break;
482 case QAM_64:
483 case QAM_256:
484 default:
485 cx23885_gpio_set(dev, GPIO_5);
486 break;
487 }
488 break;
David T.L. Wong6f0d8c02009-10-21 13:15:30 -0300489 case CX23885_BOARD_MYGICA_X8506:
490 case CX23885_BOARD_MAGICPRO_PROHDTVE2:
491 /* Select Digital TV */
492 cx23885_gpio_set(dev, GPIO_0);
493 break;
Michael Krufkyf35b9e82009-05-08 22:39:24 -0300494 }
Michael Krufky5bdd3962009-05-08 22:39:24 -0300495 return 0;
Michael Krufkyf35b9e82009-05-08 22:39:24 -0300496}
497
Michael Krufky5bdd3962009-05-08 22:39:24 -0300498static int cx23885_dvb_fe_ioctl_override(struct dvb_frontend *fe,
499 unsigned int cmd, void *parg,
500 unsigned int stage)
501{
502 int err = 0;
503
504 switch (stage) {
505 case DVB_FE_IOCTL_PRE:
506
507 switch (cmd) {
508 case FE_SET_FRONTEND:
509 err = cx23885_dvb_set_frontend(fe,
510 (struct dvb_frontend_parameters *) parg);
511 break;
512 }
513 break;
514
515 case DVB_FE_IOCTL_POST:
516 /* no post-ioctl handling required */
517 break;
518 }
519 return err;
520};
521
522
David Wong2365b2d2009-06-17 01:38:12 -0300523static struct lgs8gxx_config magicpro_prohdtve2_lgs8g75_config = {
524 .prod = LGS8GXX_PROD_LGS8G75,
525 .demod_address = 0x19,
526 .serial_ts = 0,
527 .ts_clk_pol = 1,
528 .ts_clk_gated = 1,
529 .if_clk_freq = 30400, /* 30.4 MHz */
530 .if_freq = 6500, /* 6.50 MHz */
531 .if_neg_center = 1,
532 .ext_adc = 0,
533 .adc_signed = 1,
534 .adc_vpp = 2, /* 1.6 Vpp */
535 .if_neg_edge = 1,
536};
537
538static struct xc5000_config magicpro_prohdtve2_xc5000_config = {
539 .i2c_address = 0x61,
540 .if_khz = 6500,
541};
542
Steven Tothd19770e2007-03-11 20:44:05 -0300543static int dvb_register(struct cx23885_tsport *port)
544{
545 struct cx23885_dev *dev = port->dev;
David Wong493b7122009-05-18 05:25:49 -0300546 struct cx23885_i2c *i2c_bus = NULL, *i2c_bus2 = NULL;
Steven Toth363c35f2008-10-11 11:05:50 -0300547 struct videobuf_dvb_frontend *fe0;
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300548 int ret;
Steven Toth363c35f2008-10-11 11:05:50 -0300549
Darron Broadf972e0bd2008-10-11 11:24:30 -0300550 /* Get the first frontend */
Darron Broad92abe9e2008-10-11 11:18:53 -0300551 fe0 = videobuf_dvb_get_frontend(&port->frontends, 1);
Steven Toth363c35f2008-10-11 11:05:50 -0300552 if (!fe0)
553 return -EINVAL;
Steven Tothd19770e2007-03-11 20:44:05 -0300554
555 /* init struct videobuf_dvb */
Steven Toth363c35f2008-10-11 11:05:50 -0300556 fe0->dvb.name = dev->name;
Steven Tothd19770e2007-03-11 20:44:05 -0300557
558 /* init frontend */
559 switch (dev->board) {
Steven Totha77743b2007-08-22 21:01:20 -0300560 case CX23885_BOARD_HAUPPAUGE_HVR1250:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300561 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300562 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Toth86184e02007-09-04 21:40:47 -0300563 &hauppauge_generic_config,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300564 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300565 if (fe0->dvb.frontend != NULL) {
566 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300567 &i2c_bus->i2c_adap,
Steven Toth86184e02007-09-04 21:40:47 -0300568 &hauppauge_generic_tunerconfig, 0);
Steven Tothd19770e2007-03-11 20:44:05 -0300569 }
570 break;
Michael Krufkya5dbf452009-05-03 23:27:02 -0300571 case CX23885_BOARD_HAUPPAUGE_HVR1270:
Michael Krufkyd099bec2009-05-08 22:39:24 -0300572 case CX23885_BOARD_HAUPPAUGE_HVR1275:
Michael Krufkya5dbf452009-05-03 23:27:02 -0300573 i2c_bus = &dev->i2c_bus[0];
574 fe0->dvb.frontend = dvb_attach(lgdt3305_attach,
Michael Krufky247bc542009-05-12 18:53:47 -0300575 &hauppauge_lgdt3305_config,
Michael Krufkya5dbf452009-05-03 23:27:02 -0300576 &i2c_bus->i2c_adap);
577 if (fe0->dvb.frontend != NULL) {
578 dvb_attach(tda18271_attach, fe0->dvb.frontend,
579 0x60, &dev->i2c_bus[1].i2c_adap,
Michael Krufky247bc542009-05-12 18:53:47 -0300580 &hauppauge_hvr127x_config);
Michael Krufkya5dbf452009-05-03 23:27:02 -0300581 }
582 break;
Michael Krufky19bc5792009-05-08 16:05:29 -0300583 case CX23885_BOARD_HAUPPAUGE_HVR1255:
584 i2c_bus = &dev->i2c_bus[0];
585 fe0->dvb.frontend = dvb_attach(s5h1411_attach,
586 &hcw_s5h1411_config,
587 &i2c_bus->i2c_adap);
588 if (fe0->dvb.frontend != NULL) {
589 dvb_attach(tda18271_attach, fe0->dvb.frontend,
590 0x60, &dev->i2c_bus[1].i2c_adap,
591 &hauppauge_tda18271_config);
592 }
593 break;
Michael Krufky3ba71d22007-12-07 01:40:36 -0300594 case CX23885_BOARD_HAUPPAUGE_HVR1800:
595 i2c_bus = &dev->i2c_bus[0];
Darron Broad92abe9e2008-10-11 11:18:53 -0300596 switch (alt_tuner) {
Michael Krufky3ba71d22007-12-07 01:40:36 -0300597 case 1:
Steven Toth363c35f2008-10-11 11:05:50 -0300598 fe0->dvb.frontend =
Michael Krufky3ba71d22007-12-07 01:40:36 -0300599 dvb_attach(s5h1409_attach,
600 &hauppauge_ezqam_config,
601 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300602 if (fe0->dvb.frontend != NULL) {
603 dvb_attach(tda829x_attach, fe0->dvb.frontend,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300604 &dev->i2c_bus[1].i2c_adap, 0x42,
Michael Krufky4041f1a2007-12-24 04:52:08 -0300605 &tda829x_no_probe);
Steven Toth363c35f2008-10-11 11:05:50 -0300606 dvb_attach(tda18271_attach, fe0->dvb.frontend,
Michael Krufky4041f1a2007-12-24 04:52:08 -0300607 0x60, &dev->i2c_bus[1].i2c_adap,
Michael Krufkyf21e0d72008-01-02 03:01:54 -0300608 &hauppauge_tda18271_config);
Michael Krufky3ba71d22007-12-07 01:40:36 -0300609 }
610 break;
611 case 0:
612 default:
Steven Toth363c35f2008-10-11 11:05:50 -0300613 fe0->dvb.frontend =
Michael Krufky3ba71d22007-12-07 01:40:36 -0300614 dvb_attach(s5h1409_attach,
615 &hauppauge_generic_config,
616 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300617 if (fe0->dvb.frontend != NULL)
618 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufky3ba71d22007-12-07 01:40:36 -0300619 &i2c_bus->i2c_adap,
620 &hauppauge_generic_tunerconfig, 0);
621 break;
622 }
623 break;
Steven Tothfc959be2007-09-08 19:08:17 -0300624 case CX23885_BOARD_HAUPPAUGE_HVR1800lp:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300625 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300626 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Tothfc959be2007-09-08 19:08:17 -0300627 &hauppauge_hvr1800lp_config,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300628 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300629 if (fe0->dvb.frontend != NULL) {
630 dvb_attach(mt2131_attach, fe0->dvb.frontend,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300631 &i2c_bus->i2c_adap,
Steven Tothfc959be2007-09-08 19:08:17 -0300632 &hauppauge_generic_tunerconfig, 0);
633 }
634 break;
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300635 case CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP:
Michael Krufkyf139fa72007-09-09 03:55:34 -0300636 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300637 fe0->dvb.frontend = dvb_attach(lgdt330x_attach,
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300638 &fusionhdtv_5_express,
Michael Krufkyf139fa72007-09-09 03:55:34 -0300639 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300640 if (fe0->dvb.frontend != NULL) {
641 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufky827855d2008-04-22 14:46:16 -0300642 &i2c_bus->i2c_adap, 0x61,
643 TUNER_LG_TDVS_H06XF);
Michael Krufky9bc37ca2007-09-08 15:17:13 -0300644 }
645 break;
Steven Tothd1987d52007-12-18 01:57:06 -0300646 case CX23885_BOARD_HAUPPAUGE_HVR1500Q:
647 i2c_bus = &dev->i2c_bus[1];
Steven Toth363c35f2008-10-11 11:05:50 -0300648 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Steven Tothd1987d52007-12-18 01:57:06 -0300649 &hauppauge_hvr1500q_config,
650 &dev->i2c_bus[0].i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300651 if (fe0->dvb.frontend != NULL)
652 dvb_attach(xc5000_attach, fe0->dvb.frontend,
Michael Krufky30650962008-09-06 14:56:58 -0300653 &i2c_bus->i2c_adap,
654 &hauppauge_hvr1500q_tunerconfig);
Steven Tothd1987d52007-12-18 01:57:06 -0300655 break;
Michael Krufky07b4a832007-12-18 01:09:11 -0300656 case CX23885_BOARD_HAUPPAUGE_HVR1500:
657 i2c_bus = &dev->i2c_bus[1];
Steven Toth363c35f2008-10-11 11:05:50 -0300658 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Michael Krufky07b4a832007-12-18 01:09:11 -0300659 &hauppauge_hvr1500_config,
660 &dev->i2c_bus[0].i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300661 if (fe0->dvb.frontend != NULL) {
Michael Krufky07b4a832007-12-18 01:09:11 -0300662 struct dvb_frontend *fe;
663 struct xc2028_config cfg = {
664 .i2c_adap = &i2c_bus->i2c_adap,
665 .i2c_addr = 0x61,
Michael Krufky07b4a832007-12-18 01:09:11 -0300666 };
667 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfeb2008-09-16 02:15:30 -0300668 .fname = XC2028_DEFAULT_FIRMWARE,
Michael Krufky07b4a832007-12-18 01:09:11 -0300669 .max_len = 64,
Steven Toth52c3d292009-04-20 22:42:00 -0300670 .demod = XC3028_FE_OREN538,
Michael Krufky07b4a832007-12-18 01:09:11 -0300671 };
672
673 fe = dvb_attach(xc2028_attach,
Steven Toth363c35f2008-10-11 11:05:50 -0300674 fe0->dvb.frontend, &cfg);
Michael Krufky07b4a832007-12-18 01:09:11 -0300675 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
676 fe->ops.tuner_ops.set_config(fe, &ctl);
677 }
678 break;
Steven Tothb3ea0162008-04-19 01:14:19 -0300679 case CX23885_BOARD_HAUPPAUGE_HVR1200:
Steven Totha780a312008-04-19 01:25:52 -0300680 case CX23885_BOARD_HAUPPAUGE_HVR1700:
Steven Tothb3ea0162008-04-19 01:14:19 -0300681 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300682 fe0->dvb.frontend = dvb_attach(tda10048_attach,
Steven Tothb3ea0162008-04-19 01:14:19 -0300683 &hauppauge_hvr1200_config,
684 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300685 if (fe0->dvb.frontend != NULL) {
686 dvb_attach(tda829x_attach, fe0->dvb.frontend,
Steven Tothb3ea0162008-04-19 01:14:19 -0300687 &dev->i2c_bus[1].i2c_adap, 0x42,
688 &tda829x_no_probe);
Steven Toth363c35f2008-10-11 11:05:50 -0300689 dvb_attach(tda18271_attach, fe0->dvb.frontend,
Steven Tothb3ea0162008-04-19 01:14:19 -0300690 0x60, &dev->i2c_bus[1].i2c_adap,
691 &hauppauge_hvr1200_tuner_config);
692 }
693 break;
Michael Krufky6b926ec2009-05-12 17:32:17 -0300694 case CX23885_BOARD_HAUPPAUGE_HVR1210:
695 i2c_bus = &dev->i2c_bus[0];
696 fe0->dvb.frontend = dvb_attach(tda10048_attach,
697 &hauppauge_hvr1210_config,
698 &i2c_bus->i2c_adap);
699 if (fe0->dvb.frontend != NULL) {
700 dvb_attach(tda18271_attach, fe0->dvb.frontend,
701 0x60, &dev->i2c_bus[1].i2c_adap,
702 &hauppauge_hvr1210_tuner_config);
703 }
704 break;
Steven Toth66762372008-04-22 15:38:26 -0300705 case CX23885_BOARD_HAUPPAUGE_HVR1400:
706 i2c_bus = &dev->i2c_bus[0];
Steven Toth363c35f2008-10-11 11:05:50 -0300707 fe0->dvb.frontend = dvb_attach(dib7000p_attach,
Steven Toth66762372008-04-22 15:38:26 -0300708 &i2c_bus->i2c_adap,
709 0x12, &hauppauge_hvr1400_dib7000_config);
Steven Toth363c35f2008-10-11 11:05:50 -0300710 if (fe0->dvb.frontend != NULL) {
Steven Toth66762372008-04-22 15:38:26 -0300711 struct dvb_frontend *fe;
712 struct xc2028_config cfg = {
713 .i2c_adap = &dev->i2c_bus[1].i2c_adap,
714 .i2c_addr = 0x64,
Steven Toth66762372008-04-22 15:38:26 -0300715 };
716 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfeb2008-09-16 02:15:30 -0300717 .fname = XC3028L_DEFAULT_FIRMWARE,
Steven Toth66762372008-04-22 15:38:26 -0300718 .max_len = 64,
719 .demod = 5000,
Steven Toth9c8ced52008-10-16 20:18:44 -0300720 /* This is true for all demods with
721 v36 firmware? */
Mauro Carvalho Chehab0975fc62008-09-28 02:24:44 -0300722 .type = XC2028_D2633,
Steven Toth66762372008-04-22 15:38:26 -0300723 };
724
725 fe = dvb_attach(xc2028_attach,
Steven Toth363c35f2008-10-11 11:05:50 -0300726 fe0->dvb.frontend, &cfg);
Steven Toth66762372008-04-22 15:38:26 -0300727 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
728 fe->ops.tuner_ops.set_config(fe, &ctl);
729 }
730 break;
Michael Krufky335377b2008-05-07 01:43:10 -0300731 case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP:
732 i2c_bus = &dev->i2c_bus[port->nr - 1];
733
Steven Toth363c35f2008-10-11 11:05:50 -0300734 fe0->dvb.frontend = dvb_attach(s5h1409_attach,
Michael Krufky335377b2008-05-07 01:43:10 -0300735 &dvico_s5h1409_config,
736 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300737 if (fe0->dvb.frontend == NULL)
738 fe0->dvb.frontend = dvb_attach(s5h1411_attach,
Michael Krufky52b50452008-07-09 02:18:49 -0300739 &dvico_s5h1411_config,
740 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300741 if (fe0->dvb.frontend != NULL)
742 dvb_attach(xc5000_attach, fe0->dvb.frontend,
Michael Krufky30650962008-09-06 14:56:58 -0300743 &i2c_bus->i2c_adap,
744 &dvico_xc5000_tunerconfig);
Michael Krufky335377b2008-05-07 01:43:10 -0300745 break;
Steven Tothaef2d182008-08-04 21:39:53 -0300746 case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP: {
747 i2c_bus = &dev->i2c_bus[port->nr - 1];
748
Steven Toth363c35f2008-10-11 11:05:50 -0300749 fe0->dvb.frontend = dvb_attach(zl10353_attach,
Steven Tothaef2d182008-08-04 21:39:53 -0300750 &dvico_fusionhdtv_xc3028,
751 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300752 if (fe0->dvb.frontend != NULL) {
Steven Tothaef2d182008-08-04 21:39:53 -0300753 struct dvb_frontend *fe;
754 struct xc2028_config cfg = {
755 .i2c_adap = &i2c_bus->i2c_adap,
756 .i2c_addr = 0x61,
Steven Tothaef2d182008-08-04 21:39:53 -0300757 };
758 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfeb2008-09-16 02:15:30 -0300759 .fname = XC2028_DEFAULT_FIRMWARE,
Steven Tothaef2d182008-08-04 21:39:53 -0300760 .max_len = 64,
761 .demod = XC3028_FE_ZARLINK456,
762 };
763
Steven Toth363c35f2008-10-11 11:05:50 -0300764 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend,
Steven Tothaef2d182008-08-04 21:39:53 -0300765 &cfg);
766 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
767 fe->ops.tuner_ops.set_config(fe, &ctl);
768 }
769 break;
770 }
Steven Toth4c56b042008-08-12 13:30:03 -0300771 case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H:
Igor M. Liplianin9bb1b7e2008-11-23 14:11:16 -0300772 case CX23885_BOARD_COMPRO_VIDEOMATE_E650F:
Vladimir Geroy34e383d2009-09-18 18:55:47 -0300773 case CX23885_BOARD_COMPRO_VIDEOMATE_E800:
Steven Toth4c56b042008-08-12 13:30:03 -0300774 i2c_bus = &dev->i2c_bus[0];
775
Steven Toth363c35f2008-10-11 11:05:50 -0300776 fe0->dvb.frontend = dvb_attach(zl10353_attach,
Steven Toth4c56b042008-08-12 13:30:03 -0300777 &dvico_fusionhdtv_xc3028,
778 &i2c_bus->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -0300779 if (fe0->dvb.frontend != NULL) {
Steven Toth4c56b042008-08-12 13:30:03 -0300780 struct dvb_frontend *fe;
781 struct xc2028_config cfg = {
782 .i2c_adap = &dev->i2c_bus[1].i2c_adap,
783 .i2c_addr = 0x61,
Steven Toth4c56b042008-08-12 13:30:03 -0300784 };
785 static struct xc2028_ctrl ctl = {
Michael Krufkyef80bfeb2008-09-16 02:15:30 -0300786 .fname = XC2028_DEFAULT_FIRMWARE,
Steven Toth4c56b042008-08-12 13:30:03 -0300787 .max_len = 64,
788 .demod = XC3028_FE_ZARLINK456,
789 };
790
Steven Toth363c35f2008-10-11 11:05:50 -0300791 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend,
Steven Toth4c56b042008-08-12 13:30:03 -0300792 &cfg);
793 if (fe != NULL && fe->ops.tuner_ops.set_config != NULL)
794 fe->ops.tuner_ops.set_config(fe, &ctl);
795 }
796 break;
Igor M. Liplianin96318d02009-01-17 12:11:20 -0300797 case CX23885_BOARD_TBS_6920:
798 i2c_bus = &dev->i2c_bus[0];
799
800 fe0->dvb.frontend = dvb_attach(cx24116_attach,
801 &tbs_cx24116_config,
802 &i2c_bus->i2c_adap);
803 if (fe0->dvb.frontend != NULL)
804 fe0->dvb.frontend->ops.set_voltage = tbs_set_voltage;
805
806 break;
Igor M. Liplianin579943f2009-01-17 12:18:26 -0300807 case CX23885_BOARD_TEVII_S470:
808 i2c_bus = &dev->i2c_bus[1];
809
810 fe0->dvb.frontend = dvb_attach(cx24116_attach,
811 &tevii_cx24116_config,
812 &i2c_bus->i2c_adap);
813 if (fe0->dvb.frontend != NULL)
814 fe0->dvb.frontend->ops.set_voltage = tbs_set_voltage;
815
816 break;
Igor M. Liplianinc9b8b042009-01-17 12:23:31 -0300817 case CX23885_BOARD_DVBWORLD_2005:
818 i2c_bus = &dev->i2c_bus[1];
819
820 fe0->dvb.frontend = dvb_attach(cx24116_attach,
821 &dvbworld_cx24116_config,
822 &i2c_bus->i2c_adap);
823 break;
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300824 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
825 i2c_bus = &dev->i2c_bus[0];
826 switch (port->nr) {
827 /* port B */
828 case 1:
829 fe0->dvb.frontend = dvb_attach(stv0900_attach,
830 &netup_stv0900_config,
831 &i2c_bus->i2c_adap, 0);
832 if (fe0->dvb.frontend != NULL) {
833 if (dvb_attach(stv6110_attach,
834 fe0->dvb.frontend,
835 &netup_stv6110_tunerconfig_a,
836 &i2c_bus->i2c_adap)) {
837 if (!dvb_attach(lnbh24_attach,
838 fe0->dvb.frontend,
839 &i2c_bus->i2c_adap,
Igor M. Liplianin0cde9b22009-06-14 13:17:15 -0300840 LNBH24_PCL,
841 LNBH24_TTX, 0x09))
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300842 printk(KERN_ERR
843 "No LNBH24 found!\n");
844
845 }
846 }
847 break;
848 /* port C */
849 case 2:
850 fe0->dvb.frontend = dvb_attach(stv0900_attach,
851 &netup_stv0900_config,
852 &i2c_bus->i2c_adap, 1);
853 if (fe0->dvb.frontend != NULL) {
854 if (dvb_attach(stv6110_attach,
855 fe0->dvb.frontend,
856 &netup_stv6110_tunerconfig_b,
857 &i2c_bus->i2c_adap)) {
858 if (!dvb_attach(lnbh24_attach,
859 fe0->dvb.frontend,
860 &i2c_bus->i2c_adap,
Igor M. Liplianin0cde9b22009-06-14 13:17:15 -0300861 LNBH24_PCL,
862 LNBH24_TTX, 0x0a))
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300863 printk(KERN_ERR
864 "No LNBH24 found!\n");
865
866 }
867 }
868 break;
869 }
870 break;
David Wong493b7122009-05-18 05:25:49 -0300871 case CX23885_BOARD_MYGICA_X8506:
872 i2c_bus = &dev->i2c_bus[0];
873 i2c_bus2 = &dev->i2c_bus[1];
874 fe0->dvb.frontend = dvb_attach(lgs8gxx_attach,
875 &mygica_x8506_lgs8gl5_config,
876 &i2c_bus->i2c_adap);
877 if (fe0->dvb.frontend != NULL) {
878 dvb_attach(xc5000_attach,
879 fe0->dvb.frontend,
880 &i2c_bus2->i2c_adap,
881 &mygica_x8506_xc5000_config);
882 }
883 break;
David Wong2365b2d2009-06-17 01:38:12 -0300884 case CX23885_BOARD_MAGICPRO_PROHDTVE2:
885 i2c_bus = &dev->i2c_bus[0];
886 i2c_bus2 = &dev->i2c_bus[1];
887 fe0->dvb.frontend = dvb_attach(lgs8gxx_attach,
888 &magicpro_prohdtve2_lgs8g75_config,
889 &i2c_bus->i2c_adap);
890 if (fe0->dvb.frontend != NULL) {
891 dvb_attach(xc5000_attach,
892 fe0->dvb.frontend,
893 &i2c_bus2->i2c_adap,
894 &magicpro_prohdtve2_xc5000_config);
895 }
896 break;
Steven Toth136973802009-07-20 15:37:25 -0300897 case CX23885_BOARD_HAUPPAUGE_HVR1850:
898 i2c_bus = &dev->i2c_bus[0];
899 fe0->dvb.frontend = dvb_attach(s5h1411_attach,
900 &hcw_s5h1411_config,
901 &i2c_bus->i2c_adap);
902 if (fe0->dvb.frontend != NULL)
903 dvb_attach(tda18271_attach, fe0->dvb.frontend,
904 0x60, &dev->i2c_bus[0].i2c_adap,
905 &hauppauge_tda18271_config);
906 break;
907
Steven Tothd19770e2007-03-11 20:44:05 -0300908 default:
Steven Toth9c8ced52008-10-16 20:18:44 -0300909 printk(KERN_INFO "%s: The frontend of your DVB/ATSC card "
910 " isn't supported yet\n",
Steven Tothd19770e2007-03-11 20:44:05 -0300911 dev->name);
912 break;
913 }
Steven Toth363c35f2008-10-11 11:05:50 -0300914 if (NULL == fe0->dvb.frontend) {
Steven Toth9c8ced52008-10-16 20:18:44 -0300915 printk(KERN_ERR "%s: frontend initialization failed\n",
916 dev->name);
Steven Tothd19770e2007-03-11 20:44:05 -0300917 return -1;
918 }
Michael Krufkyd7cba042008-09-12 13:31:45 -0300919 /* define general-purpose callback pointer */
Steven Toth363c35f2008-10-11 11:05:50 -0300920 fe0->dvb.frontend->callback = cx23885_tuner_callback;
Steven Tothd19770e2007-03-11 20:44:05 -0300921
922 /* Put the analog decoder in standby to keep it quiet */
Laurent Pinchart622b8282009-10-05 10:48:17 -0300923 call_all(dev, core, s_power, 0);
Steven Tothd19770e2007-03-11 20:44:05 -0300924
Steven Toth363c35f2008-10-11 11:05:50 -0300925 if (fe0->dvb.frontend->ops.analog_ops.standby)
926 fe0->dvb.frontend->ops.analog_ops.standby(fe0->dvb.frontend);
Michael Krufky3ba71d22007-12-07 01:40:36 -0300927
Steven Tothd19770e2007-03-11 20:44:05 -0300928 /* register everything */
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300929 ret = videobuf_dvb_register_bus(&port->frontends, THIS_MODULE, port,
Michael Krufky5bdd3962009-05-08 22:39:24 -0300930 &dev->pci->dev, adapter_nr, 0,
931 cx23885_dvb_fe_ioctl_override);
Steven Toth363c35f2008-10-11 11:05:50 -0300932
Igor M. Liplianin5a23b072009-03-03 12:06:09 -0300933 /* init CI & MAC */
934 switch (dev->board) {
935 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI: {
936 static struct netup_card_info cinfo;
937
938 netup_get_card_info(&dev->i2c_bus[0].i2c_adap, &cinfo);
939 memcpy(port->frontends.adapter.proposed_mac,
940 cinfo.port[port->nr - 1].mac, 6);
941 printk(KERN_INFO "NetUP Dual DVB-S2 CI card port%d MAC="
942 "%02X:%02X:%02X:%02X:%02X:%02X\n",
943 port->nr,
944 port->frontends.adapter.proposed_mac[0],
945 port->frontends.adapter.proposed_mac[1],
946 port->frontends.adapter.proposed_mac[2],
947 port->frontends.adapter.proposed_mac[3],
948 port->frontends.adapter.proposed_mac[4],
949 port->frontends.adapter.proposed_mac[5]);
950
951 netup_ci_init(port);
952 break;
953 }
954 }
955
956 return ret;
Steven Tothd19770e2007-03-11 20:44:05 -0300957}
958
959int cx23885_dvb_register(struct cx23885_tsport *port)
960{
Steven Toth363c35f2008-10-11 11:05:50 -0300961
962 struct videobuf_dvb_frontend *fe0;
Steven Tothd19770e2007-03-11 20:44:05 -0300963 struct cx23885_dev *dev = port->dev;
Steven Totheb0c58b2008-10-11 12:34:39 -0300964 int err, i;
Steven Tothd19770e2007-03-11 20:44:05 -0300965
Steven Totheb0c58b2008-10-11 12:34:39 -0300966 /* Here we need to allocate the correct number of frontends,
967 * as reflected in the cards struct. The reality is that currrently
968 * no cx23885 boards support this - yet. But, if we don't modify this
969 * code then the second frontend would never be allocated (later)
970 * and fail with error before the attach in dvb_register().
971 * Without these changes we risk an OOPS later. The changes here
972 * are for safety, and should provide a good foundation for the
973 * future addition of any multi-frontend cx23885 based boards.
974 */
975 printk(KERN_INFO "%s() allocating %d frontend(s)\n", __func__,
976 port->num_frontends);
Steven Toth363c35f2008-10-11 11:05:50 -0300977
Steven Totheb0c58b2008-10-11 12:34:39 -0300978 for (i = 1; i <= port->num_frontends; i++) {
Darron Broad96b7a1a2008-10-15 20:26:34 -0300979 if (videobuf_dvb_alloc_frontend(
Steven Toth9c8ced52008-10-16 20:18:44 -0300980 &port->frontends, i) == NULL) {
Steven Totheb0c58b2008-10-11 12:34:39 -0300981 printk(KERN_ERR "%s() failed to alloc\n", __func__);
982 return -ENOMEM;
983 }
Steven Tothd19770e2007-03-11 20:44:05 -0300984
Steven Totheb0c58b2008-10-11 12:34:39 -0300985 fe0 = videobuf_dvb_get_frontend(&port->frontends, i);
986 if (!fe0)
987 err = -EINVAL;
Steven Tothd19770e2007-03-11 20:44:05 -0300988
Steven Totheb0c58b2008-10-11 12:34:39 -0300989 dprintk(1, "%s\n", __func__);
Steven Toth9c8ced52008-10-16 20:18:44 -0300990 dprintk(1, " ->probed by Card=%d Name=%s, PCI %02x:%02x\n",
Steven Totheb0c58b2008-10-11 12:34:39 -0300991 dev->board,
992 dev->name,
993 dev->pci_bus,
994 dev->pci_slot);
995
996 err = -ENODEV;
997
998 /* dvb stuff */
999 /* We have to init the queue for each frontend on a port. */
Steven Toth9c8ced52008-10-16 20:18:44 -03001000 printk(KERN_INFO "%s: cx23885 based dvb card\n", dev->name);
1001 videobuf_queue_sg_init(&fe0->dvb.dvbq, &dvb_qops,
1002 &dev->pci->dev, &port->slock,
Michael Krufky44a64812007-03-20 23:00:18 -03001003 V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_TOP,
1004 sizeof(struct cx23885_buffer), port);
Steven Totheb0c58b2008-10-11 12:34:39 -03001005 }
Steven Tothd19770e2007-03-11 20:44:05 -03001006 err = dvb_register(port);
1007 if (err != 0)
Steven Toth9c8ced52008-10-16 20:18:44 -03001008 printk(KERN_ERR "%s() dvb_register failed err = %d\n",
1009 __func__, err);
Steven Tothd19770e2007-03-11 20:44:05 -03001010
Steven Tothd19770e2007-03-11 20:44:05 -03001011 return err;
1012}
1013
1014int cx23885_dvb_unregister(struct cx23885_tsport *port)
1015{
Steven Toth363c35f2008-10-11 11:05:50 -03001016 struct videobuf_dvb_frontend *fe0;
1017
Steven Totheb0c58b2008-10-11 12:34:39 -03001018 /* FIXME: in an error condition where the we have
1019 * an expected number of frontends (attach problem)
1020 * then this might not clean up correctly, if 1
1021 * is invalid.
1022 * This comment only applies to future boards IF they
1023 * implement MFE support.
1024 */
Darron Broad92abe9e2008-10-11 11:18:53 -03001025 fe0 = videobuf_dvb_get_frontend(&port->frontends, 1);
Steven Toth9c8ced52008-10-16 20:18:44 -03001026 if (fe0->dvb.frontend)
Steven Toth363c35f2008-10-11 11:05:50 -03001027 videobuf_dvb_unregister_bus(&port->frontends);
Steven Tothd19770e2007-03-11 20:44:05 -03001028
Hans Verkuilafd96662009-03-13 13:24:19 -03001029 switch (port->dev->board) {
1030 case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
1031 netup_ci_exit(port);
1032 break;
1033 }
Igor M. Liplianin5a23b072009-03-03 12:06:09 -03001034
Steven Tothd19770e2007-03-11 20:44:05 -03001035 return 0;
1036}
Michael Krufky44a64812007-03-20 23:00:18 -03001037