blob: 54626a0dbf68da45274c92fd3f78a18ff48b6857 [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
Michael Krufkyd3911ea2007-03-22 19:03:37 -03006 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation, version 2.
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -03008 *
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"
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -030017#include "tda1004x.h"
18#include "tda827x.h"
Al Virofa9c13a2008-05-21 00:32:41 -030019#include <asm/unaligned.h>
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030020
21/* debug */
Michael Krufky26f48ea2006-09-28 01:46:49 -030022static int dvb_usb_m920x_debug;
Michael Krufkybaa2ed02006-09-23 20:01:29 -030023module_param_named(debug,dvb_usb_m920x_debug, int, 0644);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030024MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
25
Janne Grunau78e92002008-04-09 19:13:13 -030026DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
27
Aapo Tahkola47f8df02007-05-08 12:03:55 -030028static int m920x_set_filter(struct dvb_usb_device *d, int type, int idx, int pid);
29
Aapo Tahkola4fd74a72007-03-26 17:05:59 -030030static inline int m920x_read(struct usb_device *udev, u8 request, u16 value,
Michael Krufkyfa948052007-01-21 15:57:48 -030031 u16 index, void *data, int size)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030032{
33 int ret;
34
35 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
36 request, USB_TYPE_VENDOR | USB_DIR_IN,
37 value, index, data, size, 2000);
Pierre Willenbrock59069e52007-03-15 13:24:29 -030038 if (ret < 0) {
39 printk(KERN_INFO "m920x_read = error: %d\n", ret);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030040 return ret;
Pierre Willenbrock59069e52007-03-15 13:24:29 -030041 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030042
Pierre Willenbrock59069e52007-03-15 13:24:29 -030043 if (ret != size) {
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -030044 deb("m920x_read = no data\n");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030045 return -EIO;
Pierre Willenbrock59069e52007-03-15 13:24:29 -030046 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030047
48 return 0;
49}
50
Aapo Tahkola4fd74a72007-03-26 17:05:59 -030051static inline int m920x_write(struct usb_device *udev, u8 request,
Michael Krufkyfa948052007-01-21 15:57:48 -030052 u16 value, u16 index)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030053{
54 int ret;
55
56 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
57 request, USB_TYPE_VENDOR | USB_DIR_OUT,
58 value, index, NULL, 0, 2000);
Pierre Willenbrock59069e52007-03-15 13:24:29 -030059
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030060 return ret;
61}
62
Aapo Tahkola4fd74a72007-03-26 17:05:59 -030063static int m920x_init(struct dvb_usb_device *d, struct m920x_inits *rc_seq)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030064{
Aapo Tahkola3847b222007-05-08 18:21:47 -030065 int ret = 0, i, epi, flags = 0;
Aapo Tahkola47f8df02007-05-08 12:03:55 -030066 int adap_enabled[M9206_MAX_ADAPTERS] = { 0 };
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030067
68 /* Remote controller init. */
Aapo Tahkola480ac762007-03-05 18:54:27 -030069 if (d->props.rc_query) {
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -030070 deb("Initialising remote control\n");
Nick Andrewaa50ec22007-03-22 17:09:35 -030071 while (rc_seq->address) {
Aapo Tahkola4fd74a72007-03-26 17:05:59 -030072 if ((ret = m920x_write(d->udev, M9206_CORE,
Michael Krufkyd3911ea2007-03-22 19:03:37 -030073 rc_seq->data,
74 rc_seq->address)) != 0) {
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -030075 deb("Initialising remote control failed\n");
Nick Andrewaa50ec22007-03-22 17:09:35 -030076 return ret;
77 }
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030078
Nick Andrewaa50ec22007-03-22 17:09:35 -030079 rc_seq++;
80 }
81
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -030082 deb("Initialising remote control success\n");
Aapo Tahkola480ac762007-03-05 18:54:27 -030083 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030084
Aapo Tahkola3847b222007-05-08 18:21:47 -030085 for (i = 0; i < d->props.num_adapters; i++)
86 flags |= d->adapter[i].props.caps;
Aapo Tahkola47f8df02007-05-08 12:03:55 -030087
Aapo Tahkola3847b222007-05-08 18:21:47 -030088 /* Some devices(Dposh) might crash if we attempt touch at all. */
89 if (flags & DVB_USB_ADAP_HAS_PID_FILTER) {
90 for (i = 0; i < d->props.num_adapters; i++) {
91 epi = d->adapter[i].props.stream.endpoint - 0x81;
92
93 if (epi < 0 || epi >= M9206_MAX_ADAPTERS) {
94 printk(KERN_INFO "m920x: Unexpected adapter endpoint!\n");
95 return -EINVAL;
96 }
97
98 adap_enabled[epi] = 1;
Aapo Tahkola47f8df02007-05-08 12:03:55 -030099 }
100
Aapo Tahkola3847b222007-05-08 18:21:47 -0300101 for (i = 0; i < M9206_MAX_ADAPTERS; i++) {
102 if (adap_enabled[i])
103 continue;
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300104
Aapo Tahkola3847b222007-05-08 18:21:47 -0300105 if ((ret = m920x_set_filter(d, 0x81 + i, 0, 0x0)) != 0)
106 return ret;
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300107
Aapo Tahkola3847b222007-05-08 18:21:47 -0300108 if ((ret = m920x_set_filter(d, 0x81 + i, 0, 0x02f5)) != 0)
109 return ret;
110 }
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300111 }
112
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300113 return ret;
114}
115
Aapo Tahkola55bbe5e2007-05-08 12:56:54 -0300116static int m920x_init_ep(struct usb_interface *intf)
117{
118 struct usb_device *udev = interface_to_usbdev(intf);
119 struct usb_host_interface *alt;
120
121 if ((alt = usb_altnum_to_altsetting(intf, 1)) == NULL) {
122 deb("No alt found!\n");
123 return -ENODEV;
124 }
125
126 return usb_set_interface(udev, alt->desc.bInterfaceNumber,
127 alt->desc.bAlternateSetting);
128}
129
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300130static int m920x_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300131{
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300132 struct m920x_state *m = d->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300133 int i, ret = 0;
134 u8 rc_state[2];
135
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300136 if ((ret = m920x_read(d->udev, M9206_CORE, 0x0, M9206_RC_STATE, rc_state, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300137 goto unlock;
138
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300139 if ((ret = m920x_read(d->udev, M9206_CORE, 0x0, M9206_RC_KEY, rc_state + 1, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300140 goto unlock;
141
Aapo Tahkola480ac762007-03-05 18:54:27 -0300142 for (i = 0; i < d->props.rc_key_map_size; i++)
143 if (d->props.rc_key_map[i].data == rc_state[1]) {
144 *event = d->props.rc_key_map[i].event;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300145
146 switch(rc_state[0]) {
147 case 0x80:
148 *state = REMOTE_NO_KEY_PRESSED;
149 goto unlock;
150
Nick Andrewaa50ec22007-03-22 17:09:35 -0300151 case 0x88: /* framing error or "invalid code" */
152 case 0x99:
153 case 0xc0:
154 case 0xd8:
155 *state = REMOTE_NO_KEY_PRESSED;
156 m->rep_count = 0;
157 goto unlock;
158
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300159 case 0x93:
160 case 0x92:
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300161 m->rep_count = 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300162 *state = REMOTE_KEY_PRESSED;
163 goto unlock;
164
165 case 0x91:
Nick Andrewaa50ec22007-03-22 17:09:35 -0300166 /* prevent immediate auto-repeat */
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300167 if (++m->rep_count > 2)
168 *state = REMOTE_KEY_REPEAT;
Nick Andrewaa50ec22007-03-22 17:09:35 -0300169 else
170 *state = REMOTE_NO_KEY_PRESSED;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300171 goto unlock;
172
173 default:
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -0300174 deb("Unexpected rc state %02x\n", rc_state[0]);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300175 *state = REMOTE_NO_KEY_PRESSED;
176 goto unlock;
177 }
178 }
179
180 if (rc_state[1] != 0)
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -0300181 deb("Unknown rc key %02x\n", rc_state[1]);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300182
183 *state = REMOTE_NO_KEY_PRESSED;
184
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300185 unlock:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300186
187 return ret;
188}
189
190/* I2C */
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300191static int m920x_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], int num)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300192{
193 struct dvb_usb_device *d = i2c_get_adapdata(adap);
Aapo Tahkola26247012007-03-05 18:23:19 -0300194 int i, j;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300195 int ret = 0;
196
Trent Piephod40860f2007-03-05 23:55:00 -0300197 if (!num)
198 return -EINVAL;
199
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300200 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
201 return -EAGAIN;
202
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300203 for (i = 0; i < num; i++) {
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300204 if (msg[i].flags & (I2C_M_NO_RD_ACK | I2C_M_IGNORE_NAK | I2C_M_TEN) || msg[i].len == 0) {
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300205 /* For a 0 byte message, I think sending the address
206 * to index 0x80|0x40 would be the correct thing to
207 * do. However, zero byte messages are only used for
208 * probing, and since we don't know how to get the
209 * slave's ack, we can't probe. */
Trent Piephod40860f2007-03-05 23:55:00 -0300210 ret = -ENOTSUPP;
211 goto unlock;
212 }
213 /* Send START & address/RW bit */
214 if (!(msg[i].flags & I2C_M_NOSTART)) {
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300215 if ((ret = m920x_write(d->udev, M9206_I2C,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300216 (msg[i].addr << 1) |
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300217 (msg[i].flags & I2C_M_RD ? 0x01 : 0), 0x80)) != 0)
Trent Piephod40860f2007-03-05 23:55:00 -0300218 goto unlock;
219 /* Should check for ack here, if we knew how. */
220 }
Aapo Tahkola26247012007-03-05 18:23:19 -0300221 if (msg[i].flags & I2C_M_RD) {
Trent Piephod40860f2007-03-05 23:55:00 -0300222 for (j = 0; j < msg[i].len; j++) {
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300223 /* Last byte of transaction?
224 * Send STOP, otherwise send ACK. */
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300225 int stop = (i+1 == num && j+1 == msg[i].len) ? 0x40 : 0x01;
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300226
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300227 if ((ret = m920x_read(d->udev, M9206_I2C, 0x0,
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300228 0x20 | stop,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300229 &msg[i].buf[j], 1)) != 0)
Trent Piephod40860f2007-03-05 23:55:00 -0300230 goto unlock;
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300231 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300232 } else {
Trent Piephod40860f2007-03-05 23:55:00 -0300233 for (j = 0; j < msg[i].len; j++) {
234 /* Last byte of transaction? Then send STOP. */
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300235 int stop = (i+1 == num && j+1 == msg[i].len) ? 0x40 : 0x00;
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300236
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300237 if ((ret = m920x_write(d->udev, M9206_I2C, msg[i].buf[j], stop)) != 0)
Trent Piephod40860f2007-03-05 23:55:00 -0300238 goto unlock;
239 /* Should check for ack here too. */
Aapo Tahkola26247012007-03-05 18:23:19 -0300240 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300241 }
242 }
Aapo Tahkola26247012007-03-05 18:23:19 -0300243 ret = num;
Trent Piephod40860f2007-03-05 23:55:00 -0300244
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300245 unlock:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300246 mutex_unlock(&d->i2c_mutex);
247
248 return ret;
249}
250
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300251static u32 m920x_i2c_func(struct i2c_adapter *adapter)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300252{
253 return I2C_FUNC_I2C;
254}
255
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300256static struct i2c_algorithm m920x_i2c_algo = {
257 .master_xfer = m920x_i2c_xfer,
258 .functionality = m920x_i2c_func,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300259};
260
Michael Krufky5afb7072007-03-26 16:35:29 -0300261/* pid filter */
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300262static int m920x_set_filter(struct dvb_usb_device *d, int type, int idx, int pid)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300263{
264 int ret = 0;
265
266 if (pid >= 0x8000)
267 return -EINVAL;
268
269 pid |= 0x8000;
270
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300271 if ((ret = m920x_write(d->udev, M9206_FILTER, pid, (type << 8) | (idx * 4) )) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300272 return ret;
273
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300274 if ((ret = m920x_write(d->udev, M9206_FILTER, 0, (type << 8) | (idx * 4) )) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300275 return ret;
276
277 return ret;
278}
279
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300280static int m920x_update_filters(struct dvb_usb_adapter *adap)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300281{
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300282 struct m920x_state *m = adap->dev->priv;
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300283 int enabled = m->filtering_enabled[adap->id];
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300284 int i, ret = 0, filter = 0;
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300285 int ep = adap->props.stream.endpoint;
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300286
287 for (i = 0; i < M9206_MAX_FILTERS; i++)
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300288 if (m->filters[adap->id][i] == 8192)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300289 enabled = 0;
290
291 /* Disable all filters */
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300292 if ((ret = m920x_set_filter(adap->dev, ep, 1, enabled)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300293 return ret;
294
295 for (i = 0; i < M9206_MAX_FILTERS; i++)
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300296 if ((ret = m920x_set_filter(adap->dev, ep, i + 2, 0)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300297 return ret;
298
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300299 /* Set */
300 if (enabled) {
301 for (i = 0; i < M9206_MAX_FILTERS; i++) {
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300302 if (m->filters[adap->id][i] == 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300303 continue;
304
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300305 if ((ret = m920x_set_filter(adap->dev, ep, filter + 2, m->filters[adap->id][i])) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300306 return ret;
307
308 filter++;
309 }
310 }
311
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300312 return ret;
313}
314
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300315static int m920x_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300316{
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300317 struct m920x_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300318
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300319 m->filtering_enabled[adap->id] = onoff ? 1 : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300320
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300321 return m920x_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300322}
323
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300324static int m920x_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid, int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300325{
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300326 struct m920x_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300327
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300328 m->filters[adap->id][index] = onoff ? pid : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300329
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300330 return m920x_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300331}
332
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300333static int m920x_firmware_download(struct usb_device *udev, const struct firmware *fw)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300334{
335 u16 value, index, size;
336 u8 read[4], *buff;
337 int i, pass, ret = 0;
338
339 buff = kmalloc(65536, GFP_KERNEL);
340
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300341 if ((ret = m920x_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300342 goto done;
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -0300343 deb("%x %x %x %x\n", read[0], read[1], read[2], read[3]);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300344
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300345 if ((ret = m920x_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300346 goto done;
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -0300347 deb("%x\n", read[0]);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300348
349 for (pass = 0; pass < 2; pass++) {
350 for (i = 0; i + (sizeof(u16) * 3) < fw->size;) {
Al Virofa9c13a2008-05-21 00:32:41 -0300351 value = get_unaligned_le16(fw->data + i);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300352 i += sizeof(u16);
353
Al Virofa9c13a2008-05-21 00:32:41 -0300354 index = get_unaligned_le16(fw->data + i);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300355 i += sizeof(u16);
356
Al Virofa9c13a2008-05-21 00:32:41 -0300357 size = get_unaligned_le16(fw->data + i);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300358 i += sizeof(u16);
359
360 if (pass == 1) {
361 /* Will stall if using fw->data ... */
362 memcpy(buff, fw->data + i, size);
363
364 ret = usb_control_msg(udev, usb_sndctrlpipe(udev,0),
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300365 M9206_FW,
366 USB_TYPE_VENDOR | USB_DIR_OUT,
367 value, index, buff, size, 20);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300368 if (ret != size) {
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -0300369 deb("error while uploading fw!\n");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300370 ret = -EIO;
371 goto done;
372 }
373 msleep(3);
374 }
375 i += size;
376 }
377 if (i != fw->size) {
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -0300378 deb("bad firmware file!\n");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300379 ret = -EINVAL;
380 goto done;
381 }
382 }
383
384 msleep(36);
385
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300386 /* m920x will disconnect itself from the bus after this. */
387 (void) m920x_write(udev, M9206_CORE, 0x01, M9206_FW_GO);
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -0300388 deb("firmware uploaded!\n");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300389
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300390 done:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300391 kfree(buff);
392
393 return ret;
394}
395
Michael Krufkye16c1f52007-01-23 15:00:42 -0300396/* Callbacks for DVB USB */
Aapo Tahkola7d1d4e62007-03-15 13:01:46 -0300397static int m920x_identify_state(struct usb_device *udev,
398 struct dvb_usb_device_properties *props,
399 struct dvb_usb_device_description **desc,
400 int *cold)
Michael Krufkye16c1f52007-01-23 15:00:42 -0300401{
402 struct usb_host_interface *alt;
403
404 alt = usb_altnum_to_altsetting(usb_ifnum_to_if(udev, 0), 1);
405 *cold = (alt == NULL) ? 1 : 0;
406
407 return 0;
408}
409
Michael Krufky5afb7072007-03-26 16:35:29 -0300410/* demod configurations */
Michael Krufkye7b419b2007-03-26 16:39:20 -0300411static int m920x_mt352_demod_init(struct dvb_frontend *fe)
Michael Krufkye16c1f52007-01-23 15:00:42 -0300412{
Aapo Tahkolad577ee02007-05-08 18:33:52 -0300413 int ret;
Michael Krufkye16c1f52007-01-23 15:00:42 -0300414 u8 config[] = { CONFIG, 0x3d };
415 u8 clock[] = { CLOCK_CTL, 0x30 };
416 u8 reset[] = { RESET, 0x80 };
417 u8 adc_ctl[] = { ADC_CTL_1, 0x40 };
418 u8 agc[] = { AGC_TARGET, 0x1c, 0x20 };
419 u8 sec_agc[] = { 0x69, 0x00, 0xff, 0xff, 0x40, 0xff, 0x00, 0x40, 0x40 };
420 u8 unk1[] = { 0x93, 0x1a };
421 u8 unk2[] = { 0xb5, 0x7a };
422
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -0300423 deb("Demod init!\n");
Michael Krufkye16c1f52007-01-23 15:00:42 -0300424
Aapo Tahkolad577ee02007-05-08 18:33:52 -0300425 if ((ret = mt352_write(fe, config, ARRAY_SIZE(config))) != 0)
426 return ret;
427 if ((ret = mt352_write(fe, clock, ARRAY_SIZE(clock))) != 0)
428 return ret;
429 if ((ret = mt352_write(fe, reset, ARRAY_SIZE(reset))) != 0)
430 return ret;
431 if ((ret = mt352_write(fe, adc_ctl, ARRAY_SIZE(adc_ctl))) != 0)
432 return ret;
433 if ((ret = mt352_write(fe, agc, ARRAY_SIZE(agc))) != 0)
434 return ret;
435 if ((ret = mt352_write(fe, sec_agc, ARRAY_SIZE(sec_agc))) != 0)
436 return ret;
437 if ((ret = mt352_write(fe, unk1, ARRAY_SIZE(unk1))) != 0)
438 return ret;
439 if ((ret = mt352_write(fe, unk2, ARRAY_SIZE(unk2))) != 0)
440 return ret;
441
Michael Krufkye16c1f52007-01-23 15:00:42 -0300442 return 0;
443}
444
Michael Krufkye7b419b2007-03-26 16:39:20 -0300445static struct mt352_config m920x_mt352_config = {
Aapo Tahkola26247012007-03-05 18:23:19 -0300446 .demod_address = 0x0f,
Michael Krufkye16c1f52007-01-23 15:00:42 -0300447 .no_tuner = 1,
Michael Krufkye7b419b2007-03-26 16:39:20 -0300448 .demod_init = m920x_mt352_demod_init,
Michael Krufkye16c1f52007-01-23 15:00:42 -0300449};
450
Michael Krufkye7b419b2007-03-26 16:39:20 -0300451static struct tda1004x_config m920x_tda10046_08_config = {
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300452 .demod_address = 0x08,
453 .invert = 0,
454 .invert_oclk = 0,
455 .ts_mode = TDA10046_TS_SERIAL,
456 .xtal_freq = TDA10046_XTAL_16M,
457 .if_freq = TDA10046_FREQ_045,
458 .agc_config = TDA10046_AGC_TDA827X,
459 .gpio_config = TDA10046_GPTRI,
460 .request_firmware = NULL,
461};
462
Michael Krufkye7b419b2007-03-26 16:39:20 -0300463static struct tda1004x_config m920x_tda10046_0b_config = {
Nick Andrewaa50ec22007-03-22 17:09:35 -0300464 .demod_address = 0x0b,
465 .invert = 0,
466 .invert_oclk = 0,
467 .ts_mode = TDA10046_TS_SERIAL,
468 .xtal_freq = TDA10046_XTAL_16M,
469 .if_freq = TDA10046_FREQ_045,
470 .agc_config = TDA10046_AGC_TDA827X,
471 .gpio_config = TDA10046_GPTRI,
472 .request_firmware = NULL, /* uses firmware EEPROM */
473};
474
Michael Krufky5afb7072007-03-26 16:35:29 -0300475/* tuner configurations */
Michael Krufkye7b419b2007-03-26 16:39:20 -0300476static struct qt1010_config m920x_qt1010_config = {
Michael Krufky5afb7072007-03-26 16:35:29 -0300477 .i2c_address = 0x62
478};
479
480/* Callbacks for DVB USB */
Michael Krufkye7b419b2007-03-26 16:39:20 -0300481static int m920x_mt352_frontend_attach(struct dvb_usb_adapter *adap)
Michael Krufky5afb7072007-03-26 16:35:29 -0300482{
Harvey Harrison708bebd2008-04-08 23:20:00 -0300483 deb("%s\n",__func__);
Michael Krufky5afb7072007-03-26 16:35:29 -0300484
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300485 if ((adap->fe = dvb_attach(mt352_attach,
486 &m920x_mt352_config,
Michael Krufky5afb7072007-03-26 16:35:29 -0300487 &adap->dev->i2c_adap)) == NULL)
488 return -EIO;
489
490 return 0;
491}
492
Michael Krufkye7b419b2007-03-26 16:39:20 -0300493static int m920x_tda10046_08_frontend_attach(struct dvb_usb_adapter *adap)
Michael Krufky5afb7072007-03-26 16:35:29 -0300494{
Harvey Harrison708bebd2008-04-08 23:20:00 -0300495 deb("%s\n",__func__);
Nick Andrewaa50ec22007-03-22 17:09:35 -0300496
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300497 if ((adap->fe = dvb_attach(tda10046_attach,
Michael Krufkye7b419b2007-03-26 16:39:20 -0300498 &m920x_tda10046_08_config,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300499 &adap->dev->i2c_adap)) == NULL)
Nick Andrewaa50ec22007-03-22 17:09:35 -0300500 return -EIO;
501
Nick Andrewaa50ec22007-03-22 17:09:35 -0300502 return 0;
503}
504
Michael Krufkye7b419b2007-03-26 16:39:20 -0300505static int m920x_tda10046_0b_frontend_attach(struct dvb_usb_adapter *adap)
Nick Andrewaa50ec22007-03-22 17:09:35 -0300506{
Harvey Harrison708bebd2008-04-08 23:20:00 -0300507 deb("%s\n",__func__);
Nick Andrewaa50ec22007-03-22 17:09:35 -0300508
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300509 if ((adap->fe = dvb_attach(tda10046_attach,
Michael Krufkye7b419b2007-03-26 16:39:20 -0300510 &m920x_tda10046_0b_config,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300511 &adap->dev->i2c_adap)) == NULL)
Nick Andrewaa50ec22007-03-22 17:09:35 -0300512 return -EIO;
513
Nick Andrewaa50ec22007-03-22 17:09:35 -0300514 return 0;
515}
516
Michael Krufkye7b419b2007-03-26 16:39:20 -0300517static int m920x_qt1010_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky5afb7072007-03-26 16:35:29 -0300518{
Harvey Harrison708bebd2008-04-08 23:20:00 -0300519 deb("%s\n",__func__);
Michael Krufkye7b419b2007-03-26 16:39:20 -0300520
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300521 if (dvb_attach(qt1010_attach, adap->fe, &adap->dev->i2c_adap, &m920x_qt1010_config) == NULL)
Michael Krufky5afb7072007-03-26 16:35:29 -0300522 return -ENODEV;
523
524 return 0;
525}
526
Michael Krufkye7b419b2007-03-26 16:39:20 -0300527static int m920x_tda8275_60_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky5afb7072007-03-26 16:35:29 -0300528{
Harvey Harrison708bebd2008-04-08 23:20:00 -0300529 deb("%s\n",__func__);
Michael Krufkye7b419b2007-03-26 16:39:20 -0300530
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300531 if (dvb_attach(tda827x_attach, adap->fe, 0x60, &adap->dev->i2c_adap, NULL) == NULL)
Michael Krufky5afb7072007-03-26 16:35:29 -0300532 return -ENODEV;
Nick Andrewaa50ec22007-03-22 17:09:35 -0300533
534 return 0;
535}
536
Michael Krufkye7b419b2007-03-26 16:39:20 -0300537static int m920x_tda8275_61_tuner_attach(struct dvb_usb_adapter *adap)
Nick Andrewaa50ec22007-03-22 17:09:35 -0300538{
Harvey Harrison708bebd2008-04-08 23:20:00 -0300539 deb("%s\n",__func__);
Nick Andrewaa50ec22007-03-22 17:09:35 -0300540
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300541 if (dvb_attach(tda827x_attach, adap->fe, 0x61, &adap->dev->i2c_adap, NULL) == NULL)
Nick Andrewaa50ec22007-03-22 17:09:35 -0300542 return -ENODEV;
543
Nick Andrewaa50ec22007-03-22 17:09:35 -0300544 return 0;
545}
546
Michael Krufky5afb7072007-03-26 16:35:29 -0300547/* device-specific initialization */
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300548static struct m920x_inits megasky_rc_init [] = {
Michael Krufky5afb7072007-03-26 16:35:29 -0300549 { M9206_RC_INIT2, 0xa8 },
550 { M9206_RC_INIT1, 0x51 },
551 { } /* terminating entry */
552};
553
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300554static struct m920x_inits tvwalkertwin_rc_init [] = {
Nick Andrewaa50ec22007-03-22 17:09:35 -0300555 { M9206_RC_INIT2, 0x00 },
556 { M9206_RC_INIT1, 0xef },
557 { 0xff28, 0x00 },
558 { 0xff23, 0x00 },
559 { 0xff21, 0x30 },
560 { } /* terminating entry */
561};
562
Michael Krufky5afb7072007-03-26 16:35:29 -0300563/* ir keymaps */
564static struct dvb_usb_rc_key megasky_rc_keys [] = {
565 { 0x0, 0x12, KEY_POWER },
566 { 0x0, 0x1e, KEY_CYCLEWINDOWS }, /* min/max */
567 { 0x0, 0x02, KEY_CHANNELUP },
568 { 0x0, 0x05, KEY_CHANNELDOWN },
569 { 0x0, 0x03, KEY_VOLUMEUP },
570 { 0x0, 0x06, KEY_VOLUMEDOWN },
571 { 0x0, 0x04, KEY_MUTE },
572 { 0x0, 0x07, KEY_OK }, /* TS */
573 { 0x0, 0x08, KEY_STOP },
574 { 0x0, 0x09, KEY_MENU }, /* swap */
575 { 0x0, 0x0a, KEY_REWIND },
576 { 0x0, 0x1b, KEY_PAUSE },
577 { 0x0, 0x1f, KEY_FASTFORWARD },
578 { 0x0, 0x0c, KEY_RECORD },
579 { 0x0, 0x0d, KEY_CAMERA }, /* screenshot */
580 { 0x0, 0x0e, KEY_COFFEE }, /* "MTS" */
581};
582
583static struct dvb_usb_rc_key tvwalkertwin_rc_keys [] = {
584 { 0x0, 0x01, KEY_ZOOM }, /* Full Screen */
585 { 0x0, 0x02, KEY_CAMERA }, /* snapshot */
586 { 0x0, 0x03, KEY_MUTE },
587 { 0x0, 0x04, KEY_REWIND },
588 { 0x0, 0x05, KEY_PLAYPAUSE }, /* Play/Pause */
589 { 0x0, 0x06, KEY_FASTFORWARD },
590 { 0x0, 0x07, KEY_RECORD },
591 { 0x0, 0x08, KEY_STOP },
592 { 0x0, 0x09, KEY_TIME }, /* Timeshift */
593 { 0x0, 0x0c, KEY_COFFEE }, /* Recall */
594 { 0x0, 0x0e, KEY_CHANNELUP },
595 { 0x0, 0x12, KEY_POWER },
596 { 0x0, 0x15, KEY_MENU }, /* source */
597 { 0x0, 0x18, KEY_CYCLEWINDOWS }, /* TWIN PIP */
598 { 0x0, 0x1a, KEY_CHANNELDOWN },
599 { 0x0, 0x1b, KEY_VOLUMEDOWN },
600 { 0x0, 0x1e, KEY_VOLUMEUP },
601};
602
Michael Krufky26f48ea2006-09-28 01:46:49 -0300603/* DVB USB Driver stuff */
604static struct dvb_usb_device_properties megasky_properties;
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300605static struct dvb_usb_device_properties digivox_mini_ii_properties;
Nick Andrewaa50ec22007-03-22 17:09:35 -0300606static struct dvb_usb_device_properties tvwalkertwin_properties;
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300607static struct dvb_usb_device_properties dposh_properties;
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300608
Michael Krufkyfa948052007-01-21 15:57:48 -0300609static int m920x_probe(struct usb_interface *intf,
610 const struct usb_device_id *id)
Michael Krufky26f48ea2006-09-28 01:46:49 -0300611{
Aapo Tahkola55bbe5e2007-05-08 12:56:54 -0300612 struct dvb_usb_device *d = NULL;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300613 int ret;
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300614 struct m920x_inits *rc_init_seq = NULL;
Nick Andrewaa50ec22007-03-22 17:09:35 -0300615 int bInterfaceNumber = intf->cur_altsetting->desc.bInterfaceNumber;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300616
Aapo Tahkolabf2b4f62007-03-26 16:59:16 -0300617 deb("Probing for m920x device at interface %d\n", bInterfaceNumber);
Michael Krufky26f48ea2006-09-28 01:46:49 -0300618
Nick Andrewaa50ec22007-03-22 17:09:35 -0300619 if (bInterfaceNumber == 0) {
620 /* Single-tuner device, or first interface on
621 * multi-tuner device
622 */
Michael Krufky26f48ea2006-09-28 01:46:49 -0300623
Janne Grunau78e92002008-04-09 19:13:13 -0300624 ret = dvb_usb_device_init(intf, &megasky_properties,
625 THIS_MODULE, &d, adapter_nr);
626 if (ret == 0) {
Nick Andrewaa50ec22007-03-22 17:09:35 -0300627 rc_init_seq = megasky_rc_init;
628 goto found;
629 }
630
Janne Grunau78e92002008-04-09 19:13:13 -0300631 ret = dvb_usb_device_init(intf, &digivox_mini_ii_properties,
632 THIS_MODULE, &d, adapter_nr);
633 if (ret == 0) {
Nick Andrewaa50ec22007-03-22 17:09:35 -0300634 /* No remote control, so no rc_init_seq */
635 goto found;
636 }
637
638 /* This configures both tuners on the TV Walker Twin */
Janne Grunau78e92002008-04-09 19:13:13 -0300639 ret = dvb_usb_device_init(intf, &tvwalkertwin_properties,
640 THIS_MODULE, &d, adapter_nr);
641 if (ret == 0) {
Nick Andrewaa50ec22007-03-22 17:09:35 -0300642 rc_init_seq = tvwalkertwin_rc_init;
643 goto found;
644 }
645
Janne Grunau78e92002008-04-09 19:13:13 -0300646 ret = dvb_usb_device_init(intf, &dposh_properties,
647 THIS_MODULE, &d, adapter_nr);
648 if (ret == 0) {
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300649 /* Remote controller not supported yet. */
650 goto found;
651 }
652
Nick Andrewaa50ec22007-03-22 17:09:35 -0300653 return ret;
654 } else {
655 /* Another interface on a multi-tuner device */
656
657 /* The LifeView TV Walker Twin gets here, but struct
658 * tvwalkertwin_properties already configured both
659 * tuners, so there is nothing for us to do here
660 */
Nick Andrewaa50ec22007-03-22 17:09:35 -0300661 }
Michael Krufky26f48ea2006-09-28 01:46:49 -0300662
Michael Krufkye7b419b2007-03-26 16:39:20 -0300663 found:
Aapo Tahkola55bbe5e2007-05-08 12:56:54 -0300664 if ((ret = m920x_init_ep(intf)) < 0)
Aapo Tahkola480ac762007-03-05 18:54:27 -0300665 return ret;
666
Aapo Tahkola55bbe5e2007-05-08 12:56:54 -0300667 if (d && (ret = m920x_init(d, rc_init_seq)) != 0)
Aapo Tahkola480ac762007-03-05 18:54:27 -0300668 return ret;
669
Michael Krufky26f48ea2006-09-28 01:46:49 -0300670 return ret;
671}
672
673static struct usb_device_id m920x_table [] = {
674 { USB_DEVICE(USB_VID_MSI, USB_PID_MSI_MEGASKY580) },
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300675 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
676 USB_PID_MSI_DIGI_VOX_MINI_II) },
Nick Andrewaa50ec22007-03-22 17:09:35 -0300677 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
678 USB_PID_LIFEVIEW_TV_WALKER_TWIN_COLD) },
679 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
680 USB_PID_LIFEVIEW_TV_WALKER_TWIN_WARM) },
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300681 { USB_DEVICE(USB_VID_DPOSH, USB_PID_DPOSH_M9206_COLD) },
682 { USB_DEVICE(USB_VID_DPOSH, USB_PID_DPOSH_M9206_WARM) },
Michael Krufky26f48ea2006-09-28 01:46:49 -0300683 { } /* Terminating entry */
684};
685MODULE_DEVICE_TABLE (usb, m920x_table);
686
Michael Krufky01cb34d2006-09-23 20:01:29 -0300687static struct dvb_usb_device_properties megasky_properties = {
Michael Krufky758117c2007-01-23 15:34:10 -0300688 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
Michael Krufky1f61f3b2006-10-07 15:03:04 -0300689
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300690 .usb_ctrl = DEVICE_SPECIFIC,
691 .firmware = "dvb-usb-megasky-02.fw",
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300692 .download_firmware = m920x_firmware_download,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300693
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300694 .rc_interval = 100,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300695 .rc_key_map = megasky_rc_keys,
696 .rc_key_map_size = ARRAY_SIZE(megasky_rc_keys),
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300697 .rc_query = m920x_rc_query,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300698
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300699 .size_of_priv = sizeof(struct m920x_state),
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300700
Aapo Tahkola7d1d4e62007-03-15 13:01:46 -0300701 .identify_state = m920x_identify_state,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300702 .num_adapters = 1,
703 .adapter = {{
Michael Krufky758117c2007-01-23 15:34:10 -0300704 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
705 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
706
Michael Krufky01cb34d2006-09-23 20:01:29 -0300707 .pid_filter_count = 8,
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300708 .pid_filter = m920x_pid_filter,
709 .pid_filter_ctrl = m920x_pid_filter_ctrl,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300710
Michael Krufkye7b419b2007-03-26 16:39:20 -0300711 .frontend_attach = m920x_mt352_frontend_attach,
712 .tuner_attach = m920x_qt1010_tuner_attach,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300713
714 .stream = {
715 .type = USB_BULK,
716 .count = 8,
717 .endpoint = 0x81,
718 .u = {
719 .bulk = {
720 .buffersize = 512,
721 }
722 }
723 },
724 }},
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300725 .i2c_algo = &m920x_i2c_algo,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300726
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300727 .num_device_descs = 1,
728 .devices = {
729 { "MSI Mega Sky 580 DVB-T USB2.0",
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300730 { &m920x_table[0], NULL },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300731 { NULL },
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300732 }
733 }
734};
735
736static struct dvb_usb_device_properties digivox_mini_ii_properties = {
737 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
738
739 .usb_ctrl = DEVICE_SPECIFIC,
740 .firmware = "dvb-usb-digivox-02.fw",
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300741 .download_firmware = m920x_firmware_download,
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300742
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300743 .size_of_priv = sizeof(struct m920x_state),
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300744
745 .identify_state = m920x_identify_state,
746 .num_adapters = 1,
747 .adapter = {{
748 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300749 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300750
751 .pid_filter_count = 8,
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300752 .pid_filter = m920x_pid_filter,
753 .pid_filter_ctrl = m920x_pid_filter_ctrl,
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300754
Michael Krufkye7b419b2007-03-26 16:39:20 -0300755 .frontend_attach = m920x_tda10046_08_frontend_attach,
756 .tuner_attach = m920x_tda8275_60_tuner_attach,
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300757
758 .stream = {
759 .type = USB_BULK,
760 .count = 8,
761 .endpoint = 0x81,
762 .u = {
763 .bulk = {
764 .buffersize = 0x4000,
765 }
766 }
767 },
768 }},
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300769 .i2c_algo = &m920x_i2c_algo,
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300770
771 .num_device_descs = 1,
772 .devices = {
773 { "MSI DIGI VOX mini II DVB-T USB2.0",
774 { &m920x_table[1], NULL },
775 { NULL },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300776 },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300777 }
778};
779
Michael Krufkye7b419b2007-03-26 16:39:20 -0300780/* LifeView TV Walker Twin support by Nick Andrew <nick@nick-andrew.net>
781 *
782 * LifeView TV Walker Twin has 1 x M9206, 2 x TDA10046, 2 x TDA8275A
783 * TDA10046 #0 is located at i2c address 0x08
Aapo Tahkola3ab3b692007-05-08 18:23:38 -0300784 * TDA10046 #1 is located at i2c address 0x0b
Michael Krufkye7b419b2007-03-26 16:39:20 -0300785 * TDA8275A #0 is located at i2c address 0x60
Aapo Tahkola3ab3b692007-05-08 18:23:38 -0300786 * TDA8275A #1 is located at i2c address 0x61
Michael Krufkye7b419b2007-03-26 16:39:20 -0300787 */
Nick Andrewaa50ec22007-03-22 17:09:35 -0300788static struct dvb_usb_device_properties tvwalkertwin_properties = {
789 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
790
791 .usb_ctrl = DEVICE_SPECIFIC,
792 .firmware = "dvb-usb-tvwalkert.fw",
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300793 .download_firmware = m920x_firmware_download,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300794
795 .rc_interval = 100,
796 .rc_key_map = tvwalkertwin_rc_keys,
797 .rc_key_map_size = ARRAY_SIZE(tvwalkertwin_rc_keys),
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300798 .rc_query = m920x_rc_query,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300799
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300800 .size_of_priv = sizeof(struct m920x_state),
Nick Andrewaa50ec22007-03-22 17:09:35 -0300801
802 .identify_state = m920x_identify_state,
Aapo Tahkola3ab3b692007-05-08 18:23:38 -0300803 .num_adapters = 2,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300804 .adapter = {{
805 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
806 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300807
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300808 .pid_filter_count = 8,
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300809 .pid_filter = m920x_pid_filter,
810 .pid_filter_ctrl = m920x_pid_filter_ctrl,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300811
Michael Krufkye7b419b2007-03-26 16:39:20 -0300812 .frontend_attach = m920x_tda10046_08_frontend_attach,
813 .tuner_attach = m920x_tda8275_60_tuner_attach,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300814
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300815 .stream = {
816 .type = USB_BULK,
817 .count = 8,
818 .endpoint = 0x81,
819 .u = {
820 .bulk = {
821 .buffersize = 512,
822 }
823 }
824 }},{
825 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
826 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
827
828 .pid_filter_count = 8,
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300829 .pid_filter = m920x_pid_filter,
830 .pid_filter_ctrl = m920x_pid_filter_ctrl,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300831
Michael Krufkye7b419b2007-03-26 16:39:20 -0300832 .frontend_attach = m920x_tda10046_0b_frontend_attach,
833 .tuner_attach = m920x_tda8275_61_tuner_attach,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300834
835 .stream = {
836 .type = USB_BULK,
837 .count = 8,
838 .endpoint = 0x82,
839 .u = {
840 .bulk = {
841 .buffersize = 512,
842 }
843 }
Nick Andrewaa50ec22007-03-22 17:09:35 -0300844 },
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300845 }},
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300846 .i2c_algo = &m920x_i2c_algo,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300847
848 .num_device_descs = 1,
849 .devices = {
850 { .name = "LifeView TV Walker Twin DVB-T USB2.0",
851 .cold_ids = { &m920x_table[2], NULL },
852 .warm_ids = { &m920x_table[3], NULL },
853 },
854 }
855};
856
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300857static struct dvb_usb_device_properties dposh_properties = {
858 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
859
860 .usb_ctrl = DEVICE_SPECIFIC,
861 .firmware = "dvb-usb-dposh-01.fw",
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300862 .download_firmware = m920x_firmware_download,
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300863
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300864 .size_of_priv = sizeof(struct m920x_state),
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300865
866 .identify_state = m920x_identify_state,
867 .num_adapters = 1,
868 .adapter = {{
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300869 /* Hardware pid filters don't work with this device/firmware */
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300870
Michael Krufkye7b419b2007-03-26 16:39:20 -0300871 .frontend_attach = m920x_mt352_frontend_attach,
872 .tuner_attach = m920x_qt1010_tuner_attach,
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300873
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300874 .stream = {
875 .type = USB_BULK,
876 .count = 8,
877 .endpoint = 0x81,
878 .u = {
879 .bulk = {
880 .buffersize = 512,
881 }
882 }
883 },
884 }},
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300885 .i2c_algo = &m920x_i2c_algo,
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300886
887 .num_device_descs = 1,
888 .devices = {
889 { .name = "Dposh DVB-T USB2.0",
890 .cold_ids = { &m920x_table[4], NULL },
891 .warm_ids = { &m920x_table[5], NULL },
892 },
893 }
894};
895
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300896static struct usb_driver m920x_driver = {
897 .name = "dvb_usb_m920x",
Michael Krufky2a2bfa72006-09-23 20:13:12 -0300898 .probe = m920x_probe,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300899 .disconnect = dvb_usb_device_exit,
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300900 .id_table = m920x_table,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300901};
902
903/* module stuff */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300904static int __init m920x_module_init(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300905{
906 int ret;
907
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300908 if ((ret = usb_register(&m920x_driver))) {
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300909 err("usb_register failed. Error number %d", ret);
910 return ret;
911 }
912
913 return 0;
914}
915
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300916static void __exit m920x_module_exit(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300917{
918 /* deregister this driver from the USB subsystem */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300919 usb_deregister(&m920x_driver);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300920}
921
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300922module_init (m920x_module_init);
923module_exit (m920x_module_exit);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300924
925MODULE_AUTHOR("Aapo Tahkola <aet@rasterburn.org>");
Nick Andrewaa50ec22007-03-22 17:09:35 -0300926MODULE_DESCRIPTION("DVB Driver for ULI M920x");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300927MODULE_VERSION("0.1");
928MODULE_LICENSE("GPL");
Michael Krufkyce9c2752007-03-22 17:18:26 -0300929
930/*
931 * Local variables:
932 * c-basic-offset: 8
933 */