blob: 1d3cbc1b265352ec44945690b6f185c1594ed027 [file] [log] [blame]
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -03001/* DVB USB compliant linux driver for MSI Mega Sky 580 DVB-T USB2.0 receiver
2 *
3 * Copyright (C) 2006 Aapo Tahkola (aet@rasterburn.org)
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation, version 2.
8 *
9 * see Documentation/dvb/README.dvb-usb for more information
10 */
Michael Krufkybaa2ed02006-09-23 20:01:29 -030011
Michael Krufky2aef7d02006-09-23 20:00:42 -030012#include "m920x.h"
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030013
14#include "mt352.h"
15#include "mt352_priv.h"
Michael Krufky017cf012006-09-23 20:40:20 -030016#include "qt1010.h"
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030017
18/* debug */
Michael Krufky26f48ea2006-09-28 01:46:49 -030019static int dvb_usb_m920x_debug;
Michael Krufkybaa2ed02006-09-23 20:01:29 -030020module_param_named(debug,dvb_usb_m920x_debug, int, 0644);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030021MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
22
23static struct dvb_usb_rc_key megasky_rc_keys [] = {
24 { 0x0, 0x12, KEY_POWER },
25 { 0x0, 0x1e, KEY_CYCLEWINDOWS }, /* min/max */
26 { 0x0, 0x02, KEY_CHANNELUP },
27 { 0x0, 0x05, KEY_CHANNELDOWN },
28 { 0x0, 0x03, KEY_VOLUMEUP },
29 { 0x0, 0x06, KEY_VOLUMEDOWN },
30 { 0x0, 0x04, KEY_MUTE },
31 { 0x0, 0x07, KEY_OK }, /* TS */
32 { 0x0, 0x08, KEY_STOP },
33 { 0x0, 0x09, KEY_MENU }, /* swap */
34 { 0x0, 0x0a, KEY_REWIND },
35 { 0x0, 0x1b, KEY_PAUSE },
36 { 0x0, 0x1f, KEY_FASTFORWARD },
37 { 0x0, 0x0c, KEY_RECORD },
38 { 0x0, 0x0d, KEY_CAMERA }, /* screenshot */
39 { 0x0, 0x0e, KEY_COFFEE }, /* "MTS" */
40};
41
Michael Krufkyfa948052007-01-21 15:57:48 -030042static inline int m9206_read(struct usb_device *udev, u8 request, u16 value,\
43 u16 index, void *data, int size)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030044{
45 int ret;
46
47 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
48 request, USB_TYPE_VENDOR | USB_DIR_IN,
49 value, index, data, size, 2000);
50 if (ret < 0)
51 return ret;
52
53 if (ret != size)
54 return -EIO;
55
56 return 0;
57}
58
Michael Krufkyfa948052007-01-21 15:57:48 -030059static inline int m9206_write(struct usb_device *udev, u8 request,
60 u16 value, u16 index)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030061{
62 int ret;
63
64 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
65 request, USB_TYPE_VENDOR | USB_DIR_OUT,
66 value, index, NULL, 0, 2000);
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030067 return ret;
68}
69
Aapo Tahkola480ac762007-03-05 18:54:27 -030070static int m9206_init(struct dvb_usb_device *d)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030071{
72 int ret = 0;
73
74 /* Remote controller init. */
Aapo Tahkola480ac762007-03-05 18:54:27 -030075 if (d->props.rc_query) {
76 if ((ret = m9206_write(d->udev, M9206_CORE, 0xa8, M9206_RC_INIT2)) != 0)
77 return ret;
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030078
Aapo Tahkola480ac762007-03-05 18:54:27 -030079 if ((ret = m9206_write(d->udev, M9206_CORE, 0x51, M9206_RC_INIT1)) != 0)
80 return ret;
81 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030082
83 return ret;
84}
85
86static int m9206_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
87{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030088 struct m9206_state *m = d->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030089 int i, ret = 0;
90 u8 rc_state[2];
91
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030092
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030093 if ((ret = m9206_read(d->udev, M9206_CORE, 0x0, M9206_RC_STATE, rc_state, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030094 goto unlock;
95
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030096 if ((ret = m9206_read(d->udev, M9206_CORE, 0x0, M9206_RC_KEY, rc_state + 1, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030097 goto unlock;
98
Aapo Tahkola480ac762007-03-05 18:54:27 -030099 for (i = 0; i < d->props.rc_key_map_size; i++)
100 if (d->props.rc_key_map[i].data == rc_state[1]) {
101 *event = d->props.rc_key_map[i].event;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300102
103 switch(rc_state[0]) {
104 case 0x80:
105 *state = REMOTE_NO_KEY_PRESSED;
106 goto unlock;
107
108 case 0x93:
109 case 0x92:
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300110 m->rep_count = 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300111 *state = REMOTE_KEY_PRESSED;
112 goto unlock;
113
114 case 0x91:
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300115 /* For comfort. */
116 if (++m->rep_count > 2)
117 *state = REMOTE_KEY_REPEAT;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300118 goto unlock;
119
120 default:
121 deb_rc("Unexpected rc response %x\n", rc_state[0]);
122 *state = REMOTE_NO_KEY_PRESSED;
123 goto unlock;
124 }
125 }
126
127 if (rc_state[1] != 0)
128 deb_rc("Unknown rc key %x\n", rc_state[1]);
129
130 *state = REMOTE_NO_KEY_PRESSED;
131
132 unlock:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300133
134 return ret;
135}
136
137/* I2C */
Michael Krufkyfa948052007-01-21 15:57:48 -0300138static int m9206_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
139 int num)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300140{
141 struct dvb_usb_device *d = i2c_get_adapdata(adap);
Aapo Tahkola26247012007-03-05 18:23:19 -0300142 int i, j;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300143 int ret = 0;
144
145 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
146 return -EAGAIN;
147
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300148 for (i = 0; i < num; i++) {
Aapo Tahkola26247012007-03-05 18:23:19 -0300149 if (msg[i].flags & I2C_M_RD) {
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300150
Aapo Tahkola26247012007-03-05 18:23:19 -0300151 if ((ret = m9206_write(d->udev, M9206_I2C, (msg[i].addr << 1) | 0x01, 0x80)) != 0)
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300152 goto unlock;
Aapo Tahkola26247012007-03-05 18:23:19 -0300153
154 for(j = 0; j < msg[i].len; j++) {
155 if (j + 1 == msg[i].len && i + 1== num) {
156 if ((ret = m9206_read(d->udev, M9206_I2C, 0x0, 0x60, &msg[i].buf[j], msg[i].len)) != 0)
157 goto unlock;
158 } else {
159 if ((ret = m9206_read(d->udev, M9206_I2C, 0x0, 0x21, &msg[i].buf[j], msg[i].len)) != 0)
160 goto unlock;
161 }
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300162 }
163
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300164 } else {
Aapo Tahkola26247012007-03-05 18:23:19 -0300165 if ((ret = m9206_write(d->udev, M9206_I2C, msg[i].addr << 1, 0x80)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300166 goto unlock;
Aapo Tahkola26247012007-03-05 18:23:19 -0300167
168 for(j = 0; j < msg[i].len; j++) {
169 if (j + 1 == msg[i].len && i + 1== num) {
170 if ((ret = m9206_write(d->udev, M9206_I2C, msg[i].buf[j], 0x40)) != 0)
171 goto unlock;
172
173 } else {
174 if ((ret = m9206_write(d->udev, M9206_I2C, msg[i].buf[j], 0x0)) != 0)
175 goto unlock;
176 }
177 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300178 }
179 }
Aapo Tahkola26247012007-03-05 18:23:19 -0300180 ret = num;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300181 unlock:
182 mutex_unlock(&d->i2c_mutex);
183
184 return ret;
185}
186
187static u32 m9206_i2c_func(struct i2c_adapter *adapter)
188{
189 return I2C_FUNC_I2C;
190}
191
192static struct i2c_algorithm m9206_i2c_algo = {
193 .master_xfer = m9206_i2c_xfer,
194 .functionality = m9206_i2c_func,
195};
196
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300197
Michael Krufkyfa948052007-01-21 15:57:48 -0300198static int m9206_set_filter(struct dvb_usb_adapter *adap, int type, int idx,
199 int pid)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300200{
201 int ret = 0;
202
203 if (pid >= 0x8000)
204 return -EINVAL;
205
206 pid |= 0x8000;
207
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300208 if ((ret = m9206_write(adap->dev->udev, M9206_FILTER, pid, (type << 8) | (idx * 4) )) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300209 return ret;
210
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300211 if ((ret = m9206_write(adap->dev->udev, M9206_FILTER, 0, (type << 8) | (idx * 4) )) != 0)
212 return ret;
213
214 return ret;
215}
216
217static int m9206_update_filters(struct dvb_usb_adapter *adap)
218{
219 struct m9206_state *m = adap->dev->priv;
220 int enabled = m->filtering_enabled;
221 int i, ret = 0, filter = 0;
222
223 for (i = 0; i < M9206_MAX_FILTERS; i++)
224 if (m->filters[i] == 8192)
225 enabled = 0;
226
227 /* Disable all filters */
Michael Krufky26f48ea2006-09-28 01:46:49 -0300228 if ((ret = m9206_set_filter(adap, 0x81, 1, enabled)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300229 return ret;
230
231 for (i = 0; i < M9206_MAX_FILTERS; i++)
Michael Krufky26f48ea2006-09-28 01:46:49 -0300232 if ((ret = m9206_set_filter(adap, 0x81, i + 2, 0)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300233 return ret;
234
Michael Krufky26f48ea2006-09-28 01:46:49 -0300235 if ((ret = m9206_set_filter(adap, 0x82, 0, 0x0)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300236 return ret;
237
238 /* Set */
239 if (enabled) {
240 for (i = 0; i < M9206_MAX_FILTERS; i++) {
241 if (m->filters[i] == 0)
242 continue;
243
Michael Krufky26f48ea2006-09-28 01:46:49 -0300244 if ((ret = m9206_set_filter(adap, 0x81, filter + 2, m->filters[i])) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300245 return ret;
246
247 filter++;
248 }
249 }
250
Michael Krufky26f48ea2006-09-28 01:46:49 -0300251 if ((ret = m9206_set_filter(adap, 0x82, 0, 0x02f5)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300252 return ret;
253
254 return ret;
255}
256
Michael Krufky01cb34d2006-09-23 20:01:29 -0300257static int m9206_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300258{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300259 struct m9206_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300260
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300261 m->filtering_enabled = onoff ? 1 : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300262
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300263 return m9206_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300264}
265
Michael Krufkyfa948052007-01-21 15:57:48 -0300266static int m9206_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid,
267 int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300268{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300269 struct m9206_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300270
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300271 m->filters[index] = onoff ? pid : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300272
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300273 return m9206_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300274}
275
Michael Krufkyfa948052007-01-21 15:57:48 -0300276static int m9206_firmware_download(struct usb_device *udev,
277 const struct firmware *fw)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300278{
279 u16 value, index, size;
280 u8 read[4], *buff;
281 int i, pass, ret = 0;
282
283 buff = kmalloc(65536, GFP_KERNEL);
284
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300285 if ((ret = m9206_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300286 goto done;
287 deb_rc("%x %x %x %x\n", read[0], read[1], read[2], read[3]);
288
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300289 if ((ret = m9206_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300290 goto done;
291 deb_rc("%x\n", read[0]);
292
293 for (pass = 0; pass < 2; pass++) {
294 for (i = 0; i + (sizeof(u16) * 3) < fw->size;) {
295 value = le16_to_cpu(*(u16 *)(fw->data + i));
296 i += sizeof(u16);
297
298 index = le16_to_cpu(*(u16 *)(fw->data + i));
299 i += sizeof(u16);
300
301 size = le16_to_cpu(*(u16 *)(fw->data + i));
302 i += sizeof(u16);
303
304 if (pass == 1) {
305 /* Will stall if using fw->data ... */
306 memcpy(buff, fw->data + i, size);
307
308 ret = usb_control_msg(udev, usb_sndctrlpipe(udev,0),
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300309 M9206_FW,
310 USB_TYPE_VENDOR | USB_DIR_OUT,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300311 value, index, buff, size, 20);
312 if (ret != size) {
313 deb_rc("error while uploading fw!\n");
314 ret = -EIO;
315 goto done;
316 }
317 msleep(3);
318 }
319 i += size;
320 }
321 if (i != fw->size) {
322 ret = -EINVAL;
323 goto done;
324 }
325 }
326
327 msleep(36);
328
329 /* m9206 will disconnect itself from the bus after this. */
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300330 (void) m9206_write(udev, M9206_CORE, 0x01, M9206_FW_GO);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300331 deb_rc("firmware uploaded!\n");
332
333 done:
334 kfree(buff);
335
336 return ret;
337}
338
Michael Krufkye16c1f52007-01-23 15:00:42 -0300339/* Callbacks for DVB USB */
340static int megasky_identify_state(struct usb_device *udev,
341 struct dvb_usb_device_properties *props,
342 struct dvb_usb_device_description **desc,
343 int *cold)
344{
345 struct usb_host_interface *alt;
346
347 alt = usb_altnum_to_altsetting(usb_ifnum_to_if(udev, 0), 1);
348 *cold = (alt == NULL) ? 1 : 0;
349
350 return 0;
351}
352
353static int megasky_mt352_demod_init(struct dvb_frontend *fe)
354{
355 u8 config[] = { CONFIG, 0x3d };
356 u8 clock[] = { CLOCK_CTL, 0x30 };
357 u8 reset[] = { RESET, 0x80 };
358 u8 adc_ctl[] = { ADC_CTL_1, 0x40 };
359 u8 agc[] = { AGC_TARGET, 0x1c, 0x20 };
360 u8 sec_agc[] = { 0x69, 0x00, 0xff, 0xff, 0x40, 0xff, 0x00, 0x40, 0x40 };
361 u8 unk1[] = { 0x93, 0x1a };
362 u8 unk2[] = { 0xb5, 0x7a };
363
364 mt352_write(fe, config, ARRAY_SIZE(config));
365 mt352_write(fe, clock, ARRAY_SIZE(clock));
366 mt352_write(fe, reset, ARRAY_SIZE(reset));
367 mt352_write(fe, adc_ctl, ARRAY_SIZE(adc_ctl));
368 mt352_write(fe, agc, ARRAY_SIZE(agc));
369 mt352_write(fe, sec_agc, ARRAY_SIZE(sec_agc));
370 mt352_write(fe, unk1, ARRAY_SIZE(unk1));
371 mt352_write(fe, unk2, ARRAY_SIZE(unk2));
372
373 deb_rc("Demod init!\n");
374
375 return 0;
376}
377
378static struct mt352_config megasky_mt352_config = {
Aapo Tahkola26247012007-03-05 18:23:19 -0300379 .demod_address = 0x0f,
Michael Krufkye16c1f52007-01-23 15:00:42 -0300380 .no_tuner = 1,
381 .demod_init = megasky_mt352_demod_init,
382};
383
384static int megasky_mt352_frontend_attach(struct dvb_usb_adapter *adap)
385{
Michael Krufkye16c1f52007-01-23 15:00:42 -0300386 deb_rc("megasky_frontend_attach!\n");
387
Michael Krufkye16c1f52007-01-23 15:00:42 -0300388 if ((adap->fe = dvb_attach(mt352_attach, &megasky_mt352_config, &adap->dev->i2c_adap)) == NULL)
389 return -EIO;
390
391 return 0;
392}
393
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300394static struct qt1010_config megasky_qt1010_config = {
Aapo Tahkola26247012007-03-05 18:23:19 -0300395 .i2c_address = 0x62
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300396};
397
Michael Krufkye16c1f52007-01-23 15:00:42 -0300398static int megasky_qt1010_tuner_attach(struct dvb_usb_adapter *adap)
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300399{
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300400 if (dvb_attach(qt1010_attach, adap->fe, &adap->dev->i2c_adap,
401 &megasky_qt1010_config) == NULL)
402 return -ENODEV;
403
404 return 0;
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300405}
406
Michael Krufky26f48ea2006-09-28 01:46:49 -0300407/* DVB USB Driver stuff */
408static struct dvb_usb_device_properties megasky_properties;
409
Michael Krufkyfa948052007-01-21 15:57:48 -0300410static int m920x_probe(struct usb_interface *intf,
411 const struct usb_device_id *id)
Michael Krufky26f48ea2006-09-28 01:46:49 -0300412{
413 struct dvb_usb_device *d;
414 struct usb_host_interface *alt;
415 int ret;
416
Aapo Tahkola480ac762007-03-05 18:54:27 -0300417 deb_rc("Probed!\n");
Michael Krufky26f48ea2006-09-28 01:46:49 -0300418
Aapo Tahkola480ac762007-03-05 18:54:27 -0300419 if ((ret = dvb_usb_device_init(intf, &megasky_properties, THIS_MODULE, &d)) == 0)
420 goto found;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300421
Aapo Tahkola480ac762007-03-05 18:54:27 -0300422 return ret;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300423
Aapo Tahkola480ac762007-03-05 18:54:27 -0300424found:
425 alt = usb_altnum_to_altsetting(intf, 1);
426 if (alt == NULL) {
427 deb_rc("No alt found!\n");
428 return -ENODEV;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300429 }
Aapo Tahkola480ac762007-03-05 18:54:27 -0300430
431 ret = usb_set_interface(d->udev, alt->desc.bInterfaceNumber,
432 alt->desc.bAlternateSetting);
433 if (ret < 0)
434 return ret;
435
436 if ((ret = m9206_init(d)) != 0)
437 return ret;
438
Michael Krufky26f48ea2006-09-28 01:46:49 -0300439 return ret;
440}
441
442static struct usb_device_id m920x_table [] = {
443 { USB_DEVICE(USB_VID_MSI, USB_PID_MSI_MEGASKY580) },
444 { } /* Terminating entry */
445};
446MODULE_DEVICE_TABLE (usb, m920x_table);
447
Michael Krufky01cb34d2006-09-23 20:01:29 -0300448static struct dvb_usb_device_properties megasky_properties = {
Michael Krufky758117c2007-01-23 15:34:10 -0300449 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
Michael Krufky1f61f3b2006-10-07 15:03:04 -0300450
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300451 .usb_ctrl = DEVICE_SPECIFIC,
452 .firmware = "dvb-usb-megasky-02.fw",
453 .download_firmware = m9206_firmware_download,
454
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300455 .rc_interval = 100,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300456 .rc_key_map = megasky_rc_keys,
457 .rc_key_map_size = ARRAY_SIZE(megasky_rc_keys),
458 .rc_query = m9206_rc_query,
459
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300460 .size_of_priv = sizeof(struct m9206_state),
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300461
462 .identify_state = megasky_identify_state,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300463 .num_adapters = 1,
464 .adapter = {{
Michael Krufky758117c2007-01-23 15:34:10 -0300465 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
466 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
467
Michael Krufky01cb34d2006-09-23 20:01:29 -0300468 .pid_filter_count = 8,
469 .pid_filter = m9206_pid_filter,
470 .pid_filter_ctrl = m9206_pid_filter_ctrl,
471
Michael Krufkye16c1f52007-01-23 15:00:42 -0300472 .frontend_attach = megasky_mt352_frontend_attach,
473 .tuner_attach = megasky_qt1010_tuner_attach,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300474
475 .stream = {
476 .type = USB_BULK,
477 .count = 8,
478 .endpoint = 0x81,
479 .u = {
480 .bulk = {
481 .buffersize = 512,
482 }
483 }
484 },
485 }},
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300486 .i2c_algo = &m9206_i2c_algo,
487
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300488 .num_device_descs = 1,
489 .devices = {
490 { "MSI Mega Sky 580 DVB-T USB2.0",
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300491 { &m920x_table[0], NULL },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300492 { NULL },
493 },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300494 }
495};
496
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300497static struct usb_driver m920x_driver = {
498 .name = "dvb_usb_m920x",
Michael Krufky2a2bfa72006-09-23 20:13:12 -0300499 .probe = m920x_probe,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300500 .disconnect = dvb_usb_device_exit,
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300501 .id_table = m920x_table,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300502};
503
504/* module stuff */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300505static int __init m920x_module_init(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300506{
507 int ret;
508
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300509 if ((ret = usb_register(&m920x_driver))) {
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300510 err("usb_register failed. Error number %d", ret);
511 return ret;
512 }
513
514 return 0;
515}
516
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300517static void __exit m920x_module_exit(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300518{
519 /* deregister this driver from the USB subsystem */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300520 usb_deregister(&m920x_driver);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300521}
522
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300523module_init (m920x_module_init);
524module_exit (m920x_module_exit);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300525
526MODULE_AUTHOR("Aapo Tahkola <aet@rasterburn.org>");
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300527MODULE_DESCRIPTION("Driver MSI Mega Sky 580 DVB-T USB2.0 / Uli m920x");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300528MODULE_VERSION("0.1");
529MODULE_LICENSE("GPL");