diff options
author | Olivier DANET <odanet@caramail.com> | 2007-07-25 13:42:54 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 21:03:14 -0400 |
commit | 54d75ebaa02809f24a16624e32706af3bf97588e (patch) | |
tree | 2ca1bd9734ebc62531614c4b6fd008621c869734 /drivers/media/dvb/dvb-usb | |
parent | 59a00adbd30ed5d3a97ac41ad9e4b040a111eea8 (diff) |
V4L/DVB (5914): Add initial support for Dual-DVB-T stick
Add initial support for Dual-DVB-T stick based on DiB7700 and MT2266
- Microtune MT2266 driver.
- Preliminary support for these dual tuner devices :
- Pinnacle Dual DVB-T diversity
- Terratec Cinergy DT USB XS diversity
- Hauppauge Nova TD USB
Signed-off-by: Olivier DANET <odanet@caramail.com>
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/dvb-usb')
-rw-r--r-- | drivers/media/dvb/dvb-usb/Kconfig | 1 | ||||
-rw-r--r-- | drivers/media/dvb/dvb-usb/dib0700.h | 4 | ||||
-rw-r--r-- | drivers/media/dvb/dvb-usb/dib0700_core.c | 2 | ||||
-rw-r--r-- | drivers/media/dvb/dvb-usb/dib0700_devices.c | 262 | ||||
-rw-r--r-- | drivers/media/dvb/dvb-usb/dvb-usb-ids.h | 5 |
5 files changed, 270 insertions, 4 deletions
diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig index 40e41f2f5afe..dec03ee32e1a 100644 --- a/drivers/media/dvb/dvb-usb/Kconfig +++ b/drivers/media/dvb/dvb-usb/Kconfig | |||
@@ -74,6 +74,7 @@ config DVB_USB_DIB0700 | |||
74 | select DVB_DIB7000M | 74 | select DVB_DIB7000M |
75 | select DVB_DIB3000MC | 75 | select DVB_DIB3000MC |
76 | select DVB_TUNER_MT2060 if !DVB_FE_CUSTOMISE | 76 | select DVB_TUNER_MT2060 if !DVB_FE_CUSTOMISE |
77 | select DVB_TUNER_MT2266 if !DVB_FE_CUSTOMISE | ||
77 | help | 78 | help |
78 | Support for USB2.0/1.1 DVB receivers based on the DiB0700 USB bridge. The | 79 | Support for USB2.0/1.1 DVB receivers based on the DiB0700 USB bridge. The |
79 | USB bridge is also present in devices having the DiB7700 DVB-T-USB | 80 | USB bridge is also present in devices having the DiB7700 DVB-T-USB |
diff --git a/drivers/media/dvb/dvb-usb/dib0700.h b/drivers/media/dvb/dvb-usb/dib0700.h index cda3adea24fb..74ae6c24087e 100644 --- a/drivers/media/dvb/dvb-usb/dib0700.h +++ b/drivers/media/dvb/dvb-usb/dib0700.h | |||
@@ -35,12 +35,13 @@ extern int dvb_usb_dib0700_debug; | |||
35 | struct dib0700_state { | 35 | struct dib0700_state { |
36 | u8 channel_state; | 36 | u8 channel_state; |
37 | u16 mt2060_if1[2]; | 37 | u16 mt2060_if1[2]; |
38 | 38 | u8 rc_toggle; | |
39 | u8 is_dib7000pc; | 39 | u8 is_dib7000pc; |
40 | }; | 40 | }; |
41 | 41 | ||
42 | extern int dib0700_set_gpio(struct dvb_usb_device *, enum dib07x0_gpios gpio, u8 gpio_dir, u8 gpio_val); | 42 | extern int dib0700_set_gpio(struct dvb_usb_device *, enum dib07x0_gpios gpio, u8 gpio_dir, u8 gpio_val); |
43 | extern int dib0700_ctrl_clock(struct dvb_usb_device *d, u32 clk_MHz, u8 clock_out_gp3); | 43 | extern int dib0700_ctrl_clock(struct dvb_usb_device *d, u32 clk_MHz, u8 clock_out_gp3); |
44 | extern int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen); | ||
44 | extern int dib0700_download_firmware(struct usb_device *udev, const struct firmware *fw); | 45 | extern int dib0700_download_firmware(struct usb_device *udev, const struct firmware *fw); |
45 | extern int dib0700_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff); | 46 | extern int dib0700_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff); |
46 | extern struct i2c_algorithm dib0700_i2c_algo; | 47 | extern struct i2c_algorithm dib0700_i2c_algo; |
@@ -50,5 +51,4 @@ extern int dib0700_identify_state(struct usb_device *udev, struct dvb_usb_device | |||
50 | extern int dib0700_device_count; | 51 | extern int dib0700_device_count; |
51 | extern struct dvb_usb_device_properties dib0700_devices[]; | 52 | extern struct dvb_usb_device_properties dib0700_devices[]; |
52 | extern struct usb_device_id dib0700_usb_id_table[]; | 53 | extern struct usb_device_id dib0700_usb_id_table[]; |
53 | |||
54 | #endif | 54 | #endif |
diff --git a/drivers/media/dvb/dvb-usb/dib0700_core.c b/drivers/media/dvb/dvb-usb/dib0700_core.c index dddf164f269a..8a1ea114deb0 100644 --- a/drivers/media/dvb/dvb-usb/dib0700_core.c +++ b/drivers/media/dvb/dvb-usb/dib0700_core.c | |||
@@ -32,7 +32,7 @@ static int dib0700_ctrl_wr(struct dvb_usb_device *d, u8 *tx, u8 txlen) | |||
32 | } | 32 | } |
33 | 33 | ||
34 | /* expecting tx buffer: request data[0] ... data[n] (n <= 4) */ | 34 | /* expecting tx buffer: request data[0] ... data[n] (n <= 4) */ |
35 | static int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen) | 35 | int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen) |
36 | { | 36 | { |
37 | u16 index, value; | 37 | u16 index, value; |
38 | int status; | 38 | int status; |
diff --git a/drivers/media/dvb/dvb-usb/dib0700_devices.c b/drivers/media/dvb/dvb-usb/dib0700_devices.c index 2208757d9017..122d9d4b4baa 100644 --- a/drivers/media/dvb/dvb-usb/dib0700_devices.c +++ b/drivers/media/dvb/dvb-usb/dib0700_devices.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include "dib7000m.h" | 12 | #include "dib7000m.h" |
13 | #include "dib7000p.h" | 13 | #include "dib7000p.h" |
14 | #include "mt2060.h" | 14 | #include "mt2060.h" |
15 | #include "mt2266.h" | ||
15 | 16 | ||
16 | static int force_lna_activation; | 17 | static int force_lna_activation; |
17 | module_param(force_lna_activation, int, 0644); | 18 | module_param(force_lna_activation, int, 0644); |
@@ -96,6 +97,228 @@ static int bristol_tuner_attach(struct dvb_usb_adapter *adap) | |||
96 | st->mt2060_if1[adap->id]) == NULL ? -ENODEV : 0; | 97 | st->mt2060_if1[adap->id]) == NULL ? -ENODEV : 0; |
97 | } | 98 | } |
98 | 99 | ||
100 | /* STK7700D: Pinnacle Dual DVB-T Diversity */ | ||
101 | |||
102 | static struct dibx000_agc_config stk7700d_7000p_mt2266_agc_config = { | ||
103 | BAND_UHF/* | BAND_VHF*/, | ||
104 | 0xE64, // setup | ||
105 | 2372, // inv_gain | ||
106 | 21, // time_stabiliz | ||
107 | |||
108 | 0, // alpha_level | ||
109 | 118, // thlock | ||
110 | |||
111 | 0, // wbd_inv | ||
112 | 0, // wbd_ref | ||
113 | 0, // wbd_sel | ||
114 | 0, // wbd_alpha | ||
115 | |||
116 | 65535, // agc1_max | ||
117 | 0, // agc1_min | ||
118 | 65535, // agc2_max | ||
119 | 23592, // agc2_min | ||
120 | 0, // agc1_pt1 | ||
121 | 128, // agc1_pt2 | ||
122 | 128, // agc1_pt3 | ||
123 | 128, // agc1_slope1 | ||
124 | 0, // agc1_slope2 | ||
125 | 128, // agc2_pt1 | ||
126 | 253, // agc2_pt2 | ||
127 | 81, // agc2_slope1 | ||
128 | 0, // agc2_slope2 | ||
129 | |||
130 | 17, // alpha_mant | ||
131 | 27, // alpha_exp | ||
132 | |||
133 | 23, // beta_mant | ||
134 | 51, // beta_exp | ||
135 | |||
136 | 0, // perform_agc_softsplit : 1 en vrai! | ||
137 | }; | ||
138 | |||
139 | static struct dibx000_bandwidth_config stk7700d_mt2266_pll_config = { | ||
140 | 60000, 30000, // internal, sampling | ||
141 | 1, 8, 3, 1, 0, // pll_cfg: prediv, ratio, range, reset, bypass | ||
142 | 0, 0, 1, 1, 2, // misc: refdiv, bypclk_div, IO_CLK_en_core, ADClkSrc, modulo | ||
143 | (3 << 14) | (1 << 12) | (524 << 0), // sad_cfg: refsel, sel, freq_15k | ||
144 | 0, // ifreq | ||
145 | 20452225, // timf | ||
146 | }; | ||
147 | |||
148 | static struct dib7000p_config stk7700d_dib7000p_mt2266_config[] = { | ||
149 | { .output_mpeg2_in_188_bytes = 1, | ||
150 | .hostbus_diversity = 1, | ||
151 | .tuner_is_baseband = 1, | ||
152 | |||
153 | .agc = &stk7700d_7000p_mt2266_agc_config, | ||
154 | .bw = &stk7700d_mt2266_pll_config, | ||
155 | |||
156 | .gpio_dir = DIB7000M_GPIO_DEFAULT_DIRECTIONS, | ||
157 | .gpio_val = DIB7000M_GPIO_DEFAULT_VALUES, | ||
158 | .gpio_pwm_pos = DIB7000M_GPIO_DEFAULT_PWM_POS, | ||
159 | }, | ||
160 | { .output_mpeg2_in_188_bytes = 1, | ||
161 | .hostbus_diversity = 1, | ||
162 | .tuner_is_baseband = 1, | ||
163 | |||
164 | .agc = &stk7700d_7000p_mt2266_agc_config, | ||
165 | .bw = &stk7700d_mt2266_pll_config, | ||
166 | |||
167 | .gpio_dir = DIB7000M_GPIO_DEFAULT_DIRECTIONS, | ||
168 | .gpio_val = DIB7000M_GPIO_DEFAULT_VALUES, | ||
169 | .gpio_pwm_pos = DIB7000M_GPIO_DEFAULT_PWM_POS, | ||
170 | } | ||
171 | }; | ||
172 | |||
173 | static struct mt2266_config stk7700d_mt2266_config[2] = { | ||
174 | { .i2c_address = 0x60 | ||
175 | }, | ||
176 | { .i2c_address = 0x60 | ||
177 | } | ||
178 | }; | ||
179 | |||
180 | static int stk7700d_frontend_attach(struct dvb_usb_adapter *adap) | ||
181 | { | ||
182 | if (adap->id == 0) { | ||
183 | dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1); | ||
184 | msleep(10); | ||
185 | dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1); | ||
186 | dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1); | ||
187 | dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1); | ||
188 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); | ||
189 | msleep(10); | ||
190 | dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1); | ||
191 | msleep(10); | ||
192 | dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1); | ||
193 | dib7000p_i2c_enumeration(&adap->dev->i2c_adap,2,18,stk7700d_dib7000p_mt2266_config); | ||
194 | } | ||
195 | |||
196 | adap->fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap,0x80+(adap->id << 1), | ||
197 | &stk7700d_dib7000p_mt2266_config[adap->id]); | ||
198 | |||
199 | return adap->fe == NULL ? -ENODEV : 0; | ||
200 | } | ||
201 | |||
202 | static int stk7700d_tuner_attach(struct dvb_usb_adapter *adap) | ||
203 | { | ||
204 | struct i2c_adapter *tun_i2c; | ||
205 | tun_i2c = dib7000p_get_i2c_master(adap->fe, DIBX000_I2C_INTERFACE_TUNER, 1); | ||
206 | return dvb_attach(mt2266_attach, adap->fe, tun_i2c, | ||
207 | &stk7700d_mt2266_config[adap->id]) == NULL ? -ENODEV : 0;; | ||
208 | } | ||
209 | |||
210 | #define DEFAULT_RC_INTERVAL 150 | ||
211 | |||
212 | static u8 rc_request[] = { REQUEST_POLL_RC, 0 }; | ||
213 | |||
214 | int stk7700d_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | ||
215 | { | ||
216 | u8 key[4]; | ||
217 | int i; | ||
218 | struct dvb_usb_rc_key *keymap = d->props.rc_key_map; | ||
219 | struct dib0700_state *st = d->priv; | ||
220 | *event = 0; | ||
221 | *state = REMOTE_NO_KEY_PRESSED; | ||
222 | i=dib0700_ctrl_rd(d,rc_request,2,key,4); | ||
223 | if (i<=0) { | ||
224 | err("stk7700d:RC Query Failed\n"); | ||
225 | return 0; | ||
226 | } | ||
227 | if (key[0]==0 && key[1]==0 && key[2]==0 && key[3]==0) return 0; | ||
228 | if (key[1]!=st->rc_toggle) { | ||
229 | for (i=0;i<d->props.rc_key_map_size; i++) { | ||
230 | if (keymap[i].custom == key[2] && keymap[i].data == key[3]) { | ||
231 | *event = keymap[i].event; | ||
232 | *state = REMOTE_KEY_PRESSED; | ||
233 | st->rc_toggle=key[1]; | ||
234 | return 0; | ||
235 | } | ||
236 | } | ||
237 | err("stk7700d:Unknown remote controller key : %2X %2X\n",(int)key[2],(int)key[3]); | ||
238 | } | ||
239 | return 0; | ||
240 | } | ||
241 | |||
242 | #define KEY_MAP_SIZE (25+48) | ||
243 | |||
244 | struct dvb_usb_rc_key stk7700d_rc_keys[] = { | ||
245 | /* Key codes for the tiny Pinnacle remote*/ | ||
246 | { 0x07, 0x00, KEY_MUTE }, | ||
247 | { 0x07, 0x01, KEY_MENU }, // Pinnacle logo | ||
248 | { 0x07, 0x39, KEY_POWER }, | ||
249 | { 0x07, 0x03, KEY_VOLUMEUP }, | ||
250 | { 0x07, 0x09, KEY_VOLUMEDOWN }, | ||
251 | { 0x07, 0x06, KEY_CHANNELUP }, | ||
252 | { 0x07, 0x0c, KEY_CHANNELDOWN }, | ||
253 | { 0x07, 0x0f, KEY_1 }, | ||
254 | { 0x07, 0x15, KEY_2 }, | ||
255 | { 0x07, 0x10, KEY_3 }, | ||
256 | { 0x07, 0x18, KEY_4 }, | ||
257 | { 0x07, 0x1b, KEY_5 }, | ||
258 | { 0x07, 0x1e, KEY_6 }, | ||
259 | { 0x07, 0x11, KEY_7 }, | ||
260 | { 0x07, 0x21, KEY_8 }, | ||
261 | { 0x07, 0x12, KEY_9 }, | ||
262 | { 0x07, 0x27, KEY_0 }, | ||
263 | { 0x07, 0x24, KEY_SCREEN }, // 'Square' key | ||
264 | { 0x07, 0x2a, KEY_TEXT }, // 'T' key | ||
265 | { 0x07, 0x2d, KEY_REWIND }, | ||
266 | { 0x07, 0x30, KEY_PLAY }, | ||
267 | { 0x07, 0x33, KEY_FASTFORWARD }, | ||
268 | { 0x07, 0x36, KEY_RECORD }, | ||
269 | { 0x07, 0x3c, KEY_STOP }, | ||
270 | { 0x07, 0x3f, KEY_CANCEL }, // '?' key | ||
271 | /* Key codes for the Terratec Cinergy DT XS Diversity, similar to cinergyT2.c */ | ||
272 | { 0xeb, 0x01, KEY_POWER }, | ||
273 | { 0xeb, 0x02, KEY_1 }, | ||
274 | { 0xeb, 0x03, KEY_2 }, | ||
275 | { 0xeb, 0x04, KEY_3 }, | ||
276 | { 0xeb, 0x05, KEY_4 }, | ||
277 | { 0xeb, 0x06, KEY_5 }, | ||
278 | { 0xeb, 0x07, KEY_6 }, | ||
279 | { 0xeb, 0x08, KEY_7 }, | ||
280 | { 0xeb, 0x09, KEY_8 }, | ||
281 | { 0xeb, 0x0a, KEY_9 }, | ||
282 | { 0xeb, 0x0b, KEY_VIDEO }, | ||
283 | { 0xeb, 0x0c, KEY_0 }, | ||
284 | { 0xeb, 0x0d, KEY_REFRESH }, | ||
285 | { 0xeb, 0x0f, KEY_EPG }, | ||
286 | { 0xeb, 0x10, KEY_UP }, | ||
287 | { 0xeb, 0x11, KEY_LEFT }, | ||
288 | { 0xeb, 0x12, KEY_OK }, | ||
289 | { 0xeb, 0x13, KEY_RIGHT }, | ||
290 | { 0xeb, 0x14, KEY_DOWN }, | ||
291 | { 0xeb, 0x16, KEY_INFO }, | ||
292 | { 0xeb, 0x17, KEY_RED }, | ||
293 | { 0xeb, 0x18, KEY_GREEN }, | ||
294 | { 0xeb, 0x19, KEY_YELLOW }, | ||
295 | { 0xeb, 0x1a, KEY_BLUE }, | ||
296 | { 0xeb, 0x1b, KEY_CHANNELUP }, | ||
297 | { 0xeb, 0x1c, KEY_VOLUMEUP }, | ||
298 | { 0xeb, 0x1d, KEY_MUTE }, | ||
299 | { 0xeb, 0x1e, KEY_VOLUMEDOWN }, | ||
300 | { 0xeb, 0x1f, KEY_CHANNELDOWN }, | ||
301 | { 0xeb, 0x40, KEY_PAUSE }, | ||
302 | { 0xeb, 0x41, KEY_HOME }, | ||
303 | { 0xeb, 0x42, KEY_MENU }, /* DVD Menu */ | ||
304 | { 0xeb, 0x43, KEY_SUBTITLE }, | ||
305 | { 0xeb, 0x44, KEY_TEXT }, /* Teletext */ | ||
306 | { 0xeb, 0x45, KEY_DELETE }, | ||
307 | { 0xeb, 0x46, KEY_TV }, | ||
308 | { 0xeb, 0x47, KEY_DVD }, | ||
309 | { 0xeb, 0x48, KEY_STOP }, | ||
310 | { 0xeb, 0x49, KEY_VIDEO }, | ||
311 | { 0xeb, 0x4a, KEY_AUDIO }, /* Music */ | ||
312 | { 0xeb, 0x4b, KEY_SCREEN }, /* Pic */ | ||
313 | { 0xeb, 0x4c, KEY_PLAY }, | ||
314 | { 0xeb, 0x4d, KEY_BACK }, | ||
315 | { 0xeb, 0x4e, KEY_REWIND }, | ||
316 | { 0xeb, 0x4f, KEY_FASTFORWARD }, | ||
317 | { 0xeb, 0x54, KEY_PREVIOUS }, | ||
318 | { 0xeb, 0x58, KEY_RECORD }, | ||
319 | { 0xeb, 0x5c, KEY_NEXT } | ||
320 | }; | ||
321 | |||
99 | /* STK7700P: Hauppauge Nova-T Stick, AVerMedia Volar */ | 322 | /* STK7700P: Hauppauge Nova-T Stick, AVerMedia Volar */ |
100 | static struct dibx000_agc_config stk7700p_7000m_mt2060_agc_config = { | 323 | static struct dibx000_agc_config stk7700p_7000m_mt2060_agc_config = { |
101 | BAND_UHF | BAND_VHF, // band_caps | 324 | BAND_UHF | BAND_VHF, // band_caps |
@@ -280,6 +503,9 @@ struct usb_device_id dib0700_usb_id_table[] = { | |||
280 | { USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P) }, | 503 | { USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P) }, |
281 | { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_STICK_2) }, | 504 | { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_STICK_2) }, |
282 | { USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_VOLAR_2) }, | 505 | { USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_VOLAR_2) }, |
506 | { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV2000E) }, | ||
507 | { USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_DT_XS_DIVERSITY) }, | ||
508 | { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_TD_STICK) }, | ||
283 | { } /* Terminating entry */ | 509 | { } /* Terminating entry */ |
284 | }; | 510 | }; |
285 | MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table); | 511 | MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table); |
@@ -372,6 +598,42 @@ struct dvb_usb_device_properties dib0700_devices[] = { | |||
372 | { NULL }, | 598 | { NULL }, |
373 | }, | 599 | }, |
374 | } | 600 | } |
601 | }, { DIB0700_DEFAULT_DEVICE_PROPERTIES, | ||
602 | |||
603 | .num_adapters = 2, | ||
604 | .adapter = { | ||
605 | { | ||
606 | .frontend_attach = stk7700d_frontend_attach, | ||
607 | .tuner_attach = stk7700d_tuner_attach, | ||
608 | |||
609 | DIB0700_DEFAULT_STREAMING_CONFIG(0x02), | ||
610 | }, { | ||
611 | .frontend_attach = stk7700d_frontend_attach, | ||
612 | .tuner_attach = stk7700d_tuner_attach, | ||
613 | |||
614 | DIB0700_DEFAULT_STREAMING_CONFIG(0x03), | ||
615 | } | ||
616 | }, | ||
617 | |||
618 | .num_device_descs = 3, | ||
619 | .devices = { | ||
620 | { "Pinnacle PCTV 2000e", | ||
621 | { &dib0700_usb_id_table[11], NULL }, | ||
622 | { NULL }, | ||
623 | }, | ||
624 | { "Terratec Cinergy DT XS Diversity", | ||
625 | { &dib0700_usb_id_table[12], NULL }, | ||
626 | { NULL }, | ||
627 | }, | ||
628 | { "Haupauge Nova-TD Stick", | ||
629 | { &dib0700_usb_id_table[13], NULL }, | ||
630 | { NULL }, | ||
631 | }, | ||
632 | }, | ||
633 | .rc_interval = DEFAULT_RC_INTERVAL, | ||
634 | .rc_key_map = stk7700d_rc_keys, | ||
635 | .rc_key_map_size = KEY_MAP_SIZE, | ||
636 | .rc_query = stk7700d_rc_query | ||
375 | } | 637 | } |
376 | }; | 638 | }; |
377 | 639 | ||
diff --git a/drivers/media/dvb/dvb-usb/dvb-usb-ids.h b/drivers/media/dvb/dvb-usb/dvb-usb-ids.h index 78ea3b566ffc..2e38be3aa45b 100644 --- a/drivers/media/dvb/dvb-usb/dvb-usb-ids.h +++ b/drivers/media/dvb/dvb-usb/dvb-usb-ids.h | |||
@@ -12,7 +12,7 @@ | |||
12 | /* Vendor IDs */ | 12 | /* Vendor IDs */ |
13 | #define USB_VID_ADSTECH 0x06e1 | 13 | #define USB_VID_ADSTECH 0x06e1 |
14 | #define USB_VID_AFATECH 0x15a4 | 14 | #define USB_VID_AFATECH 0x15a4 |
15 | #define USB_VID_ALCOR_MICRO 0x058f | 15 | #define USB_VID_ALCOR_MICRO 0x058f |
16 | #define USB_VID_ALINK 0x05e3 | 16 | #define USB_VID_ALINK 0x05e3 |
17 | #define USB_VID_ANCHOR 0x0547 | 17 | #define USB_VID_ANCHOR 0x0547 |
18 | #define USB_VID_ANUBIS_ELECTRONIC 0x10fd | 18 | #define USB_VID_ANUBIS_ELECTRONIC 0x10fd |
@@ -116,8 +116,11 @@ | |||
116 | #define USB_PID_HAUPPAUGE_NOVA_T_500_2 0x9950 | 116 | #define USB_PID_HAUPPAUGE_NOVA_T_500_2 0x9950 |
117 | #define USB_PID_HAUPPAUGE_NOVA_T_STICK 0x7050 | 117 | #define USB_PID_HAUPPAUGE_NOVA_T_STICK 0x7050 |
118 | #define USB_PID_HAUPPAUGE_NOVA_T_STICK_2 0x7060 | 118 | #define USB_PID_HAUPPAUGE_NOVA_T_STICK_2 0x7060 |
119 | #define USB_PID_HAUPPAUGE_NOVA_TD_STICK 0x9580 | ||
119 | #define USB_PID_AVERMEDIA_VOLAR 0xa807 | 120 | #define USB_PID_AVERMEDIA_VOLAR 0xa807 |
120 | #define USB_PID_AVERMEDIA_VOLAR_2 0xb808 | 121 | #define USB_PID_AVERMEDIA_VOLAR_2 0xb808 |
122 | #define USB_PID_TERRATEC_CINERGY_DT_XS_DIVERSITY 0x005a | ||
123 | #define USB_PID_PINNACLE_PCTV2000E 0x022c | ||
121 | #define USB_PID_NEBULA_DIGITV 0x0201 | 124 | #define USB_PID_NEBULA_DIGITV 0x0201 |
122 | #define USB_PID_DVICO_BLUEBIRD_LGDT 0xd820 | 125 | #define USB_PID_DVICO_BLUEBIRD_LGDT 0xd820 |
123 | #define USB_PID_DVICO_BLUEBIRD_LG064F_COLD 0xd500 | 126 | #define USB_PID_DVICO_BLUEBIRD_LG064F_COLD 0xd500 |