blob: a956bc503a4c7aa6480e06c21a6900c6328cee60 [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"
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030019
20/* debug */
Michael Krufky26f48ea2006-09-28 01:46:49 -030021static int dvb_usb_m920x_debug;
Michael Krufkybaa2ed02006-09-23 20:01:29 -030022module_param_named(debug,dvb_usb_m920x_debug, int, 0644);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030023MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
24
Aapo Tahkola47f8df02007-05-08 12:03:55 -030025static int m920x_set_filter(struct dvb_usb_device *d, int type, int idx, int pid);
26
Aapo Tahkola4fd74a72007-03-26 17:05:59 -030027static inline int m920x_read(struct usb_device *udev, u8 request, u16 value,
Michael Krufkyfa948052007-01-21 15:57:48 -030028 u16 index, void *data, int size)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030029{
30 int ret;
31
32 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
33 request, USB_TYPE_VENDOR | USB_DIR_IN,
34 value, index, data, size, 2000);
Pierre Willenbrock59069e52007-03-15 13:24:29 -030035 if (ret < 0) {
36 printk(KERN_INFO "m920x_read = error: %d\n", ret);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030037 return ret;
Pierre Willenbrock59069e52007-03-15 13:24:29 -030038 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030039
Pierre Willenbrock59069e52007-03-15 13:24:29 -030040 if (ret != size) {
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -030041 deb("m920x_read = no data\n");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030042 return -EIO;
Pierre Willenbrock59069e52007-03-15 13:24:29 -030043 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030044
45 return 0;
46}
47
Aapo Tahkola4fd74a72007-03-26 17:05:59 -030048static inline int m920x_write(struct usb_device *udev, u8 request,
Michael Krufkyfa948052007-01-21 15:57:48 -030049 u16 value, u16 index)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030050{
51 int ret;
52
53 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
54 request, USB_TYPE_VENDOR | USB_DIR_OUT,
55 value, index, NULL, 0, 2000);
Pierre Willenbrock59069e52007-03-15 13:24:29 -030056
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030057 return ret;
58}
59
Aapo Tahkola4fd74a72007-03-26 17:05:59 -030060static int m920x_init(struct dvb_usb_device *d, struct m920x_inits *rc_seq)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030061{
Aapo Tahkola3847b222007-05-08 18:21:47 -030062 int ret = 0, i, epi, flags = 0;
Aapo Tahkola47f8df02007-05-08 12:03:55 -030063 int adap_enabled[M9206_MAX_ADAPTERS] = { 0 };
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030064
65 /* Remote controller init. */
Aapo Tahkola480ac762007-03-05 18:54:27 -030066 if (d->props.rc_query) {
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -030067 deb("Initialising remote control\n");
Nick Andrewaa50ec22007-03-22 17:09:35 -030068 while (rc_seq->address) {
Aapo Tahkola4fd74a72007-03-26 17:05:59 -030069 if ((ret = m920x_write(d->udev, M9206_CORE,
Michael Krufkyd3911ea2007-03-22 19:03:37 -030070 rc_seq->data,
71 rc_seq->address)) != 0) {
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -030072 deb("Initialising remote control failed\n");
Nick Andrewaa50ec22007-03-22 17:09:35 -030073 return ret;
74 }
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -030075
Nick Andrewaa50ec22007-03-22 17:09:35 -030076 rc_seq++;
77 }
78
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -030079 deb("Initialising remote control success\n");
Aapo Tahkola480ac762007-03-05 18:54:27 -030080 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -030081
Aapo Tahkola3847b222007-05-08 18:21:47 -030082 for (i = 0; i < d->props.num_adapters; i++)
83 flags |= d->adapter[i].props.caps;
Aapo Tahkola47f8df02007-05-08 12:03:55 -030084
Aapo Tahkola3847b222007-05-08 18:21:47 -030085 /* Some devices(Dposh) might crash if we attempt touch at all. */
86 if (flags & DVB_USB_ADAP_HAS_PID_FILTER) {
87 for (i = 0; i < d->props.num_adapters; i++) {
88 epi = d->adapter[i].props.stream.endpoint - 0x81;
89
90 if (epi < 0 || epi >= M9206_MAX_ADAPTERS) {
91 printk(KERN_INFO "m920x: Unexpected adapter endpoint!\n");
92 return -EINVAL;
93 }
94
95 adap_enabled[epi] = 1;
Aapo Tahkola47f8df02007-05-08 12:03:55 -030096 }
97
Aapo Tahkola3847b222007-05-08 18:21:47 -030098 for (i = 0; i < M9206_MAX_ADAPTERS; i++) {
99 if (adap_enabled[i])
100 continue;
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300101
Aapo Tahkola3847b222007-05-08 18:21:47 -0300102 if ((ret = m920x_set_filter(d, 0x81 + i, 0, 0x0)) != 0)
103 return ret;
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, 0x02f5)) != 0)
106 return ret;
107 }
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300108 }
109
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300110 return ret;
111}
112
Aapo Tahkola55bbe5e2007-05-08 12:56:54 -0300113static int m920x_init_ep(struct usb_interface *intf)
114{
115 struct usb_device *udev = interface_to_usbdev(intf);
116 struct usb_host_interface *alt;
117
118 if ((alt = usb_altnum_to_altsetting(intf, 1)) == NULL) {
119 deb("No alt found!\n");
120 return -ENODEV;
121 }
122
123 return usb_set_interface(udev, alt->desc.bInterfaceNumber,
124 alt->desc.bAlternateSetting);
125}
126
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300127static int m920x_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300128{
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300129 struct m920x_state *m = d->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300130 int i, ret = 0;
131 u8 rc_state[2];
132
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300133 if ((ret = m920x_read(d->udev, M9206_CORE, 0x0, M9206_RC_STATE, rc_state, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300134 goto unlock;
135
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300136 if ((ret = m920x_read(d->udev, M9206_CORE, 0x0, M9206_RC_KEY, rc_state + 1, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300137 goto unlock;
138
Aapo Tahkola480ac762007-03-05 18:54:27 -0300139 for (i = 0; i < d->props.rc_key_map_size; i++)
140 if (d->props.rc_key_map[i].data == rc_state[1]) {
141 *event = d->props.rc_key_map[i].event;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300142
143 switch(rc_state[0]) {
144 case 0x80:
145 *state = REMOTE_NO_KEY_PRESSED;
146 goto unlock;
147
Nick Andrewaa50ec22007-03-22 17:09:35 -0300148 case 0x88: /* framing error or "invalid code" */
149 case 0x99:
150 case 0xc0:
151 case 0xd8:
152 *state = REMOTE_NO_KEY_PRESSED;
153 m->rep_count = 0;
154 goto unlock;
155
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300156 case 0x93:
157 case 0x92:
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300158 m->rep_count = 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300159 *state = REMOTE_KEY_PRESSED;
160 goto unlock;
161
162 case 0x91:
Nick Andrewaa50ec22007-03-22 17:09:35 -0300163 /* prevent immediate auto-repeat */
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300164 if (++m->rep_count > 2)
165 *state = REMOTE_KEY_REPEAT;
Nick Andrewaa50ec22007-03-22 17:09:35 -0300166 else
167 *state = REMOTE_NO_KEY_PRESSED;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300168 goto unlock;
169
170 default:
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300171 deb("Unexpected rc state %02x\n", rc_state[0]);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300172 *state = REMOTE_NO_KEY_PRESSED;
173 goto unlock;
174 }
175 }
176
177 if (rc_state[1] != 0)
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300178 deb("Unknown rc key %02x\n", rc_state[1]);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300179
180 *state = REMOTE_NO_KEY_PRESSED;
181
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300182 unlock:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300183
184 return ret;
185}
186
187/* I2C */
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300188static int m920x_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], int num)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300189{
190 struct dvb_usb_device *d = i2c_get_adapdata(adap);
Aapo Tahkola26247012007-03-05 18:23:19 -0300191 int i, j;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300192 int ret = 0;
193
Trent Piephod40860f2007-03-05 23:55:00 -0300194 if (!num)
195 return -EINVAL;
196
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300197 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
198 return -EAGAIN;
199
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300200 for (i = 0; i < num; i++) {
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300201 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 -0300202 /* For a 0 byte message, I think sending the address
203 * to index 0x80|0x40 would be the correct thing to
204 * do. However, zero byte messages are only used for
205 * probing, and since we don't know how to get the
206 * slave's ack, we can't probe. */
Trent Piephod40860f2007-03-05 23:55:00 -0300207 ret = -ENOTSUPP;
208 goto unlock;
209 }
210 /* Send START & address/RW bit */
211 if (!(msg[i].flags & I2C_M_NOSTART)) {
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300212 if ((ret = m920x_write(d->udev, M9206_I2C,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300213 (msg[i].addr << 1) |
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300214 (msg[i].flags & I2C_M_RD ? 0x01 : 0), 0x80)) != 0)
Trent Piephod40860f2007-03-05 23:55:00 -0300215 goto unlock;
216 /* Should check for ack here, if we knew how. */
217 }
Aapo Tahkola26247012007-03-05 18:23:19 -0300218 if (msg[i].flags & I2C_M_RD) {
Trent Piephod40860f2007-03-05 23:55:00 -0300219 for (j = 0; j < msg[i].len; j++) {
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300220 /* Last byte of transaction?
221 * Send STOP, otherwise send ACK. */
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300222 int stop = (i+1 == num && j+1 == msg[i].len) ? 0x40 : 0x01;
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300223
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300224 if ((ret = m920x_read(d->udev, M9206_I2C, 0x0,
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300225 0x20 | stop,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300226 &msg[i].buf[j], 1)) != 0)
Trent Piephod40860f2007-03-05 23:55:00 -0300227 goto unlock;
Aapo Tahkola84ad7572007-01-21 15:57:20 -0300228 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300229 } else {
Trent Piephod40860f2007-03-05 23:55:00 -0300230 for (j = 0; j < msg[i].len; j++) {
231 /* Last byte of transaction? Then send STOP. */
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300232 int stop = (i+1 == num && j+1 == msg[i].len) ? 0x40 : 0x00;
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300233
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300234 if ((ret = m920x_write(d->udev, M9206_I2C, msg[i].buf[j], stop)) != 0)
Trent Piephod40860f2007-03-05 23:55:00 -0300235 goto unlock;
236 /* Should check for ack here too. */
Aapo Tahkola26247012007-03-05 18:23:19 -0300237 }
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300238 }
239 }
Aapo Tahkola26247012007-03-05 18:23:19 -0300240 ret = num;
Trent Piephod40860f2007-03-05 23:55:00 -0300241
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300242 unlock:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300243 mutex_unlock(&d->i2c_mutex);
244
245 return ret;
246}
247
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300248static u32 m920x_i2c_func(struct i2c_adapter *adapter)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300249{
250 return I2C_FUNC_I2C;
251}
252
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300253static struct i2c_algorithm m920x_i2c_algo = {
254 .master_xfer = m920x_i2c_xfer,
255 .functionality = m920x_i2c_func,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300256};
257
Michael Krufky5afb7072007-03-26 16:35:29 -0300258/* pid filter */
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300259static int m920x_set_filter(struct dvb_usb_device *d, int type, int idx, int pid)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300260{
261 int ret = 0;
262
263 if (pid >= 0x8000)
264 return -EINVAL;
265
266 pid |= 0x8000;
267
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300268 if ((ret = m920x_write(d->udev, M9206_FILTER, pid, (type << 8) | (idx * 4) )) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300269 return ret;
270
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300271 if ((ret = m920x_write(d->udev, M9206_FILTER, 0, (type << 8) | (idx * 4) )) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300272 return ret;
273
274 return ret;
275}
276
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300277static int m920x_update_filters(struct dvb_usb_adapter *adap)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300278{
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300279 struct m920x_state *m = adap->dev->priv;
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300280 int enabled = m->filtering_enabled[adap->id];
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300281 int i, ret = 0, filter = 0;
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300282 int ep = adap->props.stream.endpoint;
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300283
284 for (i = 0; i < M9206_MAX_FILTERS; i++)
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300285 if (m->filters[adap->id][i] == 8192)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300286 enabled = 0;
287
288 /* Disable all filters */
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300289 if ((ret = m920x_set_filter(adap->dev, ep, 1, enabled)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300290 return ret;
291
292 for (i = 0; i < M9206_MAX_FILTERS; i++)
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300293 if ((ret = m920x_set_filter(adap->dev, ep, i + 2, 0)) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300294 return ret;
295
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300296 /* Set */
297 if (enabled) {
298 for (i = 0; i < M9206_MAX_FILTERS; i++) {
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300299 if (m->filters[adap->id][i] == 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300300 continue;
301
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300302 if ((ret = m920x_set_filter(adap->dev, ep, filter + 2, m->filters[adap->id][i])) != 0)
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300303 return ret;
304
305 filter++;
306 }
307 }
308
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300309 return ret;
310}
311
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300312static int m920x_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300313{
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300314 struct m920x_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300315
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300316 m->filtering_enabled[adap->id] = onoff ? 1 : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300317
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300318 return m920x_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300319}
320
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300321static int m920x_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid, int onoff)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300322{
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300323 struct m920x_state *m = adap->dev->priv;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300324
Aapo Tahkola47f8df02007-05-08 12:03:55 -0300325 m->filters[adap->id][index] = onoff ? pid : 0;
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300326
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300327 return m920x_update_filters(adap);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300328}
329
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300330static int m920x_firmware_download(struct usb_device *udev, const struct firmware *fw)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300331{
332 u16 value, index, size;
333 u8 read[4], *buff;
334 int i, pass, ret = 0;
335
336 buff = kmalloc(65536, GFP_KERNEL);
337
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300338 if ((ret = m920x_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300339 goto done;
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300340 deb("%x %x %x %x\n", read[0], read[1], read[2], read[3]);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300341
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300342 if ((ret = m920x_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300343 goto done;
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300344 deb("%x\n", read[0]);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300345
346 for (pass = 0; pass < 2; pass++) {
347 for (i = 0; i + (sizeof(u16) * 3) < fw->size;) {
348 value = le16_to_cpu(*(u16 *)(fw->data + i));
349 i += sizeof(u16);
350
351 index = le16_to_cpu(*(u16 *)(fw->data + i));
352 i += sizeof(u16);
353
354 size = le16_to_cpu(*(u16 *)(fw->data + i));
355 i += sizeof(u16);
356
357 if (pass == 1) {
358 /* Will stall if using fw->data ... */
359 memcpy(buff, fw->data + i, size);
360
361 ret = usb_control_msg(udev, usb_sndctrlpipe(udev,0),
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300362 M9206_FW,
363 USB_TYPE_VENDOR | USB_DIR_OUT,
364 value, index, buff, size, 20);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300365 if (ret != size) {
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300366 deb("error while uploading fw!\n");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300367 ret = -EIO;
368 goto done;
369 }
370 msleep(3);
371 }
372 i += size;
373 }
374 if (i != fw->size) {
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300375 deb("bad firmware file!\n");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300376 ret = -EINVAL;
377 goto done;
378 }
379 }
380
381 msleep(36);
382
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300383 /* m920x will disconnect itself from the bus after this. */
384 (void) m920x_write(udev, M9206_CORE, 0x01, M9206_FW_GO);
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300385 deb("firmware uploaded!\n");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300386
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300387 done:
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300388 kfree(buff);
389
390 return ret;
391}
392
Michael Krufkye16c1f52007-01-23 15:00:42 -0300393/* Callbacks for DVB USB */
Aapo Tahkola7d1d4e62007-03-15 13:01:46 -0300394static int m920x_identify_state(struct usb_device *udev,
395 struct dvb_usb_device_properties *props,
396 struct dvb_usb_device_description **desc,
397 int *cold)
Michael Krufkye16c1f52007-01-23 15:00:42 -0300398{
399 struct usb_host_interface *alt;
400
401 alt = usb_altnum_to_altsetting(usb_ifnum_to_if(udev, 0), 1);
402 *cold = (alt == NULL) ? 1 : 0;
403
404 return 0;
405}
406
Michael Krufky5afb7072007-03-26 16:35:29 -0300407/* demod configurations */
Michael Krufkye7b419b2007-03-26 16:39:20 -0300408static int m920x_mt352_demod_init(struct dvb_frontend *fe)
Michael Krufkye16c1f52007-01-23 15:00:42 -0300409{
Aapo Tahkolad577ee02007-05-08 18:33:52 -0300410 int ret;
Michael Krufkye16c1f52007-01-23 15:00:42 -0300411 u8 config[] = { CONFIG, 0x3d };
412 u8 clock[] = { CLOCK_CTL, 0x30 };
413 u8 reset[] = { RESET, 0x80 };
414 u8 adc_ctl[] = { ADC_CTL_1, 0x40 };
415 u8 agc[] = { AGC_TARGET, 0x1c, 0x20 };
416 u8 sec_agc[] = { 0x69, 0x00, 0xff, 0xff, 0x40, 0xff, 0x00, 0x40, 0x40 };
417 u8 unk1[] = { 0x93, 0x1a };
418 u8 unk2[] = { 0xb5, 0x7a };
419
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300420 deb("Demod init!\n");
Michael Krufkye16c1f52007-01-23 15:00:42 -0300421
Aapo Tahkolad577ee02007-05-08 18:33:52 -0300422 if ((ret = mt352_write(fe, config, ARRAY_SIZE(config))) != 0)
423 return ret;
424 if ((ret = mt352_write(fe, clock, ARRAY_SIZE(clock))) != 0)
425 return ret;
426 if ((ret = mt352_write(fe, reset, ARRAY_SIZE(reset))) != 0)
427 return ret;
428 if ((ret = mt352_write(fe, adc_ctl, ARRAY_SIZE(adc_ctl))) != 0)
429 return ret;
430 if ((ret = mt352_write(fe, agc, ARRAY_SIZE(agc))) != 0)
431 return ret;
432 if ((ret = mt352_write(fe, sec_agc, ARRAY_SIZE(sec_agc))) != 0)
433 return ret;
434 if ((ret = mt352_write(fe, unk1, ARRAY_SIZE(unk1))) != 0)
435 return ret;
436 if ((ret = mt352_write(fe, unk2, ARRAY_SIZE(unk2))) != 0)
437 return ret;
438
Michael Krufkye16c1f52007-01-23 15:00:42 -0300439 return 0;
440}
441
Michael Krufkye7b419b2007-03-26 16:39:20 -0300442static struct mt352_config m920x_mt352_config = {
Aapo Tahkola26247012007-03-05 18:23:19 -0300443 .demod_address = 0x0f,
Michael Krufkye16c1f52007-01-23 15:00:42 -0300444 .no_tuner = 1,
Michael Krufkye7b419b2007-03-26 16:39:20 -0300445 .demod_init = m920x_mt352_demod_init,
Michael Krufkye16c1f52007-01-23 15:00:42 -0300446};
447
Michael Krufkye7b419b2007-03-26 16:39:20 -0300448static struct tda1004x_config m920x_tda10046_08_config = {
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300449 .demod_address = 0x08,
450 .invert = 0,
451 .invert_oclk = 0,
452 .ts_mode = TDA10046_TS_SERIAL,
453 .xtal_freq = TDA10046_XTAL_16M,
454 .if_freq = TDA10046_FREQ_045,
455 .agc_config = TDA10046_AGC_TDA827X,
456 .gpio_config = TDA10046_GPTRI,
457 .request_firmware = NULL,
458};
459
Michael Krufkye7b419b2007-03-26 16:39:20 -0300460static struct tda1004x_config m920x_tda10046_0b_config = {
Nick Andrewaa50ec22007-03-22 17:09:35 -0300461 .demod_address = 0x0b,
462 .invert = 0,
463 .invert_oclk = 0,
464 .ts_mode = TDA10046_TS_SERIAL,
465 .xtal_freq = TDA10046_XTAL_16M,
466 .if_freq = TDA10046_FREQ_045,
467 .agc_config = TDA10046_AGC_TDA827X,
468 .gpio_config = TDA10046_GPTRI,
469 .request_firmware = NULL, /* uses firmware EEPROM */
470};
471
Michael Krufky5afb7072007-03-26 16:35:29 -0300472/* tuner configurations */
Michael Krufkye7b419b2007-03-26 16:39:20 -0300473static struct qt1010_config m920x_qt1010_config = {
Michael Krufky5afb7072007-03-26 16:35:29 -0300474 .i2c_address = 0x62
475};
476
477/* Callbacks for DVB USB */
Michael Krufkye7b419b2007-03-26 16:39:20 -0300478static int m920x_mt352_frontend_attach(struct dvb_usb_adapter *adap)
Michael Krufky5afb7072007-03-26 16:35:29 -0300479{
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300480 deb("%s\n",__FUNCTION__);
Michael Krufky5afb7072007-03-26 16:35:29 -0300481
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300482 if ((adap->fe = dvb_attach(mt352_attach,
483 &m920x_mt352_config,
Michael Krufky5afb7072007-03-26 16:35:29 -0300484 &adap->dev->i2c_adap)) == NULL)
485 return -EIO;
486
487 return 0;
488}
489
Michael Krufkye7b419b2007-03-26 16:39:20 -0300490static int m920x_tda10046_08_frontend_attach(struct dvb_usb_adapter *adap)
Michael Krufky5afb7072007-03-26 16:35:29 -0300491{
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300492 deb("%s\n",__FUNCTION__);
Nick Andrewaa50ec22007-03-22 17:09:35 -0300493
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300494 if ((adap->fe = dvb_attach(tda10046_attach,
Michael Krufkye7b419b2007-03-26 16:39:20 -0300495 &m920x_tda10046_08_config,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300496 &adap->dev->i2c_adap)) == NULL)
Nick Andrewaa50ec22007-03-22 17:09:35 -0300497 return -EIO;
498
Nick Andrewaa50ec22007-03-22 17:09:35 -0300499 return 0;
500}
501
Michael Krufkye7b419b2007-03-26 16:39:20 -0300502static int m920x_tda10046_0b_frontend_attach(struct dvb_usb_adapter *adap)
Nick Andrewaa50ec22007-03-22 17:09:35 -0300503{
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300504 deb("%s\n",__FUNCTION__);
Nick Andrewaa50ec22007-03-22 17:09:35 -0300505
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300506 if ((adap->fe = dvb_attach(tda10046_attach,
Michael Krufkye7b419b2007-03-26 16:39:20 -0300507 &m920x_tda10046_0b_config,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300508 &adap->dev->i2c_adap)) == NULL)
Nick Andrewaa50ec22007-03-22 17:09:35 -0300509 return -EIO;
510
Nick Andrewaa50ec22007-03-22 17:09:35 -0300511 return 0;
512}
513
Michael Krufkye7b419b2007-03-26 16:39:20 -0300514static int m920x_qt1010_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky5afb7072007-03-26 16:35:29 -0300515{
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300516 deb("%s\n",__FUNCTION__);
Michael Krufkye7b419b2007-03-26 16:39:20 -0300517
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300518 if (dvb_attach(qt1010_attach, adap->fe, &adap->dev->i2c_adap, &m920x_qt1010_config) == NULL)
Michael Krufky5afb7072007-03-26 16:35:29 -0300519 return -ENODEV;
520
521 return 0;
522}
523
Michael Krufkye7b419b2007-03-26 16:39:20 -0300524static int m920x_tda8275_60_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky5afb7072007-03-26 16:35:29 -0300525{
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300526 deb("%s\n",__FUNCTION__);
Michael Krufkye7b419b2007-03-26 16:39:20 -0300527
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300528 if (dvb_attach(tda827x_attach, adap->fe, 0x60, &adap->dev->i2c_adap, NULL) == NULL)
Michael Krufky5afb7072007-03-26 16:35:29 -0300529 return -ENODEV;
Nick Andrewaa50ec22007-03-22 17:09:35 -0300530
531 return 0;
532}
533
Michael Krufkye7b419b2007-03-26 16:39:20 -0300534static int m920x_tda8275_61_tuner_attach(struct dvb_usb_adapter *adap)
Nick Andrewaa50ec22007-03-22 17:09:35 -0300535{
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300536 deb("%s\n",__FUNCTION__);
Nick Andrewaa50ec22007-03-22 17:09:35 -0300537
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300538 if (dvb_attach(tda827x_attach, adap->fe, 0x61, &adap->dev->i2c_adap, NULL) == NULL)
Nick Andrewaa50ec22007-03-22 17:09:35 -0300539 return -ENODEV;
540
Nick Andrewaa50ec22007-03-22 17:09:35 -0300541 return 0;
542}
543
Michael Krufky5afb7072007-03-26 16:35:29 -0300544/* device-specific initialization */
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300545static struct m920x_inits megasky_rc_init [] = {
Michael Krufky5afb7072007-03-26 16:35:29 -0300546 { M9206_RC_INIT2, 0xa8 },
547 { M9206_RC_INIT1, 0x51 },
548 { } /* terminating entry */
549};
550
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300551static struct m920x_inits tvwalkertwin_rc_init [] = {
Nick Andrewaa50ec22007-03-22 17:09:35 -0300552 { M9206_RC_INIT2, 0x00 },
553 { M9206_RC_INIT1, 0xef },
554 { 0xff28, 0x00 },
555 { 0xff23, 0x00 },
556 { 0xff21, 0x30 },
557 { } /* terminating entry */
558};
559
Michael Krufky5afb7072007-03-26 16:35:29 -0300560/* ir keymaps */
561static struct dvb_usb_rc_key megasky_rc_keys [] = {
562 { 0x0, 0x12, KEY_POWER },
563 { 0x0, 0x1e, KEY_CYCLEWINDOWS }, /* min/max */
564 { 0x0, 0x02, KEY_CHANNELUP },
565 { 0x0, 0x05, KEY_CHANNELDOWN },
566 { 0x0, 0x03, KEY_VOLUMEUP },
567 { 0x0, 0x06, KEY_VOLUMEDOWN },
568 { 0x0, 0x04, KEY_MUTE },
569 { 0x0, 0x07, KEY_OK }, /* TS */
570 { 0x0, 0x08, KEY_STOP },
571 { 0x0, 0x09, KEY_MENU }, /* swap */
572 { 0x0, 0x0a, KEY_REWIND },
573 { 0x0, 0x1b, KEY_PAUSE },
574 { 0x0, 0x1f, KEY_FASTFORWARD },
575 { 0x0, 0x0c, KEY_RECORD },
576 { 0x0, 0x0d, KEY_CAMERA }, /* screenshot */
577 { 0x0, 0x0e, KEY_COFFEE }, /* "MTS" */
578};
579
580static struct dvb_usb_rc_key tvwalkertwin_rc_keys [] = {
581 { 0x0, 0x01, KEY_ZOOM }, /* Full Screen */
582 { 0x0, 0x02, KEY_CAMERA }, /* snapshot */
583 { 0x0, 0x03, KEY_MUTE },
584 { 0x0, 0x04, KEY_REWIND },
585 { 0x0, 0x05, KEY_PLAYPAUSE }, /* Play/Pause */
586 { 0x0, 0x06, KEY_FASTFORWARD },
587 { 0x0, 0x07, KEY_RECORD },
588 { 0x0, 0x08, KEY_STOP },
589 { 0x0, 0x09, KEY_TIME }, /* Timeshift */
590 { 0x0, 0x0c, KEY_COFFEE }, /* Recall */
591 { 0x0, 0x0e, KEY_CHANNELUP },
592 { 0x0, 0x12, KEY_POWER },
593 { 0x0, 0x15, KEY_MENU }, /* source */
594 { 0x0, 0x18, KEY_CYCLEWINDOWS }, /* TWIN PIP */
595 { 0x0, 0x1a, KEY_CHANNELDOWN },
596 { 0x0, 0x1b, KEY_VOLUMEDOWN },
597 { 0x0, 0x1e, KEY_VOLUMEUP },
598};
599
Michael Krufky26f48ea2006-09-28 01:46:49 -0300600/* DVB USB Driver stuff */
601static struct dvb_usb_device_properties megasky_properties;
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300602static struct dvb_usb_device_properties digivox_mini_ii_properties;
Nick Andrewaa50ec22007-03-22 17:09:35 -0300603static struct dvb_usb_device_properties tvwalkertwin_properties;
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300604static struct dvb_usb_device_properties dposh_properties;
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300605
Michael Krufkyfa948052007-01-21 15:57:48 -0300606static int m920x_probe(struct usb_interface *intf,
607 const struct usb_device_id *id)
Michael Krufky26f48ea2006-09-28 01:46:49 -0300608{
Aapo Tahkola55bbe5e2007-05-08 12:56:54 -0300609 struct dvb_usb_device *d = NULL;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300610 int ret;
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300611 struct m920x_inits *rc_init_seq = NULL;
Nick Andrewaa50ec22007-03-22 17:09:35 -0300612 int bInterfaceNumber = intf->cur_altsetting->desc.bInterfaceNumber;
Michael Krufky26f48ea2006-09-28 01:46:49 -0300613
Aapo Tahkolabf2b4f672007-03-26 16:59:16 -0300614 deb("Probing for m920x device at interface %d\n", bInterfaceNumber);
Michael Krufky26f48ea2006-09-28 01:46:49 -0300615
Nick Andrewaa50ec22007-03-22 17:09:35 -0300616 if (bInterfaceNumber == 0) {
617 /* Single-tuner device, or first interface on
618 * multi-tuner device
619 */
Michael Krufky26f48ea2006-09-28 01:46:49 -0300620
Nick Andrewaa50ec22007-03-22 17:09:35 -0300621 if ((ret = dvb_usb_device_init(intf, &megasky_properties,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300622 THIS_MODULE, &d)) == 0) {
Nick Andrewaa50ec22007-03-22 17:09:35 -0300623 rc_init_seq = megasky_rc_init;
624 goto found;
625 }
626
Aapo Tahkola9ad4eef2007-04-20 13:34:25 -0300627 if ((ret = dvb_usb_device_init(intf, &digivox_mini_ii_properties,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300628 THIS_MODULE, &d)) == 0) {
Nick Andrewaa50ec22007-03-22 17:09:35 -0300629 /* No remote control, so no rc_init_seq */
630 goto found;
631 }
632
633 /* This configures both tuners on the TV Walker Twin */
634 if ((ret = dvb_usb_device_init(intf, &tvwalkertwin_properties,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300635 THIS_MODULE, &d)) == 0) {
Nick Andrewaa50ec22007-03-22 17:09:35 -0300636 rc_init_seq = tvwalkertwin_rc_init;
637 goto found;
638 }
639
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300640 if ((ret = dvb_usb_device_init(intf, &dposh_properties,
641 THIS_MODULE, &d)) == 0) {
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300642 /* Remote controller not supported yet. */
643 goto found;
644 }
645
Nick Andrewaa50ec22007-03-22 17:09:35 -0300646 return ret;
647 } else {
648 /* Another interface on a multi-tuner device */
649
650 /* The LifeView TV Walker Twin gets here, but struct
651 * tvwalkertwin_properties already configured both
652 * tuners, so there is nothing for us to do here
653 */
Nick Andrewaa50ec22007-03-22 17:09:35 -0300654 }
Michael Krufky26f48ea2006-09-28 01:46:49 -0300655
Michael Krufkye7b419b2007-03-26 16:39:20 -0300656 found:
Aapo Tahkola55bbe5e2007-05-08 12:56:54 -0300657 if ((ret = m920x_init_ep(intf)) < 0)
Aapo Tahkola480ac762007-03-05 18:54:27 -0300658 return ret;
659
Aapo Tahkola55bbe5e2007-05-08 12:56:54 -0300660 if (d && (ret = m920x_init(d, rc_init_seq)) != 0)
Aapo Tahkola480ac762007-03-05 18:54:27 -0300661 return ret;
662
Michael Krufky26f48ea2006-09-28 01:46:49 -0300663 return ret;
664}
665
666static struct usb_device_id m920x_table [] = {
667 { USB_DEVICE(USB_VID_MSI, USB_PID_MSI_MEGASKY580) },
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300668 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
669 USB_PID_MSI_DIGI_VOX_MINI_II) },
Nick Andrewaa50ec22007-03-22 17:09:35 -0300670 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
671 USB_PID_LIFEVIEW_TV_WALKER_TWIN_COLD) },
672 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
673 USB_PID_LIFEVIEW_TV_WALKER_TWIN_WARM) },
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300674 { USB_DEVICE(USB_VID_DPOSH, USB_PID_DPOSH_M9206_COLD) },
675 { USB_DEVICE(USB_VID_DPOSH, USB_PID_DPOSH_M9206_WARM) },
Michael Krufky26f48ea2006-09-28 01:46:49 -0300676 { } /* Terminating entry */
677};
678MODULE_DEVICE_TABLE (usb, m920x_table);
679
Michael Krufky01cb34d2006-09-23 20:01:29 -0300680static struct dvb_usb_device_properties megasky_properties = {
Michael Krufky758117c2007-01-23 15:34:10 -0300681 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
Michael Krufky1f61f3b2006-10-07 15:03:04 -0300682
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300683 .usb_ctrl = DEVICE_SPECIFIC,
684 .firmware = "dvb-usb-megasky-02.fw",
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300685 .download_firmware = m920x_firmware_download,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300686
Aapo Tahkolae2adbecf72006-09-28 00:47:51 -0300687 .rc_interval = 100,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300688 .rc_key_map = megasky_rc_keys,
689 .rc_key_map_size = ARRAY_SIZE(megasky_rc_keys),
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300690 .rc_query = m920x_rc_query,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300691
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300692 .size_of_priv = sizeof(struct m920x_state),
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300693
Aapo Tahkola7d1d4e62007-03-15 13:01:46 -0300694 .identify_state = m920x_identify_state,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300695 .num_adapters = 1,
696 .adapter = {{
Michael Krufky758117c2007-01-23 15:34:10 -0300697 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
698 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
699
Michael Krufky01cb34d2006-09-23 20:01:29 -0300700 .pid_filter_count = 8,
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300701 .pid_filter = m920x_pid_filter,
702 .pid_filter_ctrl = m920x_pid_filter_ctrl,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300703
Michael Krufkye7b419b2007-03-26 16:39:20 -0300704 .frontend_attach = m920x_mt352_frontend_attach,
705 .tuner_attach = m920x_qt1010_tuner_attach,
Michael Krufky01cb34d2006-09-23 20:01:29 -0300706
707 .stream = {
708 .type = USB_BULK,
709 .count = 8,
710 .endpoint = 0x81,
711 .u = {
712 .bulk = {
713 .buffersize = 512,
714 }
715 }
716 },
717 }},
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300718 .i2c_algo = &m920x_i2c_algo,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300719
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300720 .num_device_descs = 1,
721 .devices = {
722 { "MSI Mega Sky 580 DVB-T USB2.0",
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300723 { &m920x_table[0], NULL },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300724 { NULL },
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300725 }
726 }
727};
728
729static struct dvb_usb_device_properties digivox_mini_ii_properties = {
730 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
731
732 .usb_ctrl = DEVICE_SPECIFIC,
733 .firmware = "dvb-usb-digivox-02.fw",
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300734 .download_firmware = m920x_firmware_download,
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300735
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300736 .size_of_priv = sizeof(struct m920x_state),
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300737
738 .identify_state = m920x_identify_state,
739 .num_adapters = 1,
740 .adapter = {{
741 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300742 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300743
744 .pid_filter_count = 8,
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300745 .pid_filter = m920x_pid_filter,
746 .pid_filter_ctrl = m920x_pid_filter_ctrl,
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300747
Michael Krufkye7b419b2007-03-26 16:39:20 -0300748 .frontend_attach = m920x_tda10046_08_frontend_attach,
749 .tuner_attach = m920x_tda8275_60_tuner_attach,
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300750
751 .stream = {
752 .type = USB_BULK,
753 .count = 8,
754 .endpoint = 0x81,
755 .u = {
756 .bulk = {
757 .buffersize = 0x4000,
758 }
759 }
760 },
761 }},
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300762 .i2c_algo = &m920x_i2c_algo,
Pierre Willenbrockd4ca23b2007-03-18 19:54:07 -0300763
764 .num_device_descs = 1,
765 .devices = {
766 { "MSI DIGI VOX mini II DVB-T USB2.0",
767 { &m920x_table[1], NULL },
768 { NULL },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300769 },
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300770 }
771};
772
Michael Krufkye7b419b2007-03-26 16:39:20 -0300773/* LifeView TV Walker Twin support by Nick Andrew <nick@nick-andrew.net>
774 *
775 * LifeView TV Walker Twin has 1 x M9206, 2 x TDA10046, 2 x TDA8275A
776 * TDA10046 #0 is located at i2c address 0x08
Aapo Tahkola3ab3b692007-05-08 18:23:38 -0300777 * TDA10046 #1 is located at i2c address 0x0b
Michael Krufkye7b419b2007-03-26 16:39:20 -0300778 * TDA8275A #0 is located at i2c address 0x60
Aapo Tahkola3ab3b692007-05-08 18:23:38 -0300779 * TDA8275A #1 is located at i2c address 0x61
Michael Krufkye7b419b2007-03-26 16:39:20 -0300780 */
Nick Andrewaa50ec22007-03-22 17:09:35 -0300781static struct dvb_usb_device_properties tvwalkertwin_properties = {
782 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
783
784 .usb_ctrl = DEVICE_SPECIFIC,
785 .firmware = "dvb-usb-tvwalkert.fw",
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300786 .download_firmware = m920x_firmware_download,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300787
788 .rc_interval = 100,
789 .rc_key_map = tvwalkertwin_rc_keys,
790 .rc_key_map_size = ARRAY_SIZE(tvwalkertwin_rc_keys),
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300791 .rc_query = m920x_rc_query,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300792
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300793 .size_of_priv = sizeof(struct m920x_state),
Nick Andrewaa50ec22007-03-22 17:09:35 -0300794
795 .identify_state = m920x_identify_state,
Aapo Tahkola3ab3b692007-05-08 18:23:38 -0300796 .num_adapters = 2,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300797 .adapter = {{
798 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
799 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300800
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300801 .pid_filter_count = 8,
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300802 .pid_filter = m920x_pid_filter,
803 .pid_filter_ctrl = m920x_pid_filter_ctrl,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300804
Michael Krufkye7b419b2007-03-26 16:39:20 -0300805 .frontend_attach = m920x_tda10046_08_frontend_attach,
806 .tuner_attach = m920x_tda8275_60_tuner_attach,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300807
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300808 .stream = {
809 .type = USB_BULK,
810 .count = 8,
811 .endpoint = 0x81,
812 .u = {
813 .bulk = {
814 .buffersize = 512,
815 }
816 }
817 }},{
818 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
819 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
820
821 .pid_filter_count = 8,
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300822 .pid_filter = m920x_pid_filter,
823 .pid_filter_ctrl = m920x_pid_filter_ctrl,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300824
Michael Krufkye7b419b2007-03-26 16:39:20 -0300825 .frontend_attach = m920x_tda10046_0b_frontend_attach,
826 .tuner_attach = m920x_tda8275_61_tuner_attach,
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300827
828 .stream = {
829 .type = USB_BULK,
830 .count = 8,
831 .endpoint = 0x82,
832 .u = {
833 .bulk = {
834 .buffersize = 512,
835 }
836 }
Nick Andrewaa50ec22007-03-22 17:09:35 -0300837 },
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300838 }},
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300839 .i2c_algo = &m920x_i2c_algo,
Nick Andrewaa50ec22007-03-22 17:09:35 -0300840
841 .num_device_descs = 1,
842 .devices = {
843 { .name = "LifeView TV Walker Twin DVB-T USB2.0",
844 .cold_ids = { &m920x_table[2], NULL },
845 .warm_ids = { &m920x_table[3], NULL },
846 },
847 }
848};
849
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300850static struct dvb_usb_device_properties dposh_properties = {
851 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
852
853 .usb_ctrl = DEVICE_SPECIFIC,
854 .firmware = "dvb-usb-dposh-01.fw",
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300855 .download_firmware = m920x_firmware_download,
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300856
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300857 .size_of_priv = sizeof(struct m920x_state),
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300858
859 .identify_state = m920x_identify_state,
860 .num_adapters = 1,
861 .adapter = {{
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300862 /* Hardware pid filters don't work with this device/firmware */
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300863
Michael Krufkye7b419b2007-03-26 16:39:20 -0300864 .frontend_attach = m920x_mt352_frontend_attach,
865 .tuner_attach = m920x_qt1010_tuner_attach,
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300866
Michael Krufkyd3911ea2007-03-22 19:03:37 -0300867 .stream = {
868 .type = USB_BULK,
869 .count = 8,
870 .endpoint = 0x81,
871 .u = {
872 .bulk = {
873 .buffersize = 512,
874 }
875 }
876 },
877 }},
Aapo Tahkola4fd74a72007-03-26 17:05:59 -0300878 .i2c_algo = &m920x_i2c_algo,
Aapo Tahkolaf8e0bd52007-03-22 17:37:58 -0300879
880 .num_device_descs = 1,
881 .devices = {
882 { .name = "Dposh DVB-T USB2.0",
883 .cold_ids = { &m920x_table[4], NULL },
884 .warm_ids = { &m920x_table[5], NULL },
885 },
886 }
887};
888
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300889static struct usb_driver m920x_driver = {
890 .name = "dvb_usb_m920x",
Michael Krufky2a2bfa72006-09-23 20:13:12 -0300891 .probe = m920x_probe,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300892 .disconnect = dvb_usb_device_exit,
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300893 .id_table = m920x_table,
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300894};
895
896/* module stuff */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300897static int __init m920x_module_init(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300898{
899 int ret;
900
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300901 if ((ret = usb_register(&m920x_driver))) {
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300902 err("usb_register failed. Error number %d", ret);
903 return ret;
904 }
905
906 return 0;
907}
908
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300909static void __exit m920x_module_exit(void)
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300910{
911 /* deregister this driver from the USB subsystem */
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300912 usb_deregister(&m920x_driver);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300913}
914
Michael Krufkybaa2ed02006-09-23 20:01:29 -0300915module_init (m920x_module_init);
916module_exit (m920x_module_exit);
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300917
918MODULE_AUTHOR("Aapo Tahkola <aet@rasterburn.org>");
Nick Andrewaa50ec22007-03-22 17:09:35 -0300919MODULE_DESCRIPTION("DVB Driver for ULI M920x");
Aapo Tahkola5fecd9f2006-09-23 20:00:41 -0300920MODULE_VERSION("0.1");
921MODULE_LICENSE("GPL");
Michael Krufkyce9c2752007-03-22 17:18:26 -0300922
923/*
924 * Local variables:
925 * c-basic-offset: 8
926 */