blob: 81a6cbf601603a6e8b2313921291350b131bd1ae [file] [log] [blame]
Patrick Boettcherfb41f5a2005-07-07 17:58:23 -07001/* DVB USB library compliant Linux driver for the WideView/ Yakumo/ Hama/
Rasmus Rohded3c35ac2007-07-21 15:37:35 -03002 * Typhoon/ Yuan/ Miglia DVB-T USB2.0 receiver.
Johannes Stezenbach776338e2005-06-23 22:02:35 -07003 *
4 * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de)
5 *
Patrick Boettcherd590f9c2005-07-07 17:58:33 -07006 * Thanks to Steve Chang from WideView for providing support for the WT-220U.
7 *
Johannes Stezenbach776338e2005-06-23 22:02:35 -07008 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation, version 2.
11 *
12 * see Documentation/dvb/README.dvb-usb for more information
13 */
14#include "dtt200u.h"
15
16/* debug */
17int dvb_usb_dtt200u_debug;
18module_param_named(debug,dvb_usb_dtt200u_debug, int, 0644);
19MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2 (or-able))." DVB_USB_DEBUG_STATUS);
20
Janne Grunau78e92002008-04-09 19:13:13 -030021DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
22
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070023static int dtt200u_power_ctrl(struct dvb_usb_device *d, int onoff)
24{
25 u8 b = SET_INIT;
26
27 if (onoff)
28 dvb_usb_generic_write(d,&b,2);
29
30 return 0;
31}
32
Patrick Boettcher4d43e132006-09-30 06:53:48 -030033static int dtt200u_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
Johannes Stezenbach776338e2005-06-23 22:02:35 -070034{
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070035 u8 b_streaming[2] = { SET_STREAMING, onoff };
Johannes Stezenbach776338e2005-06-23 22:02:35 -070036 u8 b_rst_pid = RESET_PID_FILTER;
37
Patrick Boettcher4d43e132006-09-30 06:53:48 -030038 dvb_usb_generic_write(adap->dev, b_streaming, 2);
Johannes Stezenbach776338e2005-06-23 22:02:35 -070039
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070040 if (onoff == 0)
Patrick Boettcher4d43e132006-09-30 06:53:48 -030041 dvb_usb_generic_write(adap->dev, &b_rst_pid, 1);
Johannes Stezenbach776338e2005-06-23 22:02:35 -070042 return 0;
43}
44
Patrick Boettcher4d43e132006-09-30 06:53:48 -030045static int dtt200u_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid, int onoff)
Johannes Stezenbach776338e2005-06-23 22:02:35 -070046{
47 u8 b_pid[4];
48 pid = onoff ? pid : 0;
49
50 b_pid[0] = SET_PID_FILTER;
51 b_pid[1] = index;
52 b_pid[2] = pid & 0xff;
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070053 b_pid[3] = (pid >> 8) & 0x1f;
Johannes Stezenbach776338e2005-06-23 22:02:35 -070054
Patrick Boettcher4d43e132006-09-30 06:53:48 -030055 return dvb_usb_generic_write(adap->dev, b_pid, 4);
Johannes Stezenbach776338e2005-06-23 22:02:35 -070056}
57
58/* remote control */
59/* key list for the tiny remote control (Yakumo, don't know about the others) */
60static struct dvb_usb_rc_key dtt200u_rc_keys[] = {
61 { 0x80, 0x01, KEY_MUTE },
62 { 0x80, 0x02, KEY_CHANNELDOWN },
63 { 0x80, 0x03, KEY_VOLUMEDOWN },
64 { 0x80, 0x04, KEY_1 },
65 { 0x80, 0x05, KEY_2 },
66 { 0x80, 0x06, KEY_3 },
67 { 0x80, 0x07, KEY_4 },
68 { 0x80, 0x08, KEY_5 },
69 { 0x80, 0x09, KEY_6 },
70 { 0x80, 0x0a, KEY_7 },
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070071 { 0x80, 0x0c, KEY_ZOOM },
Johannes Stezenbach776338e2005-06-23 22:02:35 -070072 { 0x80, 0x0d, KEY_0 },
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070073 { 0x80, 0x0e, KEY_SELECT },
Johannes Stezenbach776338e2005-06-23 22:02:35 -070074 { 0x80, 0x12, KEY_POWER },
75 { 0x80, 0x1a, KEY_CHANNELUP },
76 { 0x80, 0x1b, KEY_8 },
77 { 0x80, 0x1e, KEY_VOLUMEUP },
78 { 0x80, 0x1f, KEY_9 },
79};
80
81static int dtt200u_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
82{
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070083 u8 key[5],cmd = GET_RC_CODE;
Johannes Stezenbach776338e2005-06-23 22:02:35 -070084 dvb_usb_generic_rw(d,&cmd,1,key,5,0);
85 dvb_usb_nec_rc_key_to_event(d,key,event,state);
86 if (key[0] != 0)
87 deb_info("key: %x %x %x %x %x\n",key[0],key[1],key[2],key[3],key[4]);
88 return 0;
89}
90
Patrick Boettcher4d43e132006-09-30 06:53:48 -030091static int dtt200u_frontend_attach(struct dvb_usb_adapter *adap)
Johannes Stezenbach776338e2005-06-23 22:02:35 -070092{
Patrick Boettcherc19da7e2006-09-19 12:51:27 -030093 adap->fe = dtt200u_fe_attach(adap->dev);
Johannes Stezenbach776338e2005-06-23 22:02:35 -070094 return 0;
95}
96
Patrick Boettcher4d43e132006-09-30 06:53:48 -030097static struct dvb_usb_device_properties dtt200u_properties;
98static struct dvb_usb_device_properties wt220u_fc_properties;
99static struct dvb_usb_device_properties wt220u_properties;
100static struct dvb_usb_device_properties wt220u_zl0353_properties;
Rasmus Rohded3c35ac2007-07-21 15:37:35 -0300101static struct dvb_usb_device_properties wt220u_miglia_properties;
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700102
103static int dtt200u_usb_probe(struct usb_interface *intf,
104 const struct usb_device_id *id)
105{
Janne Grunau78e92002008-04-09 19:13:13 -0300106 if (0 == dvb_usb_device_init(intf, &dtt200u_properties,
107 THIS_MODULE, NULL, adapter_nr) ||
108 0 == dvb_usb_device_init(intf, &wt220u_properties,
109 THIS_MODULE, NULL, adapter_nr) ||
110 0 == dvb_usb_device_init(intf, &wt220u_fc_properties,
111 THIS_MODULE, NULL, adapter_nr) ||
112 0 == dvb_usb_device_init(intf, &wt220u_zl0353_properties,
113 THIS_MODULE, NULL, adapter_nr) ||
114 0 == dvb_usb_device_init(intf, &wt220u_miglia_properties,
115 THIS_MODULE, NULL, adapter_nr))
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700116 return 0;
117
118 return -ENODEV;
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700119}
120
121static struct usb_device_id dtt200u_usb_table [] = {
Patrick Boettcher62703b92005-09-09 13:02:46 -0700122 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_DTT200U_COLD) },
123 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_DTT200U_WARM) },
124 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_COLD) },
125 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_WARM) },
Patrick Boettcherd46e6452006-03-28 16:15:05 -0300126 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_ZL0353_COLD) },
127 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_ZL0353_WARM) },
Alexander Tuschen19e22572006-07-16 15:03:17 -0300128 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_FC_COLD) },
129 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_FC_WARM) },
Jochen Issingded38d22006-08-19 16:03:21 -0300130 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_ZAP250_COLD) },
Rasmus Rohded3c35ac2007-07-21 15:37:35 -0300131 { USB_DEVICE(USB_VID_MIGLIA, USB_PID_WT220U_ZAP250_COLD) },
Patrick Boettcher62703b92005-09-09 13:02:46 -0700132 { 0 },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700133};
134MODULE_DEVICE_TABLE(usb, dtt200u_usb_table);
135
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300136static struct dvb_usb_device_properties dtt200u_properties = {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700137 .usb_ctrl = CYPRESS_FX2,
138 .firmware = "dvb-usb-dtt200u-01.fw",
139
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300140 .num_adapters = 1,
141 .adapter = {
142 {
143 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_NEED_PID_FILTERING,
144 .pid_filter_count = 15,
145
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700146 .streaming_ctrl = dtt200u_streaming_ctrl,
147 .pid_filter = dtt200u_pid_filter,
148 .frontend_attach = dtt200u_frontend_attach,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700149 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300150 .stream = {
151 .type = USB_BULK,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700152 .count = 7,
153 .endpoint = 0x02,
154 .u = {
155 .bulk = {
156 .buffersize = 4096,
157 }
158 }
159 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300160 }
161 },
162 .power_ctrl = dtt200u_power_ctrl,
163
164 .rc_interval = 300,
165 .rc_key_map = dtt200u_rc_keys,
166 .rc_key_map_size = ARRAY_SIZE(dtt200u_rc_keys),
167 .rc_query = dtt200u_rc_query,
168
169 .generic_bulk_ctrl_endpoint = 0x01,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700170
171 .num_device_descs = 1,
172 .devices = {
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700173 { .name = "WideView/Yuan/Yakumo/Hama/Typhoon DVB-T USB2.0 (WT-200U)",
Patrick Boettcherfb41f5a2005-07-07 17:58:23 -0700174 .cold_ids = { &dtt200u_usb_table[0], NULL },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700175 .warm_ids = { &dtt200u_usb_table[1], NULL },
176 },
Al Virodad08df2006-02-01 06:02:50 -0500177 { NULL },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700178 }
179};
180
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300181static struct dvb_usb_device_properties wt220u_properties = {
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700182 .usb_ctrl = CYPRESS_FX2,
Patrick Boettcher6ce17c52006-01-09 15:25:45 -0200183 .firmware = "dvb-usb-wt220u-02.fw",
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700184
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300185 .num_adapters = 1,
186 .adapter = {
187 {
188 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_NEED_PID_FILTERING,
189 .pid_filter_count = 15,
190
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700191 .streaming_ctrl = dtt200u_streaming_ctrl,
192 .pid_filter = dtt200u_pid_filter,
193 .frontend_attach = dtt200u_frontend_attach,
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700194 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300195 .stream = {
196 .type = USB_BULK,
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700197 .count = 7,
198 .endpoint = 0x02,
199 .u = {
200 .bulk = {
201 .buffersize = 4096,
202 }
203 }
204 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300205 }
206 },
207 .power_ctrl = dtt200u_power_ctrl,
208
209 .rc_interval = 300,
210 .rc_key_map = dtt200u_rc_keys,
211 .rc_key_map_size = ARRAY_SIZE(dtt200u_rc_keys),
212 .rc_query = dtt200u_rc_query,
213
214 .generic_bulk_ctrl_endpoint = 0x01,
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700215
216 .num_device_descs = 1,
217 .devices = {
Patrick Boettcher62703b92005-09-09 13:02:46 -0700218 { .name = "WideView WT-220U PenType Receiver (Typhoon/Freecom)",
Jochen Issingded38d22006-08-19 16:03:21 -0300219 .cold_ids = { &dtt200u_usb_table[2], &dtt200u_usb_table[8], NULL },
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700220 .warm_ids = { &dtt200u_usb_table[3], NULL },
221 },
Al Virodad08df2006-02-01 06:02:50 -0500222 { NULL },
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700223 }
224};
225
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300226static struct dvb_usb_device_properties wt220u_fc_properties = {
Alexander Tuschen19e22572006-07-16 15:03:17 -0300227 .usb_ctrl = CYPRESS_FX2,
228 .firmware = "dvb-usb-wt220u-fc03.fw",
229
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300230 .num_adapters = 1,
231 .adapter = {
232 {
233 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_NEED_PID_FILTERING,
234 .pid_filter_count = 15,
235
Alexander Tuschen19e22572006-07-16 15:03:17 -0300236 .streaming_ctrl = dtt200u_streaming_ctrl,
237 .pid_filter = dtt200u_pid_filter,
238 .frontend_attach = dtt200u_frontend_attach,
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300239 /* parameter for the MPEG2-data transfer */
240 .stream = {
241 .type = USB_BULK,
242 .count = 7,
243 .endpoint = 0x06,
244 .u = {
245 .bulk = {
246 .buffersize = 4096,
247 }
248 }
249 },
250 }
251 },
252 .power_ctrl = dtt200u_power_ctrl,
Alexander Tuschen19e22572006-07-16 15:03:17 -0300253
254 .rc_interval = 300,
255 .rc_key_map = dtt200u_rc_keys,
256 .rc_key_map_size = ARRAY_SIZE(dtt200u_rc_keys),
257 .rc_query = dtt200u_rc_query,
258
259 .generic_bulk_ctrl_endpoint = 0x01,
260
Alexander Tuschen19e22572006-07-16 15:03:17 -0300261 .num_device_descs = 1,
262 .devices = {
263 { .name = "WideView WT-220U PenType Receiver (Typhoon/Freecom)",
264 .cold_ids = { &dtt200u_usb_table[6], NULL },
265 .warm_ids = { &dtt200u_usb_table[7], NULL },
266 },
267 { NULL },
268 }
269};
270
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300271static struct dvb_usb_device_properties wt220u_zl0353_properties = {
Patrick Boettcherd46e6452006-03-28 16:15:05 -0300272 .usb_ctrl = CYPRESS_FX2,
273 .firmware = "dvb-usb-wt220u-zl0353-01.fw",
274
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300275 .num_adapters = 1,
276 .adapter = {
277 {
278 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_NEED_PID_FILTERING,
279 .pid_filter_count = 15,
280
Patrick Boettcher01451e72006-10-13 11:34:46 -0300281 .streaming_ctrl = dtt200u_streaming_ctrl,
282 .pid_filter = dtt200u_pid_filter,
283 .frontend_attach = dtt200u_frontend_attach,
284 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300285 .stream = {
286 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300287 .count = 7,
288 .endpoint = 0x02,
289 .u = {
290 .bulk = {
291 .buffersize = 4096,
292 }
293 }
294 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300295 }
296 },
297 .power_ctrl = dtt200u_power_ctrl,
298
299 .rc_interval = 300,
300 .rc_key_map = dtt200u_rc_keys,
301 .rc_key_map_size = ARRAY_SIZE(dtt200u_rc_keys),
302 .rc_query = dtt200u_rc_query,
303
304 .generic_bulk_ctrl_endpoint = 0x01,
Patrick Boettcherd46e6452006-03-28 16:15:05 -0300305
306 .num_device_descs = 1,
307 .devices = {
308 { .name = "WideView WT-220U PenType Receiver (based on ZL353)",
309 .cold_ids = { &dtt200u_usb_table[4], NULL },
310 .warm_ids = { &dtt200u_usb_table[5], NULL },
311 },
312 { NULL },
313 }
314};
315
Rasmus Rohded3c35ac2007-07-21 15:37:35 -0300316static struct dvb_usb_device_properties wt220u_miglia_properties = {
317 .usb_ctrl = CYPRESS_FX2,
318 .firmware = "dvb-usb-wt220u-miglia-01.fw",
319
320 .num_adapters = 1,
321 .generic_bulk_ctrl_endpoint = 0x01,
322
323 .num_device_descs = 1,
324 .devices = {
325 { .name = "WideView WT-220U PenType Receiver (Miglia)",
326 .cold_ids = { &dtt200u_usb_table[9], NULL },
327 /* This device turns into WT220U_ZL0353_WARM when fw
328 has been uploaded */
329 .warm_ids = { NULL },
330 },
331 { NULL },
332 }
333};
334
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700335/* usb specific object needed to register this driver with the usb subsystem */
336static struct usb_driver dtt200u_usb_driver = {
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700337 .name = "dvb_usb_dtt200u",
Patrick Boettcher62703b92005-09-09 13:02:46 -0700338 .probe = dtt200u_usb_probe,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700339 .disconnect = dvb_usb_device_exit,
Patrick Boettcher62703b92005-09-09 13:02:46 -0700340 .id_table = dtt200u_usb_table,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700341};
342
343/* module stuff */
344static int __init dtt200u_usb_module_init(void)
345{
346 int result;
347 if ((result = usb_register(&dtt200u_usb_driver))) {
348 err("usb_register failed. (%d)",result);
349 return result;
350 }
351
352 return 0;
353}
354
355static void __exit dtt200u_usb_module_exit(void)
356{
357 /* deregister this driver from the USB subsystem */
358 usb_deregister(&dtt200u_usb_driver);
359}
360
361module_init(dtt200u_usb_module_init);
362module_exit(dtt200u_usb_module_exit);
363
364MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
Rasmus Rohded3c35ac2007-07-21 15:37:35 -0300365MODULE_DESCRIPTION("Driver for the WideView/Yakumo/Hama/Typhoon/Club3D/Miglia DVB-T USB2.0 devices");
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700366MODULE_VERSION("1.0");
367MODULE_LICENSE("GPL");