blob: fd6583bed335482d822298d208b39bc51b3b6f6f [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);
Pierre Willenbrock59069e52007-03-15 13:24:29 -030050 if (ret < 0) {
51 printk(KERN_INFO "m920x_read = error: %d\n", ret);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030052 return ret;
Pierre Willenbrock59069e52007-03-15 13:24:29 -030053 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030054
Pierre Willenbrock59069e52007-03-15 13:24:29 -030055 if (ret != size) {
56 deb_rc("m920x_read = no data\n");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030057 return -EIO;
Pierre Willenbrock59069e52007-03-15 13:24:29 -030058 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030059
60 return 0;
61}
62
Michael Krufkyfa948052007-01-21 15:57:48 -030063static inline int m9206_write(struct usb_device *udev, u8 request,
64 u16 value, u16 index)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030065{
66 int ret;
67
68 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
69 request, USB_TYPE_VENDOR | USB_DIR_OUT,
70 value, index, NULL, 0, 2000);
Pierre Willenbrock59069e52007-03-15 13:24:29 -030071
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030072 return ret;
73}
74
Aapo Tahkola480ac762007-03-05 18:54:27 -030075static int m9206_init(struct dvb_usb_device *d)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030076{
77 int ret = 0;
78
79 /* Remote controller init. */
Aapo Tahkola480ac762007-03-05 18:54:27 -030080 if (d->props.rc_query) {
81 if ((ret = m9206_write(d->udev, M9206_CORE, 0xa8, M9206_RC_INIT2)) != 0)
82 return ret;
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030083
Aapo Tahkola480ac762007-03-05 18:54:27 -030084 if ((ret = m9206_write(d->udev, M9206_CORE, 0x51, M9206_RC_INIT1)) != 0)
85 return ret;
86 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030087
88 return ret;
89}
90
91static int m9206_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
92{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030093 struct m9206_state *m = d->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030094 int i, ret = 0;
95 u8 rc_state[2];
96
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030097 if ((ret = m9206_read(d->udev, M9206_CORE, 0x0, M9206_RC_STATE, rc_state, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030098 goto unlock;
99
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300100 if ((ret = m9206_read(d->udev, M9206_CORE, 0x0, M9206_RC_KEY, rc_state + 1, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300101 goto unlock;
102
Aapo Tahkola480ac762007-03-05 18:54:27 -0300103 for (i = 0; i < d->props.rc_key_map_size; i++)
104 if (d->props.rc_key_map[i].data == rc_state[1]) {
105 *event = d->props.rc_key_map[i].event;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300106
107 switch(rc_state[0]) {
108 case 0x80:
109 *state = REMOTE_NO_KEY_PRESSED;
110 goto unlock;
111
112 case 0x93:
113 case 0x92:
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300114 m->rep_count = 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300115 *state = REMOTE_KEY_PRESSED;
116 goto unlock;
117
118 case 0x91:
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300119 /* For comfort. */
120 if (++m->rep_count > 2)
121 *state = REMOTE_KEY_REPEAT;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300122 goto unlock;
123
124 default:
125 deb_rc("Unexpected rc response %x\n", rc_state[0]);
126 *state = REMOTE_NO_KEY_PRESSED;
127 goto unlock;
128 }
129 }
130
131 if (rc_state[1] != 0)
132 deb_rc("Unknown rc key %x\n", rc_state[1]);
133
134 *state = REMOTE_NO_KEY_PRESSED;
135
136 unlock:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300137
138 return ret;
139}
140
141/* I2C */
Michael Krufkyfa948052007-01-21 15:57:48 -0300142static int m9206_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
143 int num)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300144{
145 struct dvb_usb_device *d = i2c_get_adapdata(adap);
Aapo Tahkola26247012007-03-05 18:23:19 -0300146 int i, j;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300147 int ret = 0;
148
Trent Piephod40860f2007-03-05 23:55:00 -0300149 if (!num)
150 return -EINVAL;
151
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300152 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
153 return -EAGAIN;
154
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300155 for (i = 0; i < num; i++) {
Trent Piepho57f8dcf2007-03-12 12:13:12 -0300156 if (msg[i].flags & (I2C_M_NO_RD_ACK|I2C_M_IGNORE_NAK|I2C_M_TEN) ||
157 msg[i].len == 0) {
158 /* For a 0 byte message, I think sending the address to index 0x80|0x40
159 * would be the correct thing to do. However, zero byte messages are
160 * only used for probing, and since we don't know how to get the slave's
161 * ack, we can't probe. */
Trent Piephod40860f2007-03-05 23:55:00 -0300162 ret = -ENOTSUPP;
163 goto unlock;
164 }
165 /* Send START & address/RW bit */
166 if (!(msg[i].flags & I2C_M_NOSTART)) {
Trent Piepho57f8dcf2007-03-12 12:13:12 -0300167 if ((ret = m9206_write(d->udev, M9206_I2C, (msg[i].addr<<1)|(msg[i].flags&I2C_M_RD?0x01:0), 0x80)) != 0)
Trent Piephod40860f2007-03-05 23:55:00 -0300168 goto unlock;
169 /* Should check for ack here, if we knew how. */
170 }
Aapo Tahkola26247012007-03-05 18:23:19 -0300171 if (msg[i].flags & I2C_M_RD) {
Trent Piephod40860f2007-03-05 23:55:00 -0300172 for (j = 0; j < msg[i].len; j++) {
173 /* Last byte of transaction? Send STOP, otherwise send ACK. */
174 int stop = (i+1 == num && j+1 == msg[i].len)?0x40:0x01;
175 if ((ret = m9206_read(d->udev, M9206_I2C, 0x0, 0x20|stop, &msg[i].buf[j], 1)) != 0)
176 goto unlock;
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300177 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300178 } else {
Trent Piephod40860f2007-03-05 23:55:00 -0300179 for (j = 0; j < msg[i].len; j++) {
180 /* Last byte of transaction? Then send STOP. */
181 int stop = (i+1 == num && j+1 == msg[i].len)?0x40:0x00;
182 if ((ret = m9206_write(d->udev, M9206_I2C, msg[i].buf[j], stop)) != 0)
183 goto unlock;
184 /* Should check for ack here too. */
Aapo Tahkola26247012007-03-05 18:23:19 -0300185 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300186 }
187 }
Aapo Tahkola26247012007-03-05 18:23:19 -0300188 ret = num;
Trent Piephod40860f2007-03-05 23:55:00 -0300189
190unlock:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300191 mutex_unlock(&d->i2c_mutex);
192
193 return ret;
194}
195
196static u32 m9206_i2c_func(struct i2c_adapter *adapter)
197{
198 return I2C_FUNC_I2C;
199}
200
201static struct i2c_algorithm m9206_i2c_algo = {
202 .master_xfer = m9206_i2c_xfer,
203 .functionality = m9206_i2c_func,
204};
205
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300206
Michael Krufkyfa948052007-01-21 15:57:48 -0300207static int m9206_set_filter(struct dvb_usb_adapter *adap, int type, int idx,
208 int pid)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300209{
210 int ret = 0;
211
212 if (pid >= 0x8000)
213 return -EINVAL;
214
215 pid |= 0x8000;
216
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300217 if ((ret = m9206_write(adap->dev->udev, M9206_FILTER, pid, (type << 8) | (idx * 4) )) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300218 return ret;
219
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300220 if ((ret = m9206_write(adap->dev->udev, M9206_FILTER, 0, (type << 8) | (idx * 4) )) != 0)
221 return ret;
222
223 return ret;
224}
225
226static int m9206_update_filters(struct dvb_usb_adapter *adap)
227{
228 struct m9206_state *m = adap->dev->priv;
229 int enabled = m->filtering_enabled;
230 int i, ret = 0, filter = 0;
231
232 for (i = 0; i < M9206_MAX_FILTERS; i++)
233 if (m->filters[i] == 8192)
234 enabled = 0;
235
236 /* Disable all filters */
Michael Krufky26f48ea2006-09-28 01:46:49 -0300237 if ((ret = m9206_set_filter(adap, 0x81, 1, enabled)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300238 return ret;
239
240 for (i = 0; i < M9206_MAX_FILTERS; i++)
Michael Krufky26f48ea2006-09-28 01:46:49 -0300241 if ((ret = m9206_set_filter(adap, 0x81, i + 2, 0)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300242 return ret;
243
Michael Krufky26f48ea2006-09-28 01:46:49 -0300244 if ((ret = m9206_set_filter(adap, 0x82, 0, 0x0)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300245 return ret;
246
247 /* Set */
248 if (enabled) {
249 for (i = 0; i < M9206_MAX_FILTERS; i++) {
250 if (m->filters[i] == 0)
251 continue;
252
Michael Krufky26f48ea2006-09-28 01:46:49 -0300253 if ((ret = m9206_set_filter(adap, 0x81, filter + 2, m->filters[i])) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300254 return ret;
255
256 filter++;
257 }
258 }
259
Michael Krufky26f48ea2006-09-28 01:46:49 -0300260 if ((ret = m9206_set_filter(adap, 0x82, 0, 0x02f5)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300261 return ret;
262
263 return ret;
264}
265
Michael Krufky01cb34d2006-09-23 20:01:29 -0300266static int m9206_pid_filter_ctrl(struct dvb_usb_adapter *adap, 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->filtering_enabled = onoff ? 1 : 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_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid,
276 int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300277{
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300278 struct m9206_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300279
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300280 m->filters[index] = onoff ? pid : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300281
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300282 return m9206_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300283}
284
Michael Krufkyfa948052007-01-21 15:57:48 -0300285static int m9206_firmware_download(struct usb_device *udev,
286 const struct firmware *fw)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300287{
288 u16 value, index, size;
289 u8 read[4], *buff;
290 int i, pass, ret = 0;
291
292 buff = kmalloc(65536, GFP_KERNEL);
293
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300294 if ((ret = m9206_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300295 goto done;
296 deb_rc("%x %x %x %x\n", read[0], read[1], read[2], read[3]);
297
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300298 if ((ret = m9206_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300299 goto done;
300 deb_rc("%x\n", read[0]);
301
302 for (pass = 0; pass < 2; pass++) {
303 for (i = 0; i + (sizeof(u16) * 3) < fw->size;) {
304 value = le16_to_cpu(*(u16 *)(fw->data + i));
305 i += sizeof(u16);
306
307 index = le16_to_cpu(*(u16 *)(fw->data + i));
308 i += sizeof(u16);
309
310 size = le16_to_cpu(*(u16 *)(fw->data + i));
311 i += sizeof(u16);
312
313 if (pass == 1) {
314 /* Will stall if using fw->data ... */
315 memcpy(buff, fw->data + i, size);
316
317 ret = usb_control_msg(udev, usb_sndctrlpipe(udev,0),
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300318 M9206_FW,
319 USB_TYPE_VENDOR | USB_DIR_OUT,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300320 value, index, buff, size, 20);
321 if (ret != size) {
322 deb_rc("error while uploading fw!\n");
323 ret = -EIO;
324 goto done;
325 }
326 msleep(3);
327 }
328 i += size;
329 }
330 if (i != fw->size) {
Pierre Willenbrock59069e52007-03-15 13:24:29 -0300331 deb_rc("bad firmware file!\n");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300332 ret = -EINVAL;
333 goto done;
334 }
335 }
336
337 msleep(36);
338
339 /* m9206 will disconnect itself from the bus after this. */
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300340 (void) m9206_write(udev, M9206_CORE, 0x01, M9206_FW_GO);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300341 deb_rc("firmware uploaded!\n");
342
343 done:
344 kfree(buff);
345
346 return ret;
347}
348
Michael Krufkye16c1f52007-01-23 15:00:42 -0300349/* Callbacks for DVB USB */
Aapo Tahkola7d1d4e62007-03-15 13:01:46 -0300350static int m920x_identify_state(struct usb_device *udev,
351 struct dvb_usb_device_properties *props,
352 struct dvb_usb_device_description **desc,
353 int *cold)
Michael Krufkye16c1f52007-01-23 15:00:42 -0300354{
355 struct usb_host_interface *alt;
356
357 alt = usb_altnum_to_altsetting(usb_ifnum_to_if(udev, 0), 1);
358 *cold = (alt == NULL) ? 1 : 0;
359
360 return 0;
361}
362
363static int megasky_mt352_demod_init(struct dvb_frontend *fe)
364{
365 u8 config[] = { CONFIG, 0x3d };
366 u8 clock[] = { CLOCK_CTL, 0x30 };
367 u8 reset[] = { RESET, 0x80 };
368 u8 adc_ctl[] = { ADC_CTL_1, 0x40 };
369 u8 agc[] = { AGC_TARGET, 0x1c, 0x20 };
370 u8 sec_agc[] = { 0x69, 0x00, 0xff, 0xff, 0x40, 0xff, 0x00, 0x40, 0x40 };
371 u8 unk1[] = { 0x93, 0x1a };
372 u8 unk2[] = { 0xb5, 0x7a };
373
374 mt352_write(fe, config, ARRAY_SIZE(config));
375 mt352_write(fe, clock, ARRAY_SIZE(clock));
376 mt352_write(fe, reset, ARRAY_SIZE(reset));
377 mt352_write(fe, adc_ctl, ARRAY_SIZE(adc_ctl));
378 mt352_write(fe, agc, ARRAY_SIZE(agc));
379 mt352_write(fe, sec_agc, ARRAY_SIZE(sec_agc));
380 mt352_write(fe, unk1, ARRAY_SIZE(unk1));
381 mt352_write(fe, unk2, ARRAY_SIZE(unk2));
382
383 deb_rc("Demod init!\n");
384
385 return 0;
386}
387
388static struct mt352_config megasky_mt352_config = {
Aapo Tahkola26247012007-03-05 18:23:19 -0300389 .demod_address = 0x0f,
Michael Krufkye16c1f52007-01-23 15:00:42 -0300390 .no_tuner = 1,
391 .demod_init = megasky_mt352_demod_init,
392};
393
394static int megasky_mt352_frontend_attach(struct dvb_usb_adapter *adap)
395{
Michael Krufkye16c1f52007-01-23 15:00:42 -0300396 deb_rc("megasky_frontend_attach!\n");
397
Michael Krufkye16c1f52007-01-23 15:00:42 -0300398 if ((adap->fe = dvb_attach(mt352_attach, &megasky_mt352_config, &adap->dev->i2c_adap)) == NULL)
399 return -EIO;
400
401 return 0;
402}
403
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300404static struct qt1010_config megasky_qt1010_config = {
Aapo Tahkola26247012007-03-05 18:23:19 -0300405 .i2c_address = 0x62
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300406};
407
Michael Krufkye16c1f52007-01-23 15:00:42 -0300408static int megasky_qt1010_tuner_attach(struct dvb_usb_adapter *adap)
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300409{
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300410 if (dvb_attach(qt1010_attach, adap->fe, &adap->dev->i2c_adap,
411 &megasky_qt1010_config) == NULL)
412 return -ENODEV;
413
414 return 0;
Antti Palosaaricbdc80e2007-01-21 15:56:10 -0300415}
416
Michael Krufky26f48ea2006-09-28 01:46:49 -0300417/* DVB USB Driver stuff */
418static struct dvb_usb_device_properties megasky_properties;
419
Michael Krufkyfa948052007-01-21 15:57:48 -0300420static int m920x_probe(struct usb_interface *intf,
421 const struct usb_device_id *id)
Michael Krufky26f48ea2006-09-28 01:46:49 -0300422{
423 struct dvb_usb_device *d;
424 struct usb_host_interface *alt;
425 int ret;
426
Aapo Tahkola480ac762007-03-05 18:54:27 -0300427 deb_rc("Probed!\n");
Michael Krufky26f48ea2006-09-28 01:46:49 -0300428
Aapo Tahkola480ac762007-03-05 18:54:27 -0300429 if ((ret = dvb_usb_device_init(intf, &megasky_properties, THIS_MODULE, &d)) == 0)
430 goto found;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300431
Aapo Tahkola480ac762007-03-05 18:54:27 -0300432 return ret;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300433
Aapo Tahkola480ac762007-03-05 18:54:27 -0300434found:
435 alt = usb_altnum_to_altsetting(intf, 1);
436 if (alt == NULL) {
437 deb_rc("No alt found!\n");
438 return -ENODEV;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300439 }
Aapo Tahkola480ac762007-03-05 18:54:27 -0300440
441 ret = usb_set_interface(d->udev, alt->desc.bInterfaceNumber,
442 alt->desc.bAlternateSetting);
443 if (ret < 0)
444 return ret;
445
446 if ((ret = m9206_init(d)) != 0)
447 return ret;
448
Michael Krufky26f48ea2006-09-28 01:46:49 -0300449 return ret;
450}
451
452static struct usb_device_id m920x_table [] = {
453 { USB_DEVICE(USB_VID_MSI, USB_PID_MSI_MEGASKY580) },
454 { } /* Terminating entry */
455};
456MODULE_DEVICE_TABLE (usb, m920x_table);
457
Michael Krufky01cb34d2006-09-23 20:01:29 -0300458static struct dvb_usb_device_properties megasky_properties = {
Michael Krufky758117c2007-01-23 15:34:10 -0300459 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
Michael Krufky1f61f3b2006-10-07 15:03:04 -0300460
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300461 .usb_ctrl = DEVICE_SPECIFIC,
462 .firmware = "dvb-usb-megasky-02.fw",
463 .download_firmware = m9206_firmware_download,
464
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300465 .rc_interval = 100,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300466 .rc_key_map = megasky_rc_keys,
467 .rc_key_map_size = ARRAY_SIZE(megasky_rc_keys),
468 .rc_query = m9206_rc_query,
469
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300470 .size_of_priv = sizeof(struct m9206_state),
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300471
Aapo Tahkola7d1d4e62007-03-15 13:01:46 -0300472 .identify_state = m920x_identify_state,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300473 .num_adapters = 1,
474 .adapter = {{
Michael Krufky758117c2007-01-23 15:34:10 -0300475 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
476 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
477
Michael Krufky01cb34d2006-09-23 20:01:29 -0300478 .pid_filter_count = 8,
479 .pid_filter = m9206_pid_filter,
480 .pid_filter_ctrl = m9206_pid_filter_ctrl,
481
Michael Krufkye16c1f52007-01-23 15:00:42 -0300482 .frontend_attach = megasky_mt352_frontend_attach,
483 .tuner_attach = megasky_qt1010_tuner_attach,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300484
485 .stream = {
486 .type = USB_BULK,
487 .count = 8,
488 .endpoint = 0x81,
489 .u = {
490 .bulk = {
491 .buffersize = 512,
492 }
493 }
494 },
495 }},
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300496 .i2c_algo = &m9206_i2c_algo,
497
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300498 .num_device_descs = 1,
499 .devices = {
500 { "MSI Mega Sky 580 DVB-T USB2.0",
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300501 { &m920x_table[0], NULL },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300502 { NULL },
503 },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300504 }
505};
506
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300507static struct usb_driver m920x_driver = {
508 .name = "dvb_usb_m920x",
Michael Krufky2a2bfa72006-09-23 20:13:12 -0300509 .probe = m920x_probe,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300510 .disconnect = dvb_usb_device_exit,
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300511 .id_table = m920x_table,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300512};
513
514/* module stuff */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300515static int __init m920x_module_init(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300516{
517 int ret;
518
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300519 if ((ret = usb_register(&m920x_driver))) {
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300520 err("usb_register failed. Error number %d", ret);
521 return ret;
522 }
523
524 return 0;
525}
526
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300527static void __exit m920x_module_exit(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300528{
529 /* deregister this driver from the USB subsystem */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300530 usb_deregister(&m920x_driver);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300531}
532
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300533module_init (m920x_module_init);
534module_exit (m920x_module_exit);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300535
536MODULE_AUTHOR("Aapo Tahkola <aet@rasterburn.org>");
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300537MODULE_DESCRIPTION("Driver MSI Mega Sky 580 DVB-T USB2.0 / Uli m920x");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300538MODULE_VERSION("0.1");
539MODULE_LICENSE("GPL");