]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/media/usb/dvb-usb/digitv.c
UBUNTU: Ubuntu-4.15.0-96.97
[mirror_ubuntu-bionic-kernel.git] / drivers / media / usb / dvb-usb / digitv.c
CommitLineData
776338e1
JS
1/* DVB USB compliant linux driver for Nebula Electronics uDigiTV DVB-T USB2.0
2 * receiver
3 *
99e44da7 4 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@posteo.de)
776338e1 5 *
78c6e73f 6 * partly based on the SDK published by Nebula Electronics
776338e1
JS
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation, version 2.
11 *
12 * see Documentation/dvb/README.dvb-usb for more information
13 */
14#include "digitv.h"
15
16#include "mt352.h"
17#include "nxt6000.h"
18
19/* debug */
53133afb 20static int dvb_usb_digitv_debug;
776338e1
JS
21module_param_named(debug,dvb_usb_digitv_debug, int, 0644);
22MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
78e92006
JG
23
24DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
25
53133afb 26#define deb_rc(args...) dprintk(dvb_usb_digitv_debug,0x01,args)
776338e1
JS
27
28static int digitv_ctrl_msg(struct dvb_usb_device *d,
29 u8 cmd, u8 vv, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
30{
f0b0ada7 31 struct digitv_state *st = d->priv;
3dadf91c
MCC
32 int ret, wo;
33
34 wo = (rbuf == NULL || rlen == 0); /* write-only */
776338e1 35
821117dc
AM
36 if (wlen > 4 || rlen > 4)
37 return -EIO;
38
f0b0ada7
MCC
39 memset(st->sndbuf, 0, 7);
40 memset(st->rcvbuf, 0, 7);
41
42 st->sndbuf[0] = cmd;
43 st->sndbuf[1] = vv;
44 st->sndbuf[2] = wo ? wlen : rlen;
776338e1 45
4302c15e 46 if (wo) {
f0b0ada7 47 memcpy(&st->sndbuf[3], wbuf, wlen);
3dadf91c 48 ret = dvb_usb_generic_write(d, st->sndbuf, 7);
776338e1 49 } else {
3dadf91c 50 ret = dvb_usb_generic_rw(d, st->sndbuf, 7, st->rcvbuf, 7, 10);
f0b0ada7 51 memcpy(rbuf, &st->rcvbuf[3], rlen);
776338e1 52 }
3dadf91c 53 return ret;
776338e1
JS
54}
55
56/* I2C */
57static int digitv_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
58{
59 struct dvb_usb_device *d = i2c_get_adapdata(adap);
60 int i;
61
3593cab5 62 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
776338e1
JS
63 return -EAGAIN;
64
65 if (num > 2)
66 warn("more than 2 i2c messages at a time is not handled yet. TODO.");
67
68 for (i = 0; i < num; i++) {
69 /* write/read request */
70 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
71 if (digitv_ctrl_msg(d, USB_READ_COFDM, msg[i].buf[0], NULL, 0,
72 msg[i+1].buf,msg[i+1].len) < 0)
73 break;
74 i++;
75 } else
76 if (digitv_ctrl_msg(d,USB_WRITE_COFDM, msg[i].buf[0],
77 &msg[i].buf[1],msg[i].len-1,NULL,0) < 0)
78 break;
79 }
80
3593cab5 81 mutex_unlock(&d->i2c_mutex);
776338e1
JS
82 return i;
83}
84
85static u32 digitv_i2c_func(struct i2c_adapter *adapter)
86{
87 return I2C_FUNC_I2C;
88}
89
90static struct i2c_algorithm digitv_i2c_algo = {
776338e1
JS
91 .master_xfer = digitv_i2c_xfer,
92 .functionality = digitv_i2c_func,
93};
94
95/* Callbacks for DVB USB */
96static int digitv_identify_state (struct usb_device *udev, struct
4d43e13f 97 dvb_usb_device_properties *props, struct dvb_usb_device_description **desc,
776338e1
JS
98 int *cold)
99{
100 *cold = udev->descriptor.iManufacturer == 0 && udev->descriptor.iProduct == 0;
101 return 0;
102}
103
104static int digitv_mt352_demod_init(struct dvb_frontend *fe)
105{
78c6e73f
PB
106 static u8 reset_buf[] = { 0x89, 0x38, 0x8a, 0x2d, 0x50, 0x80 };
107 static u8 init_buf[] = { 0x68, 0xa0, 0x8e, 0x40, 0x53, 0x50,
108 0x67, 0x20, 0x7d, 0x01, 0x7c, 0x00, 0x7a, 0x00,
109 0x79, 0x20, 0x57, 0x05, 0x56, 0x31, 0x88, 0x0f,
110 0x75, 0x32 };
111 int i;
776338e1 112
78c6e73f
PB
113 for (i = 0; i < ARRAY_SIZE(reset_buf); i += 2)
114 mt352_write(fe, &reset_buf[i], 2);
776338e1 115
776338e1 116 msleep(1);
776338e1 117
78c6e73f
PB
118 for (i = 0; i < ARRAY_SIZE(init_buf); i += 2)
119 mt352_write(fe, &init_buf[i], 2);
776338e1
JS
120
121 return 0;
122}
123
124static struct mt352_config digitv_mt352_config = {
776338e1 125 .demod_init = digitv_mt352_demod_init,
776338e1
JS
126};
127
14d24d14 128static int digitv_nxt6000_tuner_set_params(struct dvb_frontend *fe)
115eea4e 129{
4d43e13f 130 struct dvb_usb_adapter *adap = fe->dvb->priv;
115eea4e 131 u8 b[5];
4ce15678 132
249fa0b0 133 fe->ops.tuner_ops.calc_regs(fe, b, sizeof(b));
2fe22dcd
MK
134 if (fe->ops.i2c_gate_ctrl)
135 fe->ops.i2c_gate_ctrl(fe, 1);
4d43e13f 136 return digitv_ctrl_msg(adap->dev, USB_WRITE_TUNER, 0, &b[1], 4, NULL, 0);
115eea4e 137}
776338e1 138
115eea4e
SO
139static struct nxt6000_config digitv_nxt6000_config = {
140 .clock_inversion = 1,
776338e1
JS
141};
142
4d43e13f 143static int digitv_frontend_attach(struct dvb_usb_adapter *adap)
776338e1 144{
4ce15678
TP
145 struct digitv_state *st = adap->dev->priv;
146
331423c4
MK
147 adap->fe_adap[0].fe = dvb_attach(mt352_attach, &digitv_mt352_config,
148 &adap->dev->i2c_adap);
149 if ((adap->fe_adap[0].fe) != NULL) {
4ce15678 150 st->is_nxt6000 = 0;
776338e1 151 return 0;
aac9ee95 152 }
331423c4
MK
153 adap->fe_adap[0].fe = dvb_attach(nxt6000_attach,
154 &digitv_nxt6000_config,
155 &adap->dev->i2c_adap);
156 if ((adap->fe_adap[0].fe) != NULL) {
4ce15678 157 st->is_nxt6000 = 1;
aac9ee95
AQ
158 return 0;
159 }
776338e1
JS
160 return -EIO;
161}
162
4d43e13f 163static int digitv_tuner_attach(struct dvb_usb_adapter *adap)
78c6e73f 164{
4ce15678
TP
165 struct digitv_state *st = adap->dev->priv;
166
77eed219 167 if (!dvb_attach(dvb_pll_attach, adap->fe_adap[0].fe, 0x60, NULL, DVB_PLL_TDED4))
4ce15678
TP
168 return -ENODEV;
169
170 if (st->is_nxt6000)
77eed219 171 adap->fe_adap[0].fe->ops.tuner_ops.set_params = digitv_nxt6000_tuner_set_params;
4ce15678 172
78c6e73f
PB
173 return 0;
174}
175
2f4f58d6 176static struct rc_map_table rc_map_digitv_table[] = {
2e365883
MCC
177 { 0x5f55, KEY_0 },
178 { 0x6f55, KEY_1 },
179 { 0x9f55, KEY_2 },
180 { 0xaf55, KEY_3 },
181 { 0x5f56, KEY_4 },
182 { 0x6f56, KEY_5 },
183 { 0x9f56, KEY_6 },
184 { 0xaf56, KEY_7 },
185 { 0x5f59, KEY_8 },
186 { 0x6f59, KEY_9 },
187 { 0x9f59, KEY_TV },
188 { 0xaf59, KEY_AUX },
189 { 0x5f5a, KEY_DVD },
190 { 0x6f5a, KEY_POWER },
444cc20b 191 { 0x9f5a, KEY_CAMERA }, /* labelled 'Picture' */
2e365883
MCC
192 { 0xaf5a, KEY_AUDIO },
193 { 0x5f65, KEY_INFO },
194 { 0x6f65, KEY_F13 }, /* 16:9 */
195 { 0x9f65, KEY_F14 }, /* 14:9 */
196 { 0xaf65, KEY_EPG },
197 { 0x5f66, KEY_EXIT },
198 { 0x6f66, KEY_MENU },
199 { 0x9f66, KEY_UP },
200 { 0xaf66, KEY_DOWN },
201 { 0x5f69, KEY_LEFT },
202 { 0x6f69, KEY_RIGHT },
203 { 0x9f69, KEY_ENTER },
204 { 0xaf69, KEY_CHANNELUP },
205 { 0x5f6a, KEY_CHANNELDOWN },
206 { 0x6f6a, KEY_VOLUMEUP },
207 { 0x9f6a, KEY_VOLUMEDOWN },
208 { 0xaf6a, KEY_RED },
209 { 0x5f95, KEY_GREEN },
210 { 0x6f95, KEY_YELLOW },
211 { 0x9f95, KEY_BLUE },
212 { 0xaf95, KEY_SUBTITLE },
213 { 0x5f96, KEY_F15 }, /* AD */
214 { 0x6f96, KEY_TEXT },
215 { 0x9f96, KEY_MUTE },
216 { 0xaf96, KEY_REWIND },
217 { 0x5f99, KEY_STOP },
218 { 0x6f99, KEY_PLAY },
219 { 0x9f99, KEY_FASTFORWARD },
220 { 0xaf99, KEY_F16 }, /* chapter */
221 { 0x5f9a, KEY_PAUSE },
222 { 0x6f9a, KEY_PLAY },
223 { 0x9f9a, KEY_RECORD },
224 { 0xaf9a, KEY_F17 }, /* picture in picture */
225 { 0x5fa5, KEY_KPPLUS }, /* zoom in */
226 { 0x6fa5, KEY_KPMINUS }, /* zoom out */
227 { 0x9fa5, KEY_F18 }, /* capture */
228 { 0xafa5, KEY_F19 }, /* web */
229 { 0x5fa6, KEY_EMAIL },
230 { 0x6fa6, KEY_PHONE },
231 { 0x9fa6, KEY_PC },
776338e1
JS
232};
233
15ac8e66 234static int digitv_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
776338e1 235{
434b0c1c 236 int ret, i;
776338e1 237 u8 key[5];
774c0de4
AT
238 u8 b[4] = { 0 };
239
240 *event = 0;
241 *state = REMOTE_NO_KEY_PRESSED;
776338e1 242
434b0c1c
SY
243 ret = digitv_ctrl_msg(d, USB_READ_REMOTE, 0, NULL, 0, &key[1], 4);
244 if (ret)
245 return ret;
774c0de4
AT
246
247 /* Tell the device we've read the remote. Not sure how necessary
248 this is, but the Nebula SDK does it. */
434b0c1c
SY
249 ret = digitv_ctrl_msg(d, USB_WRITE_REMOTE, 0, b, 4, NULL, 0);
250 if (ret)
251 return ret;
774c0de4
AT
252
253 /* if something is inside the buffer, simulate key press */
776338e1 254 if (key[1] != 0)
774c0de4 255 {
2f4f58d6
MCC
256 for (i = 0; i < d->props.rc.legacy.rc_map_size; i++) {
257 if (rc5_custom(&d->props.rc.legacy.rc_map_table[i]) == key[1] &&
258 rc5_data(&d->props.rc.legacy.rc_map_table[i]) == key[2]) {
259 *event = d->props.rc.legacy.rc_map_table[i].keycode;
774c0de4
AT
260 *state = REMOTE_KEY_PRESSED;
261 return 0;
262 }
263 }
264 }
776338e1 265
776338e1 266 if (key[0] != 0)
5bdb7872 267 deb_rc("key: %*ph\n", 5, key);
776338e1
JS
268 return 0;
269}
270
776338e1 271/* DVB USB Driver stuff */
4d43e13f 272static struct dvb_usb_device_properties digitv_properties;
776338e1
JS
273
274static int digitv_probe(struct usb_interface *intf,
275 const struct usb_device_id *id)
276{
115eea4e 277 struct dvb_usb_device *d;
78e92006
JG
278 int ret = dvb_usb_device_init(intf, &digitv_properties, THIS_MODULE, &d,
279 adapter_nr);
280 if (ret == 0) {
115eea4e
SO
281 u8 b[4] = { 0 };
282
21d06544
PB
283 if (d != NULL) { /* do that only when the firmware is loaded */
284 b[0] = 1;
285 digitv_ctrl_msg(d,USB_WRITE_REMOTE_TYPE,0,b,4,NULL,0);
115eea4e 286
21d06544
PB
287 b[0] = 0;
288 digitv_ctrl_msg(d,USB_WRITE_REMOTE,0,b,4,NULL,0);
289 }
115eea4e
SO
290 }
291 return ret;
776338e1
JS
292}
293
294static struct usb_device_id digitv_table [] = {
295 { USB_DEVICE(USB_VID_ANCHOR, USB_PID_NEBULA_DIGITV) },
296 { } /* Terminating entry */
297};
298MODULE_DEVICE_TABLE (usb, digitv_table);
299
4d43e13f 300static struct dvb_usb_device_properties digitv_properties = {
776338e1
JS
301 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
302
303 .usb_ctrl = CYPRESS_FX2,
21d06544 304 .firmware = "dvb-usb-digitv-02.fw",
776338e1 305
4ce15678
TP
306 .size_of_priv = sizeof(struct digitv_state),
307
4d43e13f
PB
308 .num_adapters = 1,
309 .adapter = {
310 {
77eed219
MK
311 .num_frontends = 1,
312 .fe = {{
01451e72
PB
313 .frontend_attach = digitv_frontend_attach,
314 .tuner_attach = digitv_tuner_attach,
776338e1 315
01451e72 316 /* parameter for the MPEG2-data transfer */
4d43e13f
PB
317 .stream = {
318 .type = USB_BULK,
01451e72
PB
319 .count = 7,
320 .endpoint = 0x02,
321 .u = {
322 .bulk = {
323 .buffersize = 4096,
324 }
325 }
326 },
77eed219 327 }},
4d43e13f
PB
328 }
329 },
330 .identify_state = digitv_identify_state,
331
f72a27b8
MCC
332 .rc.legacy = {
333 .rc_interval = 1000,
2f4f58d6
MCC
334 .rc_map_table = rc_map_digitv_table,
335 .rc_map_size = ARRAY_SIZE(rc_map_digitv_table),
f72a27b8
MCC
336 .rc_query = digitv_rc_query,
337 },
4d43e13f
PB
338
339 .i2c_algo = &digitv_i2c_algo,
340
341 .generic_bulk_ctrl_endpoint = 0x01,
776338e1 342
78c6e73f 343 .num_device_descs = 1,
776338e1
JS
344 .devices = {
345 { "Nebula Electronics uDigiTV DVB-T USB2.0)",
346 { &digitv_table[0], NULL },
347 { NULL },
348 },
21d06544 349 { NULL },
776338e1
JS
350 }
351};
352
353static struct usb_driver digitv_driver = {
63b5c1c4 354 .name = "dvb_usb_digitv",
776338e1
JS
355 .probe = digitv_probe,
356 .disconnect = dvb_usb_device_exit,
357 .id_table = digitv_table,
358};
359
ecb3b2b3 360module_usb_driver(digitv_driver);
776338e1 361
99e44da7 362MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@posteo.de>");
776338e1
JS
363MODULE_DESCRIPTION("Driver for Nebula Electronics uDigiTV DVB-T USB2.0");
364MODULE_VERSION("1.0-alpha");
365MODULE_LICENSE("GPL");