Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1 | /* Linux driver for devices based on the DiBcom DiB0700 USB bridge |
| 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify it |
| 4 | * under the terms of the GNU General Public License as published by the Free |
| 5 | * Software Foundation, version 2. |
| 6 | * |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 7 | * Copyright (C) 2005-7 DiBcom, SA |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 8 | */ |
| 9 | #include "dib0700.h" |
| 10 | |
| 11 | #include "dib3000mc.h" |
Patrick Boettcher | 91bb9be | 2006-12-02 21:15:51 -0200 | [diff] [blame] | 12 | #include "dib7000m.h" |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 13 | #include "dib7000p.h" |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 14 | #include "mt2060.h" |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 15 | #include "mt2266.h" |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 16 | #include "tuner-xc2028.h" |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 17 | #include "dib0070.h" |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 18 | |
Patrick Boettcher | 7fb3fc0 | 2006-09-20 04:37:18 -0300 | [diff] [blame] | 19 | static int force_lna_activation; |
| 20 | module_param(force_lna_activation, int, 0644); |
| 21 | MODULE_PARM_DESC(force_lna_activation, "force the activation of Low-Noise-Amplifyer(s) (LNA), " |
| 22 | "if applicable for the device (default: 0=automatic/off)."); |
| 23 | |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 24 | struct dib0700_adapter_state { |
| 25 | int (*set_param_save) (struct dvb_frontend *, struct dvb_frontend_parameters *); |
| 26 | }; |
| 27 | |
| 28 | /* Hauppauge Nova-T 500 (aka Bristol) |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 29 | * has a LNA on GPIO0 which is enabled by setting 1 */ |
| 30 | static struct mt2060_config bristol_mt2060_config[2] = { |
| 31 | { |
| 32 | .i2c_address = 0x60, |
Patrick Boettcher | 303cbea | 2006-09-19 12:51:56 -0300 | [diff] [blame] | 33 | .clock_out = 3, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 34 | }, { |
| 35 | .i2c_address = 0x61, |
| 36 | } |
| 37 | }; |
| 38 | |
| 39 | static struct dibx000_agc_config bristol_dib3000p_mt2060_agc_config = { |
| 40 | .band_caps = BAND_VHF | BAND_UHF, |
Patrick Boettcher | 01b4bf3 | 2006-09-19 12:51:53 -0300 | [diff] [blame] | 41 | .setup = (1 << 8) | (5 << 5) | (0 << 4) | (0 << 3) | (0 << 2) | (2 << 0), |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 42 | |
Patrick Boettcher | 6958eff | 2006-09-19 12:51:40 -0300 | [diff] [blame] | 43 | .agc1_max = 42598, |
| 44 | .agc1_min = 17694, |
| 45 | .agc2_max = 45875, |
| 46 | .agc2_min = 0, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 47 | |
Patrick Boettcher | 6958eff | 2006-09-19 12:51:40 -0300 | [diff] [blame] | 48 | .agc1_pt1 = 0, |
| 49 | .agc1_pt2 = 59, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 50 | |
Patrick Boettcher | 6958eff | 2006-09-19 12:51:40 -0300 | [diff] [blame] | 51 | .agc1_slope1 = 0, |
| 52 | .agc1_slope2 = 69, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 53 | |
| 54 | .agc2_pt1 = 0, |
Patrick Boettcher | 6958eff | 2006-09-19 12:51:40 -0300 | [diff] [blame] | 55 | .agc2_pt2 = 59, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 56 | |
Patrick Boettcher | 6958eff | 2006-09-19 12:51:40 -0300 | [diff] [blame] | 57 | .agc2_slope1 = 111, |
| 58 | .agc2_slope2 = 28, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | static struct dib3000mc_config bristol_dib3000mc_config[2] = { |
| 62 | { .agc = &bristol_dib3000p_mt2060_agc_config, |
| 63 | .max_time = 0x196, |
| 64 | .ln_adc_level = 0x1cc7, |
| 65 | .output_mpeg2_in_188_bytes = 1, |
| 66 | }, |
| 67 | { .agc = &bristol_dib3000p_mt2060_agc_config, |
| 68 | .max_time = 0x196, |
| 69 | .ln_adc_level = 0x1cc7, |
| 70 | .output_mpeg2_in_188_bytes = 1, |
| 71 | } |
| 72 | }; |
| 73 | |
| 74 | static int bristol_frontend_attach(struct dvb_usb_adapter *adap) |
| 75 | { |
Patrick Boettcher | 6958eff | 2006-09-19 12:51:40 -0300 | [diff] [blame] | 76 | struct dib0700_state *st = adap->dev->priv; |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 77 | if (adap->id == 0) { |
| 78 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0); msleep(10); |
| 79 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1); msleep(10); |
| 80 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); msleep(10); |
| 81 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1); msleep(10); |
| 82 | |
Patrick Boettcher | 7fb3fc0 | 2006-09-20 04:37:18 -0300 | [diff] [blame] | 83 | if (force_lna_activation) |
| 84 | dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1); |
| 85 | else |
| 86 | dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 0); |
Patrick Boettcher | 6958eff | 2006-09-19 12:51:40 -0300 | [diff] [blame] | 87 | |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 88 | if (dib3000mc_i2c_enumeration(&adap->dev->i2c_adap, 2, DEFAULT_DIB3000P_I2C_ADDRESS, bristol_dib3000mc_config) != 0) { |
| 89 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0); msleep(10); |
| 90 | return -ENODEV; |
| 91 | } |
| 92 | } |
Patrick Boettcher | 6958eff | 2006-09-19 12:51:40 -0300 | [diff] [blame] | 93 | st->mt2060_if1[adap->id] = 1220; |
| 94 | return (adap->fe = dvb_attach(dib3000mc_attach, &adap->dev->i2c_adap, |
| 95 | (10 + adap->id) << 1, &bristol_dib3000mc_config[adap->id])) == NULL ? -ENODEV : 0; |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 96 | } |
| 97 | |
Patrick Boettcher | 4a2b108 | 2008-01-25 07:32:58 -0300 | [diff] [blame] | 98 | static int eeprom_read(struct i2c_adapter *adap,u8 adrs,u8 *pval) |
Olivier DANET | c52344f | 2008-01-25 06:50:07 -0300 | [diff] [blame] | 99 | { |
| 100 | struct i2c_msg msg[2] = { |
| 101 | { .addr = 0x50, .flags = 0, .buf = &adrs, .len = 1 }, |
| 102 | { .addr = 0x50, .flags = I2C_M_RD, .buf = pval, .len = 1 }, |
| 103 | }; |
| 104 | if (i2c_transfer(adap, msg, 2) != 2) return -EREMOTEIO; |
| 105 | return 0; |
| 106 | } |
| 107 | |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 108 | static int bristol_tuner_attach(struct dvb_usb_adapter *adap) |
| 109 | { |
Olivier DANET | c52344f | 2008-01-25 06:50:07 -0300 | [diff] [blame] | 110 | struct i2c_adapter *prim_i2c = &adap->dev->i2c_adap; |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 111 | struct i2c_adapter *tun_i2c = dib3000mc_get_tuner_i2c_master(adap->fe, 1); |
Olivier DANET | c52344f | 2008-01-25 06:50:07 -0300 | [diff] [blame] | 112 | s8 a; |
| 113 | int if1=1220; |
Al Viro | da5ee48 | 2008-05-21 00:31:21 -0300 | [diff] [blame] | 114 | if (adap->dev->udev->descriptor.idVendor == cpu_to_le16(USB_VID_HAUPPAUGE) && |
| 115 | adap->dev->udev->descriptor.idProduct == cpu_to_le16(USB_PID_HAUPPAUGE_NOVA_T_500_2)) { |
Olivier DANET | c52344f | 2008-01-25 06:50:07 -0300 | [diff] [blame] | 116 | if (!eeprom_read(prim_i2c,0x59 + adap->id,&a)) if1=1220+a; |
| 117 | } |
| 118 | return dvb_attach(mt2060_attach,adap->fe, tun_i2c,&bristol_mt2060_config[adap->id], |
| 119 | if1) == NULL ? -ENODEV : 0; |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 120 | } |
| 121 | |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 122 | /* STK7700D: Pinnacle/Terratec/Hauppauge Dual DVB-T Diversity */ |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 123 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 124 | /* MT226x */ |
| 125 | static struct dibx000_agc_config stk7700d_7000p_mt2266_agc_config[2] = { |
| 126 | { |
| 127 | BAND_UHF, // band_caps |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 128 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 129 | /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1, P_agc_inv_pwm1=1, P_agc_inv_pwm2=1, |
| 130 | * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=2, P_agc_write=0 */ |
| 131 | (0 << 15) | (0 << 14) | (1 << 11) | (1 << 10) | (1 << 9) | (0 << 8) | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0), // setup |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 132 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 133 | 1130, // inv_gain |
| 134 | 21, // time_stabiliz |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 135 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 136 | 0, // alpha_level |
| 137 | 118, // thlock |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 138 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 139 | 0, // wbd_inv |
| 140 | 3530, // wbd_ref |
| 141 | 1, // wbd_sel |
| 142 | 0, // wbd_alpha |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 143 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 144 | 65535, // agc1_max |
| 145 | 33770, // agc1_min |
| 146 | 65535, // agc2_max |
| 147 | 23592, // agc2_min |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 148 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 149 | 0, // agc1_pt1 |
| 150 | 62, // agc1_pt2 |
| 151 | 255, // agc1_pt3 |
| 152 | 64, // agc1_slope1 |
| 153 | 64, // agc1_slope2 |
| 154 | 132, // agc2_pt1 |
| 155 | 192, // agc2_pt2 |
| 156 | 80, // agc2_slope1 |
| 157 | 80, // agc2_slope2 |
| 158 | |
| 159 | 17, // alpha_mant |
| 160 | 27, // alpha_exp |
| 161 | 23, // beta_mant |
| 162 | 51, // beta_exp |
| 163 | |
| 164 | 1, // perform_agc_softsplit |
| 165 | }, { |
| 166 | BAND_VHF | BAND_LBAND, // band_caps |
| 167 | |
| 168 | /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1, P_agc_inv_pwm1=1, P_agc_inv_pwm2=1, |
| 169 | * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=2, P_agc_write=0 */ |
| 170 | (0 << 15) | (0 << 14) | (1 << 11) | (1 << 10) | (1 << 9) | (0 << 8) | (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0), // setup |
| 171 | |
| 172 | 2372, // inv_gain |
| 173 | 21, // time_stabiliz |
| 174 | |
| 175 | 0, // alpha_level |
| 176 | 118, // thlock |
| 177 | |
| 178 | 0, // wbd_inv |
| 179 | 3530, // wbd_ref |
| 180 | 1, // wbd_sel |
| 181 | 0, // wbd_alpha |
| 182 | |
| 183 | 65535, // agc1_max |
| 184 | 0, // agc1_min |
| 185 | 65535, // agc2_max |
| 186 | 23592, // agc2_min |
| 187 | |
| 188 | 0, // agc1_pt1 |
| 189 | 128, // agc1_pt2 |
| 190 | 128, // agc1_pt3 |
| 191 | 128, // agc1_slope1 |
| 192 | 0, // agc1_slope2 |
| 193 | 128, // agc2_pt1 |
| 194 | 253, // agc2_pt2 |
| 195 | 81, // agc2_slope1 |
| 196 | 0, // agc2_slope2 |
| 197 | |
| 198 | 17, // alpha_mant |
| 199 | 27, // alpha_exp |
| 200 | 23, // beta_mant |
| 201 | 51, // beta_exp |
| 202 | |
| 203 | 1, // perform_agc_softsplit |
| 204 | } |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 205 | }; |
| 206 | |
| 207 | static struct dibx000_bandwidth_config stk7700d_mt2266_pll_config = { |
| 208 | 60000, 30000, // internal, sampling |
| 209 | 1, 8, 3, 1, 0, // pll_cfg: prediv, ratio, range, reset, bypass |
| 210 | 0, 0, 1, 1, 2, // misc: refdiv, bypclk_div, IO_CLK_en_core, ADClkSrc, modulo |
| 211 | (3 << 14) | (1 << 12) | (524 << 0), // sad_cfg: refsel, sel, freq_15k |
| 212 | 0, // ifreq |
| 213 | 20452225, // timf |
| 214 | }; |
| 215 | |
| 216 | static struct dib7000p_config stk7700d_dib7000p_mt2266_config[] = { |
| 217 | { .output_mpeg2_in_188_bytes = 1, |
| 218 | .hostbus_diversity = 1, |
| 219 | .tuner_is_baseband = 1, |
| 220 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 221 | .agc_config_count = 2, |
| 222 | .agc = stk7700d_7000p_mt2266_agc_config, |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 223 | .bw = &stk7700d_mt2266_pll_config, |
| 224 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 225 | .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS, |
| 226 | .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES, |
| 227 | .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS, |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 228 | }, |
| 229 | { .output_mpeg2_in_188_bytes = 1, |
| 230 | .hostbus_diversity = 1, |
| 231 | .tuner_is_baseband = 1, |
| 232 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 233 | .agc_config_count = 2, |
| 234 | .agc = stk7700d_7000p_mt2266_agc_config, |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 235 | .bw = &stk7700d_mt2266_pll_config, |
| 236 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 237 | .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS, |
| 238 | .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES, |
| 239 | .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS, |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 240 | } |
| 241 | }; |
| 242 | |
| 243 | static struct mt2266_config stk7700d_mt2266_config[2] = { |
| 244 | { .i2c_address = 0x60 |
| 245 | }, |
| 246 | { .i2c_address = 0x60 |
| 247 | } |
| 248 | }; |
| 249 | |
Daniel Gimpelevich | 132c318 | 2008-01-25 06:02:42 -0300 | [diff] [blame] | 250 | static int stk7700P2_frontend_attach(struct dvb_usb_adapter *adap) |
| 251 | { |
| 252 | if (adap->id == 0) { |
| 253 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1); |
| 254 | msleep(10); |
| 255 | dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1); |
| 256 | dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1); |
| 257 | dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1); |
| 258 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); |
| 259 | msleep(10); |
| 260 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1); |
| 261 | msleep(10); |
| 262 | dib7000p_i2c_enumeration(&adap->dev->i2c_adap,1,18,stk7700d_dib7000p_mt2266_config); |
| 263 | } |
| 264 | |
| 265 | adap->fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap,0x80+(adap->id << 1), |
| 266 | &stk7700d_dib7000p_mt2266_config[adap->id]); |
| 267 | |
| 268 | return adap->fe == NULL ? -ENODEV : 0; |
| 269 | } |
| 270 | |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 271 | static int stk7700d_frontend_attach(struct dvb_usb_adapter *adap) |
| 272 | { |
| 273 | if (adap->id == 0) { |
| 274 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1); |
| 275 | msleep(10); |
| 276 | dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1); |
| 277 | dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1); |
| 278 | dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1); |
| 279 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); |
| 280 | msleep(10); |
| 281 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1); |
| 282 | msleep(10); |
| 283 | dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1); |
| 284 | dib7000p_i2c_enumeration(&adap->dev->i2c_adap,2,18,stk7700d_dib7000p_mt2266_config); |
| 285 | } |
| 286 | |
| 287 | adap->fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap,0x80+(adap->id << 1), |
| 288 | &stk7700d_dib7000p_mt2266_config[adap->id]); |
| 289 | |
| 290 | return adap->fe == NULL ? -ENODEV : 0; |
| 291 | } |
| 292 | |
| 293 | static int stk7700d_tuner_attach(struct dvb_usb_adapter *adap) |
| 294 | { |
| 295 | struct i2c_adapter *tun_i2c; |
| 296 | tun_i2c = dib7000p_get_i2c_master(adap->fe, DIBX000_I2C_INTERFACE_TUNER, 1); |
| 297 | return dvb_attach(mt2266_attach, adap->fe, tun_i2c, |
| 298 | &stk7700d_mt2266_config[adap->id]) == NULL ? -ENODEV : 0;; |
| 299 | } |
| 300 | |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 301 | /* STK7700-PH: Digital/Analog Hybrid Tuner, e.h. Cinergy HT USB HE */ |
Harvey Harrison | b1721d0 | 2008-04-25 19:03:08 -0700 | [diff] [blame] | 302 | static struct dibx000_agc_config xc3028_agc_config = { |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 303 | BAND_VHF | BAND_UHF, /* band_caps */ |
| 304 | |
| 305 | /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=0, |
| 306 | * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0, |
| 307 | * P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=2, P_agc_write=0 */ |
| 308 | (0 << 15) | (0 << 14) | (0 << 11) | (0 << 10) | (0 << 9) | (0 << 8) | |
| 309 | (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0), /* setup */ |
| 310 | |
| 311 | 712, /* inv_gain */ |
| 312 | 21, /* time_stabiliz */ |
| 313 | |
| 314 | 0, /* alpha_level */ |
| 315 | 118, /* thlock */ |
| 316 | |
| 317 | 0, /* wbd_inv */ |
| 318 | 2867, /* wbd_ref */ |
| 319 | 0, /* wbd_sel */ |
| 320 | 2, /* wbd_alpha */ |
| 321 | |
| 322 | 0, /* agc1_max */ |
| 323 | 0, /* agc1_min */ |
| 324 | 39718, /* agc2_max */ |
| 325 | 9930, /* agc2_min */ |
| 326 | 0, /* agc1_pt1 */ |
| 327 | 0, /* agc1_pt2 */ |
| 328 | 0, /* agc1_pt3 */ |
| 329 | 0, /* agc1_slope1 */ |
| 330 | 0, /* agc1_slope2 */ |
| 331 | 0, /* agc2_pt1 */ |
| 332 | 128, /* agc2_pt2 */ |
| 333 | 29, /* agc2_slope1 */ |
| 334 | 29, /* agc2_slope2 */ |
| 335 | |
| 336 | 17, /* alpha_mant */ |
| 337 | 27, /* alpha_exp */ |
| 338 | 23, /* beta_mant */ |
| 339 | 51, /* beta_exp */ |
| 340 | |
| 341 | 1, /* perform_agc_softsplit */ |
| 342 | }; |
| 343 | |
| 344 | /* PLL Configuration for COFDM BW_MHz = 8.00 with external clock = 30.00 */ |
Harvey Harrison | b1721d0 | 2008-04-25 19:03:08 -0700 | [diff] [blame] | 345 | static struct dibx000_bandwidth_config xc3028_bw_config = { |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 346 | 60000, 30000, /* internal, sampling */ |
| 347 | 1, 8, 3, 1, 0, /* pll_cfg: prediv, ratio, range, reset, bypass */ |
| 348 | 0, 0, 1, 1, 0, /* misc: refdiv, bypclk_div, IO_CLK_en_core, ADClkSrc, |
| 349 | modulo */ |
| 350 | (3 << 14) | (1 << 12) | (524 << 0), /* sad_cfg: refsel, sel, freq_15k */ |
| 351 | (1 << 25) | 5816102, /* ifreq = 5.200000 MHz */ |
| 352 | 20452225, /* timf */ |
| 353 | 30000000, /* xtal_hz */ |
| 354 | }; |
| 355 | |
| 356 | static struct dib7000p_config stk7700ph_dib7700_xc3028_config = { |
| 357 | .output_mpeg2_in_188_bytes = 1, |
| 358 | .tuner_is_baseband = 1, |
| 359 | |
| 360 | .agc_config_count = 1, |
| 361 | .agc = &xc3028_agc_config, |
| 362 | .bw = &xc3028_bw_config, |
| 363 | |
| 364 | .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS, |
| 365 | .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES, |
| 366 | .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS, |
| 367 | }; |
| 368 | |
| 369 | static int stk7700ph_xc3028_callback(void *ptr, int command, int arg) |
| 370 | { |
| 371 | struct dvb_usb_adapter *adap = ptr; |
| 372 | |
| 373 | switch (command) { |
| 374 | case XC2028_TUNER_RESET: |
| 375 | /* Send the tuner in then out of reset */ |
| 376 | dib7000p_set_gpio(adap->fe, 8, 0, 0); msleep(10); |
| 377 | dib7000p_set_gpio(adap->fe, 8, 0, 1); |
| 378 | break; |
| 379 | case XC2028_RESET_CLK: |
| 380 | break; |
| 381 | default: |
| 382 | err("%s: unknown command %d, arg %d\n", __func__, |
| 383 | command, arg); |
| 384 | return -EINVAL; |
| 385 | } |
| 386 | return 0; |
| 387 | } |
| 388 | |
| 389 | static struct xc2028_ctrl stk7700ph_xc3028_ctrl = { |
| 390 | .fname = XC2028_DEFAULT_FIRMWARE, |
| 391 | .max_len = 64, |
| 392 | .demod = XC3028_FE_DIBCOM52, |
| 393 | }; |
| 394 | |
| 395 | static struct xc2028_config stk7700ph_xc3028_config = { |
| 396 | .i2c_addr = 0x61, |
| 397 | .callback = stk7700ph_xc3028_callback, |
| 398 | .ctrl = &stk7700ph_xc3028_ctrl, |
| 399 | }; |
| 400 | |
| 401 | static int stk7700ph_frontend_attach(struct dvb_usb_adapter *adap) |
| 402 | { |
| 403 | struct usb_device_descriptor *desc = &adap->dev->udev->descriptor; |
| 404 | |
Al Viro | da5ee48 | 2008-05-21 00:31:21 -0300 | [diff] [blame] | 405 | if (desc->idVendor == cpu_to_le16(USB_VID_PINNACLE) && |
| 406 | desc->idProduct == cpu_to_le16(USB_PID_PINNACLE_EXPRESSCARD_320CX)) |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 407 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0); |
| 408 | else |
| 409 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1); |
| 410 | msleep(20); |
| 411 | dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1); |
| 412 | dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1); |
| 413 | dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1); |
| 414 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); |
| 415 | msleep(10); |
| 416 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1); |
| 417 | msleep(20); |
| 418 | dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1); |
| 419 | msleep(10); |
| 420 | |
| 421 | dib7000p_i2c_enumeration(&adap->dev->i2c_adap, 1, 18, |
| 422 | &stk7700ph_dib7700_xc3028_config); |
| 423 | |
| 424 | adap->fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap, 0x80, |
| 425 | &stk7700ph_dib7700_xc3028_config); |
| 426 | |
| 427 | return adap->fe == NULL ? -ENODEV : 0; |
| 428 | } |
| 429 | |
| 430 | static int stk7700ph_tuner_attach(struct dvb_usb_adapter *adap) |
| 431 | { |
| 432 | struct i2c_adapter *tun_i2c; |
| 433 | |
| 434 | tun_i2c = dib7000p_get_i2c_master(adap->fe, |
| 435 | DIBX000_I2C_INTERFACE_TUNER, 1); |
| 436 | |
| 437 | stk7700ph_xc3028_config.i2c_adap = tun_i2c; |
| 438 | stk7700ph_xc3028_config.video_dev = adap; |
| 439 | |
| 440 | return dvb_attach(xc2028_attach, adap->fe, &stk7700ph_xc3028_config) |
| 441 | == NULL ? -ENODEV : 0; |
| 442 | } |
| 443 | |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 444 | #define DEFAULT_RC_INTERVAL 150 |
| 445 | |
| 446 | static u8 rc_request[] = { REQUEST_POLL_RC, 0 }; |
| 447 | |
Patrick Boettcher | 58e6f95 | 2008-03-29 21:37:01 -0300 | [diff] [blame] | 448 | /* Number of keypresses to ignore before start repeating */ |
| 449 | #define RC_REPEAT_DELAY 2 |
| 450 | |
Janne Grunau | 82f3d55 | 2007-07-30 13:50:28 -0300 | [diff] [blame] | 451 | static int dib0700_rc_query(struct dvb_usb_device *d, u32 *event, int *state) |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 452 | { |
| 453 | u8 key[4]; |
| 454 | int i; |
| 455 | struct dvb_usb_rc_key *keymap = d->props.rc_key_map; |
| 456 | struct dib0700_state *st = d->priv; |
| 457 | *event = 0; |
| 458 | *state = REMOTE_NO_KEY_PRESSED; |
| 459 | i=dib0700_ctrl_rd(d,rc_request,2,key,4); |
| 460 | if (i<=0) { |
Janne Grunau | 034d65e | 2007-07-31 08:48:40 -0300 | [diff] [blame] | 461 | err("RC Query Failed"); |
Janne Grunau | 89f4267 | 2007-07-31 19:45:13 -0300 | [diff] [blame] | 462 | return -1; |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 463 | } |
Patrick Boettcher | 58e6f95 | 2008-03-29 21:37:01 -0300 | [diff] [blame] | 464 | |
| 465 | /* losing half of KEY_0 events from Philipps rc5 remotes.. */ |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 466 | if (key[0]==0 && key[1]==0 && key[2]==0 && key[3]==0) return 0; |
Patrick Boettcher | 58e6f95 | 2008-03-29 21:37:01 -0300 | [diff] [blame] | 467 | |
| 468 | /* info("%d: %2X %2X %2X %2X",dvb_usb_dib0700_ir_proto,(int)key[3-2],(int)key[3-3],(int)key[3-1],(int)key[3]); */ |
| 469 | |
| 470 | dib0700_rc_setup(d); /* reset ir sensor data to prevent false events */ |
| 471 | |
| 472 | switch (dvb_usb_dib0700_ir_proto) { |
| 473 | case 0: { |
| 474 | /* NEC protocol sends repeat code as 0 0 0 FF */ |
| 475 | if ((key[3-2] == 0x00) && (key[3-3] == 0x00) && |
| 476 | (key[3] == 0xFF)) { |
| 477 | st->rc_counter++; |
| 478 | if (st->rc_counter > RC_REPEAT_DELAY) { |
| 479 | *event = d->last_event; |
| 480 | *state = REMOTE_KEY_PRESSED; |
| 481 | st->rc_counter = RC_REPEAT_DELAY; |
| 482 | } |
| 483 | return 0; |
| 484 | } |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 485 | for (i=0;i<d->props.rc_key_map_size; i++) { |
Janne Grunau | 89f4267 | 2007-07-31 19:45:13 -0300 | [diff] [blame] | 486 | if (keymap[i].custom == key[3-2] && keymap[i].data == key[3-3]) { |
Patrick Boettcher | 58e6f95 | 2008-03-29 21:37:01 -0300 | [diff] [blame] | 487 | st->rc_counter = 0; |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 488 | *event = keymap[i].event; |
| 489 | *state = REMOTE_KEY_PRESSED; |
Patrick Boettcher | 58e6f95 | 2008-03-29 21:37:01 -0300 | [diff] [blame] | 490 | d->last_event = keymap[i].event; |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 491 | return 0; |
| 492 | } |
| 493 | } |
Patrick Boettcher | 58e6f95 | 2008-03-29 21:37:01 -0300 | [diff] [blame] | 494 | break; |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 495 | } |
Patrick Boettcher | 58e6f95 | 2008-03-29 21:37:01 -0300 | [diff] [blame] | 496 | default: { |
| 497 | /* RC-5 protocol changes toggle bit on new keypress */ |
| 498 | for (i = 0; i < d->props.rc_key_map_size; i++) { |
| 499 | if (keymap[i].custom == key[3-2] && keymap[i].data == key[3-3]) { |
| 500 | if (d->last_event == keymap[i].event && |
| 501 | key[3-1] == st->rc_toggle) { |
| 502 | st->rc_counter++; |
| 503 | /* prevents unwanted double hits */ |
| 504 | if (st->rc_counter > RC_REPEAT_DELAY) { |
| 505 | *event = d->last_event; |
| 506 | *state = REMOTE_KEY_PRESSED; |
| 507 | st->rc_counter = RC_REPEAT_DELAY; |
| 508 | } |
| 509 | |
| 510 | return 0; |
| 511 | } |
| 512 | st->rc_counter = 0; |
| 513 | *event = keymap[i].event; |
| 514 | *state = REMOTE_KEY_PRESSED; |
| 515 | st->rc_toggle = key[3-1]; |
| 516 | d->last_event = keymap[i].event; |
| 517 | return 0; |
| 518 | } |
| 519 | } |
| 520 | break; |
| 521 | } |
| 522 | } |
| 523 | err("Unknown remote controller key: %2X %2X %2X %2X", (int) key[3-2], (int) key[3-3], (int) key[3-1], (int) key[3]); |
| 524 | d->last_event = 0; |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 525 | return 0; |
| 526 | } |
| 527 | |
Janne Grunau | 82f3d55 | 2007-07-30 13:50:28 -0300 | [diff] [blame] | 528 | static struct dvb_usb_rc_key dib0700_rc_keys[] = { |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 529 | /* Key codes for the tiny Pinnacle remote*/ |
| 530 | { 0x07, 0x00, KEY_MUTE }, |
| 531 | { 0x07, 0x01, KEY_MENU }, // Pinnacle logo |
| 532 | { 0x07, 0x39, KEY_POWER }, |
| 533 | { 0x07, 0x03, KEY_VOLUMEUP }, |
| 534 | { 0x07, 0x09, KEY_VOLUMEDOWN }, |
| 535 | { 0x07, 0x06, KEY_CHANNELUP }, |
| 536 | { 0x07, 0x0c, KEY_CHANNELDOWN }, |
| 537 | { 0x07, 0x0f, KEY_1 }, |
| 538 | { 0x07, 0x15, KEY_2 }, |
| 539 | { 0x07, 0x10, KEY_3 }, |
| 540 | { 0x07, 0x18, KEY_4 }, |
| 541 | { 0x07, 0x1b, KEY_5 }, |
| 542 | { 0x07, 0x1e, KEY_6 }, |
| 543 | { 0x07, 0x11, KEY_7 }, |
| 544 | { 0x07, 0x21, KEY_8 }, |
| 545 | { 0x07, 0x12, KEY_9 }, |
| 546 | { 0x07, 0x27, KEY_0 }, |
| 547 | { 0x07, 0x24, KEY_SCREEN }, // 'Square' key |
| 548 | { 0x07, 0x2a, KEY_TEXT }, // 'T' key |
| 549 | { 0x07, 0x2d, KEY_REWIND }, |
| 550 | { 0x07, 0x30, KEY_PLAY }, |
| 551 | { 0x07, 0x33, KEY_FASTFORWARD }, |
| 552 | { 0x07, 0x36, KEY_RECORD }, |
| 553 | { 0x07, 0x3c, KEY_STOP }, |
| 554 | { 0x07, 0x3f, KEY_CANCEL }, // '?' key |
| 555 | /* Key codes for the Terratec Cinergy DT XS Diversity, similar to cinergyT2.c */ |
| 556 | { 0xeb, 0x01, KEY_POWER }, |
| 557 | { 0xeb, 0x02, KEY_1 }, |
| 558 | { 0xeb, 0x03, KEY_2 }, |
| 559 | { 0xeb, 0x04, KEY_3 }, |
| 560 | { 0xeb, 0x05, KEY_4 }, |
| 561 | { 0xeb, 0x06, KEY_5 }, |
| 562 | { 0xeb, 0x07, KEY_6 }, |
| 563 | { 0xeb, 0x08, KEY_7 }, |
| 564 | { 0xeb, 0x09, KEY_8 }, |
| 565 | { 0xeb, 0x0a, KEY_9 }, |
| 566 | { 0xeb, 0x0b, KEY_VIDEO }, |
| 567 | { 0xeb, 0x0c, KEY_0 }, |
| 568 | { 0xeb, 0x0d, KEY_REFRESH }, |
| 569 | { 0xeb, 0x0f, KEY_EPG }, |
| 570 | { 0xeb, 0x10, KEY_UP }, |
| 571 | { 0xeb, 0x11, KEY_LEFT }, |
| 572 | { 0xeb, 0x12, KEY_OK }, |
| 573 | { 0xeb, 0x13, KEY_RIGHT }, |
| 574 | { 0xeb, 0x14, KEY_DOWN }, |
| 575 | { 0xeb, 0x16, KEY_INFO }, |
| 576 | { 0xeb, 0x17, KEY_RED }, |
| 577 | { 0xeb, 0x18, KEY_GREEN }, |
| 578 | { 0xeb, 0x19, KEY_YELLOW }, |
| 579 | { 0xeb, 0x1a, KEY_BLUE }, |
| 580 | { 0xeb, 0x1b, KEY_CHANNELUP }, |
| 581 | { 0xeb, 0x1c, KEY_VOLUMEUP }, |
Janne Grunau | 7161f27 | 2007-07-30 13:54:55 -0300 | [diff] [blame] | 582 | { 0xeb, 0x1d, KEY_MUTE }, |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 583 | { 0xeb, 0x1e, KEY_VOLUMEDOWN }, |
| 584 | { 0xeb, 0x1f, KEY_CHANNELDOWN }, |
| 585 | { 0xeb, 0x40, KEY_PAUSE }, |
| 586 | { 0xeb, 0x41, KEY_HOME }, |
| 587 | { 0xeb, 0x42, KEY_MENU }, /* DVD Menu */ |
| 588 | { 0xeb, 0x43, KEY_SUBTITLE }, |
| 589 | { 0xeb, 0x44, KEY_TEXT }, /* Teletext */ |
| 590 | { 0xeb, 0x45, KEY_DELETE }, |
| 591 | { 0xeb, 0x46, KEY_TV }, |
| 592 | { 0xeb, 0x47, KEY_DVD }, |
| 593 | { 0xeb, 0x48, KEY_STOP }, |
| 594 | { 0xeb, 0x49, KEY_VIDEO }, |
| 595 | { 0xeb, 0x4a, KEY_AUDIO }, /* Music */ |
| 596 | { 0xeb, 0x4b, KEY_SCREEN }, /* Pic */ |
| 597 | { 0xeb, 0x4c, KEY_PLAY }, |
| 598 | { 0xeb, 0x4d, KEY_BACK }, |
| 599 | { 0xeb, 0x4e, KEY_REWIND }, |
| 600 | { 0xeb, 0x4f, KEY_FASTFORWARD }, |
| 601 | { 0xeb, 0x54, KEY_PREVIOUS }, |
| 602 | { 0xeb, 0x58, KEY_RECORD }, |
Janne Grunau | 7161f27 | 2007-07-30 13:54:55 -0300 | [diff] [blame] | 603 | { 0xeb, 0x5c, KEY_NEXT }, |
| 604 | |
| 605 | /* Key codes for the Haupauge WinTV Nova-TD, copied from nova-t-usb2.c (Nova-T USB2) */ |
| 606 | { 0x1e, 0x00, KEY_0 }, |
| 607 | { 0x1e, 0x01, KEY_1 }, |
| 608 | { 0x1e, 0x02, KEY_2 }, |
| 609 | { 0x1e, 0x03, KEY_3 }, |
| 610 | { 0x1e, 0x04, KEY_4 }, |
| 611 | { 0x1e, 0x05, KEY_5 }, |
| 612 | { 0x1e, 0x06, KEY_6 }, |
| 613 | { 0x1e, 0x07, KEY_7 }, |
| 614 | { 0x1e, 0x08, KEY_8 }, |
| 615 | { 0x1e, 0x09, KEY_9 }, |
| 616 | { 0x1e, 0x0a, KEY_KPASTERISK }, |
| 617 | { 0x1e, 0x0b, KEY_RED }, |
| 618 | { 0x1e, 0x0c, KEY_RADIO }, |
| 619 | { 0x1e, 0x0d, KEY_MENU }, |
| 620 | { 0x1e, 0x0e, KEY_GRAVE }, /* # */ |
| 621 | { 0x1e, 0x0f, KEY_MUTE }, |
| 622 | { 0x1e, 0x10, KEY_VOLUMEUP }, |
| 623 | { 0x1e, 0x11, KEY_VOLUMEDOWN }, |
| 624 | { 0x1e, 0x12, KEY_CHANNEL }, |
| 625 | { 0x1e, 0x14, KEY_UP }, |
| 626 | { 0x1e, 0x15, KEY_DOWN }, |
| 627 | { 0x1e, 0x16, KEY_LEFT }, |
| 628 | { 0x1e, 0x17, KEY_RIGHT }, |
| 629 | { 0x1e, 0x18, KEY_VIDEO }, |
| 630 | { 0x1e, 0x19, KEY_AUDIO }, |
| 631 | { 0x1e, 0x1a, KEY_MEDIA }, |
| 632 | { 0x1e, 0x1b, KEY_EPG }, |
| 633 | { 0x1e, 0x1c, KEY_TV }, |
| 634 | { 0x1e, 0x1e, KEY_NEXT }, |
| 635 | { 0x1e, 0x1f, KEY_BACK }, |
| 636 | { 0x1e, 0x20, KEY_CHANNELUP }, |
| 637 | { 0x1e, 0x21, KEY_CHANNELDOWN }, |
| 638 | { 0x1e, 0x24, KEY_LAST }, /* Skip backwards */ |
| 639 | { 0x1e, 0x25, KEY_OK }, |
| 640 | { 0x1e, 0x29, KEY_BLUE}, |
| 641 | { 0x1e, 0x2e, KEY_GREEN }, |
| 642 | { 0x1e, 0x30, KEY_PAUSE }, |
| 643 | { 0x1e, 0x32, KEY_REWIND }, |
| 644 | { 0x1e, 0x34, KEY_FASTFORWARD }, |
| 645 | { 0x1e, 0x35, KEY_PLAY }, |
| 646 | { 0x1e, 0x36, KEY_STOP }, |
| 647 | { 0x1e, 0x37, KEY_RECORD }, |
| 648 | { 0x1e, 0x38, KEY_YELLOW }, |
| 649 | { 0x1e, 0x3b, KEY_GOTO }, |
| 650 | { 0x1e, 0x3d, KEY_POWER }, |
Jaroslav Barton | 48e6a01 | 2007-11-10 19:17:45 -0300 | [diff] [blame] | 651 | |
| 652 | /* Key codes for the Leadtek Winfast DTV Dongle */ |
| 653 | { 0x00, 0x42, KEY_POWER }, |
| 654 | { 0x07, 0x7c, KEY_TUNER }, |
| 655 | { 0x0f, 0x4e, KEY_PRINT }, /* PREVIEW */ |
| 656 | { 0x08, 0x40, KEY_SCREEN }, /* full screen toggle*/ |
| 657 | { 0x0f, 0x71, KEY_DOT }, /* frequency */ |
| 658 | { 0x07, 0x43, KEY_0 }, |
| 659 | { 0x0c, 0x41, KEY_1 }, |
| 660 | { 0x04, 0x43, KEY_2 }, |
| 661 | { 0x0b, 0x7f, KEY_3 }, |
| 662 | { 0x0e, 0x41, KEY_4 }, |
| 663 | { 0x06, 0x43, KEY_5 }, |
| 664 | { 0x09, 0x7f, KEY_6 }, |
| 665 | { 0x0d, 0x7e, KEY_7 }, |
| 666 | { 0x05, 0x7c, KEY_8 }, |
| 667 | { 0x0a, 0x40, KEY_9 }, |
| 668 | { 0x0e, 0x4e, KEY_CLEAR }, |
| 669 | { 0x04, 0x7c, KEY_CHANNEL }, /* show channel number */ |
| 670 | { 0x0f, 0x41, KEY_LAST }, /* recall */ |
| 671 | { 0x03, 0x42, KEY_MUTE }, |
| 672 | { 0x06, 0x4c, KEY_RESERVED }, /* PIP button*/ |
| 673 | { 0x01, 0x72, KEY_SHUFFLE }, /* SNAPSHOT */ |
| 674 | { 0x0c, 0x4e, KEY_PLAYPAUSE }, /* TIMESHIFT */ |
| 675 | { 0x0b, 0x70, KEY_RECORD }, |
| 676 | { 0x03, 0x7d, KEY_VOLUMEUP }, |
| 677 | { 0x01, 0x7d, KEY_VOLUMEDOWN }, |
| 678 | { 0x02, 0x42, KEY_CHANNELUP }, |
| 679 | { 0x00, 0x7d, KEY_CHANNELDOWN }, |
Janne Grunau | 82f3d55 | 2007-07-30 13:50:28 -0300 | [diff] [blame] | 680 | }; |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 681 | |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 682 | /* STK7700P: Hauppauge Nova-T Stick, AVerMedia Volar */ |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 683 | static struct dibx000_agc_config stk7700p_7000m_mt2060_agc_config = { |
Patrick Boettcher | 69ea31e | 2006-10-17 18:28:14 -0300 | [diff] [blame] | 684 | BAND_UHF | BAND_VHF, // band_caps |
| 685 | |
| 686 | /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=5, P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, |
| 687 | * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=2, P_agc_write=0 */ |
| 688 | (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8) | (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0), // setup |
| 689 | |
| 690 | 712, // inv_gain |
| 691 | 41, // time_stabiliz |
| 692 | |
| 693 | 0, // alpha_level |
| 694 | 118, // thlock |
| 695 | |
| 696 | 0, // wbd_inv |
| 697 | 4095, // wbd_ref |
| 698 | 0, // wbd_sel |
| 699 | 0, // wbd_alpha |
| 700 | |
| 701 | 42598, // agc1_max |
| 702 | 17694, // agc1_min |
| 703 | 45875, // agc2_max |
| 704 | 2621, // agc2_min |
| 705 | 0, // agc1_pt1 |
| 706 | 76, // agc1_pt2 |
| 707 | 139, // agc1_pt3 |
| 708 | 52, // agc1_slope1 |
| 709 | 59, // agc1_slope2 |
| 710 | 107, // agc2_pt1 |
| 711 | 172, // agc2_pt2 |
| 712 | 57, // agc2_slope1 |
| 713 | 70, // agc2_slope2 |
| 714 | |
| 715 | 21, // alpha_mant |
| 716 | 25, // alpha_exp |
| 717 | 28, // beta_mant |
| 718 | 48, // beta_exp |
| 719 | |
| 720 | 1, // perform_agc_softsplit |
| 721 | { 0, // split_min |
| 722 | 107, // split_max |
| 723 | 51800, // global_split_min |
| 724 | 24700 // global_split_max |
| 725 | }, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 726 | }; |
Patrick Boettcher | 69ea31e | 2006-10-17 18:28:14 -0300 | [diff] [blame] | 727 | |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 728 | static struct dibx000_agc_config stk7700p_7000p_mt2060_agc_config = { |
| 729 | BAND_UHF | BAND_VHF, |
| 730 | |
| 731 | /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=5, P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, |
| 732 | * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=2, P_agc_write=0 */ |
| 733 | (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8) | (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0), // setup |
| 734 | |
| 735 | 712, // inv_gain |
| 736 | 41, // time_stabiliz |
| 737 | |
| 738 | 0, // alpha_level |
| 739 | 118, // thlock |
| 740 | |
| 741 | 0, // wbd_inv |
| 742 | 4095, // wbd_ref |
| 743 | 0, // wbd_sel |
| 744 | 0, // wbd_alpha |
| 745 | |
| 746 | 42598, // agc1_max |
| 747 | 16384, // agc1_min |
| 748 | 42598, // agc2_max |
| 749 | 0, // agc2_min |
| 750 | |
| 751 | 0, // agc1_pt1 |
| 752 | 137, // agc1_pt2 |
| 753 | 255, // agc1_pt3 |
| 754 | |
| 755 | 0, // agc1_slope1 |
| 756 | 255, // agc1_slope2 |
| 757 | |
| 758 | 0, // agc2_pt1 |
| 759 | 0, // agc2_pt2 |
| 760 | |
| 761 | 0, // agc2_slope1 |
| 762 | 41, // agc2_slope2 |
| 763 | |
| 764 | 15, // alpha_mant |
| 765 | 25, // alpha_exp |
| 766 | |
| 767 | 28, // beta_mant |
| 768 | 48, // beta_exp |
| 769 | |
| 770 | 0, // perform_agc_softsplit |
| 771 | }; |
| 772 | |
| 773 | static struct dibx000_bandwidth_config stk7700p_pll_config = { |
Patrick Boettcher | 69ea31e | 2006-10-17 18:28:14 -0300 | [diff] [blame] | 774 | 60000, 30000, // internal, sampling |
| 775 | 1, 8, 3, 1, 0, // pll_cfg: prediv, ratio, range, reset, bypass |
| 776 | 0, 0, 1, 1, 0, // misc: refdiv, bypclk_div, IO_CLK_en_core, ADClkSrc, modulo |
| 777 | (3 << 14) | (1 << 12) | (524 << 0), // sad_cfg: refsel, sel, freq_15k |
| 778 | 60258167, // ifreq |
| 779 | 20452225, // timf |
Patrick Boettcher | 3db78e5 | 2007-07-31 08:19:28 -0300 | [diff] [blame] | 780 | 30000000, // xtal |
Patrick Boettcher | 69ea31e | 2006-10-17 18:28:14 -0300 | [diff] [blame] | 781 | }; |
| 782 | |
| 783 | static struct dib7000m_config stk7700p_dib7000m_config = { |
| 784 | .dvbt_mode = 1, |
| 785 | .output_mpeg2_in_188_bytes = 1, |
| 786 | .quartz_direct = 1, |
| 787 | |
| 788 | .agc_config_count = 1, |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 789 | .agc = &stk7700p_7000m_mt2060_agc_config, |
| 790 | .bw = &stk7700p_pll_config, |
| 791 | |
| 792 | .gpio_dir = DIB7000M_GPIO_DEFAULT_DIRECTIONS, |
| 793 | .gpio_val = DIB7000M_GPIO_DEFAULT_VALUES, |
| 794 | .gpio_pwm_pos = DIB7000M_GPIO_DEFAULT_PWM_POS, |
| 795 | }; |
| 796 | |
| 797 | static struct dib7000p_config stk7700p_dib7000p_config = { |
| 798 | .output_mpeg2_in_188_bytes = 1, |
| 799 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 800 | .agc_config_count = 1, |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 801 | .agc = &stk7700p_7000p_mt2060_agc_config, |
| 802 | .bw = &stk7700p_pll_config, |
Patrick Boettcher | 69ea31e | 2006-10-17 18:28:14 -0300 | [diff] [blame] | 803 | |
| 804 | .gpio_dir = DIB7000M_GPIO_DEFAULT_DIRECTIONS, |
| 805 | .gpio_val = DIB7000M_GPIO_DEFAULT_VALUES, |
| 806 | .gpio_pwm_pos = DIB7000M_GPIO_DEFAULT_PWM_POS, |
| 807 | }; |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 808 | |
| 809 | static int stk7700p_frontend_attach(struct dvb_usb_adapter *adap) |
| 810 | { |
Patrick Boettcher | 69ea31e | 2006-10-17 18:28:14 -0300 | [diff] [blame] | 811 | struct dib0700_state *st = adap->dev->priv; |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 812 | /* unless there is no real power management in DVB - we leave the device on GPIO6 */ |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 813 | |
| 814 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); |
| 815 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0); msleep(50); |
| 816 | |
Patrick Boettcher | 69ea31e | 2006-10-17 18:28:14 -0300 | [diff] [blame] | 817 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1); msleep(10); |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 818 | dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1); |
| 819 | |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 820 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); msleep(10); |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 821 | dib0700_ctrl_clock(adap->dev, 72, 1); |
| 822 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1); msleep(100); |
| 823 | |
| 824 | dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1); |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 825 | |
Patrick Boettcher | 69ea31e | 2006-10-17 18:28:14 -0300 | [diff] [blame] | 826 | st->mt2060_if1[0] = 1220; |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 827 | |
| 828 | if (dib7000pc_detection(&adap->dev->i2c_adap)) { |
| 829 | adap->fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap, 18, &stk7700p_dib7000p_config); |
| 830 | st->is_dib7000pc = 1; |
| 831 | } else |
| 832 | adap->fe = dvb_attach(dib7000m_attach, &adap->dev->i2c_adap, 18, &stk7700p_dib7000m_config); |
| 833 | |
| 834 | return adap->fe == NULL ? -ENODEV : 0; |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 835 | } |
| 836 | |
Patrick Boettcher | 69ea31e | 2006-10-17 18:28:14 -0300 | [diff] [blame] | 837 | static struct mt2060_config stk7700p_mt2060_config = { |
| 838 | 0x60 |
| 839 | }; |
| 840 | |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 841 | static int stk7700p_tuner_attach(struct dvb_usb_adapter *adap) |
| 842 | { |
Olivier DANET | c52344f | 2008-01-25 06:50:07 -0300 | [diff] [blame] | 843 | struct i2c_adapter *prim_i2c = &adap->dev->i2c_adap; |
Patrick Boettcher | 69ea31e | 2006-10-17 18:28:14 -0300 | [diff] [blame] | 844 | struct dib0700_state *st = adap->dev->priv; |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 845 | struct i2c_adapter *tun_i2c; |
Olivier DANET | c52344f | 2008-01-25 06:50:07 -0300 | [diff] [blame] | 846 | s8 a; |
| 847 | int if1=1220; |
Al Viro | da5ee48 | 2008-05-21 00:31:21 -0300 | [diff] [blame] | 848 | if (adap->dev->udev->descriptor.idVendor == cpu_to_le16(USB_VID_HAUPPAUGE) && |
| 849 | adap->dev->udev->descriptor.idProduct == cpu_to_le16(USB_PID_HAUPPAUGE_NOVA_T_STICK)) { |
Olivier DANET | c52344f | 2008-01-25 06:50:07 -0300 | [diff] [blame] | 850 | if (!eeprom_read(prim_i2c,0x58,&a)) if1=1220+a; |
| 851 | } |
Patrick Boettcher | a75763f | 2006-10-18 08:34:16 -0300 | [diff] [blame] | 852 | if (st->is_dib7000pc) |
| 853 | tun_i2c = dib7000p_get_i2c_master(adap->fe, DIBX000_I2C_INTERFACE_TUNER, 1); |
| 854 | else |
| 855 | tun_i2c = dib7000m_get_i2c_master(adap->fe, DIBX000_I2C_INTERFACE_TUNER, 1); |
| 856 | |
| 857 | return dvb_attach(mt2060_attach, adap->fe, tun_i2c, &stk7700p_mt2060_config, |
Olivier DANET | c52344f | 2008-01-25 06:50:07 -0300 | [diff] [blame] | 858 | if1) == NULL ? -ENODEV : 0; |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 859 | } |
| 860 | |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 861 | /* DIB7070 generic */ |
| 862 | static struct dibx000_agc_config dib7070_agc_config = { |
| 863 | BAND_UHF | BAND_VHF | BAND_LBAND | BAND_SBAND, |
| 864 | /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=5, P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, |
| 865 | * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0 */ |
| 866 | (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8) | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0), // setup |
| 867 | |
| 868 | 600, // inv_gain |
| 869 | 10, // time_stabiliz |
| 870 | |
| 871 | 0, // alpha_level |
| 872 | 118, // thlock |
| 873 | |
| 874 | 0, // wbd_inv |
| 875 | 3530, // wbd_ref |
| 876 | 1, // wbd_sel |
| 877 | 5, // wbd_alpha |
| 878 | |
| 879 | 65535, // agc1_max |
| 880 | 0, // agc1_min |
| 881 | |
| 882 | 65535, // agc2_max |
| 883 | 0, // agc2_min |
| 884 | |
| 885 | 0, // agc1_pt1 |
| 886 | 40, // agc1_pt2 |
| 887 | 183, // agc1_pt3 |
| 888 | 206, // agc1_slope1 |
| 889 | 255, // agc1_slope2 |
| 890 | 72, // agc2_pt1 |
| 891 | 152, // agc2_pt2 |
| 892 | 88, // agc2_slope1 |
| 893 | 90, // agc2_slope2 |
| 894 | |
| 895 | 17, // alpha_mant |
| 896 | 27, // alpha_exp |
| 897 | 23, // beta_mant |
| 898 | 51, // beta_exp |
| 899 | |
| 900 | 0, // perform_agc_softsplit |
| 901 | }; |
| 902 | |
| 903 | static int dib7070_tuner_reset(struct dvb_frontend *fe, int onoff) |
| 904 | { |
| 905 | return dib7000p_set_gpio(fe, 8, 0, !onoff); |
| 906 | } |
| 907 | |
| 908 | static int dib7070_tuner_sleep(struct dvb_frontend *fe, int onoff) |
| 909 | { |
| 910 | return dib7000p_set_gpio(fe, 9, 0, onoff); |
| 911 | } |
| 912 | |
| 913 | static struct dib0070_config dib7070p_dib0070_config[2] = { |
| 914 | { |
| 915 | .i2c_address = DEFAULT_DIB0070_I2C_ADDRESS, |
| 916 | .reset = dib7070_tuner_reset, |
| 917 | .sleep = dib7070_tuner_sleep, |
| 918 | .clock_khz = 12000, |
| 919 | .clock_pad_drive = 4 |
| 920 | }, { |
| 921 | .i2c_address = DEFAULT_DIB0070_I2C_ADDRESS, |
| 922 | .reset = dib7070_tuner_reset, |
| 923 | .sleep = dib7070_tuner_sleep, |
| 924 | .clock_khz = 12000, |
| 925 | |
| 926 | } |
| 927 | }; |
| 928 | |
| 929 | static int dib7070_set_param_override(struct dvb_frontend *fe, struct dvb_frontend_parameters *fep) |
| 930 | { |
| 931 | struct dvb_usb_adapter *adap = fe->dvb->priv; |
| 932 | struct dib0700_adapter_state *state = adap->priv; |
| 933 | |
| 934 | u16 offset; |
| 935 | u8 band = BAND_OF_FREQUENCY(fep->frequency/1000); |
| 936 | switch (band) { |
| 937 | case BAND_VHF: offset = 950; break; |
| 938 | case BAND_UHF: |
| 939 | default: offset = 550; break; |
| 940 | } |
| 941 | deb_info("WBD for DiB7000P: %d\n", offset + dib0070_wbd_offset(fe)); |
| 942 | dib7000p_set_wbd_ref(fe, offset + dib0070_wbd_offset(fe)); |
| 943 | return state->set_param_save(fe, fep); |
| 944 | } |
| 945 | |
| 946 | static int dib7070p_tuner_attach(struct dvb_usb_adapter *adap) |
| 947 | { |
| 948 | struct dib0700_adapter_state *st = adap->priv; |
| 949 | struct i2c_adapter *tun_i2c = dib7000p_get_i2c_master(adap->fe, DIBX000_I2C_INTERFACE_TUNER, 1); |
| 950 | |
| 951 | if (adap->id == 0) { |
| 952 | if (dvb_attach(dib0070_attach, adap->fe, tun_i2c, &dib7070p_dib0070_config[0]) == NULL) |
| 953 | return -ENODEV; |
| 954 | } else { |
| 955 | if (dvb_attach(dib0070_attach, adap->fe, tun_i2c, &dib7070p_dib0070_config[1]) == NULL) |
| 956 | return -ENODEV; |
| 957 | } |
| 958 | |
| 959 | st->set_param_save = adap->fe->ops.tuner_ops.set_params; |
| 960 | adap->fe->ops.tuner_ops.set_params = dib7070_set_param_override; |
| 961 | return 0; |
| 962 | } |
| 963 | |
| 964 | static struct dibx000_bandwidth_config dib7070_bw_config_12_mhz = { |
| 965 | 60000, 15000, // internal, sampling |
| 966 | 1, 20, 3, 1, 0, // pll_cfg: prediv, ratio, range, reset, bypass |
| 967 | 0, 0, 1, 1, 2, // misc: refdiv, bypclk_div, IO_CLK_en_core, ADClkSrc, modulo |
| 968 | (3 << 14) | (1 << 12) | (524 << 0), // sad_cfg: refsel, sel, freq_15k |
| 969 | (0 << 25) | 0, // ifreq = 0.000000 MHz |
| 970 | 20452225, // timf |
| 971 | 12000000, // xtal_hz |
| 972 | }; |
| 973 | |
| 974 | static struct dib7000p_config dib7070p_dib7000p_config = { |
| 975 | .output_mpeg2_in_188_bytes = 1, |
| 976 | |
| 977 | .agc_config_count = 1, |
| 978 | .agc = &dib7070_agc_config, |
| 979 | .bw = &dib7070_bw_config_12_mhz, |
Patrick Boettcher | 3cb2c39 | 2008-01-25 07:25:20 -0300 | [diff] [blame] | 980 | .tuner_is_baseband = 1, |
| 981 | .spur_protect = 1, |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 982 | |
| 983 | .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS, |
| 984 | .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES, |
| 985 | .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS, |
| 986 | |
| 987 | .hostbus_diversity = 1, |
| 988 | }; |
| 989 | |
| 990 | /* STK7070P */ |
| 991 | static int stk7070p_frontend_attach(struct dvb_usb_adapter *adap) |
| 992 | { |
Al Viro | da5ee48 | 2008-05-21 00:31:21 -0300 | [diff] [blame] | 993 | struct usb_device_descriptor *p = &adap->dev->udev->descriptor; |
| 994 | if (p->idVendor == cpu_to_le16(USB_VID_PINNACLE) && |
| 995 | p->idProduct == cpu_to_le16(USB_PID_PINNACLE_PCTV72E)) |
| 996 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0); |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 997 | else |
Al Viro | da5ee48 | 2008-05-21 00:31:21 -0300 | [diff] [blame] | 998 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1); |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 999 | msleep(10); |
| 1000 | dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1); |
| 1001 | dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1); |
| 1002 | dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1); |
| 1003 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); |
| 1004 | |
| 1005 | dib0700_ctrl_clock(adap->dev, 72, 1); |
| 1006 | |
| 1007 | msleep(10); |
| 1008 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1); |
| 1009 | msleep(10); |
| 1010 | dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1); |
| 1011 | |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1012 | dib7000p_i2c_enumeration(&adap->dev->i2c_adap, 1, 18, |
| 1013 | &dib7070p_dib7000p_config); |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1014 | |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1015 | adap->fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap, 0x80, |
| 1016 | &dib7070p_dib7000p_config); |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1017 | return adap->fe == NULL ? -ENODEV : 0; |
| 1018 | } |
| 1019 | |
| 1020 | /* STK7070PD */ |
| 1021 | static struct dib7000p_config stk7070pd_dib7000p_config[2] = { |
| 1022 | { |
| 1023 | .output_mpeg2_in_188_bytes = 1, |
| 1024 | |
| 1025 | .agc_config_count = 1, |
| 1026 | .agc = &dib7070_agc_config, |
| 1027 | .bw = &dib7070_bw_config_12_mhz, |
Patrick Boettcher | 3cb2c39 | 2008-01-25 07:25:20 -0300 | [diff] [blame] | 1028 | .tuner_is_baseband = 1, |
| 1029 | .spur_protect = 1, |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1030 | |
| 1031 | .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS, |
| 1032 | .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES, |
| 1033 | .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS, |
| 1034 | |
| 1035 | .hostbus_diversity = 1, |
| 1036 | }, { |
| 1037 | .output_mpeg2_in_188_bytes = 1, |
| 1038 | |
| 1039 | .agc_config_count = 1, |
| 1040 | .agc = &dib7070_agc_config, |
| 1041 | .bw = &dib7070_bw_config_12_mhz, |
Patrick Boettcher | 3cb2c39 | 2008-01-25 07:25:20 -0300 | [diff] [blame] | 1042 | .tuner_is_baseband = 1, |
| 1043 | .spur_protect = 1, |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1044 | |
| 1045 | .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS, |
| 1046 | .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES, |
| 1047 | .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS, |
| 1048 | |
| 1049 | .hostbus_diversity = 1, |
| 1050 | } |
| 1051 | }; |
| 1052 | |
| 1053 | static int stk7070pd_frontend_attach0(struct dvb_usb_adapter *adap) |
| 1054 | { |
| 1055 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1); |
| 1056 | msleep(10); |
| 1057 | dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1); |
| 1058 | dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1); |
| 1059 | dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1); |
| 1060 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); |
| 1061 | |
| 1062 | dib0700_ctrl_clock(adap->dev, 72, 1); |
| 1063 | |
| 1064 | msleep(10); |
| 1065 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1); |
| 1066 | msleep(10); |
| 1067 | dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1); |
| 1068 | |
| 1069 | dib7000p_i2c_enumeration(&adap->dev->i2c_adap, 2, 18, stk7070pd_dib7000p_config); |
| 1070 | |
| 1071 | adap->fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap, 0x80, &stk7070pd_dib7000p_config[0]); |
| 1072 | return adap->fe == NULL ? -ENODEV : 0; |
| 1073 | } |
| 1074 | |
| 1075 | static int stk7070pd_frontend_attach1(struct dvb_usb_adapter *adap) |
| 1076 | { |
| 1077 | adap->fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap, 0x82, &stk7070pd_dib7000p_config[1]); |
| 1078 | return adap->fe == NULL ? -ENODEV : 0; |
| 1079 | } |
| 1080 | |
| 1081 | /* DVB-USB and USB stuff follows */ |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1082 | struct usb_device_id dib0700_usb_id_table[] = { |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1083 | /* 0 */ { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7700P) }, |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1084 | { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7700P_PC) }, |
| 1085 | { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_500) }, |
| 1086 | { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_500_2) }, |
| 1087 | { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_STICK) }, |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1088 | /* 5 */ { USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_VOLAR) }, |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1089 | { USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_VIDEOMATE_U500) }, |
| 1090 | { USB_DEVICE(USB_VID_UNIWILL, USB_PID_UNIWILL_STK7700P) }, |
| 1091 | { USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P) }, |
| 1092 | { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_STICK_2) }, |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1093 | /* 10 */{ USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_VOLAR_2) }, |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1094 | { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV2000E) }, |
| 1095 | { USB_DEVICE(USB_VID_TERRATEC, |
| 1096 | USB_PID_TERRATEC_CINERGY_DT_XS_DIVERSITY) }, |
| 1097 | { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_TD_STICK) }, |
| 1098 | { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7700D) }, |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1099 | /* 15 */{ USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7070P) }, |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1100 | { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV_DVB_T_FLASH) }, |
| 1101 | { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7070PD) }, |
| 1102 | { USB_DEVICE(USB_VID_PINNACLE, |
| 1103 | USB_PID_PINNACLE_PCTV_DUAL_DIVERSITY_DVB_T) }, |
| 1104 | { USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_VIDEOMATE_U500_PC) }, |
Joachim Steiger | fa3b877 | 2007-10-08 20:08:46 -0300 | [diff] [blame] | 1105 | /* 20 */{ USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_EXPRESS) }, |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1106 | { USB_DEVICE(USB_VID_GIGABYTE, USB_PID_GIGABYTE_U7000) }, |
| 1107 | { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ARTEC_T14BR) }, |
| 1108 | { USB_DEVICE(USB_VID_ASUS, USB_PID_ASUS_U3000) }, |
| 1109 | { USB_DEVICE(USB_VID_ASUS, USB_PID_ASUS_U3100) }, |
| 1110 | /* 25 */{ USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_STICK_3) }, |
| 1111 | { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_MYTV_T) }, |
| 1112 | { USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_HT_USB_XE) }, |
| 1113 | { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_EXPRESSCARD_320CX) }, |
| 1114 | { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV72E) }, |
| 1115 | /* 30 */{ USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV73E) }, |
| 1116 | { USB_DEVICE(USB_VID_YUAN, USB_PID_YUAN_EC372S) }, |
| 1117 | { USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_HT_EXPRESS) }, |
Alexander Simon | dc88807 | 2008-03-29 21:37:54 -0300 | [diff] [blame] | 1118 | { USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_XXS) }, |
Darryl Green | 5da4e2c | 2008-03-29 21:47:43 -0300 | [diff] [blame] | 1119 | { USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P_2) }, |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1120 | { 0 } /* Terminating entry */ |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1121 | }; |
| 1122 | MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table); |
| 1123 | |
| 1124 | #define DIB0700_DEFAULT_DEVICE_PROPERTIES \ |
| 1125 | .caps = DVB_USB_IS_AN_I2C_ADAPTER, \ |
| 1126 | .usb_ctrl = DEVICE_SPECIFIC, \ |
Patrick Boettcher | 74c78a2 | 2007-10-11 14:06:37 -0300 | [diff] [blame] | 1127 | .firmware = "dvb-usb-dib0700-1.10.fw", \ |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1128 | .download_firmware = dib0700_download_firmware, \ |
Patrick Boettcher | 6958eff | 2006-09-19 12:51:40 -0300 | [diff] [blame] | 1129 | .no_reconnect = 1, \ |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1130 | .size_of_priv = sizeof(struct dib0700_state), \ |
Patrick Boettcher | 6958eff | 2006-09-19 12:51:40 -0300 | [diff] [blame] | 1131 | .i2c_algo = &dib0700_i2c_algo, \ |
| 1132 | .identify_state = dib0700_identify_state |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1133 | |
| 1134 | #define DIB0700_DEFAULT_STREAMING_CONFIG(ep) \ |
| 1135 | .streaming_ctrl = dib0700_streaming_ctrl, \ |
| 1136 | .stream = { \ |
| 1137 | .type = USB_BULK, \ |
| 1138 | .count = 4, \ |
| 1139 | .endpoint = ep, \ |
| 1140 | .u = { \ |
| 1141 | .bulk = { \ |
| 1142 | .buffersize = 39480, \ |
| 1143 | } \ |
| 1144 | } \ |
| 1145 | } |
| 1146 | |
| 1147 | struct dvb_usb_device_properties dib0700_devices[] = { |
| 1148 | { |
| 1149 | DIB0700_DEFAULT_DEVICE_PROPERTIES, |
| 1150 | |
| 1151 | .num_adapters = 1, |
| 1152 | .adapter = { |
| 1153 | { |
| 1154 | .frontend_attach = stk7700p_frontend_attach, |
| 1155 | .tuner_attach = stk7700p_tuner_attach, |
| 1156 | |
| 1157 | DIB0700_DEFAULT_STREAMING_CONFIG(0x02), |
| 1158 | }, |
| 1159 | }, |
| 1160 | |
dominik | 67053a4 | 2007-11-10 19:23:31 -0300 | [diff] [blame] | 1161 | .num_device_descs = 8, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1162 | .devices = { |
| 1163 | { "DiBcom STK7700P reference design", |
Tomi Koivulahti | 49a1376 | 2006-10-19 07:27:19 -0300 | [diff] [blame] | 1164 | { &dib0700_usb_id_table[0], &dib0700_usb_id_table[1] }, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1165 | { NULL }, |
| 1166 | }, |
| 1167 | { "Hauppauge Nova-T Stick", |
Stefan Traby | f9aeba4 | 2006-11-12 13:02:51 -0300 | [diff] [blame] | 1168 | { &dib0700_usb_id_table[4], &dib0700_usb_id_table[9], NULL }, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1169 | { NULL }, |
| 1170 | }, |
Tomi Koivulahti | 49a1376 | 2006-10-19 07:27:19 -0300 | [diff] [blame] | 1171 | { "AVerMedia AVerTV DVB-T Volar", |
Jose Carlos Garcia Sogo | ced8fec | 2006-11-14 05:01:47 -0300 | [diff] [blame] | 1172 | { &dib0700_usb_id_table[5], &dib0700_usb_id_table[10] }, |
Tomi Koivulahti | 49a1376 | 2006-10-19 07:27:19 -0300 | [diff] [blame] | 1173 | { NULL }, |
| 1174 | }, |
| 1175 | { "Compro Videomate U500", |
Patrick Boettcher | 1f8ca4b | 2007-07-30 14:24:37 -0300 | [diff] [blame] | 1176 | { &dib0700_usb_id_table[6], &dib0700_usb_id_table[19] }, |
Tomi Koivulahti | 49a1376 | 2006-10-19 07:27:19 -0300 | [diff] [blame] | 1177 | { NULL }, |
Henning Schroeer | 0ce215e | 2006-10-19 07:58:22 -0300 | [diff] [blame] | 1178 | }, |
| 1179 | { "Uniwill STK7700P based (Hama and others)", |
| 1180 | { &dib0700_usb_id_table[7], NULL }, |
| 1181 | { NULL }, |
Michael Krufky | 8637a87 | 2006-11-08 16:47:32 -0300 | [diff] [blame] | 1182 | }, |
| 1183 | { "Leadtek Winfast DTV Dongle (STK7700P based)", |
Darryl Green | 5da4e2c | 2008-03-29 21:47:43 -0300 | [diff] [blame] | 1184 | { &dib0700_usb_id_table[8], &dib0700_usb_id_table[34] }, |
Michael Krufky | 8637a87 | 2006-11-08 16:47:32 -0300 | [diff] [blame] | 1185 | { NULL }, |
Joachim Steiger | fa3b877 | 2007-10-08 20:08:46 -0300 | [diff] [blame] | 1186 | }, |
| 1187 | { "AVerMedia AVerTV DVB-T Express", |
| 1188 | { &dib0700_usb_id_table[20] }, |
| 1189 | { NULL }, |
dominik | 67053a4 | 2007-11-10 19:23:31 -0300 | [diff] [blame] | 1190 | }, |
dominik | 67053a4 | 2007-11-10 19:23:31 -0300 | [diff] [blame] | 1191 | { "Gigabyte U7000", |
| 1192 | { &dib0700_usb_id_table[21], NULL }, |
| 1193 | { NULL }, |
Tomi Koivulahti | 49a1376 | 2006-10-19 07:27:19 -0300 | [diff] [blame] | 1194 | } |
Darren Salt | b1139e3 | 2007-08-18 18:05:31 -0300 | [diff] [blame] | 1195 | }, |
| 1196 | |
| 1197 | .rc_interval = DEFAULT_RC_INTERVAL, |
| 1198 | .rc_key_map = dib0700_rc_keys, |
| 1199 | .rc_key_map_size = ARRAY_SIZE(dib0700_rc_keys), |
| 1200 | .rc_query = dib0700_rc_query |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1201 | }, { DIB0700_DEFAULT_DEVICE_PROPERTIES, |
| 1202 | |
| 1203 | .num_adapters = 2, |
| 1204 | .adapter = { |
| 1205 | { |
| 1206 | .frontend_attach = bristol_frontend_attach, |
| 1207 | .tuner_attach = bristol_tuner_attach, |
| 1208 | |
| 1209 | DIB0700_DEFAULT_STREAMING_CONFIG(0x02), |
| 1210 | }, { |
| 1211 | .frontend_attach = bristol_frontend_attach, |
| 1212 | .tuner_attach = bristol_tuner_attach, |
| 1213 | |
| 1214 | DIB0700_DEFAULT_STREAMING_CONFIG(0x03), |
| 1215 | } |
| 1216 | }, |
| 1217 | |
| 1218 | .num_device_descs = 1, |
| 1219 | .devices = { |
| 1220 | { "Hauppauge Nova-T 500 Dual DVB-T", |
Tomi Koivulahti | 49a1376 | 2006-10-19 07:27:19 -0300 | [diff] [blame] | 1221 | { &dib0700_usb_id_table[2], &dib0700_usb_id_table[3], NULL }, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1222 | { NULL }, |
| 1223 | }, |
Janne Grunau | 82f3d55 | 2007-07-30 13:50:28 -0300 | [diff] [blame] | 1224 | }, |
| 1225 | |
| 1226 | .rc_interval = DEFAULT_RC_INTERVAL, |
| 1227 | .rc_key_map = dib0700_rc_keys, |
Patrick Boettcher | 8779737 | 2007-07-30 17:02:17 -0300 | [diff] [blame] | 1228 | .rc_key_map_size = ARRAY_SIZE(dib0700_rc_keys), |
Janne Grunau | 82f3d55 | 2007-07-30 13:50:28 -0300 | [diff] [blame] | 1229 | .rc_query = dib0700_rc_query |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 1230 | }, { DIB0700_DEFAULT_DEVICE_PROPERTIES, |
| 1231 | |
| 1232 | .num_adapters = 2, |
| 1233 | .adapter = { |
| 1234 | { |
| 1235 | .frontend_attach = stk7700d_frontend_attach, |
| 1236 | .tuner_attach = stk7700d_tuner_attach, |
| 1237 | |
| 1238 | DIB0700_DEFAULT_STREAMING_CONFIG(0x02), |
| 1239 | }, { |
| 1240 | .frontend_attach = stk7700d_frontend_attach, |
| 1241 | .tuner_attach = stk7700d_tuner_attach, |
| 1242 | |
| 1243 | DIB0700_DEFAULT_STREAMING_CONFIG(0x03), |
| 1244 | } |
| 1245 | }, |
| 1246 | |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 1247 | .num_device_descs = 4, |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 1248 | .devices = { |
| 1249 | { "Pinnacle PCTV 2000e", |
| 1250 | { &dib0700_usb_id_table[11], NULL }, |
| 1251 | { NULL }, |
| 1252 | }, |
| 1253 | { "Terratec Cinergy DT XS Diversity", |
| 1254 | { &dib0700_usb_id_table[12], NULL }, |
| 1255 | { NULL }, |
| 1256 | }, |
Darren Salt | faebb91 | 2007-08-18 18:04:00 -0300 | [diff] [blame] | 1257 | { "Hauppauge Nova-TD Stick/Elgato Eye-TV Diversity", |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 1258 | { &dib0700_usb_id_table[13], NULL }, |
| 1259 | { NULL }, |
| 1260 | }, |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1261 | { "DiBcom STK7700D reference design", |
Patrick Boettcher | b6884a1 | 2007-07-27 10:08:51 -0300 | [diff] [blame] | 1262 | { &dib0700_usb_id_table[14], NULL }, |
| 1263 | { NULL }, |
dominik | 67053a4 | 2007-11-10 19:23:31 -0300 | [diff] [blame] | 1264 | } |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 1265 | }, |
Janne Grunau | 82f3d55 | 2007-07-30 13:50:28 -0300 | [diff] [blame] | 1266 | |
Olivier DANET | 54d75eb | 2007-07-25 14:42:54 -0300 | [diff] [blame] | 1267 | .rc_interval = DEFAULT_RC_INTERVAL, |
Janne Grunau | 82f3d55 | 2007-07-30 13:50:28 -0300 | [diff] [blame] | 1268 | .rc_key_map = dib0700_rc_keys, |
Patrick Boettcher | 8779737 | 2007-07-30 17:02:17 -0300 | [diff] [blame] | 1269 | .rc_key_map_size = ARRAY_SIZE(dib0700_rc_keys), |
Janne Grunau | 82f3d55 | 2007-07-30 13:50:28 -0300 | [diff] [blame] | 1270 | .rc_query = dib0700_rc_query |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1271 | |
| 1272 | }, { DIB0700_DEFAULT_DEVICE_PROPERTIES, |
| 1273 | |
| 1274 | .num_adapters = 1, |
| 1275 | .adapter = { |
| 1276 | { |
Daniel Gimpelevich | 132c318 | 2008-01-25 06:02:42 -0300 | [diff] [blame] | 1277 | .frontend_attach = stk7700P2_frontend_attach, |
| 1278 | .tuner_attach = stk7700d_tuner_attach, |
| 1279 | |
| 1280 | DIB0700_DEFAULT_STREAMING_CONFIG(0x02), |
| 1281 | }, |
| 1282 | }, |
| 1283 | |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1284 | .num_device_descs = 2, |
Daniel Gimpelevich | 132c318 | 2008-01-25 06:02:42 -0300 | [diff] [blame] | 1285 | .devices = { |
| 1286 | { "ASUS My Cinema U3000 Mini DVBT Tuner", |
| 1287 | { &dib0700_usb_id_table[23], NULL }, |
| 1288 | { NULL }, |
| 1289 | }, |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1290 | { "Yuan EC372S", |
| 1291 | { &dib0700_usb_id_table[31], NULL }, |
| 1292 | { NULL }, |
| 1293 | } |
Daniel Gimpelevich | 132c318 | 2008-01-25 06:02:42 -0300 | [diff] [blame] | 1294 | } |
| 1295 | }, { DIB0700_DEFAULT_DEVICE_PROPERTIES, |
| 1296 | |
| 1297 | .num_adapters = 1, |
| 1298 | .adapter = { |
| 1299 | { |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1300 | .frontend_attach = stk7070p_frontend_attach, |
| 1301 | .tuner_attach = dib7070p_tuner_attach, |
| 1302 | |
| 1303 | DIB0700_DEFAULT_STREAMING_CONFIG(0x02), |
| 1304 | |
| 1305 | .size_of_priv = sizeof(struct dib0700_adapter_state), |
| 1306 | }, |
| 1307 | }, |
| 1308 | |
Alexander Simon | dc88807 | 2008-03-29 21:37:54 -0300 | [diff] [blame] | 1309 | .num_device_descs = 9, |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1310 | .devices = { |
| 1311 | { "DiBcom STK7070P reference design", |
| 1312 | { &dib0700_usb_id_table[15], NULL }, |
| 1313 | { NULL }, |
| 1314 | }, |
| 1315 | { "Pinnacle PCTV DVB-T Flash Stick", |
| 1316 | { &dib0700_usb_id_table[16], NULL }, |
| 1317 | { NULL }, |
| 1318 | }, |
Yousef Lamlum | 7999a81 | 2008-01-25 05:51:48 -0300 | [diff] [blame] | 1319 | { "Artec T14BR DVB-T", |
| 1320 | { &dib0700_usb_id_table[22], NULL }, |
| 1321 | { NULL }, |
Daniel Gimpelevich | 132c318 | 2008-01-25 06:02:42 -0300 | [diff] [blame] | 1322 | }, |
| 1323 | { "ASUS My Cinema U3100 Mini DVBT Tuner", |
| 1324 | { &dib0700_usb_id_table[24], NULL }, |
| 1325 | { NULL }, |
| 1326 | }, |
Tim Taubert | c7637b1 | 2008-01-25 06:16:36 -0300 | [diff] [blame] | 1327 | { "Hauppauge Nova-T Stick", |
| 1328 | { &dib0700_usb_id_table[25], NULL }, |
| 1329 | { NULL }, |
| 1330 | }, |
Darren Salt | 13b83b5 | 2008-01-25 06:20:02 -0300 | [diff] [blame] | 1331 | { "Hauppauge Nova-T MyTV.t", |
| 1332 | { &dib0700_usb_id_table[26], NULL }, |
| 1333 | { NULL }, |
| 1334 | }, |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1335 | { "Pinnacle PCTV 72e", |
| 1336 | { &dib0700_usb_id_table[29], NULL }, |
| 1337 | { NULL }, |
| 1338 | }, |
| 1339 | { "Pinnacle PCTV 73e", |
| 1340 | { &dib0700_usb_id_table[30], NULL }, |
| 1341 | { NULL }, |
| 1342 | }, |
Alexander Simon | dc88807 | 2008-03-29 21:37:54 -0300 | [diff] [blame] | 1343 | { "Terratec Cinergy T USB XXS", |
| 1344 | { &dib0700_usb_id_table[33], NULL }, |
| 1345 | { NULL }, |
| 1346 | }, |
Tim Taubert | c7637b1 | 2008-01-25 06:16:36 -0300 | [diff] [blame] | 1347 | }, |
| 1348 | |
| 1349 | .rc_interval = DEFAULT_RC_INTERVAL, |
| 1350 | .rc_key_map = dib0700_rc_keys, |
| 1351 | .rc_key_map_size = ARRAY_SIZE(dib0700_rc_keys), |
| 1352 | .rc_query = dib0700_rc_query |
| 1353 | |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1354 | }, { DIB0700_DEFAULT_DEVICE_PROPERTIES, |
| 1355 | |
| 1356 | .num_adapters = 2, |
| 1357 | .adapter = { |
| 1358 | { |
| 1359 | .frontend_attach = stk7070pd_frontend_attach0, |
| 1360 | .tuner_attach = dib7070p_tuner_attach, |
| 1361 | |
| 1362 | DIB0700_DEFAULT_STREAMING_CONFIG(0x02), |
| 1363 | |
| 1364 | .size_of_priv = sizeof(struct dib0700_adapter_state), |
| 1365 | }, { |
| 1366 | .frontend_attach = stk7070pd_frontend_attach1, |
| 1367 | .tuner_attach = dib7070p_tuner_attach, |
| 1368 | |
| 1369 | DIB0700_DEFAULT_STREAMING_CONFIG(0x03), |
| 1370 | |
| 1371 | .size_of_priv = sizeof(struct dib0700_adapter_state), |
| 1372 | } |
| 1373 | }, |
| 1374 | |
| 1375 | .num_device_descs = 2, |
| 1376 | .devices = { |
| 1377 | { "DiBcom STK7070PD reference design", |
| 1378 | { &dib0700_usb_id_table[17], NULL }, |
| 1379 | { NULL }, |
| 1380 | }, |
| 1381 | { "Pinnacle PCTV Dual DVB-T Diversity Stick", |
| 1382 | { &dib0700_usb_id_table[18], NULL }, |
| 1383 | { NULL }, |
dominik | 67053a4 | 2007-11-10 19:23:31 -0300 | [diff] [blame] | 1384 | } |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1385 | } |
Albert Comerma | 6ca8f0b | 2008-03-29 21:35:57 -0300 | [diff] [blame] | 1386 | }, { DIB0700_DEFAULT_DEVICE_PROPERTIES, |
| 1387 | |
| 1388 | .num_adapters = 1, |
| 1389 | .adapter = { |
| 1390 | { |
| 1391 | .frontend_attach = stk7700ph_frontend_attach, |
| 1392 | .tuner_attach = stk7700ph_tuner_attach, |
| 1393 | |
| 1394 | DIB0700_DEFAULT_STREAMING_CONFIG(0x02), |
| 1395 | |
| 1396 | .size_of_priv = sizeof(struct |
| 1397 | dib0700_adapter_state), |
| 1398 | }, |
| 1399 | }, |
| 1400 | |
| 1401 | .num_device_descs = 3, |
| 1402 | .devices = { |
| 1403 | { "Terratec Cinergy HT USB XE", |
| 1404 | { &dib0700_usb_id_table[27], NULL }, |
| 1405 | { NULL }, |
| 1406 | }, |
| 1407 | { "Pinnacle Expresscard 320cx", |
| 1408 | { &dib0700_usb_id_table[28], NULL }, |
| 1409 | { NULL }, |
| 1410 | }, |
| 1411 | { "Terratec Cinergy HT Express", |
| 1412 | { &dib0700_usb_id_table[32], NULL }, |
| 1413 | { NULL }, |
| 1414 | }, |
| 1415 | }, |
| 1416 | .rc_interval = DEFAULT_RC_INTERVAL, |
| 1417 | .rc_key_map = dib0700_rc_keys, |
| 1418 | .rc_key_map_size = ARRAY_SIZE(dib0700_rc_keys), |
| 1419 | .rc_query = dib0700_rc_query |
Patrick Boettcher | 01373a5 | 2007-07-30 12:49:04 -0300 | [diff] [blame] | 1420 | }, |
Patrick Boettcher | b7f5491 | 2006-09-19 12:51:37 -0300 | [diff] [blame] | 1421 | }; |
| 1422 | |
| 1423 | int dib0700_device_count = ARRAY_SIZE(dib0700_devices); |