blob: 08469ccabb72a85d8fb2e373c06c54033ffbf215 [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 Tahkolae2adbecf72006-09-28 00:47:51 -030092 if ((ret = m9206_read(d->udev, M9206_CORE, 0x0, M9206_RC_STATE, rc_state, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030093 goto unlock;
94
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030095 if ((ret = m9206_read(d->udev, M9206_CORE, 0x0, M9206_RC_KEY, rc_state + 1, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030096 goto unlock;
97
Aapo Tahkola480ac762007-03-05 18:54:27 -030098 for (i = 0; i < d->props.rc_key_map_size; i++)
99 if (d->props.rc_key_map[i].data == rc_state[1]) {
100 *event = d->props.rc_key_map[i].event;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300101
102 switch(rc_state[0]) {
103 case 0x80:
104 *state = REMOTE_NO_KEY_PRESSED;
105 goto unlock;
106
107 case 0x93:
108 case 0x92:
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300109 m->rep_count = 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300110 *state = REMOTE_KEY_PRESSED;
111 goto unlock;
112
113 case 0x91:
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300114 /* For comfort. */
115 if (++m->rep_count > 2)
116 *state = REMOTE_KEY_REPEAT;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300117 goto unlock;
118
119 default:
120 deb_rc("Unexpected rc response %x\n", rc_state[0]);
121 *state = REMOTE_NO_KEY_PRESSED;
122 goto unlock;
123 }
124 }
125
126 if (rc_state[1] != 0)
127 deb_rc("Unknown rc key %x\n", rc_state[1]);
128
129 *state = REMOTE_NO_KEY_PRESSED;
130
131 unlock:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300132
133 return ret;
134}
135
136/* I2C */
Michael Krufkyfa948052007-01-21 15:57:48 -0300137static int m9206_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
138 int num)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300139{
140 struct dvb_usb_device *d = i2c_get_adapdata(adap);
Aapo Tahkola26247012007-03-05 18:23:19 -0300141 int i, j;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300142 int ret = 0;
143
Trent Piephod40860f2007-03-05 23:55:00 -0300144 if (!num)
145 return -EINVAL;
146
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300147 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
148 return -EAGAIN;
149
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300150 for (i = 0; i < num; i++) {
Trent Piephod40860f2007-03-05 23:55:00 -0300151 if (msg[i].flags & (I2C_M_NO_RD_ACK|I2C_M_IGNORE_NAK|I2C_M_TEN)) {
152 ret = -ENOTSUPP;
153 goto unlock;
154 }
155 /* Send START & address/RW bit */
156 if (!(msg[i].flags & I2C_M_NOSTART)) {
157 if ((ret = m9206_write(d->udev, M9206_I2C, (msg[i].addr<<1)|(msg[i].flags&I2C_M_RD?0x01:00), 0x80)) != 0)
158 goto unlock;
159 /* Should check for ack here, if we knew how. */
160 }
Aapo Tahkola26247012007-03-05 18:23:19 -0300161 if (msg[i].flags & I2C_M_RD) {
Trent Piephod40860f2007-03-05 23:55:00 -0300162 for (j = 0; j < msg[i].len; j++) {
163 /* Last byte of transaction? Send STOP, otherwise send ACK. */
164 int stop = (i+1 == num && j+1 == msg[i].len)?0x40:0x01;
165 if ((ret = m9206_read(d->udev, M9206_I2C, 0x0, 0x20|stop, &msg[i].buf[j], 1)) != 0)
166 goto unlock;
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300167 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300168 } else {
Trent Piephod40860f2007-03-05 23:55:00 -0300169 for (j = 0; j < msg[i].len; j++) {
170 /* Last byte of transaction? Then send STOP. */
171 int stop = (i+1 == num && j+1 == msg[i].len)?0x40:0x00;
172 if ((ret = m9206_write(d->udev, M9206_I2C, msg[i].buf[j], stop)) != 0)
173 goto unlock;
174 /* Should check for ack here too. */
Aapo Tahkola26247012007-03-05 18:23:19 -0300175 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300176 }
177 }
Aapo Tahkola26247012007-03-05 18:23:19 -0300178 ret = num;
Trent Piephod40860f2007-03-05 23:55:00 -0300179
180unlock:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300181 mutex_unlock(&d->i2c_mutex);
182
183 return ret;
184}
185
186static u32 m9206_i2c_func(struct i2c_adapter *adapter)
187{
188 return I2C_FUNC_I2C;
189}
190
191static struct i2c_algorithm m9206_i2c_algo = {
192 .master_xfer = m9206_i2c_xfer,
193 .functionality = m9206_i2c_func,
194};
195
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300196
Michael Krufkyfa948052007-01-21 15:57:48 -0300197static int m9206_set_filter(struct dvb_usb_adapter *adap, int type, int idx,
198 int pid)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300199{
200 int ret = 0;
201
202 if (pid >= 0x8000)
203 return -EINVAL;
204
205 pid |= 0x8000;
206
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300207 if ((ret = m9206_write(adap->dev->udev, M9206_FILTER, pid, (type << 8) | (idx * 4) )) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300208 return ret;
209
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300210 if ((ret = m9206_write(adap->dev->udev, M9206_FILTER, 0, (type << 8) | (idx * 4) )) != 0)
211 return ret;
212
213 return ret;
214}
215
216static int m9206_update_filters(struct dvb_usb_adapter *adap)
217{
218 struct m9206_state *m = adap->dev->priv;
219 int enabled = m->filtering_enabled;
220 int i, ret = 0, filter = 0;
221
222 for (i = 0; i < M9206_MAX_FILTERS; i++)
223 if (m->filters[i] == 8192)
224 enabled = 0;
225
226 /* Disable all filters */
Michael Krufky26f48ea2006-09-28 01:46:49 -0300227 if ((ret = m9206_set_filter(adap, 0x81, 1, enabled)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300228 return ret;
229
230 for (i = 0; i < M9206_MAX_FILTERS; i++)
Michael Krufky26f48ea2006-09-28 01:46:49 -0300231 if ((ret = m9206_set_filter(adap, 0x81, i + 2, 0)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300232 return ret;
233
Michael Krufky26f48ea2006-09-28 01:46:49 -0300234 if ((ret = m9206_set_filter(adap, 0x82, 0, 0x0)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300235 return ret;
236
237 /* Set */
238 if (enabled) {
239 for (i = 0; i < M9206_MAX_FILTERS; i++) {
240 if (m->filters[i] == 0)
241 continue;
242
Michael Krufky26f48ea2006-09-28 01:46:49 -0300243 if ((ret = m9206_set_filter(adap, 0x81, filter + 2, m->filters[i])) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300244 return ret;
245
246 filter++;
247 }
248 }
249
Michael Krufky26f48ea2006-09-28 01:46:49 -0300250 if ((ret = m9206_set_filter(adap, 0x82, 0, 0x02f5)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300251 return ret;
252
253 return ret;
254}
255
Michael Krufky01cb34d2006-09-23 20:01:29 -0300256static int m9206_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300257{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300258 struct m9206_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300259
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300260 m->filtering_enabled = onoff ? 1 : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300261
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300262 return m9206_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300263}
264
Michael Krufkyfa948052007-01-21 15:57:48 -0300265static int m9206_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid,
266 int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300267{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300268 struct m9206_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300269
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300270 m->filters[index] = onoff ? pid : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300271
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300272 return m9206_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300273}
274
Michael Krufkyfa948052007-01-21 15:57:48 -0300275static int m9206_firmware_download(struct usb_device *udev,
276 const struct firmware *fw)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300277{
278 u16 value, index, size;
279 u8 read[4], *buff;
280 int i, pass, ret = 0;
281
282 buff = kmalloc(65536, GFP_KERNEL);
283
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300284 if ((ret = m9206_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300285 goto done;
286 deb_rc("%x %x %x %x\n", read[0], read[1], read[2], read[3]);
287
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300288 if ((ret = m9206_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300289 goto done;
290 deb_rc("%x\n", read[0]);
291
292 for (pass = 0; pass < 2; pass++) {
293 for (i = 0; i + (sizeof(u16) * 3) < fw->size;) {
294 value = le16_to_cpu(*(u16 *)(fw->data + i));
295 i += sizeof(u16);
296
297 index = le16_to_cpu(*(u16 *)(fw->data + i));
298 i += sizeof(u16);
299
300 size = le16_to_cpu(*(u16 *)(fw->data + i));
301 i += sizeof(u16);
302
303 if (pass == 1) {
304 /* Will stall if using fw->data ... */
305 memcpy(buff, fw->data + i, size);
306
307 ret = usb_control_msg(udev, usb_sndctrlpipe(udev,0),
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300308 M9206_FW,
309 USB_TYPE_VENDOR | USB_DIR_OUT,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300310 value, index, buff, size, 20);
311 if (ret != size) {
312 deb_rc("error while uploading fw!\n");
313 ret = -EIO;
314 goto done;
315 }
316 msleep(3);
317 }
318 i += size;
319 }
320 if (i != fw->size) {
321 ret = -EINVAL;
322 goto done;
323 }
324 }
325
326 msleep(36);
327
328 /* m9206 will disconnect itself from the bus after this. */
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300329 (void) m9206_write(udev, M9206_CORE, 0x01, M9206_FW_GO);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300330 deb_rc("firmware uploaded!\n");
331
332 done:
333 kfree(buff);
334
335 return ret;
336}
337
Michael Krufkye16c1f52007-01-23 15:00:42 -0300338/* Callbacks for DVB USB */
339static int megasky_identify_state(struct usb_device *udev,
340 struct dvb_usb_device_properties *props,
341 struct dvb_usb_device_description **desc,
342 int *cold)
343{
344 struct usb_host_interface *alt;
345
346 alt = usb_altnum_to_altsetting(usb_ifnum_to_if(udev, 0), 1);
347 *cold = (alt == NULL) ? 1 : 0;
348
349 return 0;
350}
351
352static int megasky_mt352_demod_init(struct dvb_frontend *fe)
353{
354 u8 config[] = { CONFIG, 0x3d };
355 u8 clock[] = { CLOCK_CTL, 0x30 };
356 u8 reset[] = { RESET, 0x80 };
357 u8 adc_ctl[] = { ADC_CTL_1, 0x40 };
358 u8 agc[] = { AGC_TARGET, 0x1c, 0x20 };
359 u8 sec_agc[] = { 0x69, 0x00, 0xff, 0xff, 0x40, 0xff, 0x00, 0x40, 0x40 };
360 u8 unk1[] = { 0x93, 0x1a };
361 u8 unk2[] = { 0xb5, 0x7a };
362
363 mt352_write(fe, config, ARRAY_SIZE(config));
364 mt352_write(fe, clock, ARRAY_SIZE(clock));
365 mt352_write(fe, reset, ARRAY_SIZE(reset));
366 mt352_write(fe, adc_ctl, ARRAY_SIZE(adc_ctl));
367 mt352_write(fe, agc, ARRAY_SIZE(agc));
368 mt352_write(fe, sec_agc, ARRAY_SIZE(sec_agc));
369 mt352_write(fe, unk1, ARRAY_SIZE(unk1));
370 mt352_write(fe, unk2, ARRAY_SIZE(unk2));
371
372 deb_rc("Demod init!\n");
373
374 return 0;
375}
376
377static struct mt352_config megasky_mt352_config = {
Aapo Tahkola26247012007-03-05 18:23:19 -0300378 .demod_address = 0x0f,
Michael Krufkye16c1f52007-01-23 15:00:42 -0300379 .no_tuner = 1,
380 .demod_init = megasky_mt352_demod_init,
381};
382
383static int megasky_mt352_frontend_attach(struct dvb_usb_adapter *adap)
384{
Michael Krufkye16c1f52007-01-23 15:00:42 -0300385 deb_rc("megasky_frontend_attach!\n");
386
Michael Krufkye16c1f52007-01-23 15:00:42 -0300387 if ((adap->fe = dvb_attach(mt352_attach, &megasky_mt352_config, &adap->dev->i2c_adap)) == NULL)
388 return -EIO;
389
390 return 0;
391}
392
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300393static struct qt1010_config megasky_qt1010_config = {
Aapo Tahkola26247012007-03-05 18:23:19 -0300394 .i2c_address = 0x62
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300395};
396
Michael Krufkye16c1f52007-01-23 15:00:42 -0300397static int megasky_qt1010_tuner_attach(struct dvb_usb_adapter *adap)
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300398{
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300399 if (dvb_attach(qt1010_attach, adap->fe, &adap->dev->i2c_adap,
400 &megasky_qt1010_config) == NULL)
401 return -ENODEV;
402
403 return 0;
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300404}
405
Michael Krufky26f48ea2006-09-28 01:46:49 -0300406/* DVB USB Driver stuff */
407static struct dvb_usb_device_properties megasky_properties;
408
Michael Krufkyfa948052007-01-21 15:57:48 -0300409static int m920x_probe(struct usb_interface *intf,
410 const struct usb_device_id *id)
Michael Krufky26f48ea2006-09-28 01:46:49 -0300411{
412 struct dvb_usb_device *d;
413 struct usb_host_interface *alt;
414 int ret;
415
Aapo Tahkola480ac762007-03-05 18:54:27 -0300416 deb_rc("Probed!\n");
Michael Krufky26f48ea2006-09-28 01:46:49 -0300417
Aapo Tahkola480ac762007-03-05 18:54:27 -0300418 if ((ret = dvb_usb_device_init(intf, &megasky_properties, THIS_MODULE, &d)) == 0)
419 goto found;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300420
Aapo Tahkola480ac762007-03-05 18:54:27 -0300421 return ret;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300422
Aapo Tahkola480ac762007-03-05 18:54:27 -0300423found:
424 alt = usb_altnum_to_altsetting(intf, 1);
425 if (alt == NULL) {
426 deb_rc("No alt found!\n");
427 return -ENODEV;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300428 }
Aapo Tahkola480ac762007-03-05 18:54:27 -0300429
430 ret = usb_set_interface(d->udev, alt->desc.bInterfaceNumber,
431 alt->desc.bAlternateSetting);
432 if (ret < 0)
433 return ret;
434
435 if ((ret = m9206_init(d)) != 0)
436 return ret;
437
Michael Krufky26f48ea2006-09-28 01:46:49 -0300438 return ret;
439}
440
441static struct usb_device_id m920x_table [] = {
442 { USB_DEVICE(USB_VID_MSI, USB_PID_MSI_MEGASKY580) },
443 { } /* Terminating entry */
444};
445MODULE_DEVICE_TABLE (usb, m920x_table);
446
Michael Krufky01cb34d2006-09-23 20:01:29 -0300447static struct dvb_usb_device_properties megasky_properties = {
Michael Krufky758117c2007-01-23 15:34:10 -0300448 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
Michael Krufky1f61f3b2006-10-07 15:03:04 -0300449
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300450 .usb_ctrl = DEVICE_SPECIFIC,
451 .firmware = "dvb-usb-megasky-02.fw",
452 .download_firmware = m9206_firmware_download,
453
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300454 .rc_interval = 100,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300455 .rc_key_map = megasky_rc_keys,
456 .rc_key_map_size = ARRAY_SIZE(megasky_rc_keys),
457 .rc_query = m9206_rc_query,
458
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300459 .size_of_priv = sizeof(struct m9206_state),
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300460
461 .identify_state = megasky_identify_state,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300462 .num_adapters = 1,
463 .adapter = {{
Michael Krufky758117c2007-01-23 15:34:10 -0300464 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
465 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
466
Michael Krufky01cb34d2006-09-23 20:01:29 -0300467 .pid_filter_count = 8,
468 .pid_filter = m9206_pid_filter,
469 .pid_filter_ctrl = m9206_pid_filter_ctrl,
470
Michael Krufkye16c1f52007-01-23 15:00:42 -0300471 .frontend_attach = megasky_mt352_frontend_attach,
472 .tuner_attach = megasky_qt1010_tuner_attach,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300473
474 .stream = {
475 .type = USB_BULK,
476 .count = 8,
477 .endpoint = 0x81,
478 .u = {
479 .bulk = {
480 .buffersize = 512,
481 }
482 }
483 },
484 }},
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300485 .i2c_algo = &m9206_i2c_algo,
486
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300487 .num_device_descs = 1,
488 .devices = {
489 { "MSI Mega Sky 580 DVB-T USB2.0",
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300490 { &m920x_table[0], NULL },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300491 { NULL },
492 },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300493 }
494};
495
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300496static struct usb_driver m920x_driver = {
497 .name = "dvb_usb_m920x",
Michael Krufky2a2bfa72006-09-23 20:13:12 -0300498 .probe = m920x_probe,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300499 .disconnect = dvb_usb_device_exit,
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300500 .id_table = m920x_table,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300501};
502
503/* module stuff */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300504static int __init m920x_module_init(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300505{
506 int ret;
507
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300508 if ((ret = usb_register(&m920x_driver))) {
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300509 err("usb_register failed. Error number %d", ret);
510 return ret;
511 }
512
513 return 0;
514}
515
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300516static void __exit m920x_module_exit(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300517{
518 /* deregister this driver from the USB subsystem */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300519 usb_deregister(&m920x_driver);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300520}
521
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300522module_init (m920x_module_init);
523module_exit (m920x_module_exit);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300524
525MODULE_AUTHOR("Aapo Tahkola <aet@rasterburn.org>");
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300526MODULE_DESCRIPTION("Driver MSI Mega Sky 580 DVB-T USB2.0 / Uli m920x");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300527MODULE_VERSION("0.1");
528MODULE_LICENSE("GPL");