blob: 585d0e350d4acb38df09d28bd6b0c25859a1d489 [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
70static int m9206_rc_init(struct usb_device *udev)
71{
72 int ret = 0;
73
74 /* Remote controller init. */
75 if ((ret = m9206_write(udev, M9206_CORE, 0xa8, M9206_RC_INIT2)) != 0)
76 return ret;
77
78 if ((ret = m9206_write(udev, M9206_CORE, 0x51, M9206_RC_INIT1)) != 0)
79 return ret;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030080
81 return ret;
82}
83
84static int m9206_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
85{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030086 struct m9206_state *m = d->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030087 int i, ret = 0;
88 u8 rc_state[2];
89
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030090
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030091 if ((ret = m9206_read(d->udev, M9206_CORE, 0x0, M9206_RC_STATE, rc_state, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030092 goto unlock;
93
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030094 if ((ret = m9206_read(d->udev, M9206_CORE, 0x0, M9206_RC_KEY, rc_state + 1, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030095 goto unlock;
96
97 for (i = 0; i < ARRAY_SIZE(megasky_rc_keys); i++)
98 if (megasky_rc_keys[i].data == rc_state[1]) {
99 *event = megasky_rc_keys[i].event;
100
101 switch(rc_state[0]) {
102 case 0x80:
103 *state = REMOTE_NO_KEY_PRESSED;
104 goto unlock;
105
106 case 0x93:
107 case 0x92:
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300108 m->rep_count = 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300109 *state = REMOTE_KEY_PRESSED;
110 goto unlock;
111
112 case 0x91:
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300113 /* For comfort. */
114 if (++m->rep_count > 2)
115 *state = REMOTE_KEY_REPEAT;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300116 goto unlock;
117
118 default:
119 deb_rc("Unexpected rc response %x\n", rc_state[0]);
120 *state = REMOTE_NO_KEY_PRESSED;
121 goto unlock;
122 }
123 }
124
125 if (rc_state[1] != 0)
126 deb_rc("Unknown rc key %x\n", rc_state[1]);
127
128 *state = REMOTE_NO_KEY_PRESSED;
129
130 unlock:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300131
132 return ret;
133}
134
135/* I2C */
Michael Krufkyfa948052007-01-21 15:57:48 -0300136static int m9206_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
137 int num)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300138{
139 struct dvb_usb_device *d = i2c_get_adapdata(adap);
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300140 struct m9206_state *m = d->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300141 int i;
142 int ret = 0;
143
144 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
145 return -EAGAIN;
146
147 if (num > 2)
148 return -EINVAL;
149
150 for (i = 0; i < num; i++) {
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300151 if ((ret = m9206_write(d->udev, M9206_I2C, msg[i].addr, 0x80)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300152 goto unlock;
153
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300154 if ((ret = m9206_write(d->udev, M9206_I2C, msg[i].buf[0], 0x0)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300155 goto unlock;
156
157 if (i + 1 < num && msg[i + 1].flags & I2C_M_RD) {
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300158 int i2c_i;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300159
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300160 for (i2c_i = 0; i2c_i < M9206_I2C_MAX; i2c_i++)
161 if (msg[i].addr == m->i2c_r[i2c_i].addr)
162 break;
163
164 if (i2c_i >= M9206_I2C_MAX) {
165 deb_rc("No magic for i2c addr!\n");
166 ret = -EINVAL;
167 goto unlock;
168 }
169
170 if ((ret = m9206_write(d->udev, M9206_I2C, m->i2c_r[i2c_i].magic, 0x80)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300171 goto unlock;
172
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300173 if ((ret = m9206_read(d->udev, M9206_I2C, 0x0, 0x60, msg[i + 1].buf, msg[i + 1].len)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300174 goto unlock;
175
176 i++;
177 } else {
178 if (msg[i].len != 2)
179 return -EINVAL;
180
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300181 if ((ret = m9206_write(d->udev, M9206_I2C, msg[i].buf[1], 0x40)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300182 goto unlock;
183 }
184 }
185 ret = i;
186 unlock:
187 mutex_unlock(&d->i2c_mutex);
188
189 return ret;
190}
191
192static u32 m9206_i2c_func(struct i2c_adapter *adapter)
193{
194 return I2C_FUNC_I2C;
195}
196
197static struct i2c_algorithm m9206_i2c_algo = {
198 .master_xfer = m9206_i2c_xfer,
199 .functionality = m9206_i2c_func,
200};
201
202/* Callbacks for DVB USB */
Michael Krufky2a2bfa72006-09-23 20:13:12 -0300203static int megasky_identify_state(struct usb_device *udev,
204 struct dvb_usb_device_properties *props,
205 struct dvb_usb_device_description **desc,
206 int *cold)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300207{
208 struct usb_host_interface *alt;
209
210 alt = usb_altnum_to_altsetting(usb_ifnum_to_if(udev, 0), 1);
211 *cold = (alt == NULL) ? 1 : 0;
212
213 return 0;
214}
215
216static int megasky_mt352_demod_init(struct dvb_frontend *fe)
217{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300218 u8 config[] = { CONFIG, 0x3d };
219 u8 clock[] = { CLOCK_CTL, 0x30 };
220 u8 reset[] = { RESET, 0x80 };
221 u8 adc_ctl[] = { ADC_CTL_1, 0x40 };
222 u8 agc[] = { AGC_TARGET, 0x1c, 0x20 };
223 u8 sec_agc[] = { 0x69, 0x00, 0xff, 0xff, 0x40, 0xff, 0x00, 0x40, 0x40 };
224 u8 unk1[] = { 0x93, 0x1a };
225 u8 unk2[] = { 0xb5, 0x7a };
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300226
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300227 mt352_write(fe, config, ARRAY_SIZE(config));
228 mt352_write(fe, clock, ARRAY_SIZE(clock));
229 mt352_write(fe, reset, ARRAY_SIZE(reset));
230 mt352_write(fe, adc_ctl, ARRAY_SIZE(adc_ctl));
231 mt352_write(fe, agc, ARRAY_SIZE(agc));
232 mt352_write(fe, sec_agc, ARRAY_SIZE(sec_agc));
233 mt352_write(fe, unk1, ARRAY_SIZE(unk1));
234 mt352_write(fe, unk2, ARRAY_SIZE(unk2));
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300235
236 deb_rc("Demod init!\n");
237
238 return 0;
239}
240
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300241static struct mt352_config megasky_mt352_config = {
242 .demod_address = 0x1e,
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300243 .no_tuner = 1,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300244 .demod_init = megasky_mt352_demod_init,
245};
246
Michael Krufky01cb34d2006-09-23 20:01:29 -0300247static int megasky_frontend_attach(struct dvb_usb_adapter *adap)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300248{
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300249 struct m9206_state *m = adap->dev->priv;
250
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300251 deb_rc("megasky_frontend_attach!\n");
252
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300253 m->i2c_r[M9206_I2C_DEMOD].addr = megasky_mt352_config.demod_address;
254 m->i2c_r[M9206_I2C_DEMOD].magic = 0x1f;
255
256 if ((adap->fe = dvb_attach(mt352_attach, &megasky_mt352_config, &adap->dev->i2c_adap)) == NULL)
257 return -EIO;
258
259 return 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300260}
261
Michael Krufkyfa948052007-01-21 15:57:48 -0300262static int m9206_set_filter(struct dvb_usb_adapter *adap, int type, int idx,
263 int pid)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300264{
265 int ret = 0;
266
267 if (pid >= 0x8000)
268 return -EINVAL;
269
270 pid |= 0x8000;
271
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300272 if ((ret = m9206_write(adap->dev->udev, M9206_FILTER, pid, (type << 8) | (idx * 4) )) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300273 return ret;
274
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300275 if ((ret = m9206_write(adap->dev->udev, M9206_FILTER, 0, (type << 8) | (idx * 4) )) != 0)
276 return ret;
277
278 return ret;
279}
280
281static int m9206_update_filters(struct dvb_usb_adapter *adap)
282{
283 struct m9206_state *m = adap->dev->priv;
284 int enabled = m->filtering_enabled;
285 int i, ret = 0, filter = 0;
286
287 for (i = 0; i < M9206_MAX_FILTERS; i++)
288 if (m->filters[i] == 8192)
289 enabled = 0;
290
291 /* Disable all filters */
Michael Krufky26f48ea2006-09-28 01:46:49 -0300292 if ((ret = m9206_set_filter(adap, 0x81, 1, enabled)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300293 return ret;
294
295 for (i = 0; i < M9206_MAX_FILTERS; i++)
Michael Krufky26f48ea2006-09-28 01:46:49 -0300296 if ((ret = m9206_set_filter(adap, 0x81, i + 2, 0)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300297 return ret;
298
Michael Krufky26f48ea2006-09-28 01:46:49 -0300299 if ((ret = m9206_set_filter(adap, 0x82, 0, 0x0)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300300 return ret;
301
302 /* Set */
303 if (enabled) {
304 for (i = 0; i < M9206_MAX_FILTERS; i++) {
305 if (m->filters[i] == 0)
306 continue;
307
Michael Krufky26f48ea2006-09-28 01:46:49 -0300308 if ((ret = m9206_set_filter(adap, 0x81, filter + 2, m->filters[i])) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300309 return ret;
310
311 filter++;
312 }
313 }
314
Michael Krufky26f48ea2006-09-28 01:46:49 -0300315 if ((ret = m9206_set_filter(adap, 0x82, 0, 0x02f5)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300316 return ret;
317
318 return ret;
319}
320
Michael Krufky01cb34d2006-09-23 20:01:29 -0300321static int m9206_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300322{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300323 struct m9206_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300324
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300325 m->filtering_enabled = onoff ? 1 : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300326
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300327 return m9206_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300328}
329
Michael Krufkyfa948052007-01-21 15:57:48 -0300330static int m9206_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid,
331 int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300332{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300333 struct m9206_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300334
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300335 m->filters[index] = onoff ? pid : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300336
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300337 return m9206_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300338}
339
Michael Krufkyfa948052007-01-21 15:57:48 -0300340static int m9206_firmware_download(struct usb_device *udev,
341 const struct firmware *fw)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300342{
343 u16 value, index, size;
344 u8 read[4], *buff;
345 int i, pass, ret = 0;
346
347 buff = kmalloc(65536, GFP_KERNEL);
348
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300349 if ((ret = m9206_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300350 goto done;
351 deb_rc("%x %x %x %x\n", read[0], read[1], read[2], read[3]);
352
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300353 if ((ret = m9206_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300354 goto done;
355 deb_rc("%x\n", read[0]);
356
357 for (pass = 0; pass < 2; pass++) {
358 for (i = 0; i + (sizeof(u16) * 3) < fw->size;) {
359 value = le16_to_cpu(*(u16 *)(fw->data + i));
360 i += sizeof(u16);
361
362 index = le16_to_cpu(*(u16 *)(fw->data + i));
363 i += sizeof(u16);
364
365 size = le16_to_cpu(*(u16 *)(fw->data + i));
366 i += sizeof(u16);
367
368 if (pass == 1) {
369 /* Will stall if using fw->data ... */
370 memcpy(buff, fw->data + i, size);
371
372 ret = usb_control_msg(udev, usb_sndctrlpipe(udev,0),
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300373 M9206_FW,
374 USB_TYPE_VENDOR | USB_DIR_OUT,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300375 value, index, buff, size, 20);
376 if (ret != size) {
377 deb_rc("error while uploading fw!\n");
378 ret = -EIO;
379 goto done;
380 }
381 msleep(3);
382 }
383 i += size;
384 }
385 if (i != fw->size) {
386 ret = -EINVAL;
387 goto done;
388 }
389 }
390
391 msleep(36);
392
393 /* m9206 will disconnect itself from the bus after this. */
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300394 (void) m9206_write(udev, M9206_CORE, 0x01, M9206_FW_GO);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300395 deb_rc("firmware uploaded!\n");
396
397 done:
398 kfree(buff);
399
400 return ret;
401}
402
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300403static struct qt1010_config megasky_qt1010_config = {
404 .i2c_address = 0xc4
405};
406
407static int megasky_tuner_attach(struct dvb_usb_adapter *adap)
408{
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300409 struct m9206_state *m = adap->dev->priv;
410
411 m->i2c_r[M9206_I2C_TUNER].addr = megasky_qt1010_config.i2c_address;
412 m->i2c_r[M9206_I2C_TUNER].magic = 0xc5;
413
414 if (dvb_attach(qt1010_attach, adap->fe, &adap->dev->i2c_adap,
415 &megasky_qt1010_config) == NULL)
416 return -ENODEV;
417
418 return 0;
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300419}
420
Michael Krufky26f48ea2006-09-28 01:46:49 -0300421/* DVB USB Driver stuff */
422static struct dvb_usb_device_properties megasky_properties;
423
Michael Krufkyfa948052007-01-21 15:57:48 -0300424static int m920x_probe(struct usb_interface *intf,
425 const struct usb_device_id *id)
Michael Krufky26f48ea2006-09-28 01:46:49 -0300426{
427 struct dvb_usb_device *d;
428 struct usb_host_interface *alt;
429 int ret;
430
431 if ((ret = dvb_usb_device_init(intf, &megasky_properties, THIS_MODULE, &d)) == 0) {
432 deb_rc("probed!\n");
433
434 alt = usb_altnum_to_altsetting(intf, 1);
435 if (alt == NULL) {
436 deb_rc("not alt found!\n");
437 return -ENODEV;
438 }
439
Michael Krufkyfa948052007-01-21 15:57:48 -0300440 ret = usb_set_interface(d->udev, alt->desc.bInterfaceNumber,
441 alt->desc.bAlternateSetting);
Michael Krufky26f48ea2006-09-28 01:46:49 -0300442 if (ret < 0)
443 return ret;
444
445 deb_rc("Changed to alternate setting!\n");
446
447 if ((ret = m9206_rc_init(d->udev)) != 0)
448 return ret;
449 }
450 return ret;
451}
452
453static struct usb_device_id m920x_table [] = {
454 { USB_DEVICE(USB_VID_MSI, USB_PID_MSI_MEGASKY580) },
455 { } /* Terminating entry */
456};
457MODULE_DEVICE_TABLE (usb, m920x_table);
458
Michael Krufky01cb34d2006-09-23 20:01:29 -0300459static struct dvb_usb_device_properties megasky_properties = {
Michael Krufky1f61f3b2006-10-07 15:03:04 -0300460 .caps = DVB_USB_IS_AN_I2C_ADAPTER | DVB_USB_ADAP_HAS_PID_FILTER |
461 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
462
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300463 .usb_ctrl = DEVICE_SPECIFIC,
464 .firmware = "dvb-usb-megasky-02.fw",
465 .download_firmware = m9206_firmware_download,
466
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300467 .rc_interval = 100,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300468 .rc_key_map = megasky_rc_keys,
469 .rc_key_map_size = ARRAY_SIZE(megasky_rc_keys),
470 .rc_query = m9206_rc_query,
471
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300472 .size_of_priv = sizeof(struct m9206_state),
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300473
474 .identify_state = megasky_identify_state,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300475 .num_adapters = 1,
476 .adapter = {{
Michael Krufky01cb34d2006-09-23 20:01:29 -0300477 .pid_filter_count = 8,
478 .pid_filter = m9206_pid_filter,
479 .pid_filter_ctrl = m9206_pid_filter_ctrl,
480
481 .frontend_attach = megasky_frontend_attach,
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300482 .tuner_attach = megasky_tuner_attach,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300483
484 .stream = {
485 .type = USB_BULK,
486 .count = 8,
487 .endpoint = 0x81,
488 .u = {
489 .bulk = {
490 .buffersize = 512,
491 }
492 }
493 },
494 }},
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300495 .i2c_algo = &m9206_i2c_algo,
496
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300497 .num_device_descs = 1,
498 .devices = {
499 { "MSI Mega Sky 580 DVB-T USB2.0",
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300500 { &m920x_table[0], NULL },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300501 { NULL },
502 },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300503 }
504};
505
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300506static struct usb_driver m920x_driver = {
507 .name = "dvb_usb_m920x",
Michael Krufky2a2bfa72006-09-23 20:13:12 -0300508 .probe = m920x_probe,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300509 .disconnect = dvb_usb_device_exit,
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300510 .id_table = m920x_table,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300511};
512
513/* module stuff */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300514static int __init m920x_module_init(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300515{
516 int ret;
517
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300518 if ((ret = usb_register(&m920x_driver))) {
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300519 err("usb_register failed. Error number %d", ret);
520 return ret;
521 }
522
523 return 0;
524}
525
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300526static void __exit m920x_module_exit(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300527{
528 /* deregister this driver from the USB subsystem */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300529 usb_deregister(&m920x_driver);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300530}
531
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300532module_init (m920x_module_init);
533module_exit (m920x_module_exit);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300534
535MODULE_AUTHOR("Aapo Tahkola <aet@rasterburn.org>");
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300536MODULE_DESCRIPTION("Driver MSI Mega Sky 580 DVB-T USB2.0 / Uli m920x");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300537MODULE_VERSION("0.1");
538MODULE_LICENSE("GPL");