blob: c8fcd78425bd228ca4374daf94fdbf4ed1c0c17a [file] [log] [blame]
Antti Palosaari7f882c22012-03-30 09:10:08 -03001/*
2 * Afatech AF9035 DVB USB driver
3 *
4 * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
5 * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
22#include "af9035.h"
Antti Palosaari7f882c22012-03-30 09:10:08 -030023
Mauro Carvalho Chehab7760e142013-11-02 08:07:12 -030024/* Max transfer size done by I2C transfer functions */
25#define MAX_XFER_SIZE 64
26
Antti Palosaari7f882c22012-03-30 09:10:08 -030027DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
Antti Palosaari7f882c22012-03-30 09:10:08 -030028
Michael Büschb1a95992012-04-01 16:33:48 -030029static u16 af9035_checksum(const u8 *buf, size_t len)
30{
31 size_t i;
32 u16 checksum = 0;
33
34 for (i = 1; i < len; i++) {
35 if (i % 2)
36 checksum += buf[i] << 8;
37 else
38 checksum += buf[i];
39 }
40 checksum = ~checksum;
41
42 return checksum;
43}
44
Antti Palosaari5da2aec2012-06-17 23:15:03 -030045static int af9035_ctrl_msg(struct dvb_usb_device *d, struct usb_req *req)
Antti Palosaari7f882c22012-03-30 09:10:08 -030046{
Antti Palosaari7f882c22012-03-30 09:10:08 -030047#define REQ_HDR_LEN 4 /* send header size */
48#define ACK_HDR_LEN 3 /* rece header size */
49#define CHECKSUM_LEN 2
50#define USB_TIMEOUT 2000
Antti Palosaari5da2aec2012-06-17 23:15:03 -030051 struct state *state = d_to_priv(d);
52 int ret, wlen, rlen;
Antti Palosaari6fb39c52012-04-06 16:32:30 -030053 u16 checksum, tmp_checksum;
Antti Palosaari7f882c22012-03-30 09:10:08 -030054
Antti Palosaari3484d372013-02-26 13:56:34 -030055 mutex_lock(&d->usb_mutex);
56
Antti Palosaari7f882c22012-03-30 09:10:08 -030057 /* buffer overflow check */
58 if (req->wlen > (BUF_LEN - REQ_HDR_LEN - CHECKSUM_LEN) ||
Antti Palosaari119f7a82012-09-12 20:23:53 -030059 req->rlen > (BUF_LEN - ACK_HDR_LEN - CHECKSUM_LEN)) {
60 dev_err(&d->udev->dev, "%s: too much data wlen=%d rlen=%d\n",
Antti Palosaarie8292e22013-06-03 18:50:43 -030061 KBUILD_MODNAME, req->wlen, req->rlen);
Antti Palosaari3484d372013-02-26 13:56:34 -030062 ret = -EINVAL;
Wei Yongjun0170a392013-03-26 01:32:19 -030063 goto exit;
Antti Palosaari7f882c22012-03-30 09:10:08 -030064 }
65
Antti Palosaari3484d372013-02-26 13:56:34 -030066 state->buf[0] = REQ_HDR_LEN + req->wlen + CHECKSUM_LEN - 1;
67 state->buf[1] = req->mbox;
68 state->buf[2] = req->cmd;
69 state->buf[3] = state->seq++;
70 memcpy(&state->buf[REQ_HDR_LEN], req->wbuf, req->wlen);
Antti Palosaari5da2aec2012-06-17 23:15:03 -030071
72 wlen = REQ_HDR_LEN + req->wlen + CHECKSUM_LEN;
73 rlen = ACK_HDR_LEN + req->rlen + CHECKSUM_LEN;
Antti Palosaari7f882c22012-03-30 09:10:08 -030074
75 /* calc and add checksum */
Antti Palosaari3484d372013-02-26 13:56:34 -030076 checksum = af9035_checksum(state->buf, state->buf[0] - 1);
77 state->buf[state->buf[0] - 1] = (checksum >> 8);
78 state->buf[state->buf[0] - 0] = (checksum & 0xff);
Antti Palosaari7f882c22012-03-30 09:10:08 -030079
Antti Palosaari5da2aec2012-06-17 23:15:03 -030080 /* no ack for these packets */
81 if (req->cmd == CMD_FW_DL)
82 rlen = 0;
Antti Palosaari7f882c22012-03-30 09:10:08 -030083
Antti Palosaari3484d372013-02-26 13:56:34 -030084 ret = dvb_usbv2_generic_rw_locked(d,
85 state->buf, wlen, state->buf, rlen);
Antti Palosaari5da2aec2012-06-17 23:15:03 -030086 if (ret)
Wei Yongjun0170a392013-03-26 01:32:19 -030087 goto exit;
Antti Palosaari7f882c22012-03-30 09:10:08 -030088
89 /* no ack for those packets */
90 if (req->cmd == CMD_FW_DL)
Antti Palosaari5da2aec2012-06-17 23:15:03 -030091 goto exit;
Antti Palosaari7f882c22012-03-30 09:10:08 -030092
Michael Büschb1a95992012-04-01 16:33:48 -030093 /* verify checksum */
Antti Palosaari3484d372013-02-26 13:56:34 -030094 checksum = af9035_checksum(state->buf, rlen - 2);
95 tmp_checksum = (state->buf[rlen - 2] << 8) | state->buf[rlen - 1];
Antti Palosaari6fb39c52012-04-06 16:32:30 -030096 if (tmp_checksum != checksum) {
Antti Palosaaricb9114e2013-06-03 18:42:14 -030097 dev_err(&d->udev->dev,
98 "%s: command=%02x checksum mismatch (%04x != %04x)\n",
99 KBUILD_MODNAME, req->cmd, tmp_checksum,
100 checksum);
Michael Büschb1a95992012-04-01 16:33:48 -0300101 ret = -EIO;
Wei Yongjun0170a392013-03-26 01:32:19 -0300102 goto exit;
Michael Büschb1a95992012-04-01 16:33:48 -0300103 }
Antti Palosaari6fb39c52012-04-06 16:32:30 -0300104
Antti Palosaari7f882c22012-03-30 09:10:08 -0300105 /* check status */
Antti Palosaari3484d372013-02-26 13:56:34 -0300106 if (state->buf[2]) {
Antti Palosaari1bfd5292013-03-08 17:39:12 -0300107 /* fw returns status 1 when IR code was not received */
Wei Yongjun0170a392013-03-26 01:32:19 -0300108 if (req->cmd == CMD_IR_GET || state->buf[2] == 1) {
109 ret = 1;
110 goto exit;
111 }
Antti Palosaari1bfd5292013-03-08 17:39:12 -0300112
Antti Palosaari119f7a82012-09-12 20:23:53 -0300113 dev_dbg(&d->udev->dev, "%s: command=%02x failed fw error=%d\n",
Antti Palosaari3484d372013-02-26 13:56:34 -0300114 __func__, req->cmd, state->buf[2]);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300115 ret = -EIO;
Wei Yongjun0170a392013-03-26 01:32:19 -0300116 goto exit;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300117 }
118
119 /* read request, copy returned data to return buf */
120 if (req->rlen)
Antti Palosaari3484d372013-02-26 13:56:34 -0300121 memcpy(req->rbuf, &state->buf[ACK_HDR_LEN], req->rlen);
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300122exit:
Antti Palosaari3484d372013-02-26 13:56:34 -0300123 mutex_unlock(&d->usb_mutex);
Wei Yongjun0170a392013-03-26 01:32:19 -0300124 if (ret < 0)
Antti Palosaari3484d372013-02-26 13:56:34 -0300125 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300126 return ret;
127}
128
129/* write multiple registers */
130static int af9035_wr_regs(struct dvb_usb_device *d, u32 reg, u8 *val, int len)
131{
Mauro Carvalho Chehab7760e142013-11-02 08:07:12 -0300132 u8 wbuf[MAX_XFER_SIZE];
Antti Palosaari7f882c22012-03-30 09:10:08 -0300133 u8 mbox = (reg >> 16) & 0xff;
134 struct usb_req req = { CMD_MEM_WR, mbox, sizeof(wbuf), wbuf, 0, NULL };
135
Mauro Carvalho Chehab7760e142013-11-02 08:07:12 -0300136 if (6 + len > sizeof(wbuf)) {
137 dev_warn(&d->udev->dev, "%s: i2c wr: len=%d is too big!\n",
138 KBUILD_MODNAME, len);
139 return -EOPNOTSUPP;
140 }
141
Antti Palosaari7f882c22012-03-30 09:10:08 -0300142 wbuf[0] = len;
143 wbuf[1] = 2;
144 wbuf[2] = 0;
145 wbuf[3] = 0;
146 wbuf[4] = (reg >> 8) & 0xff;
147 wbuf[5] = (reg >> 0) & 0xff;
148 memcpy(&wbuf[6], val, len);
149
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300150 return af9035_ctrl_msg(d, &req);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300151}
152
153/* read multiple registers */
154static int af9035_rd_regs(struct dvb_usb_device *d, u32 reg, u8 *val, int len)
155{
156 u8 wbuf[] = { len, 2, 0, 0, (reg >> 8) & 0xff, reg & 0xff };
157 u8 mbox = (reg >> 16) & 0xff;
158 struct usb_req req = { CMD_MEM_RD, mbox, sizeof(wbuf), wbuf, len, val };
159
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300160 return af9035_ctrl_msg(d, &req);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300161}
162
163/* write single register */
164static int af9035_wr_reg(struct dvb_usb_device *d, u32 reg, u8 val)
165{
166 return af9035_wr_regs(d, reg, &val, 1);
167}
168
169/* read single register */
170static int af9035_rd_reg(struct dvb_usb_device *d, u32 reg, u8 *val)
171{
172 return af9035_rd_regs(d, reg, val, 1);
173}
174
175/* write single register with mask */
176static int af9035_wr_reg_mask(struct dvb_usb_device *d, u32 reg, u8 val,
177 u8 mask)
178{
179 int ret;
180 u8 tmp;
181
182 /* no need for read if whole reg is written */
183 if (mask != 0xff) {
184 ret = af9035_rd_regs(d, reg, &tmp, 1);
185 if (ret)
186 return ret;
187
188 val &= mask;
189 tmp &= ~mask;
190 val |= tmp;
191 }
192
193 return af9035_wr_regs(d, reg, &val, 1);
194}
195
196static int af9035_i2c_master_xfer(struct i2c_adapter *adap,
197 struct i2c_msg msg[], int num)
198{
199 struct dvb_usb_device *d = i2c_get_adapdata(adap);
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300200 struct state *state = d_to_priv(d);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300201 int ret;
202
203 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
204 return -EAGAIN;
205
Antti Palosaariad30e912012-04-02 20:18:59 -0300206 /*
207 * I2C sub header is 5 bytes long. Meaning of those bytes are:
208 * 0: data len
209 * 1: I2C addr << 1
210 * 2: reg addr len
211 * byte 3 and 4 can be used as reg addr
212 * 3: reg addr MSB
213 * used when reg addr len is set to 2
214 * 4: reg addr LSB
215 * used when reg addr len is set to 1 or 2
216 *
217 * For the simplify we do not use register addr at all.
218 * NOTE: As a firmware knows tuner type there is very small possibility
219 * there could be some tuner I2C hacks done by firmware and this may
220 * lead problems if firmware expects those bytes are used.
221 */
Antti Palosaari7f882c22012-03-30 09:10:08 -0300222 if (num == 2 && !(msg[0].flags & I2C_M_RD) &&
223 (msg[1].flags & I2C_M_RD)) {
224 if (msg[0].len > 40 || msg[1].len > 40) {
225 /* TODO: correct limits > 40 */
226 ret = -EOPNOTSUPP;
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300227 } else if ((msg[0].addr == state->af9033_config[0].i2c_addr) ||
228 (msg[0].addr == state->af9033_config[1].i2c_addr)) {
Antti Palosaaribf97b632012-12-08 22:51:19 -0300229 /* demod access via firmware interface */
Antti Palosaari7f882c22012-03-30 09:10:08 -0300230 u32 reg = msg[0].buf[0] << 16 | msg[0].buf[1] << 8 |
231 msg[0].buf[2];
Antti Palosaaribf97b632012-12-08 22:51:19 -0300232
233 if (msg[0].addr == state->af9033_config[1].i2c_addr)
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300234 reg |= 0x100000;
Antti Palosaaribf97b632012-12-08 22:51:19 -0300235
Antti Palosaari7f882c22012-03-30 09:10:08 -0300236 ret = af9035_rd_regs(d, reg, &msg[1].buf[0],
237 msg[1].len);
238 } else {
239 /* I2C */
Mauro Carvalho Chehab7760e142013-11-02 08:07:12 -0300240 u8 buf[MAX_XFER_SIZE];
Antti Palosaari7f882c22012-03-30 09:10:08 -0300241 struct usb_req req = { CMD_I2C_RD, 0, sizeof(buf),
242 buf, msg[1].len, msg[1].buf };
Mauro Carvalho Chehab7760e142013-11-02 08:07:12 -0300243
244 if (5 + msg[0].len > sizeof(buf)) {
245 dev_warn(&d->udev->dev,
246 "%s: i2c xfer: len=%d is too big!\n",
247 KBUILD_MODNAME, msg[0].len);
248 return -EOPNOTSUPP;
249 }
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300250 req.mbox |= ((msg[0].addr & 0x80) >> 3);
Hans-Frieder Vogt812fe6d2012-04-01 14:11:29 -0300251 buf[0] = msg[1].len;
Antti Palosaaribf97b632012-12-08 22:51:19 -0300252 buf[1] = msg[0].addr << 1;
Antti Palosaariad30e912012-04-02 20:18:59 -0300253 buf[2] = 0x00; /* reg addr len */
254 buf[3] = 0x00; /* reg addr MSB */
255 buf[4] = 0x00; /* reg addr LSB */
256 memcpy(&buf[5], msg[0].buf, msg[0].len);
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300257 ret = af9035_ctrl_msg(d, &req);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300258 }
259 } else if (num == 1 && !(msg[0].flags & I2C_M_RD)) {
260 if (msg[0].len > 40) {
261 /* TODO: correct limits > 40 */
262 ret = -EOPNOTSUPP;
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300263 } else if ((msg[0].addr == state->af9033_config[0].i2c_addr) ||
264 (msg[0].addr == state->af9033_config[1].i2c_addr)) {
Antti Palosaaribf97b632012-12-08 22:51:19 -0300265 /* demod access via firmware interface */
Antti Palosaari7f882c22012-03-30 09:10:08 -0300266 u32 reg = msg[0].buf[0] << 16 | msg[0].buf[1] << 8 |
267 msg[0].buf[2];
Antti Palosaaribf97b632012-12-08 22:51:19 -0300268
269 if (msg[0].addr == state->af9033_config[1].i2c_addr)
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300270 reg |= 0x100000;
Antti Palosaaribf97b632012-12-08 22:51:19 -0300271
Antti Palosaari7f882c22012-03-30 09:10:08 -0300272 ret = af9035_wr_regs(d, reg, &msg[0].buf[3],
273 msg[0].len - 3);
274 } else {
275 /* I2C */
Mauro Carvalho Chehab7760e142013-11-02 08:07:12 -0300276 u8 buf[MAX_XFER_SIZE];
Antti Palosaari7f882c22012-03-30 09:10:08 -0300277 struct usb_req req = { CMD_I2C_WR, 0, sizeof(buf), buf,
278 0, NULL };
Mauro Carvalho Chehab7760e142013-11-02 08:07:12 -0300279
280 if (5 + msg[0].len > sizeof(buf)) {
281 dev_warn(&d->udev->dev,
282 "%s: i2c xfer: len=%d is too big!\n",
283 KBUILD_MODNAME, msg[0].len);
284 return -EOPNOTSUPP;
285 }
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300286 req.mbox |= ((msg[0].addr & 0x80) >> 3);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300287 buf[0] = msg[0].len;
Antti Palosaaribf97b632012-12-08 22:51:19 -0300288 buf[1] = msg[0].addr << 1;
Antti Palosaariad30e912012-04-02 20:18:59 -0300289 buf[2] = 0x00; /* reg addr len */
290 buf[3] = 0x00; /* reg addr MSB */
291 buf[4] = 0x00; /* reg addr LSB */
292 memcpy(&buf[5], msg[0].buf, msg[0].len);
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300293 ret = af9035_ctrl_msg(d, &req);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300294 }
Antti Palosaari3b98c342013-03-11 19:05:39 -0300295 } else if (num == 1 && (msg[0].flags & I2C_M_RD)) {
296 if (msg[0].len > 40) {
297 /* TODO: correct limits > 40 */
298 ret = -EOPNOTSUPP;
299 } else {
300 /* I2C */
301 u8 buf[5];
302 struct usb_req req = { CMD_I2C_RD, 0, sizeof(buf),
303 buf, msg[0].len, msg[0].buf };
304 req.mbox |= ((msg[0].addr & 0x80) >> 3);
305 buf[0] = msg[0].len;
306 buf[1] = msg[0].addr << 1;
307 buf[2] = 0x00; /* reg addr len */
308 buf[3] = 0x00; /* reg addr MSB */
309 buf[4] = 0x00; /* reg addr LSB */
310 ret = af9035_ctrl_msg(d, &req);
311 }
Antti Palosaari7f882c22012-03-30 09:10:08 -0300312 } else {
313 /*
Antti Palosaari3b98c342013-03-11 19:05:39 -0300314 * We support only three kind of I2C transactions:
315 * 1) 1 x read + 1 x write (repeated start)
Antti Palosaari7f882c22012-03-30 09:10:08 -0300316 * 2) 1 x write
Antti Palosaari3b98c342013-03-11 19:05:39 -0300317 * 3) 1 x read
Antti Palosaari7f882c22012-03-30 09:10:08 -0300318 */
319 ret = -EOPNOTSUPP;
320 }
321
322 mutex_unlock(&d->i2c_mutex);
323
324 if (ret < 0)
325 return ret;
326 else
327 return num;
328}
329
330static u32 af9035_i2c_functionality(struct i2c_adapter *adapter)
331{
332 return I2C_FUNC_I2C;
333}
334
335static struct i2c_algorithm af9035_i2c_algo = {
336 .master_xfer = af9035_i2c_master_xfer,
337 .functionality = af9035_i2c_functionality,
338};
339
Antti Palosaaria0921af2012-06-18 23:42:53 -0300340static int af9035_identify_state(struct dvb_usb_device *d, const char **name)
Antti Palosaari7f882c22012-03-30 09:10:08 -0300341{
Antti Palosaari74c18832013-01-07 15:16:54 -0300342 struct state *state = d_to_priv(d);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300343 int ret;
344 u8 wbuf[1] = { 1 };
345 u8 rbuf[4];
346 struct usb_req req = { CMD_FW_QUERYINFO, 0, sizeof(wbuf), wbuf,
347 sizeof(rbuf), rbuf };
348
Antti Palosaari74c18832013-01-07 15:16:54 -0300349 ret = af9035_rd_regs(d, 0x1222, rbuf, 3);
350 if (ret < 0)
351 goto err;
352
353 state->chip_version = rbuf[0];
354 state->chip_type = rbuf[2] << 8 | rbuf[1] << 0;
355
356 ret = af9035_rd_reg(d, 0x384f, &state->prechip_version);
357 if (ret < 0)
358 goto err;
359
360 dev_info(&d->udev->dev,
361 "%s: prechip_version=%02x chip_version=%02x chip_type=%04x\n",
Antti Palosaarie8292e22013-06-03 18:50:43 -0300362 KBUILD_MODNAME, state->prechip_version,
363 state->chip_version, state->chip_type);
Antti Palosaari74c18832013-01-07 15:16:54 -0300364
365 if (state->chip_type == 0x9135) {
Antti Palosaaribc3c9e12013-02-01 22:23:07 -0300366 if (state->chip_version == 0x02)
Antti Palosaari74c18832013-01-07 15:16:54 -0300367 *name = AF9035_FIRMWARE_IT9135_V2;
368 else
369 *name = AF9035_FIRMWARE_IT9135_V1;
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300370 state->eeprom_addr = EEPROM_BASE_IT9135;
Antti Palosaari74c18832013-01-07 15:16:54 -0300371 } else {
372 *name = AF9035_FIRMWARE_AF9035;
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300373 state->eeprom_addr = EEPROM_BASE_AF9035;
Antti Palosaari74c18832013-01-07 15:16:54 -0300374 }
375
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300376 ret = af9035_ctrl_msg(d, &req);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300377 if (ret < 0)
378 goto err;
379
Antti Palosaari119f7a82012-09-12 20:23:53 -0300380 dev_dbg(&d->udev->dev, "%s: reply=%*ph\n", __func__, 4, rbuf);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300381 if (rbuf[0] || rbuf[1] || rbuf[2] || rbuf[3])
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300382 ret = WARM;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300383 else
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300384 ret = COLD;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300385
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300386 return ret;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300387
388err:
Antti Palosaari119f7a82012-09-12 20:23:53 -0300389 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300390
391 return ret;
392}
393
Antti Palosaari8229da52013-03-07 17:59:55 -0300394static int af9035_download_firmware_old(struct dvb_usb_device *d,
Antti Palosaari7f882c22012-03-30 09:10:08 -0300395 const struct firmware *fw)
396{
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300397 int ret, i, j, len;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300398 u8 wbuf[1];
Antti Palosaari7f882c22012-03-30 09:10:08 -0300399 struct usb_req req = { 0, 0, 0, NULL, 0, NULL };
400 struct usb_req req_fw_dl = { CMD_FW_DL, 0, 0, wbuf, 0, NULL };
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300401 u8 hdr_core;
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300402 u16 hdr_addr, hdr_data_len, hdr_checksum;
Antti Palosaari6fb39c52012-04-06 16:32:30 -0300403 #define MAX_DATA 58
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300404 #define HDR_SIZE 7
Antti Palosaari7f882c22012-03-30 09:10:08 -0300405
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300406 /*
407 * Thanks to Daniel Glöckner <daniel-gl@gmx.net> about that info!
408 *
409 * byte 0: MCS 51 core
410 * There are two inside the AF9035 (1=Link and 2=OFDM) with separate
411 * address spaces
412 * byte 1-2: Big endian destination address
413 * byte 3-4: Big endian number of data bytes following the header
414 * byte 5-6: Big endian header checksum, apparently ignored by the chip
415 * Calculated as ~(h[0]*256+h[1]+h[2]*256+h[3]+h[4]*256)
416 */
Antti Palosaari7f882c22012-03-30 09:10:08 -0300417
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300418 for (i = fw->size; i > HDR_SIZE;) {
419 hdr_core = fw->data[fw->size - i + 0];
420 hdr_addr = fw->data[fw->size - i + 1] << 8;
421 hdr_addr |= fw->data[fw->size - i + 2] << 0;
422 hdr_data_len = fw->data[fw->size - i + 3] << 8;
423 hdr_data_len |= fw->data[fw->size - i + 4] << 0;
424 hdr_checksum = fw->data[fw->size - i + 5] << 8;
425 hdr_checksum |= fw->data[fw->size - i + 6] << 0;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300426
Antti Palosaaricb9114e2013-06-03 18:42:14 -0300427 dev_dbg(&d->udev->dev,
428 "%s: core=%d addr=%04x data_len=%d checksum=%04x\n",
429 __func__, hdr_core, hdr_addr, hdr_data_len,
430 hdr_checksum);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300431
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300432 if (((hdr_core != 1) && (hdr_core != 2)) ||
433 (hdr_data_len > i)) {
Antti Palosaari119f7a82012-09-12 20:23:53 -0300434 dev_dbg(&d->udev->dev, "%s: bad firmware\n", __func__);
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300435 break;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300436 }
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300437
438 /* download begin packet */
439 req.cmd = CMD_FW_DL_BEGIN;
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300440 ret = af9035_ctrl_msg(d, &req);
Antti Palosaari41d44a82012-04-01 11:06:23 -0300441 if (ret < 0)
442 goto err;
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300443
444 /* download firmware packet(s) */
445 for (j = HDR_SIZE + hdr_data_len; j > 0; j -= MAX_DATA) {
446 len = j;
447 if (len > MAX_DATA)
448 len = MAX_DATA;
449 req_fw_dl.wlen = len;
450 req_fw_dl.wbuf = (u8 *) &fw->data[fw->size - i +
451 HDR_SIZE + hdr_data_len - j];
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300452 ret = af9035_ctrl_msg(d, &req_fw_dl);
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300453 if (ret < 0)
454 goto err;
455 }
456
457 /* download end packet */
458 req.cmd = CMD_FW_DL_END;
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300459 ret = af9035_ctrl_msg(d, &req);
Antti Palosaari77c5ff22012-04-01 01:32:23 -0300460 if (ret < 0)
461 goto err;
462
463 i -= hdr_data_len + HDR_SIZE;
464
Antti Palosaari119f7a82012-09-12 20:23:53 -0300465 dev_dbg(&d->udev->dev, "%s: data uploaded=%zu\n",
466 __func__, fw->size - i);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300467 }
468
Antti Palosaariff4e3fe2012-12-09 16:25:08 -0300469 /* print warn if firmware is bad, continue and see what happens */
470 if (i)
471 dev_warn(&d->udev->dev, "%s: bad firmware\n", KBUILD_MODNAME);
472
Antti Palosaari7f882c22012-03-30 09:10:08 -0300473 return 0;
474
475err:
Antti Palosaari119f7a82012-09-12 20:23:53 -0300476 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300477
478 return ret;
479}
480
Antti Palosaari8229da52013-03-07 17:59:55 -0300481static int af9035_download_firmware_new(struct dvb_usb_device *d,
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300482 const struct firmware *fw)
483{
484 int ret, i, i_prev;
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300485 struct usb_req req_fw_dl = { CMD_FW_SCATTER_WR, 0, 0, NULL, 0, NULL };
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300486 #define HDR_SIZE 7
487
488 /*
489 * There seems to be following firmware header. Meaning of bytes 0-3
490 * is unknown.
491 *
492 * 0: 3
493 * 1: 0, 1
494 * 2: 0
495 * 3: 1, 2, 3
496 * 4: addr MSB
497 * 5: addr LSB
498 * 6: count of data bytes ?
499 */
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300500 for (i = HDR_SIZE, i_prev = 0; i <= fw->size; i++) {
501 if (i == fw->size ||
502 (fw->data[i + 0] == 0x03 &&
503 (fw->data[i + 1] == 0x00 ||
504 fw->data[i + 1] == 0x01) &&
505 fw->data[i + 2] == 0x00)) {
506 req_fw_dl.wlen = i - i_prev;
507 req_fw_dl.wbuf = (u8 *) &fw->data[i_prev];
508 i_prev = i;
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300509 ret = af9035_ctrl_msg(d, &req_fw_dl);
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300510 if (ret < 0)
511 goto err;
512
Antti Palosaari119f7a82012-09-12 20:23:53 -0300513 dev_dbg(&d->udev->dev, "%s: data uploaded=%d\n",
514 __func__, i);
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300515 }
516 }
517
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300518 return 0;
519
520err:
521 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
522
523 return ret;
524}
525
526static int af9035_download_firmware(struct dvb_usb_device *d,
527 const struct firmware *fw)
528{
529 struct state *state = d_to_priv(d);
530 int ret;
531 u8 wbuf[1];
532 u8 rbuf[4];
533 u8 tmp;
534 struct usb_req req = { 0, 0, 0, NULL, 0, NULL };
Antti Palosaaricb9114e2013-06-03 18:42:14 -0300535 struct usb_req req_fw_ver = { CMD_FW_QUERYINFO, 0, 1, wbuf, 4, rbuf };
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300536 dev_dbg(&d->udev->dev, "%s:\n", __func__);
537
538 /*
539 * In case of dual tuner configuration we need to do some extra
540 * initialization in order to download firmware to slave demod too,
541 * which is done by master demod.
542 * Master feeds also clock and controls power via GPIO.
543 */
Antti Palosaarid716ef42013-06-03 19:39:51 -0300544 ret = af9035_rd_reg(d, state->eeprom_addr + EEPROM_TS_MODE, &tmp);
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300545 if (ret < 0)
546 goto err;
547
Antti Palosaarid716ef42013-06-03 19:39:51 -0300548 if (tmp == 1 || tmp == 3) {
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300549 /* configure gpioh1, reset & power slave demod */
550 ret = af9035_wr_reg_mask(d, 0x00d8b0, 0x01, 0x01);
551 if (ret < 0)
552 goto err;
553
554 ret = af9035_wr_reg_mask(d, 0x00d8b1, 0x01, 0x01);
555 if (ret < 0)
556 goto err;
557
558 ret = af9035_wr_reg_mask(d, 0x00d8af, 0x00, 0x01);
559 if (ret < 0)
560 goto err;
561
562 usleep_range(10000, 50000);
563
564 ret = af9035_wr_reg_mask(d, 0x00d8af, 0x01, 0x01);
565 if (ret < 0)
566 goto err;
567
568 /* tell the slave I2C address */
569 ret = af9035_rd_reg(d,
570 state->eeprom_addr + EEPROM_2ND_DEMOD_ADDR,
571 &tmp);
572 if (ret < 0)
573 goto err;
574
575 if (state->chip_type == 0x9135) {
576 ret = af9035_wr_reg(d, 0x004bfb, tmp);
577 if (ret < 0)
578 goto err;
579 } else {
580 ret = af9035_wr_reg(d, 0x00417f, tmp);
581 if (ret < 0)
582 goto err;
583
584 /* enable clock out */
585 ret = af9035_wr_reg_mask(d, 0x00d81a, 0x01, 0x01);
586 if (ret < 0)
587 goto err;
588 }
589 }
590
Antti Palosaari8229da52013-03-07 17:59:55 -0300591 if (fw->data[0] == 0x01)
592 ret = af9035_download_firmware_old(d, fw);
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300593 else
Antti Palosaari8229da52013-03-07 17:59:55 -0300594 ret = af9035_download_firmware_new(d, fw);
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300595 if (ret < 0)
596 goto err;
597
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300598 /* firmware loaded, request boot */
599 req.cmd = CMD_FW_BOOT;
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300600 ret = af9035_ctrl_msg(d, &req);
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300601 if (ret < 0)
602 goto err;
603
604 /* ensure firmware starts */
605 wbuf[0] = 1;
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300606 ret = af9035_ctrl_msg(d, &req_fw_ver);
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300607 if (ret < 0)
608 goto err;
609
610 if (!(rbuf[0] || rbuf[1] || rbuf[2] || rbuf[3])) {
Antti Palosaari119f7a82012-09-12 20:23:53 -0300611 dev_err(&d->udev->dev, "%s: firmware did not run\n",
612 KBUILD_MODNAME);
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300613 ret = -ENODEV;
614 goto err;
615 }
616
Antti Palosaari119f7a82012-09-12 20:23:53 -0300617 dev_info(&d->udev->dev, "%s: firmware version=%d.%d.%d.%d",
618 KBUILD_MODNAME, rbuf[0], rbuf[1], rbuf[2], rbuf[3]);
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300619
620 return 0;
621
622err:
Antti Palosaari119f7a82012-09-12 20:23:53 -0300623 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300624
625 return ret;
626}
627
Antti Palosaari9ea36812013-01-11 22:16:25 -0300628static int af9035_read_config(struct dvb_usb_device *d)
Antti Palosaari7f882c22012-03-30 09:10:08 -0300629{
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300630 struct state *state = d_to_priv(d);
Antti Palosaari9ea36812013-01-11 22:16:25 -0300631 int ret, i;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300632 u8 tmp;
Antti Palosaari9ea36812013-01-11 22:16:25 -0300633 u16 tmp16, addr;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300634
Antti Palosaaribf97b632012-12-08 22:51:19 -0300635 /* demod I2C "address" */
636 state->af9033_config[0].i2c_addr = 0x38;
Antti Palosaari0d94d6a2013-01-07 15:26:05 -0300637 state->af9033_config[0].adc_multiplier = AF9033_ADC_MULTIPLIER_2X;
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300638 state->af9033_config[1].adc_multiplier = AF9033_ADC_MULTIPLIER_2X;
Antti Palosaariab56ad62013-03-07 18:43:51 -0300639 state->af9033_config[0].ts_mode = AF9033_TS_MODE_USB;
640 state->af9033_config[1].ts_mode = AF9033_TS_MODE_SERIAL;
Antti Palosaaribf97b632012-12-08 22:51:19 -0300641
Antti Palosaari9ea36812013-01-11 22:16:25 -0300642 /* eeprom memory mapped location */
643 if (state->chip_type == 0x9135) {
Antti Palosaaribc3c9e12013-02-01 22:23:07 -0300644 if (state->chip_version == 0x02) {
645 state->af9033_config[0].tuner = AF9033_TUNER_IT9135_60;
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300646 state->af9033_config[1].tuner = AF9033_TUNER_IT9135_60;
Antti Palosaaribc3c9e12013-02-01 22:23:07 -0300647 tmp16 = 0x00461d;
648 } else {
649 state->af9033_config[0].tuner = AF9033_TUNER_IT9135_38;
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300650 state->af9033_config[1].tuner = AF9033_TUNER_IT9135_38;
Antti Palosaaribc3c9e12013-02-01 22:23:07 -0300651 tmp16 = 0x00461b;
652 }
653
Antti Palosaari9ea36812013-01-11 22:16:25 -0300654 /* check if eeprom exists */
Antti Palosaaribc3c9e12013-02-01 22:23:07 -0300655 ret = af9035_rd_reg(d, tmp16, &tmp);
Antti Palosaari9ea36812013-01-11 22:16:25 -0300656 if (ret < 0)
657 goto err;
658
Antti Palosaari431a6d42013-03-07 18:28:25 -0300659 if (tmp == 0x00) {
Antti Palosaaribc3c9e12013-02-01 22:23:07 -0300660 dev_dbg(&d->udev->dev, "%s: no eeprom\n", __func__);
Antti Palosaari9ea36812013-01-11 22:16:25 -0300661 goto skip_eeprom;
662 }
Antti Palosaari9ea36812013-01-11 22:16:25 -0300663 }
664
Antti Palosaari7f882c22012-03-30 09:10:08 -0300665 /* check if there is dual tuners */
Antti Palosaarid716ef42013-06-03 19:39:51 -0300666 ret = af9035_rd_reg(d, state->eeprom_addr + EEPROM_TS_MODE, &tmp);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300667 if (ret < 0)
668 goto err;
669
Antti Palosaarid716ef42013-06-03 19:39:51 -0300670 if (tmp == 1 || tmp == 3)
671 state->dual_mode = true;
672
673 dev_dbg(&d->udev->dev, "%s: ts mode=%d dual mode=%d\n", __func__,
674 tmp, state->dual_mode);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300675
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300676 if (state->dual_mode) {
677 /* read 2nd demodulator I2C address */
Antti Palosaari431a6d42013-03-07 18:28:25 -0300678 ret = af9035_rd_reg(d,
679 state->eeprom_addr + EEPROM_2ND_DEMOD_ADDR,
680 &tmp);
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300681 if (ret < 0)
682 goto err;
Antti Palosaaribf97b632012-12-08 22:51:19 -0300683
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300684 state->af9033_config[1].i2c_addr = tmp;
Antti Palosaaribf97b632012-12-08 22:51:19 -0300685 dev_dbg(&d->udev->dev, "%s: 2nd demod I2C addr=%02x\n",
686 __func__, tmp);
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300687 }
688
Antti Palosaari431a6d42013-03-07 18:28:25 -0300689 addr = state->eeprom_addr;
690
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300691 for (i = 0; i < state->dual_mode + 1; i++) {
Antti Palosaari7f882c22012-03-30 09:10:08 -0300692 /* tuner */
Antti Palosaari9ea36812013-01-11 22:16:25 -0300693 ret = af9035_rd_reg(d, addr + EEPROM_1_TUNER_ID, &tmp);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300694 if (ret < 0)
695 goto err;
696
Antti Palosaaribc3c9e12013-02-01 22:23:07 -0300697 if (tmp == 0x00)
698 dev_dbg(&d->udev->dev,
699 "%s: [%d]tuner not set, using default\n",
700 __func__, i);
701 else
702 state->af9033_config[i].tuner = tmp;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300703
Antti Palosaaribc3c9e12013-02-01 22:23:07 -0300704 dev_dbg(&d->udev->dev, "%s: [%d]tuner=%02x\n",
705 __func__, i, state->af9033_config[i].tuner);
Antti Palosaari9ea36812013-01-11 22:16:25 -0300706
707 switch (state->af9033_config[i].tuner) {
Antti Palosaari7f882c22012-03-30 09:10:08 -0300708 case AF9033_TUNER_TUA9001:
Michael Büschffc501f2012-04-02 12:18:36 -0300709 case AF9033_TUNER_FC0011:
Hans-Frieder Vogt540fd4b2012-04-02 14:18:16 -0300710 case AF9033_TUNER_MXL5007T:
Gianluca Gennarice1fe372012-04-02 17:25:14 -0300711 case AF9033_TUNER_TDA18218:
Oliver Schinagld67ceb32012-09-20 14:57:17 -0300712 case AF9033_TUNER_FC2580:
Antti Palosaari7e0bc292012-12-02 20:12:29 -0300713 case AF9033_TUNER_FC0012:
Antti Palosaari2a79eef2012-05-07 14:50:40 -0300714 state->af9033_config[i].spec_inv = 1;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300715 break;
Antti Palosaari9ea36812013-01-11 22:16:25 -0300716 case AF9033_TUNER_IT9135_38:
717 case AF9033_TUNER_IT9135_51:
718 case AF9033_TUNER_IT9135_52:
719 case AF9033_TUNER_IT9135_60:
720 case AF9033_TUNER_IT9135_61:
721 case AF9033_TUNER_IT9135_62:
722 break;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300723 default:
Antti Palosaari9ea36812013-01-11 22:16:25 -0300724 dev_warn(&d->udev->dev,
725 "%s: tuner id=%02x not supported, please report!",
Antti Palosaari119f7a82012-09-12 20:23:53 -0300726 KBUILD_MODNAME, tmp);
Peter Senna Tschudinc2c1b412012-09-28 05:37:22 -0300727 }
Antti Palosaari7f882c22012-03-30 09:10:08 -0300728
Antti Palosaaribf97b632012-12-08 22:51:19 -0300729 /* disable dual mode if driver does not support it */
730 if (i == 1)
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300731 switch (state->af9033_config[i].tuner) {
Antti Palosaari0bb3d8a2012-12-09 12:01:41 -0300732 case AF9033_TUNER_FC0012:
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300733 case AF9033_TUNER_IT9135_38:
734 case AF9033_TUNER_IT9135_51:
735 case AF9033_TUNER_IT9135_52:
736 case AF9033_TUNER_IT9135_60:
737 case AF9033_TUNER_IT9135_61:
738 case AF9033_TUNER_IT9135_62:
Jose Alberto Reguero78c7bc42013-02-10 15:43:03 -0300739 case AF9033_TUNER_MXL5007T:
Antti Palosaari0bb3d8a2012-12-09 12:01:41 -0300740 break;
Antti Palosaaribf97b632012-12-08 22:51:19 -0300741 default:
742 state->dual_mode = false;
Antti Palosaari9ea36812013-01-11 22:16:25 -0300743 dev_info(&d->udev->dev,
744 "%s: driver does not support 2nd tuner and will disable it",
745 KBUILD_MODNAME);
Antti Palosaaribf97b632012-12-08 22:51:19 -0300746 }
747
Antti Palosaari7f882c22012-03-30 09:10:08 -0300748 /* tuner IF frequency */
Antti Palosaari9ea36812013-01-11 22:16:25 -0300749 ret = af9035_rd_reg(d, addr + EEPROM_1_IF_L, &tmp);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300750 if (ret < 0)
751 goto err;
752
753 tmp16 = tmp;
754
Antti Palosaari9ea36812013-01-11 22:16:25 -0300755 ret = af9035_rd_reg(d, addr + EEPROM_1_IF_H, &tmp);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300756 if (ret < 0)
757 goto err;
758
759 tmp16 |= tmp << 8;
760
Antti Palosaari119f7a82012-09-12 20:23:53 -0300761 dev_dbg(&d->udev->dev, "%s: [%d]IF=%d\n", __func__, i, tmp16);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300762
Antti Palosaari9ea36812013-01-11 22:16:25 -0300763 addr += 0x10; /* shift for the 2nd tuner params */
Antti Palosaari7f882c22012-03-30 09:10:08 -0300764 }
765
Antti Palosaari9ea36812013-01-11 22:16:25 -0300766skip_eeprom:
Antti Palosaari7f882c22012-03-30 09:10:08 -0300767 /* get demod clock */
768 ret = af9035_rd_reg(d, 0x00d800, &tmp);
769 if (ret < 0)
770 goto err;
771
772 tmp = (tmp >> 0) & 0x0f;
773
Antti Palosaari9ea36812013-01-11 22:16:25 -0300774 for (i = 0; i < ARRAY_SIZE(state->af9033_config); i++) {
775 if (state->chip_type == 0x9135)
776 state->af9033_config[i].clock = clock_lut_it9135[tmp];
777 else
778 state->af9033_config[i].clock = clock_lut_af9035[tmp];
Antti Palosaari74c18832013-01-07 15:16:54 -0300779 }
780
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300781 return 0;
782
783err:
Antti Palosaari119f7a82012-09-12 20:23:53 -0300784 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
Antti Palosaarif2b61d02012-04-05 20:28:51 -0300785
786 return ret;
787}
788
Antti Palosaari51639be2012-09-16 22:26:56 -0300789static int af9035_tua9001_tuner_callback(struct dvb_usb_device *d,
790 int cmd, int arg)
791{
792 int ret;
793 u8 val;
794
795 dev_dbg(&d->udev->dev, "%s: cmd=%d arg=%d\n", __func__, cmd, arg);
796
797 /*
798 * CEN always enabled by hardware wiring
799 * RESETN GPIOT3
800 * RXEN GPIOT2
801 */
802
803 switch (cmd) {
804 case TUA9001_CMD_RESETN:
805 if (arg)
806 val = 0x00;
807 else
808 val = 0x01;
809
810 ret = af9035_wr_reg_mask(d, 0x00d8e7, val, 0x01);
811 if (ret < 0)
812 goto err;
813 break;
814 case TUA9001_CMD_RXEN:
815 if (arg)
816 val = 0x01;
817 else
818 val = 0x00;
819
820 ret = af9035_wr_reg_mask(d, 0x00d8eb, val, 0x01);
821 if (ret < 0)
822 goto err;
823 break;
824 }
825
826 return 0;
827
828err:
829 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
830
831 return ret;
832}
833
834
Michael Büschffc501f2012-04-02 12:18:36 -0300835static int af9035_fc0011_tuner_callback(struct dvb_usb_device *d,
Antti Palosaaridaacd5b2012-04-05 21:52:21 -0300836 int cmd, int arg)
Michael Büschffc501f2012-04-02 12:18:36 -0300837{
Antti Palosaaridaacd5b2012-04-05 21:52:21 -0300838 int ret;
Michael Büschffc501f2012-04-02 12:18:36 -0300839
840 switch (cmd) {
841 case FC0011_FE_CALLBACK_POWER:
842 /* Tuner enable */
Antti Palosaaridaacd5b2012-04-05 21:52:21 -0300843 ret = af9035_wr_reg_mask(d, 0xd8eb, 1, 1);
844 if (ret < 0)
845 goto err;
846
847 ret = af9035_wr_reg_mask(d, 0xd8ec, 1, 1);
848 if (ret < 0)
849 goto err;
850
851 ret = af9035_wr_reg_mask(d, 0xd8ed, 1, 1);
852 if (ret < 0)
853 goto err;
854
Michael Büschffc501f2012-04-02 12:18:36 -0300855 /* LED */
Antti Palosaaridaacd5b2012-04-05 21:52:21 -0300856 ret = af9035_wr_reg_mask(d, 0xd8d0, 1, 1);
857 if (ret < 0)
858 goto err;
859
860 ret = af9035_wr_reg_mask(d, 0xd8d1, 1, 1);
861 if (ret < 0)
862 goto err;
863
Michael Büschde2bec52012-04-03 05:11:30 -0300864 usleep_range(10000, 50000);
Michael Büschffc501f2012-04-02 12:18:36 -0300865 break;
866 case FC0011_FE_CALLBACK_RESET:
Antti Palosaaridaacd5b2012-04-05 21:52:21 -0300867 ret = af9035_wr_reg(d, 0xd8e9, 1);
868 if (ret < 0)
869 goto err;
870
871 ret = af9035_wr_reg(d, 0xd8e8, 1);
872 if (ret < 0)
873 goto err;
874
875 ret = af9035_wr_reg(d, 0xd8e7, 1);
876 if (ret < 0)
877 goto err;
878
Michael Büschde2bec52012-04-03 05:11:30 -0300879 usleep_range(10000, 20000);
Antti Palosaaridaacd5b2012-04-05 21:52:21 -0300880
881 ret = af9035_wr_reg(d, 0xd8e7, 0);
882 if (ret < 0)
883 goto err;
884
Michael Büschde2bec52012-04-03 05:11:30 -0300885 usleep_range(10000, 20000);
Michael Büschffc501f2012-04-02 12:18:36 -0300886 break;
887 default:
Antti Palosaaridaacd5b2012-04-05 21:52:21 -0300888 ret = -EINVAL;
889 goto err;
Michael Büschffc501f2012-04-02 12:18:36 -0300890 }
891
892 return 0;
Antti Palosaaridaacd5b2012-04-05 21:52:21 -0300893
894err:
Antti Palosaari119f7a82012-09-12 20:23:53 -0300895 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
Antti Palosaaridaacd5b2012-04-05 21:52:21 -0300896
897 return ret;
Michael Büschffc501f2012-04-02 12:18:36 -0300898}
899
900static int af9035_tuner_callback(struct dvb_usb_device *d, int cmd, int arg)
901{
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300902 struct state *state = d_to_priv(d);
Antti Palosaari2a79eef2012-05-07 14:50:40 -0300903
904 switch (state->af9033_config[0].tuner) {
Michael Büschffc501f2012-04-02 12:18:36 -0300905 case AF9033_TUNER_FC0011:
906 return af9035_fc0011_tuner_callback(d, cmd, arg);
Antti Palosaari51639be2012-09-16 22:26:56 -0300907 case AF9033_TUNER_TUA9001:
908 return af9035_tua9001_tuner_callback(d, cmd, arg);
Michael Büschffc501f2012-04-02 12:18:36 -0300909 default:
910 break;
911 }
912
Antti Palosaari1835af12012-09-11 22:27:06 -0300913 return 0;
Michael Büschffc501f2012-04-02 12:18:36 -0300914}
915
916static int af9035_frontend_callback(void *adapter_priv, int component,
917 int cmd, int arg)
918{
919 struct i2c_adapter *adap = adapter_priv;
920 struct dvb_usb_device *d = i2c_get_adapdata(adap);
921
Antti Palosaari1835af12012-09-11 22:27:06 -0300922 dev_dbg(&d->udev->dev, "%s: component=%d cmd=%d arg=%d\n",
923 __func__, component, cmd, arg);
924
Michael Büschffc501f2012-04-02 12:18:36 -0300925 switch (component) {
926 case DVB_FRONTEND_COMPONENT_TUNER:
927 return af9035_tuner_callback(d, cmd, arg);
928 default:
929 break;
930 }
931
Antti Palosaari1835af12012-09-11 22:27:06 -0300932 return 0;
Michael Büschffc501f2012-04-02 12:18:36 -0300933}
934
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300935static int af9035_get_adapter_count(struct dvb_usb_device *d)
936{
937 struct state *state = d_to_priv(d);
Antti Palosaaribada3422013-01-11 20:45:11 -0300938
939 /* disable 2nd adapter as we don't have PID filters implemented */
940 if (d->udev->speed == USB_SPEED_FULL)
941 return 1;
942 else
943 return state->dual_mode + 1;
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300944}
945
Antti Palosaari7f882c22012-03-30 09:10:08 -0300946static int af9035_frontend_attach(struct dvb_usb_adapter *adap)
947{
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300948 struct state *state = adap_to_priv(adap);
949 struct dvb_usb_device *d = adap_to_d(adap);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300950 int ret;
Antti Palosaaridf8f1be2013-02-03 13:46:56 -0300951 dev_dbg(&d->udev->dev, "%s:\n", __func__);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300952
Antti Palosaari1cbabf92012-05-07 14:59:55 -0300953 if (!state->af9033_config[adap->id].tuner) {
954 /* unsupported tuner */
Antti Palosaari5a9abae2012-03-30 17:15:16 -0300955 ret = -ENODEV;
956 goto err;
957 }
958
Antti Palosaari7f882c22012-03-30 09:10:08 -0300959 /* attach demodulator */
Antti Palosaaribf97b632012-12-08 22:51:19 -0300960 adap->fe[0] = dvb_attach(af9033_attach, &state->af9033_config[adap->id],
961 &d->i2c_adap);
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300962 if (adap->fe[0] == NULL) {
Antti Palosaari7f882c22012-03-30 09:10:08 -0300963 ret = -ENODEV;
964 goto err;
965 }
Antti Palosaari852f0d92012-04-06 07:09:23 -0300966
967 /* disable I2C-gate */
Antti Palosaari5da2aec2012-06-17 23:15:03 -0300968 adap->fe[0]->ops.i2c_gate_ctrl = NULL;
969 adap->fe[0]->callback = af9035_frontend_callback;
Antti Palosaari7f882c22012-03-30 09:10:08 -0300970
971 return 0;
972
973err:
Antti Palosaari119f7a82012-09-12 20:23:53 -0300974 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
Antti Palosaari7f882c22012-03-30 09:10:08 -0300975
976 return ret;
977}
978
979static struct tua9001_config af9035_tua9001_config = {
980 .i2c_addr = 0x60,
981};
982
Michael Büschffc501f2012-04-02 12:18:36 -0300983static const struct fc0011_config af9035_fc0011_config = {
984 .i2c_address = 0x60,
985};
986
Jose Alberto Reguero98059922012-09-23 16:48:47 -0300987static struct mxl5007t_config af9035_mxl5007t_config[] = {
988 {
989 .xtal_freq_hz = MxL_XTAL_24_MHZ,
990 .if_freq_hz = MxL_IF_4_57_MHZ,
991 .invert_if = 0,
992 .loop_thru_enable = 0,
993 .clk_out_enable = 0,
994 .clk_out_amp = MxL_CLKOUT_AMP_0_94V,
995 }, {
996 .xtal_freq_hz = MxL_XTAL_24_MHZ,
997 .if_freq_hz = MxL_IF_4_57_MHZ,
998 .invert_if = 0,
999 .loop_thru_enable = 1,
1000 .clk_out_enable = 1,
1001 .clk_out_amp = MxL_CLKOUT_AMP_0_94V,
1002 }
Hans-Frieder Vogt540fd4b2012-04-02 14:18:16 -03001003};
1004
Gianluca Gennarice1fe372012-04-02 17:25:14 -03001005static struct tda18218_config af9035_tda18218_config = {
1006 .i2c_address = 0x60,
1007 .i2c_wr_max = 21,
1008};
1009
Oliver Schinagld67ceb32012-09-20 14:57:17 -03001010static const struct fc2580_config af9035_fc2580_config = {
1011 .i2c_addr = 0x56,
1012 .clock = 16384000,
1013};
1014
Antti Palosaari0bb3d8a2012-12-09 12:01:41 -03001015static const struct fc0012_config af9035_fc0012_config[] = {
1016 {
1017 .i2c_address = 0x63,
1018 .xtal_freq = FC_XTAL_36_MHZ,
Antti Palosaari3a984772012-12-09 12:33:04 -03001019 .dual_master = true,
Antti Palosaari0bb3d8a2012-12-09 12:01:41 -03001020 .loop_through = true,
1021 .clock_out = true,
1022 }, {
1023 .i2c_address = 0x63 | 0x80, /* I2C bus select hack */
1024 .xtal_freq = FC_XTAL_36_MHZ,
Antti Palosaari3a984772012-12-09 12:33:04 -03001025 .dual_master = true,
Antti Palosaari0bb3d8a2012-12-09 12:01:41 -03001026 }
Antti Palosaariad3a7582012-12-08 23:27:49 -03001027};
1028
Antti Palosaari7f882c22012-03-30 09:10:08 -03001029static int af9035_tuner_attach(struct dvb_usb_adapter *adap)
1030{
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001031 struct state *state = adap_to_priv(adap);
1032 struct dvb_usb_device *d = adap_to_d(adap);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001033 int ret;
1034 struct dvb_frontend *fe;
Antti Palosaari0bb3d8a2012-12-09 12:01:41 -03001035 struct i2c_msg msg[1];
Antti Palosaaribf97b632012-12-08 22:51:19 -03001036 u8 tuner_addr;
Antti Palosaaridf8f1be2013-02-03 13:46:56 -03001037 dev_dbg(&d->udev->dev, "%s:\n", __func__);
1038
Antti Palosaaribf97b632012-12-08 22:51:19 -03001039 /*
1040 * XXX: Hack used in that function: we abuse unused I2C address bit [7]
1041 * to carry info about used I2C bus for dual tuner configuration.
1042 */
Antti Palosaari7f882c22012-03-30 09:10:08 -03001043
Antti Palosaari2a79eef2012-05-07 14:50:40 -03001044 switch (state->af9033_config[adap->id].tuner) {
Antti Palosaari7f882c22012-03-30 09:10:08 -03001045 case AF9033_TUNER_TUA9001:
1046 /* AF9035 gpiot3 = TUA9001 RESETN
1047 AF9035 gpiot2 = TUA9001 RXEN */
1048
1049 /* configure gpiot2 and gpiot2 as output */
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001050 ret = af9035_wr_reg_mask(d, 0x00d8ec, 0x01, 0x01);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001051 if (ret < 0)
1052 goto err;
1053
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001054 ret = af9035_wr_reg_mask(d, 0x00d8ed, 0x01, 0x01);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001055 if (ret < 0)
1056 goto err;
1057
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001058 ret = af9035_wr_reg_mask(d, 0x00d8e8, 0x01, 0x01);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001059 if (ret < 0)
1060 goto err;
1061
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001062 ret = af9035_wr_reg_mask(d, 0x00d8e9, 0x01, 0x01);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001063 if (ret < 0)
1064 goto err;
1065
Antti Palosaari7f882c22012-03-30 09:10:08 -03001066 /* attach tuner */
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001067 fe = dvb_attach(tua9001_attach, adap->fe[0],
1068 &d->i2c_adap, &af9035_tua9001_config);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001069 break;
Michael Büschffc501f2012-04-02 12:18:36 -03001070 case AF9033_TUNER_FC0011:
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001071 fe = dvb_attach(fc0011_attach, adap->fe[0],
1072 &d->i2c_adap, &af9035_fc0011_config);
Michael Büschffc501f2012-04-02 12:18:36 -03001073 break;
Hans-Frieder Vogt540fd4b2012-04-02 14:18:16 -03001074 case AF9033_TUNER_MXL5007T:
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001075 if (adap->id == 0) {
1076 ret = af9035_wr_reg(d, 0x00d8e0, 1);
1077 if (ret < 0)
1078 goto err;
Antti Palosaaribf97b632012-12-08 22:51:19 -03001079
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001080 ret = af9035_wr_reg(d, 0x00d8e1, 1);
1081 if (ret < 0)
1082 goto err;
Antti Palosaaribf97b632012-12-08 22:51:19 -03001083
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001084 ret = af9035_wr_reg(d, 0x00d8df, 0);
1085 if (ret < 0)
1086 goto err;
Hans-Frieder Vogt540fd4b2012-04-02 14:18:16 -03001087
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001088 msleep(30);
Hans-Frieder Vogt540fd4b2012-04-02 14:18:16 -03001089
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001090 ret = af9035_wr_reg(d, 0x00d8df, 1);
1091 if (ret < 0)
1092 goto err;
Hans-Frieder Vogt540fd4b2012-04-02 14:18:16 -03001093
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001094 msleep(300);
Hans-Frieder Vogt540fd4b2012-04-02 14:18:16 -03001095
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001096 ret = af9035_wr_reg(d, 0x00d8c0, 1);
1097 if (ret < 0)
1098 goto err;
Antti Palosaaribf97b632012-12-08 22:51:19 -03001099
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001100 ret = af9035_wr_reg(d, 0x00d8c1, 1);
1101 if (ret < 0)
1102 goto err;
Antti Palosaaribf97b632012-12-08 22:51:19 -03001103
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001104 ret = af9035_wr_reg(d, 0x00d8bf, 0);
1105 if (ret < 0)
1106 goto err;
Antti Palosaaribf97b632012-12-08 22:51:19 -03001107
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001108 ret = af9035_wr_reg(d, 0x00d8b4, 1);
1109 if (ret < 0)
1110 goto err;
Antti Palosaaribf97b632012-12-08 22:51:19 -03001111
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001112 ret = af9035_wr_reg(d, 0x00d8b5, 1);
1113 if (ret < 0)
1114 goto err;
Antti Palosaaribf97b632012-12-08 22:51:19 -03001115
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001116 ret = af9035_wr_reg(d, 0x00d8b3, 1);
1117 if (ret < 0)
1118 goto err;
Antti Palosaaribf97b632012-12-08 22:51:19 -03001119
1120 tuner_addr = 0x60;
1121 } else {
1122 tuner_addr = 0x60 | 0x80; /* I2C bus hack */
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001123 }
Hans-Frieder Vogt540fd4b2012-04-02 14:18:16 -03001124
1125 /* attach tuner */
Antti Palosaaribf97b632012-12-08 22:51:19 -03001126 fe = dvb_attach(mxl5007t_attach, adap->fe[0], &d->i2c_adap,
1127 tuner_addr, &af9035_mxl5007t_config[adap->id]);
Hans-Frieder Vogt540fd4b2012-04-02 14:18:16 -03001128 break;
Gianluca Gennarice1fe372012-04-02 17:25:14 -03001129 case AF9033_TUNER_TDA18218:
1130 /* attach tuner */
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001131 fe = dvb_attach(tda18218_attach, adap->fe[0],
1132 &d->i2c_adap, &af9035_tda18218_config);
Gianluca Gennarice1fe372012-04-02 17:25:14 -03001133 break;
Oliver Schinagld67ceb32012-09-20 14:57:17 -03001134 case AF9033_TUNER_FC2580:
1135 /* Tuner enable using gpiot2_o, gpiot2_en and gpiot2_on */
1136 ret = af9035_wr_reg_mask(d, 0xd8eb, 0x01, 0x01);
1137 if (ret < 0)
1138 goto err;
1139
1140 ret = af9035_wr_reg_mask(d, 0xd8ec, 0x01, 0x01);
1141 if (ret < 0)
1142 goto err;
1143
1144 ret = af9035_wr_reg_mask(d, 0xd8ed, 0x01, 0x01);
1145 if (ret < 0)
1146 goto err;
1147
1148 usleep_range(10000, 50000);
1149 /* attach tuner */
1150 fe = dvb_attach(fc2580_attach, adap->fe[0],
1151 &d->i2c_adap, &af9035_fc2580_config);
1152 break;
Antti Palosaari7e0bc292012-12-02 20:12:29 -03001153 case AF9033_TUNER_FC0012:
1154 /*
1155 * AF9035 gpiot2 = FC0012 enable
1156 * XXX: there seems to be something on gpioh8 too, but on my
1157 * my test I didn't find any difference.
1158 */
1159
Antti Palosaari0bb3d8a2012-12-09 12:01:41 -03001160 if (adap->id == 0) {
1161 /* configure gpiot2 as output and high */
1162 ret = af9035_wr_reg_mask(d, 0xd8eb, 0x01, 0x01);
1163 if (ret < 0)
1164 goto err;
Antti Palosaari7e0bc292012-12-02 20:12:29 -03001165
Antti Palosaari0bb3d8a2012-12-09 12:01:41 -03001166 ret = af9035_wr_reg_mask(d, 0xd8ec, 0x01, 0x01);
1167 if (ret < 0)
1168 goto err;
Antti Palosaari7e0bc292012-12-02 20:12:29 -03001169
Antti Palosaari0bb3d8a2012-12-09 12:01:41 -03001170 ret = af9035_wr_reg_mask(d, 0xd8ed, 0x01, 0x01);
1171 if (ret < 0)
1172 goto err;
1173 } else {
1174 /*
1175 * FIXME: That belongs for the FC0012 driver.
1176 * Write 02 to FC0012 master tuner register 0d directly
1177 * in order to make slave tuner working.
1178 */
1179 msg[0].addr = 0x63;
1180 msg[0].flags = 0;
1181 msg[0].len = 2;
1182 msg[0].buf = "\x0d\x02";
1183 ret = i2c_transfer(&d->i2c_adap, msg, 1);
1184 if (ret < 0)
1185 goto err;
1186 }
Antti Palosaari7e0bc292012-12-02 20:12:29 -03001187
1188 usleep_range(10000, 50000);
1189
Antti Palosaariad3a7582012-12-08 23:27:49 -03001190 fe = dvb_attach(fc0012_attach, adap->fe[0], &d->i2c_adap,
Antti Palosaari0bb3d8a2012-12-09 12:01:41 -03001191 &af9035_fc0012_config[adap->id]);
Antti Palosaari7e0bc292012-12-02 20:12:29 -03001192 break;
Antti Palosaariac77fb02013-01-07 09:51:13 -03001193 case AF9033_TUNER_IT9135_38:
Antti Palosaari74c18832013-01-07 15:16:54 -03001194 case AF9033_TUNER_IT9135_51:
1195 case AF9033_TUNER_IT9135_52:
1196 case AF9033_TUNER_IT9135_60:
1197 case AF9033_TUNER_IT9135_61:
1198 case AF9033_TUNER_IT9135_62:
Antti Palosaaridf8f1be2013-02-03 13:46:56 -03001199 /* attach tuner */
1200 fe = dvb_attach(it913x_attach, adap->fe[0], &d->i2c_adap,
1201 state->af9033_config[adap->id].i2c_addr,
Antti Palosaari44af7472013-02-28 00:14:06 -03001202 state->af9033_config[0].tuner);
Antti Palosaariac77fb02013-01-07 09:51:13 -03001203 break;
Antti Palosaari7f882c22012-03-30 09:10:08 -03001204 default:
1205 fe = NULL;
1206 }
1207
1208 if (fe == NULL) {
1209 ret = -ENODEV;
1210 goto err;
1211 }
1212
1213 return 0;
1214
1215err:
Antti Palosaari119f7a82012-09-12 20:23:53 -03001216 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001217
1218 return ret;
1219}
1220
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001221static int af9035_init(struct dvb_usb_device *d)
Antti Palosaari7f882c22012-03-30 09:10:08 -03001222{
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001223 struct state *state = d_to_priv(d);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001224 int ret, i;
Antti Palosaaribada3422013-01-11 20:45:11 -03001225 u16 frame_size = (d->udev->speed == USB_SPEED_FULL ? 5 : 87) * 188 / 4;
1226 u8 packet_size = (d->udev->speed == USB_SPEED_FULL ? 64 : 512) / 4;
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001227 struct reg_val_mask tab[] = {
1228 { 0x80f99d, 0x01, 0x01 },
1229 { 0x80f9a4, 0x01, 0x01 },
1230 { 0x00dd11, 0x00, 0x20 },
1231 { 0x00dd11, 0x00, 0x40 },
1232 { 0x00dd13, 0x00, 0x20 },
1233 { 0x00dd13, 0x00, 0x40 },
1234 { 0x00dd11, 0x20, 0x20 },
1235 { 0x00dd88, (frame_size >> 0) & 0xff, 0xff},
1236 { 0x00dd89, (frame_size >> 8) & 0xff, 0xff},
1237 { 0x00dd0c, packet_size, 0xff},
1238 { 0x00dd11, state->dual_mode << 6, 0x40 },
1239 { 0x00dd8a, (frame_size >> 0) & 0xff, 0xff},
1240 { 0x00dd8b, (frame_size >> 8) & 0xff, 0xff},
1241 { 0x00dd0d, packet_size, 0xff },
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001242 { 0x80f9a3, state->dual_mode, 0x01 },
1243 { 0x80f9cd, state->dual_mode, 0x01 },
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001244 { 0x80f99d, 0x00, 0x01 },
1245 { 0x80f9a4, 0x00, 0x01 },
1246 };
Antti Palosaari7f882c22012-03-30 09:10:08 -03001247
Antti Palosaaricb9114e2013-06-03 18:42:14 -03001248 dev_dbg(&d->udev->dev,
1249 "%s: USB speed=%d frame_size=%04x packet_size=%02x\n",
1250 __func__, d->udev->speed, frame_size, packet_size);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001251
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001252 /* init endpoints */
1253 for (i = 0; i < ARRAY_SIZE(tab); i++) {
1254 ret = af9035_wr_reg_mask(d, tab[i].reg, tab[i].val,
1255 tab[i].mask);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001256 if (ret < 0)
1257 goto err;
1258 }
1259
1260 return 0;
1261
1262err:
Antti Palosaari119f7a82012-09-12 20:23:53 -03001263 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001264
1265 return ret;
1266}
1267
Antti Palosaari37b44a02013-01-04 15:21:26 -03001268#if IS_ENABLED(CONFIG_RC_CORE)
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001269static int af9035_rc_query(struct dvb_usb_device *d)
1270{
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001271 int ret;
Antti Palosaari75cd5882013-03-08 17:50:21 -03001272 u32 key;
1273 u8 buf[4];
1274 struct usb_req req = { CMD_IR_GET, 0, 0, NULL, 4, buf };
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001275
1276 ret = af9035_ctrl_msg(d, &req);
Antti Palosaari1bfd5292013-03-08 17:39:12 -03001277 if (ret == 1)
1278 return 0;
1279 else if (ret < 0)
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001280 goto err;
1281
Antti Palosaari75cd5882013-03-08 17:50:21 -03001282 if ((buf[2] + buf[3]) == 0xff) {
1283 if ((buf[0] + buf[1]) == 0xff) {
1284 /* NEC standard 16bit */
1285 key = buf[0] << 8 | buf[2];
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001286 } else {
Antti Palosaari75cd5882013-03-08 17:50:21 -03001287 /* NEC extended 24bit */
1288 key = buf[0] << 16 | buf[1] << 8 | buf[2];
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001289 }
1290 } else {
Antti Palosaari75cd5882013-03-08 17:50:21 -03001291 /* NEC full code 32bit */
1292 key = buf[0] << 24 | buf[1] << 16 | buf[2] << 8 | buf[3];
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001293 }
1294
Antti Palosaari75cd5882013-03-08 17:50:21 -03001295 dev_dbg(&d->udev->dev, "%s: %*ph\n", __func__, 4, buf);
1296
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001297 rc_keydown(d->rc_dev, key, 0);
1298
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001299 return 0;
Antti Palosaari1bfd5292013-03-08 17:39:12 -03001300
1301err:
1302 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
1303
1304 return ret;
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001305}
1306
1307static int af9035_get_rc_config(struct dvb_usb_device *d, struct dvb_usb_rc *rc)
1308{
Antti Palosaari74c18832013-01-07 15:16:54 -03001309 struct state *state = d_to_priv(d);
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001310 int ret;
1311 u8 tmp;
1312
Antti Palosaari431a6d42013-03-07 18:28:25 -03001313 ret = af9035_rd_reg(d, state->eeprom_addr + EEPROM_IR_MODE, &tmp);
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001314 if (ret < 0)
1315 goto err;
1316
Antti Palosaari119f7a82012-09-12 20:23:53 -03001317 dev_dbg(&d->udev->dev, "%s: ir_mode=%02x\n", __func__, tmp);
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001318
1319 /* don't activate rc if in HID mode or if not available */
1320 if (tmp == 5) {
Antti Palosaari431a6d42013-03-07 18:28:25 -03001321 ret = af9035_rd_reg(d, state->eeprom_addr + EEPROM_IR_TYPE,
Antti Palosaari9ea36812013-01-11 22:16:25 -03001322 &tmp);
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001323 if (ret < 0)
1324 goto err;
1325
Antti Palosaari119f7a82012-09-12 20:23:53 -03001326 dev_dbg(&d->udev->dev, "%s: ir_type=%02x\n", __func__, tmp);
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001327
1328 switch (tmp) {
1329 case 0: /* NEC */
1330 default:
David Härdemanc003ab12012-10-11 19:11:54 -03001331 rc->allowed_protos = RC_BIT_NEC;
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001332 break;
1333 case 1: /* RC6 */
David Härdemanc003ab12012-10-11 19:11:54 -03001334 rc->allowed_protos = RC_BIT_RC6_MCE;
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001335 break;
1336 }
1337
1338 rc->query = af9035_rc_query;
1339 rc->interval = 500;
Antti Palosaaride73bee2012-07-05 19:57:07 -03001340
1341 /* load empty to enable rc */
1342 if (!rc->map_name)
1343 rc->map_name = RC_MAP_EMPTY;
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001344 }
1345
1346 return 0;
1347
1348err:
Antti Palosaari119f7a82012-09-12 20:23:53 -03001349 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001350
1351 return ret;
1352}
Antti Palosaarieed56702012-12-09 20:18:31 -03001353#else
1354 #define af9035_get_rc_config NULL
1355#endif
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001356
Antti Palosaaribada3422013-01-11 20:45:11 -03001357static int af9035_get_stream_config(struct dvb_frontend *fe, u8 *ts_type,
1358 struct usb_data_stream_properties *stream)
1359{
1360 struct dvb_usb_device *d = fe_to_d(fe);
1361 dev_dbg(&d->udev->dev, "%s: adap=%d\n", __func__, fe_to_adap(fe)->id);
1362
1363 if (d->udev->speed == USB_SPEED_FULL)
1364 stream->u.bulk.buffersize = 5 * 188;
1365
1366 return 0;
1367}
1368
1369/*
1370 * FIXME: PID filter is property of demodulator and should be moved to the
1371 * correct driver. Also we support only adapter #0 PID filter and will
1372 * disable adapter #1 if USB1.1 is used.
1373 */
1374static int af9035_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
1375{
1376 struct dvb_usb_device *d = adap_to_d(adap);
1377 int ret;
1378
1379 dev_dbg(&d->udev->dev, "%s: onoff=%d\n", __func__, onoff);
1380
1381 ret = af9035_wr_reg_mask(d, 0x80f993, onoff, 0x01);
1382 if (ret < 0)
1383 goto err;
1384
1385 return 0;
1386
1387err:
1388 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
1389
1390 return ret;
1391}
1392
1393static int af9035_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid,
1394 int onoff)
1395{
1396 struct dvb_usb_device *d = adap_to_d(adap);
1397 int ret;
1398 u8 wbuf[2] = {(pid >> 0) & 0xff, (pid >> 8) & 0xff};
1399
1400 dev_dbg(&d->udev->dev, "%s: index=%d pid=%04x onoff=%d\n",
1401 __func__, index, pid, onoff);
1402
1403 ret = af9035_wr_regs(d, 0x80f996, wbuf, 2);
1404 if (ret < 0)
1405 goto err;
1406
1407 ret = af9035_wr_reg(d, 0x80f994, onoff);
1408 if (ret < 0)
1409 goto err;
1410
1411 ret = af9035_wr_reg(d, 0x80f995, index);
1412 if (ret < 0)
1413 goto err;
1414
1415 return 0;
1416
1417err:
1418 dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
1419
1420 return ret;
1421}
1422
Antti Palosaarib799b812013-01-11 16:22:07 -03001423static int af9035_probe(struct usb_interface *intf,
1424 const struct usb_device_id *id)
1425{
1426 struct usb_device *udev = interface_to_usbdev(intf);
1427 char manufacturer[sizeof("Afatech")];
1428
1429 memset(manufacturer, 0, sizeof(manufacturer));
1430 usb_string(udev, udev->descriptor.iManufacturer,
1431 manufacturer, sizeof(manufacturer));
1432 /*
1433 * There is two devices having same ID but different chipset. One uses
1434 * AF9015 and the other IT9135 chipset. Only difference seen on lsusb
1435 * is iManufacturer string.
1436 *
1437 * idVendor 0x0ccd TerraTec Electronic GmbH
1438 * idProduct 0x0099
1439 * bcdDevice 2.00
1440 * iManufacturer 1 Afatech
1441 * iProduct 2 DVB-T 2
1442 *
1443 * idVendor 0x0ccd TerraTec Electronic GmbH
1444 * idProduct 0x0099
1445 * bcdDevice 2.00
1446 * iManufacturer 1 ITE Technologies, Inc.
1447 * iProduct 2 DVB-T TV Stick
1448 */
1449 if ((le16_to_cpu(udev->descriptor.idVendor) == USB_VID_TERRATEC) &&
1450 (le16_to_cpu(udev->descriptor.idProduct) == 0x0099)) {
1451 if (!strcmp("Afatech", manufacturer)) {
1452 dev_dbg(&udev->dev, "%s: rejecting device\n", __func__);
1453 return -ENODEV;
1454 }
1455 }
1456
1457 return dvb_usbv2_probe(intf, id);
1458}
1459
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001460/* interface 0 is used by DVB-T receiver and
1461 interface 1 is for remote controller (HID) */
1462static const struct dvb_usb_device_properties af9035_props = {
1463 .driver_name = KBUILD_MODNAME,
1464 .owner = THIS_MODULE,
1465 .adapter_nr = adapter_nr,
1466 .size_of_priv = sizeof(struct state),
1467
1468 .generic_bulk_ctrl_endpoint = 0x02,
1469 .generic_bulk_ctrl_endpoint_response = 0x81,
1470
1471 .identify_state = af9035_identify_state,
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001472 .download_firmware = af9035_download_firmware,
1473
1474 .i2c_algo = &af9035_i2c_algo,
1475 .read_config = af9035_read_config,
1476 .frontend_attach = af9035_frontend_attach,
1477 .tuner_attach = af9035_tuner_attach,
1478 .init = af9035_init,
1479 .get_rc_config = af9035_get_rc_config,
Antti Palosaaribada3422013-01-11 20:45:11 -03001480 .get_stream_config = af9035_get_stream_config,
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001481
Jose Alberto Reguero98059922012-09-23 16:48:47 -03001482 .get_adapter_count = af9035_get_adapter_count,
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001483 .adapter = {
1484 {
Antti Palosaaribada3422013-01-11 20:45:11 -03001485 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
1486 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
1487
1488 .pid_filter_count = 32,
1489 .pid_filter_ctrl = af9035_pid_filter_ctrl,
1490 .pid_filter = af9035_pid_filter,
1491
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001492 .stream = DVB_USB_STREAM_BULK(0x84, 6, 87 * 188),
1493 }, {
1494 .stream = DVB_USB_STREAM_BULK(0x85, 6, 87 * 188),
1495 },
1496 },
1497};
1498
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001499static const struct usb_device_id af9035_id_table[] = {
Antti Palosaaribc3c9e12013-02-01 22:23:07 -03001500 /* AF9035 devices */
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001501 { DVB_USB_DEVICE(USB_VID_AFATECH, USB_PID_AFATECH_AF9035_9035,
1502 &af9035_props, "Afatech AF9035 reference design", NULL) },
1503 { DVB_USB_DEVICE(USB_VID_AFATECH, USB_PID_AFATECH_AF9035_1000,
1504 &af9035_props, "Afatech AF9035 reference design", NULL) },
1505 { DVB_USB_DEVICE(USB_VID_AFATECH, USB_PID_AFATECH_AF9035_1001,
1506 &af9035_props, "Afatech AF9035 reference design", NULL) },
1507 { DVB_USB_DEVICE(USB_VID_AFATECH, USB_PID_AFATECH_AF9035_1002,
1508 &af9035_props, "Afatech AF9035 reference design", NULL) },
1509 { DVB_USB_DEVICE(USB_VID_AFATECH, USB_PID_AFATECH_AF9035_1003,
1510 &af9035_props, "Afatech AF9035 reference design", NULL) },
1511 { DVB_USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_STICK,
1512 &af9035_props, "TerraTec Cinergy T Stick", NULL) },
1513 { DVB_USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_A835,
1514 &af9035_props, "AVerMedia AVerTV Volar HD/PRO (A835)", NULL) },
1515 { DVB_USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_B835,
1516 &af9035_props, "AVerMedia AVerTV Volar HD/PRO (A835)", NULL) },
1517 { DVB_USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_1867,
1518 &af9035_props, "AVerMedia HD Volar (A867)", NULL) },
1519 { DVB_USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_A867,
1520 &af9035_props, "AVerMedia HD Volar (A867)", NULL) },
1521 { DVB_USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_TWINSTAR,
1522 &af9035_props, "AVerMedia Twinstar (A825)", NULL) },
Oliver Schinagld67ceb32012-09-20 14:57:17 -03001523 { DVB_USB_DEVICE(USB_VID_ASUS, USB_PID_ASUS_U3100MINI_PLUS,
1524 &af9035_props, "Asus U3100Mini Plus", NULL) },
Antti Palosaaricb9114e2013-06-03 18:42:14 -03001525 { DVB_USB_DEVICE(USB_VID_TERRATEC, 0x00aa,
Fabrizio Gazzatod9b75952013-02-17 18:25:34 -03001526 &af9035_props, "TerraTec Cinergy T Stick (rev. 2)", NULL) },
Antti Palosaaribc3c9e12013-02-01 22:23:07 -03001527 /* IT9135 devices */
1528#if 0
1529 { DVB_USB_DEVICE(0x048d, 0x9135,
1530 &af9035_props, "IT9135 reference design", NULL) },
1531 { DVB_USB_DEVICE(0x048d, 0x9006,
1532 &af9035_props, "IT9135 reference design", NULL) },
1533#endif
Antti Palosaarib799b812013-01-11 16:22:07 -03001534 /* XXX: that same ID [0ccd:0099] is used by af9015 driver too */
1535 { DVB_USB_DEVICE(USB_VID_TERRATEC, 0x0099,
1536 &af9035_props, "TerraTec Cinergy T Stick Dual RC (rev. 2)", NULL) },
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001537 { }
1538};
1539MODULE_DEVICE_TABLE(usb, af9035_id_table);
1540
Antti Palosaari7f882c22012-03-30 09:10:08 -03001541static struct usb_driver af9035_usb_driver = {
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001542 .name = KBUILD_MODNAME,
1543 .id_table = af9035_id_table,
Antti Palosaarib799b812013-01-11 16:22:07 -03001544 .probe = af9035_probe,
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001545 .disconnect = dvb_usbv2_disconnect,
1546 .suspend = dvb_usbv2_suspend,
1547 .resume = dvb_usbv2_resume,
Antti Palosaari04966aa2012-08-14 22:21:08 -03001548 .reset_resume = dvb_usbv2_reset_resume,
Antti Palosaari5da2aec2012-06-17 23:15:03 -03001549 .no_dynamic_id = 1,
1550 .soft_unbind = 1,
Antti Palosaari7f882c22012-03-30 09:10:08 -03001551};
1552
Gianluca Gennari48bf7e12012-04-02 17:25:17 -03001553module_usb_driver(af9035_usb_driver);
Antti Palosaari7f882c22012-03-30 09:10:08 -03001554
1555MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
1556MODULE_DESCRIPTION("Afatech AF9035 driver");
1557MODULE_LICENSE("GPL");
Antti Palosaari4395e4b2012-09-12 12:19:06 -03001558MODULE_FIRMWARE(AF9035_FIRMWARE_AF9035);
Antti Palosaari74c18832013-01-07 15:16:54 -03001559MODULE_FIRMWARE(AF9035_FIRMWARE_IT9135_V1);
1560MODULE_FIRMWARE(AF9035_FIRMWARE_IT9135_V2);