Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 1 | /* |
| 2 | * Driver for the Conexant CX23885 PCIe bridge |
| 3 | * |
Steven Toth | 6d89761 | 2008-09-03 17:12:12 -0300 | [diff] [blame] | 4 | * Copyright (c) 2006 Steven Toth <stoth@linuxtv.org> |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 5 | * |
| 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 Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 31 | #include <media/v4l2-common.h> |
| 32 | |
| 33 | #include "s5h1409.h" |
Michael Krufky | 52b5045 | 2008-07-09 02:18:49 -0300 | [diff] [blame] | 34 | #include "s5h1411.h" |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 35 | #include "mt2131.h" |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 36 | #include "tda8290.h" |
Michael Krufky | 4041f1a | 2007-12-24 04:52:08 -0300 | [diff] [blame] | 37 | #include "tda18271.h" |
Michael Krufky | 9bc37ca | 2007-09-08 15:17:13 -0300 | [diff] [blame] | 38 | #include "lgdt330x.h" |
Steven Toth | d1987d5 | 2007-12-18 01:57:06 -0300 | [diff] [blame] | 39 | #include "xc5000.h" |
Steven Toth | b3ea016 | 2008-04-19 01:14:19 -0300 | [diff] [blame] | 40 | #include "tda10048.h" |
Michael Krufky | 07b4a83 | 2007-12-18 01:09:11 -0300 | [diff] [blame] | 41 | #include "tuner-xc2028.h" |
Michael Krufky | 827855d | 2008-04-22 14:46:16 -0300 | [diff] [blame] | 42 | #include "tuner-simple.h" |
Steven Toth | 6676237 | 2008-04-22 15:38:26 -0300 | [diff] [blame] | 43 | #include "dib7000p.h" |
| 44 | #include "dibx000_common.h" |
Steven Toth | aef2d18 | 2008-08-04 21:39:53 -0300 | [diff] [blame] | 45 | #include "zl10353.h" |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 46 | |
Steven Toth | 4513fc69 | 2008-01-12 11:36:36 -0300 | [diff] [blame] | 47 | static unsigned int debug; |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 48 | |
Steven Toth | 4513fc69 | 2008-01-12 11:36:36 -0300 | [diff] [blame] | 49 | #define dprintk(level, fmt, arg...)\ |
| 50 | do { if (debug >= level)\ |
| 51 | printk(KERN_DEBUG "%s/0: " fmt, dev->name, ## arg);\ |
| 52 | } while (0) |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 53 | |
| 54 | /* ------------------------------------------------------------------ */ |
| 55 | |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 56 | static unsigned int alt_tuner; |
| 57 | module_param(alt_tuner, int, 0644); |
| 58 | MODULE_PARM_DESC(alt_tuner, "Enable alternate tuner configuration"); |
| 59 | |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 60 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); |
| 61 | |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 62 | /* ------------------------------------------------------------------ */ |
| 63 | |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 64 | static int dvb_buf_setup(struct videobuf_queue *q, |
| 65 | unsigned int *count, unsigned int *size) |
| 66 | { |
| 67 | struct cx23885_tsport *port = q->priv_data; |
| 68 | |
| 69 | port->ts_packet_size = 188 * 4; |
| 70 | port->ts_packet_count = 32; |
| 71 | |
| 72 | *size = port->ts_packet_size * port->ts_packet_count; |
| 73 | *count = 32; |
| 74 | return 0; |
| 75 | } |
| 76 | |
Michael Krufky | 44a6481 | 2007-03-20 23:00:18 -0300 | [diff] [blame] | 77 | static int dvb_buf_prepare(struct videobuf_queue *q, |
| 78 | struct videobuf_buffer *vb, enum v4l2_field field) |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 79 | { |
| 80 | struct cx23885_tsport *port = q->priv_data; |
Michael Krufky | 44a6481 | 2007-03-20 23:00:18 -0300 | [diff] [blame] | 81 | return cx23885_buf_prepare(q, port, (struct cx23885_buffer*)vb, field); |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | static void dvb_buf_queue(struct videobuf_queue *q, struct videobuf_buffer *vb) |
| 85 | { |
| 86 | struct cx23885_tsport *port = q->priv_data; |
| 87 | cx23885_buf_queue(port, (struct cx23885_buffer*)vb); |
| 88 | } |
| 89 | |
Michael Krufky | 44a6481 | 2007-03-20 23:00:18 -0300 | [diff] [blame] | 90 | static void dvb_buf_release(struct videobuf_queue *q, |
| 91 | struct videobuf_buffer *vb) |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 92 | { |
| 93 | cx23885_free_buffer(q, (struct cx23885_buffer*)vb); |
| 94 | } |
| 95 | |
| 96 | static struct videobuf_queue_ops dvb_qops = { |
| 97 | .buf_setup = dvb_buf_setup, |
| 98 | .buf_prepare = dvb_buf_prepare, |
| 99 | .buf_queue = dvb_buf_queue, |
| 100 | .buf_release = dvb_buf_release, |
| 101 | }; |
| 102 | |
Steven Toth | 86184e0 | 2007-09-04 21:40:47 -0300 | [diff] [blame] | 103 | static struct s5h1409_config hauppauge_generic_config = { |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 104 | .demod_address = 0x32 >> 1, |
| 105 | .output_mode = S5H1409_SERIAL_OUTPUT, |
Steven Toth | fc959be | 2007-09-08 19:08:17 -0300 | [diff] [blame] | 106 | .gpio = S5H1409_GPIO_ON, |
Michael Krufky | 2b03238 | 2007-12-13 10:04:10 -0300 | [diff] [blame] | 107 | .qam_if = 44000, |
Steven Toth | fc959be | 2007-09-08 19:08:17 -0300 | [diff] [blame] | 108 | .inversion = S5H1409_INVERSION_OFF, |
Steven Toth | dfc1c08 | 2008-01-15 21:35:22 -0300 | [diff] [blame] | 109 | .status_mode = S5H1409_DEMODLOCKING, |
| 110 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, |
Steven Toth | fc959be | 2007-09-08 19:08:17 -0300 | [diff] [blame] | 111 | }; |
| 112 | |
Steven Toth | b3ea016 | 2008-04-19 01:14:19 -0300 | [diff] [blame] | 113 | static struct tda10048_config hauppauge_hvr1200_config = { |
| 114 | .demod_address = 0x10 >> 1, |
| 115 | .output_mode = TDA10048_SERIAL_OUTPUT, |
| 116 | .fwbulkwritelen = TDA10048_BULKWRITE_200, |
| 117 | .inversion = TDA10048_INVERSION_ON |
| 118 | }; |
| 119 | |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 120 | static struct s5h1409_config hauppauge_ezqam_config = { |
| 121 | .demod_address = 0x32 >> 1, |
| 122 | .output_mode = S5H1409_SERIAL_OUTPUT, |
| 123 | .gpio = S5H1409_GPIO_OFF, |
| 124 | .qam_if = 4000, |
| 125 | .inversion = S5H1409_INVERSION_ON, |
Steven Toth | dfc1c08 | 2008-01-15 21:35:22 -0300 | [diff] [blame] | 126 | .status_mode = S5H1409_DEMODLOCKING, |
| 127 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 128 | }; |
| 129 | |
Steven Toth | fc959be | 2007-09-08 19:08:17 -0300 | [diff] [blame] | 130 | static struct s5h1409_config hauppauge_hvr1800lp_config = { |
| 131 | .demod_address = 0x32 >> 1, |
| 132 | .output_mode = S5H1409_SERIAL_OUTPUT, |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 133 | .gpio = S5H1409_GPIO_OFF, |
Michael Krufky | 2b03238 | 2007-12-13 10:04:10 -0300 | [diff] [blame] | 134 | .qam_if = 44000, |
Steven Toth | fe475163 | 2007-03-20 15:27:53 -0300 | [diff] [blame] | 135 | .inversion = S5H1409_INVERSION_OFF, |
Steven Toth | dfc1c08 | 2008-01-15 21:35:22 -0300 | [diff] [blame] | 136 | .status_mode = S5H1409_DEMODLOCKING, |
| 137 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 138 | }; |
| 139 | |
Michael Krufky | 07b4a83 | 2007-12-18 01:09:11 -0300 | [diff] [blame] | 140 | static struct s5h1409_config hauppauge_hvr1500_config = { |
| 141 | .demod_address = 0x32 >> 1, |
| 142 | .output_mode = S5H1409_SERIAL_OUTPUT, |
| 143 | .gpio = S5H1409_GPIO_OFF, |
| 144 | .inversion = S5H1409_INVERSION_OFF, |
Steven Toth | dfc1c08 | 2008-01-15 21:35:22 -0300 | [diff] [blame] | 145 | .status_mode = S5H1409_DEMODLOCKING, |
| 146 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, |
Michael Krufky | 07b4a83 | 2007-12-18 01:09:11 -0300 | [diff] [blame] | 147 | }; |
| 148 | |
Steven Toth | 86184e0 | 2007-09-04 21:40:47 -0300 | [diff] [blame] | 149 | static struct mt2131_config hauppauge_generic_tunerconfig = { |
Steven Toth | a77743b | 2007-08-22 21:01:20 -0300 | [diff] [blame] | 150 | 0x61 |
| 151 | }; |
| 152 | |
Michael Krufky | 9bc37ca | 2007-09-08 15:17:13 -0300 | [diff] [blame] | 153 | static struct lgdt330x_config fusionhdtv_5_express = { |
| 154 | .demod_address = 0x0e, |
| 155 | .demod_chip = LGDT3303, |
| 156 | .serial_mpeg = 0x40, |
| 157 | }; |
| 158 | |
Steven Toth | d1987d5 | 2007-12-18 01:57:06 -0300 | [diff] [blame] | 159 | static struct s5h1409_config hauppauge_hvr1500q_config = { |
| 160 | .demod_address = 0x32 >> 1, |
| 161 | .output_mode = S5H1409_SERIAL_OUTPUT, |
| 162 | .gpio = S5H1409_GPIO_ON, |
| 163 | .qam_if = 44000, |
| 164 | .inversion = S5H1409_INVERSION_OFF, |
Steven Toth | dfc1c08 | 2008-01-15 21:35:22 -0300 | [diff] [blame] | 165 | .status_mode = S5H1409_DEMODLOCKING, |
| 166 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, |
Steven Toth | d1987d5 | 2007-12-18 01:57:06 -0300 | [diff] [blame] | 167 | }; |
| 168 | |
Michael Krufky | 335377b | 2008-05-07 01:43:10 -0300 | [diff] [blame] | 169 | static struct s5h1409_config dvico_s5h1409_config = { |
| 170 | .demod_address = 0x32 >> 1, |
| 171 | .output_mode = S5H1409_SERIAL_OUTPUT, |
| 172 | .gpio = S5H1409_GPIO_ON, |
| 173 | .qam_if = 44000, |
| 174 | .inversion = S5H1409_INVERSION_OFF, |
| 175 | .status_mode = S5H1409_DEMODLOCKING, |
| 176 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, |
| 177 | }; |
| 178 | |
Michael Krufky | 52b5045 | 2008-07-09 02:18:49 -0300 | [diff] [blame] | 179 | static struct s5h1411_config dvico_s5h1411_config = { |
| 180 | .output_mode = S5H1411_SERIAL_OUTPUT, |
| 181 | .gpio = S5H1411_GPIO_ON, |
| 182 | .qam_if = S5H1411_IF_44000, |
| 183 | .vsb_if = S5H1411_IF_44000, |
| 184 | .inversion = S5H1411_INVERSION_OFF, |
| 185 | .status_mode = S5H1411_DEMODLOCKING, |
| 186 | .mpeg_timing = S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, |
| 187 | }; |
| 188 | |
Steven Toth | d1987d5 | 2007-12-18 01:57:06 -0300 | [diff] [blame] | 189 | static struct xc5000_config hauppauge_hvr1500q_tunerconfig = { |
Steven Toth | e12671cf | 2007-12-20 01:14:43 -0300 | [diff] [blame] | 190 | .i2c_address = 0x61, |
| 191 | .if_khz = 5380, |
Steven Toth | d1987d5 | 2007-12-18 01:57:06 -0300 | [diff] [blame] | 192 | }; |
| 193 | |
Michael Krufky | 335377b | 2008-05-07 01:43:10 -0300 | [diff] [blame] | 194 | static struct xc5000_config dvico_xc5000_tunerconfig = { |
| 195 | .i2c_address = 0x64, |
| 196 | .if_khz = 5380, |
Michael Krufky | 335377b | 2008-05-07 01:43:10 -0300 | [diff] [blame] | 197 | }; |
| 198 | |
Michael Krufky | 4041f1a | 2007-12-24 04:52:08 -0300 | [diff] [blame] | 199 | static struct tda829x_config tda829x_no_probe = { |
| 200 | .probe_tuner = TDA829X_DONT_PROBE, |
| 201 | }; |
| 202 | |
Michael Krufky | f21e0d7 | 2008-01-02 03:01:54 -0300 | [diff] [blame] | 203 | static struct tda18271_std_map hauppauge_tda18271_std_map = { |
Michael Krufky | c0dc0c1 | 2008-04-22 14:46:22 -0300 | [diff] [blame] | 204 | .atsc_6 = { .if_freq = 5380, .agc_mode = 3, .std = 3, |
| 205 | .if_lvl = 6, .rfagc_top = 0x37 }, |
| 206 | .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 0, |
| 207 | .if_lvl = 6, .rfagc_top = 0x37 }, |
Michael Krufky | f21e0d7 | 2008-01-02 03:01:54 -0300 | [diff] [blame] | 208 | }; |
| 209 | |
| 210 | static struct tda18271_config hauppauge_tda18271_config = { |
| 211 | .std_map = &hauppauge_tda18271_std_map, |
| 212 | .gate = TDA18271_GATE_ANALOG, |
| 213 | }; |
| 214 | |
Steven Toth | b3ea016 | 2008-04-19 01:14:19 -0300 | [diff] [blame] | 215 | static struct tda18271_config hauppauge_hvr1200_tuner_config = { |
| 216 | .gate = TDA18271_GATE_ANALOG, |
| 217 | }; |
| 218 | |
Harvey Harrison | b1721d0 | 2008-04-25 19:03:08 -0700 | [diff] [blame] | 219 | static struct dibx000_agc_config xc3028_agc_config = { |
Steven Toth | 6676237 | 2008-04-22 15:38:26 -0300 | [diff] [blame] | 220 | BAND_VHF | BAND_UHF, /* band_caps */ |
| 221 | |
| 222 | /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=0, |
| 223 | * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, |
| 224 | * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, |
| 225 | * P_agc_nb_est=2, P_agc_write=0 |
| 226 | */ |
| 227 | (0 << 15) | (0 << 14) | (0 << 11) | (0 << 10) | (0 << 9) | (0 << 8) | |
| 228 | (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0), /* setup */ |
| 229 | |
| 230 | 712, /* inv_gain */ |
| 231 | 21, /* time_stabiliz */ |
| 232 | |
| 233 | 0, /* alpha_level */ |
| 234 | 118, /* thlock */ |
| 235 | |
| 236 | 0, /* wbd_inv */ |
| 237 | 2867, /* wbd_ref */ |
| 238 | 0, /* wbd_sel */ |
| 239 | 2, /* wbd_alpha */ |
| 240 | |
| 241 | 0, /* agc1_max */ |
| 242 | 0, /* agc1_min */ |
| 243 | 39718, /* agc2_max */ |
| 244 | 9930, /* agc2_min */ |
| 245 | 0, /* agc1_pt1 */ |
| 246 | 0, /* agc1_pt2 */ |
| 247 | 0, /* agc1_pt3 */ |
| 248 | 0, /* agc1_slope1 */ |
| 249 | 0, /* agc1_slope2 */ |
| 250 | 0, /* agc2_pt1 */ |
| 251 | 128, /* agc2_pt2 */ |
| 252 | 29, /* agc2_slope1 */ |
| 253 | 29, /* agc2_slope2 */ |
| 254 | |
| 255 | 17, /* alpha_mant */ |
| 256 | 27, /* alpha_exp */ |
| 257 | 23, /* beta_mant */ |
| 258 | 51, /* beta_exp */ |
| 259 | |
| 260 | 1, /* perform_agc_softsplit */ |
| 261 | }; |
| 262 | |
| 263 | /* PLL Configuration for COFDM BW_MHz = 8.000000 |
| 264 | * With external clock = 30.000000 */ |
Harvey Harrison | b1721d0 | 2008-04-25 19:03:08 -0700 | [diff] [blame] | 265 | static struct dibx000_bandwidth_config xc3028_bw_config = { |
Steven Toth | 6676237 | 2008-04-22 15:38:26 -0300 | [diff] [blame] | 266 | 60000, /* internal */ |
| 267 | 30000, /* sampling */ |
| 268 | 1, /* pll_cfg: prediv */ |
| 269 | 8, /* pll_cfg: ratio */ |
| 270 | 3, /* pll_cfg: range */ |
| 271 | 1, /* pll_cfg: reset */ |
| 272 | 0, /* pll_cfg: bypass */ |
| 273 | 0, /* misc: refdiv */ |
| 274 | 0, /* misc: bypclk_div */ |
| 275 | 1, /* misc: IO_CLK_en_core */ |
| 276 | 1, /* misc: ADClkSrc */ |
| 277 | 0, /* misc: modulo */ |
| 278 | (3 << 14) | (1 << 12) | (524 << 0), /* sad_cfg: refsel, sel, freq_15k */ |
| 279 | (1 << 25) | 5816102, /* ifreq = 5.200000 MHz */ |
| 280 | 20452225, /* timf */ |
| 281 | 30000000 /* xtal_hz */ |
| 282 | }; |
| 283 | |
| 284 | static struct dib7000p_config hauppauge_hvr1400_dib7000_config = { |
| 285 | .output_mpeg2_in_188_bytes = 1, |
| 286 | .hostbus_diversity = 1, |
| 287 | .tuner_is_baseband = 0, |
| 288 | .update_lna = NULL, |
| 289 | |
| 290 | .agc_config_count = 1, |
| 291 | .agc = &xc3028_agc_config, |
| 292 | .bw = &xc3028_bw_config, |
| 293 | |
| 294 | .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS, |
| 295 | .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES, |
| 296 | .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS, |
| 297 | |
| 298 | .pwm_freq_div = 0, |
| 299 | .agc_control = NULL, |
| 300 | .spur_protect = 0, |
| 301 | |
| 302 | .output_mode = OUTMODE_MPEG2_SERIAL, |
| 303 | }; |
| 304 | |
Steven Toth | aef2d18 | 2008-08-04 21:39:53 -0300 | [diff] [blame] | 305 | static struct zl10353_config dvico_fusionhdtv_xc3028 = { |
| 306 | .demod_address = 0x0f, |
| 307 | .if2 = 45600, |
| 308 | .no_tuner = 1, |
| 309 | }; |
| 310 | |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 311 | static int dvb_register(struct cx23885_tsport *port) |
| 312 | { |
| 313 | struct cx23885_dev *dev = port->dev; |
Michael Krufky | f139fa7 | 2007-09-09 03:55:34 -0300 | [diff] [blame] | 314 | struct cx23885_i2c *i2c_bus = NULL; |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 315 | struct videobuf_dvb_frontend *fe0; |
| 316 | |
| 317 | fe0 = videobuf_dvb_get_frontend(&port->frontends, 0); |
| 318 | if (!fe0) |
| 319 | return -EINVAL; |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 320 | |
| 321 | /* init struct videobuf_dvb */ |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 322 | fe0->dvb.name = dev->name; |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 323 | |
| 324 | /* init frontend */ |
| 325 | switch (dev->board) { |
Steven Toth | a77743b | 2007-08-22 21:01:20 -0300 | [diff] [blame] | 326 | case CX23885_BOARD_HAUPPAUGE_HVR1250: |
Michael Krufky | f139fa7 | 2007-09-09 03:55:34 -0300 | [diff] [blame] | 327 | i2c_bus = &dev->i2c_bus[0]; |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 328 | fe0->dvb.frontend = dvb_attach(s5h1409_attach, |
Steven Toth | 86184e0 | 2007-09-04 21:40:47 -0300 | [diff] [blame] | 329 | &hauppauge_generic_config, |
Michael Krufky | f139fa7 | 2007-09-09 03:55:34 -0300 | [diff] [blame] | 330 | &i2c_bus->i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 331 | if (fe0->dvb.frontend != NULL) { |
| 332 | dvb_attach(mt2131_attach, fe0->dvb.frontend, |
Michael Krufky | f139fa7 | 2007-09-09 03:55:34 -0300 | [diff] [blame] | 333 | &i2c_bus->i2c_adap, |
Steven Toth | 86184e0 | 2007-09-04 21:40:47 -0300 | [diff] [blame] | 334 | &hauppauge_generic_tunerconfig, 0); |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 335 | } |
| 336 | break; |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 337 | case CX23885_BOARD_HAUPPAUGE_HVR1800: |
| 338 | i2c_bus = &dev->i2c_bus[0]; |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 339 | switch (alt_tuner) { // XXXXXX multifrontend? |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 340 | case 1: |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 341 | fe0->dvb.frontend = |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 342 | dvb_attach(s5h1409_attach, |
| 343 | &hauppauge_ezqam_config, |
| 344 | &i2c_bus->i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 345 | if (fe0->dvb.frontend != NULL) { |
| 346 | dvb_attach(tda829x_attach, fe0->dvb.frontend, |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 347 | &dev->i2c_bus[1].i2c_adap, 0x42, |
Michael Krufky | 4041f1a | 2007-12-24 04:52:08 -0300 | [diff] [blame] | 348 | &tda829x_no_probe); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 349 | dvb_attach(tda18271_attach, fe0->dvb.frontend, |
Michael Krufky | 4041f1a | 2007-12-24 04:52:08 -0300 | [diff] [blame] | 350 | 0x60, &dev->i2c_bus[1].i2c_adap, |
Michael Krufky | f21e0d7 | 2008-01-02 03:01:54 -0300 | [diff] [blame] | 351 | &hauppauge_tda18271_config); |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 352 | } |
| 353 | break; |
| 354 | case 0: |
| 355 | default: |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 356 | fe0->dvb.frontend = |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 357 | dvb_attach(s5h1409_attach, |
| 358 | &hauppauge_generic_config, |
| 359 | &i2c_bus->i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 360 | if (fe0->dvb.frontend != NULL) |
| 361 | dvb_attach(mt2131_attach, fe0->dvb.frontend, |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 362 | &i2c_bus->i2c_adap, |
| 363 | &hauppauge_generic_tunerconfig, 0); |
| 364 | break; |
| 365 | } |
| 366 | break; |
Steven Toth | fc959be | 2007-09-08 19:08:17 -0300 | [diff] [blame] | 367 | case CX23885_BOARD_HAUPPAUGE_HVR1800lp: |
Michael Krufky | f139fa7 | 2007-09-09 03:55:34 -0300 | [diff] [blame] | 368 | i2c_bus = &dev->i2c_bus[0]; |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 369 | fe0->dvb.frontend = dvb_attach(s5h1409_attach, |
Steven Toth | fc959be | 2007-09-08 19:08:17 -0300 | [diff] [blame] | 370 | &hauppauge_hvr1800lp_config, |
Michael Krufky | f139fa7 | 2007-09-09 03:55:34 -0300 | [diff] [blame] | 371 | &i2c_bus->i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 372 | if (fe0->dvb.frontend != NULL) { |
| 373 | dvb_attach(mt2131_attach, fe0->dvb.frontend, |
Michael Krufky | f139fa7 | 2007-09-09 03:55:34 -0300 | [diff] [blame] | 374 | &i2c_bus->i2c_adap, |
Steven Toth | fc959be | 2007-09-08 19:08:17 -0300 | [diff] [blame] | 375 | &hauppauge_generic_tunerconfig, 0); |
| 376 | } |
| 377 | break; |
Michael Krufky | 9bc37ca | 2007-09-08 15:17:13 -0300 | [diff] [blame] | 378 | case CX23885_BOARD_DVICO_FUSIONHDTV_5_EXP: |
Michael Krufky | f139fa7 | 2007-09-09 03:55:34 -0300 | [diff] [blame] | 379 | i2c_bus = &dev->i2c_bus[0]; |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 380 | fe0->dvb.frontend = dvb_attach(lgdt330x_attach, |
Michael Krufky | 9bc37ca | 2007-09-08 15:17:13 -0300 | [diff] [blame] | 381 | &fusionhdtv_5_express, |
Michael Krufky | f139fa7 | 2007-09-09 03:55:34 -0300 | [diff] [blame] | 382 | &i2c_bus->i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 383 | if (fe0->dvb.frontend != NULL) { |
| 384 | dvb_attach(simple_tuner_attach, fe0->dvb.frontend, |
Michael Krufky | 827855d | 2008-04-22 14:46:16 -0300 | [diff] [blame] | 385 | &i2c_bus->i2c_adap, 0x61, |
| 386 | TUNER_LG_TDVS_H06XF); |
Michael Krufky | 9bc37ca | 2007-09-08 15:17:13 -0300 | [diff] [blame] | 387 | } |
| 388 | break; |
Steven Toth | d1987d5 | 2007-12-18 01:57:06 -0300 | [diff] [blame] | 389 | case CX23885_BOARD_HAUPPAUGE_HVR1500Q: |
| 390 | i2c_bus = &dev->i2c_bus[1]; |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 391 | fe0->dvb.frontend = dvb_attach(s5h1409_attach, |
Steven Toth | d1987d5 | 2007-12-18 01:57:06 -0300 | [diff] [blame] | 392 | &hauppauge_hvr1500q_config, |
| 393 | &dev->i2c_bus[0].i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 394 | if (fe0->dvb.frontend != NULL) |
| 395 | dvb_attach(xc5000_attach, fe0->dvb.frontend, |
Michael Krufky | 3065096 | 2008-09-06 14:56:58 -0300 | [diff] [blame] | 396 | &i2c_bus->i2c_adap, |
| 397 | &hauppauge_hvr1500q_tunerconfig); |
Steven Toth | d1987d5 | 2007-12-18 01:57:06 -0300 | [diff] [blame] | 398 | break; |
Michael Krufky | 07b4a83 | 2007-12-18 01:09:11 -0300 | [diff] [blame] | 399 | case CX23885_BOARD_HAUPPAUGE_HVR1500: |
| 400 | i2c_bus = &dev->i2c_bus[1]; |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 401 | fe0->dvb.frontend = dvb_attach(s5h1409_attach, |
Michael Krufky | 07b4a83 | 2007-12-18 01:09:11 -0300 | [diff] [blame] | 402 | &hauppauge_hvr1500_config, |
| 403 | &dev->i2c_bus[0].i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 404 | if (fe0->dvb.frontend != NULL) { |
Michael Krufky | 07b4a83 | 2007-12-18 01:09:11 -0300 | [diff] [blame] | 405 | struct dvb_frontend *fe; |
| 406 | struct xc2028_config cfg = { |
| 407 | .i2c_adap = &i2c_bus->i2c_adap, |
| 408 | .i2c_addr = 0x61, |
Michael Krufky | 07b4a83 | 2007-12-18 01:09:11 -0300 | [diff] [blame] | 409 | }; |
| 410 | static struct xc2028_ctrl ctl = { |
Michael Krufky | ef80bfeb | 2008-09-16 02:15:30 -0300 | [diff] [blame] | 411 | .fname = XC2028_DEFAULT_FIRMWARE, |
Michael Krufky | 07b4a83 | 2007-12-18 01:09:11 -0300 | [diff] [blame] | 412 | .max_len = 64, |
Mauro Carvalho Chehab | 33e5316 | 2008-04-21 06:58:48 -0300 | [diff] [blame] | 413 | .scode_table = XC3028_FE_OREN538, |
Michael Krufky | 07b4a83 | 2007-12-18 01:09:11 -0300 | [diff] [blame] | 414 | }; |
| 415 | |
| 416 | fe = dvb_attach(xc2028_attach, |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 417 | fe0->dvb.frontend, &cfg); |
Michael Krufky | 07b4a83 | 2007-12-18 01:09:11 -0300 | [diff] [blame] | 418 | if (fe != NULL && fe->ops.tuner_ops.set_config != NULL) |
| 419 | fe->ops.tuner_ops.set_config(fe, &ctl); |
| 420 | } |
| 421 | break; |
Steven Toth | b3ea016 | 2008-04-19 01:14:19 -0300 | [diff] [blame] | 422 | case CX23885_BOARD_HAUPPAUGE_HVR1200: |
Steven Toth | a780a31 | 2008-04-19 01:25:52 -0300 | [diff] [blame] | 423 | case CX23885_BOARD_HAUPPAUGE_HVR1700: |
Steven Toth | b3ea016 | 2008-04-19 01:14:19 -0300 | [diff] [blame] | 424 | i2c_bus = &dev->i2c_bus[0]; |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 425 | fe0->dvb.frontend = dvb_attach(tda10048_attach, |
Steven Toth | b3ea016 | 2008-04-19 01:14:19 -0300 | [diff] [blame] | 426 | &hauppauge_hvr1200_config, |
| 427 | &i2c_bus->i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 428 | if (fe0->dvb.frontend != NULL) { |
| 429 | dvb_attach(tda829x_attach, fe0->dvb.frontend, |
Steven Toth | b3ea016 | 2008-04-19 01:14:19 -0300 | [diff] [blame] | 430 | &dev->i2c_bus[1].i2c_adap, 0x42, |
| 431 | &tda829x_no_probe); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 432 | dvb_attach(tda18271_attach, fe0->dvb.frontend, |
Steven Toth | b3ea016 | 2008-04-19 01:14:19 -0300 | [diff] [blame] | 433 | 0x60, &dev->i2c_bus[1].i2c_adap, |
| 434 | &hauppauge_hvr1200_tuner_config); |
| 435 | } |
| 436 | break; |
Steven Toth | 6676237 | 2008-04-22 15:38:26 -0300 | [diff] [blame] | 437 | case CX23885_BOARD_HAUPPAUGE_HVR1400: |
| 438 | i2c_bus = &dev->i2c_bus[0]; |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 439 | fe0->dvb.frontend = dvb_attach(dib7000p_attach, |
Steven Toth | 6676237 | 2008-04-22 15:38:26 -0300 | [diff] [blame] | 440 | &i2c_bus->i2c_adap, |
| 441 | 0x12, &hauppauge_hvr1400_dib7000_config); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 442 | if (fe0->dvb.frontend != NULL) { |
Steven Toth | 6676237 | 2008-04-22 15:38:26 -0300 | [diff] [blame] | 443 | struct dvb_frontend *fe; |
| 444 | struct xc2028_config cfg = { |
| 445 | .i2c_adap = &dev->i2c_bus[1].i2c_adap, |
| 446 | .i2c_addr = 0x64, |
Steven Toth | 6676237 | 2008-04-22 15:38:26 -0300 | [diff] [blame] | 447 | }; |
| 448 | static struct xc2028_ctrl ctl = { |
Michael Krufky | ef80bfeb | 2008-09-16 02:15:30 -0300 | [diff] [blame] | 449 | .fname = XC3028L_DEFAULT_FIRMWARE, |
Steven Toth | 6676237 | 2008-04-22 15:38:26 -0300 | [diff] [blame] | 450 | .max_len = 64, |
| 451 | .demod = 5000, |
Mauro Carvalho Chehab | 0975fc6 | 2008-09-28 02:24:44 -0300 | [diff] [blame] | 452 | /* This is true for all demods with v36 firmware? */ |
| 453 | .type = XC2028_D2633, |
Steven Toth | 6676237 | 2008-04-22 15:38:26 -0300 | [diff] [blame] | 454 | }; |
| 455 | |
| 456 | fe = dvb_attach(xc2028_attach, |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 457 | fe0->dvb.frontend, &cfg); |
Steven Toth | 6676237 | 2008-04-22 15:38:26 -0300 | [diff] [blame] | 458 | if (fe != NULL && fe->ops.tuner_ops.set_config != NULL) |
| 459 | fe->ops.tuner_ops.set_config(fe, &ctl); |
| 460 | } |
| 461 | break; |
Michael Krufky | 335377b | 2008-05-07 01:43:10 -0300 | [diff] [blame] | 462 | case CX23885_BOARD_DVICO_FUSIONHDTV_7_DUAL_EXP: |
| 463 | i2c_bus = &dev->i2c_bus[port->nr - 1]; |
| 464 | |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 465 | fe0->dvb.frontend = dvb_attach(s5h1409_attach, |
Michael Krufky | 335377b | 2008-05-07 01:43:10 -0300 | [diff] [blame] | 466 | &dvico_s5h1409_config, |
| 467 | &i2c_bus->i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 468 | if (fe0->dvb.frontend == NULL) |
| 469 | fe0->dvb.frontend = dvb_attach(s5h1411_attach, |
Michael Krufky | 52b5045 | 2008-07-09 02:18:49 -0300 | [diff] [blame] | 470 | &dvico_s5h1411_config, |
| 471 | &i2c_bus->i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 472 | if (fe0->dvb.frontend != NULL) |
| 473 | dvb_attach(xc5000_attach, fe0->dvb.frontend, |
Michael Krufky | 3065096 | 2008-09-06 14:56:58 -0300 | [diff] [blame] | 474 | &i2c_bus->i2c_adap, |
| 475 | &dvico_xc5000_tunerconfig); |
Michael Krufky | 335377b | 2008-05-07 01:43:10 -0300 | [diff] [blame] | 476 | break; |
Steven Toth | aef2d18 | 2008-08-04 21:39:53 -0300 | [diff] [blame] | 477 | case CX23885_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL_EXP: { |
| 478 | i2c_bus = &dev->i2c_bus[port->nr - 1]; |
| 479 | |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 480 | fe0->dvb.frontend = dvb_attach(zl10353_attach, |
Steven Toth | aef2d18 | 2008-08-04 21:39:53 -0300 | [diff] [blame] | 481 | &dvico_fusionhdtv_xc3028, |
| 482 | &i2c_bus->i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 483 | if (fe0->dvb.frontend != NULL) { |
Steven Toth | aef2d18 | 2008-08-04 21:39:53 -0300 | [diff] [blame] | 484 | struct dvb_frontend *fe; |
| 485 | struct xc2028_config cfg = { |
| 486 | .i2c_adap = &i2c_bus->i2c_adap, |
| 487 | .i2c_addr = 0x61, |
Steven Toth | aef2d18 | 2008-08-04 21:39:53 -0300 | [diff] [blame] | 488 | }; |
| 489 | static struct xc2028_ctrl ctl = { |
Michael Krufky | ef80bfeb | 2008-09-16 02:15:30 -0300 | [diff] [blame] | 490 | .fname = XC2028_DEFAULT_FIRMWARE, |
Steven Toth | aef2d18 | 2008-08-04 21:39:53 -0300 | [diff] [blame] | 491 | .max_len = 64, |
| 492 | .demod = XC3028_FE_ZARLINK456, |
| 493 | }; |
| 494 | |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 495 | fe = dvb_attach(xc2028_attach, fe0->dvb.frontend, |
Steven Toth | aef2d18 | 2008-08-04 21:39:53 -0300 | [diff] [blame] | 496 | &cfg); |
| 497 | if (fe != NULL && fe->ops.tuner_ops.set_config != NULL) |
| 498 | fe->ops.tuner_ops.set_config(fe, &ctl); |
| 499 | } |
| 500 | break; |
| 501 | } |
Steven Toth | 4c56b04 | 2008-08-12 13:30:03 -0300 | [diff] [blame] | 502 | case CX23885_BOARD_LEADTEK_WINFAST_PXDVR3200_H: |
| 503 | i2c_bus = &dev->i2c_bus[0]; |
| 504 | |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 505 | fe0->dvb.frontend = dvb_attach(zl10353_attach, |
Steven Toth | 4c56b04 | 2008-08-12 13:30:03 -0300 | [diff] [blame] | 506 | &dvico_fusionhdtv_xc3028, |
| 507 | &i2c_bus->i2c_adap); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 508 | if (fe0->dvb.frontend != NULL) { |
Steven Toth | 4c56b04 | 2008-08-12 13:30:03 -0300 | [diff] [blame] | 509 | struct dvb_frontend *fe; |
| 510 | struct xc2028_config cfg = { |
| 511 | .i2c_adap = &dev->i2c_bus[1].i2c_adap, |
| 512 | .i2c_addr = 0x61, |
Steven Toth | 4c56b04 | 2008-08-12 13:30:03 -0300 | [diff] [blame] | 513 | }; |
| 514 | static struct xc2028_ctrl ctl = { |
Michael Krufky | ef80bfeb | 2008-09-16 02:15:30 -0300 | [diff] [blame] | 515 | .fname = XC2028_DEFAULT_FIRMWARE, |
Steven Toth | 4c56b04 | 2008-08-12 13:30:03 -0300 | [diff] [blame] | 516 | .max_len = 64, |
| 517 | .demod = XC3028_FE_ZARLINK456, |
| 518 | }; |
| 519 | |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 520 | fe = dvb_attach(xc2028_attach, fe0->dvb.frontend, |
Steven Toth | 4c56b04 | 2008-08-12 13:30:03 -0300 | [diff] [blame] | 521 | &cfg); |
| 522 | if (fe != NULL && fe->ops.tuner_ops.set_config != NULL) |
| 523 | fe->ops.tuner_ops.set_config(fe, &ctl); |
| 524 | } |
| 525 | break; |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 526 | default: |
| 527 | printk("%s: The frontend of your DVB/ATSC card isn't supported yet\n", |
| 528 | dev->name); |
| 529 | break; |
| 530 | } |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 531 | if (NULL == fe0->dvb.frontend) { |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 532 | printk("%s: frontend initialization failed\n", dev->name); |
| 533 | return -1; |
| 534 | } |
Michael Krufky | d7cba04 | 2008-09-12 13:31:45 -0300 | [diff] [blame] | 535 | /* define general-purpose callback pointer */ |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 536 | fe0->dvb.frontend->callback = cx23885_tuner_callback; |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 537 | |
| 538 | /* Put the analog decoder in standby to keep it quiet */ |
Michael Krufky | f139fa7 | 2007-09-09 03:55:34 -0300 | [diff] [blame] | 539 | cx23885_call_i2c_clients(i2c_bus, TUNER_SET_STANDBY, NULL); |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 540 | |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 541 | if (fe0->dvb.frontend->ops.analog_ops.standby) |
| 542 | fe0->dvb.frontend->ops.analog_ops.standby(fe0->dvb.frontend); |
Michael Krufky | 3ba71d2 | 2007-12-07 01:40:36 -0300 | [diff] [blame] | 543 | |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 544 | /* register everything */ |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 545 | return videobuf_dvb_register_bus(&port->frontends, THIS_MODULE, port, |
Janne Grunau | 78e9200 | 2008-04-09 19:13:13 -0300 | [diff] [blame] | 546 | &dev->pci->dev, adapter_nr); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 547 | |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | int cx23885_dvb_register(struct cx23885_tsport *port) |
| 551 | { |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 552 | |
| 553 | struct videobuf_dvb_frontend *fe0; |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 554 | struct cx23885_dev *dev = port->dev; |
| 555 | int err; |
| 556 | |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 557 | fe0 = videobuf_dvb_get_frontend(&port->frontends, 0); |
| 558 | if (!fe0) |
| 559 | err = -EINVAL; |
| 560 | |
Harvey Harrison | 22b4e64 | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 561 | dprintk(1, "%s\n", __func__); |
Michael Krufky | 44a6481 | 2007-03-20 23:00:18 -0300 | [diff] [blame] | 562 | dprintk(1, " ->being probed by Card=%d Name=%s, PCI %02x:%02x\n", |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 563 | dev->board, |
| 564 | dev->name, |
| 565 | dev->pci_bus, |
| 566 | dev->pci_slot); |
| 567 | |
| 568 | err = -ENODEV; |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 569 | |
| 570 | /* dvb stuff */ |
| 571 | printk("%s: cx23885 based dvb card\n", dev->name); |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 572 | videobuf_queue_sg_init(&fe0->dvb.dvbq, &dvb_qops, &dev->pci->dev, &port->slock, |
Michael Krufky | 44a6481 | 2007-03-20 23:00:18 -0300 | [diff] [blame] | 573 | V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_TOP, |
| 574 | sizeof(struct cx23885_buffer), port); |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 575 | err = dvb_register(port); |
| 576 | if (err != 0) |
Harvey Harrison | 22b4e64 | 2008-04-08 23:20:00 -0300 | [diff] [blame] | 577 | printk("%s() dvb_register failed err = %d\n", __func__, err); |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 578 | |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 579 | return err; |
| 580 | } |
| 581 | |
| 582 | int cx23885_dvb_unregister(struct cx23885_tsport *port) |
| 583 | { |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 584 | struct videobuf_dvb_frontend *fe0; |
| 585 | |
| 586 | fe0 = videobuf_dvb_get_frontend(&port->frontends, 0); |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 587 | /* dvb */ |
Steven Toth | 363c35f | 2008-10-11 11:05:50 -0300 | [diff] [blame^] | 588 | if(fe0->dvb.frontend) |
| 589 | videobuf_dvb_unregister_bus(&port->frontends); |
Steven Toth | d19770e | 2007-03-11 20:44:05 -0300 | [diff] [blame] | 590 | |
| 591 | return 0; |
| 592 | } |
Michael Krufky | 44a6481 | 2007-03-20 23:00:18 -0300 | [diff] [blame] | 593 | |
| 594 | /* |
| 595 | * Local variables: |
| 596 | * c-basic-offset: 8 |
| 597 | * End: |
| 598 | * kate: eol "unix"; indent-width 3; remove-trailing-space on; replace-trailing-space-save on; tab-width 8; replace-tabs off; space-indent off; mixed-indent off |
| 599 | */ |