rtl28xxu.c 32.4 KB
Newer Older
1 2 3 4 5
/*
 * Realtek RTL28xxU DVB USB driver
 *
 * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
 * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
6
 * Copyright (C) 2012 Thomas Mair <thomas.mair86@googlemail.com>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 *
 *    This program is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation; either version 2 of the License, or
 *    (at your option) any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License along
 *    with this program; if not, write to the Free Software Foundation, Inc.,
 *    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "rtl28xxu.h"

#include "rtl2830.h"
26
#include "rtl2832.h"
27 28 29 30

#include "qt1010.h"
#include "mt2060.h"
#include "mxl5005s.h"
31 32
#include "fc0012.h"
#include "fc0013.h"
33
#include "e4000.h"
34
#include "fc2580.h"
35
#include "tua9001.h"
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63

DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);

static int rtl28xxu_ctrl_msg(struct dvb_usb_device *d, struct rtl28xxu_req *req)
{
	int ret;
	unsigned int pipe;
	u8 requesttype;
	u8 *buf;

	buf = kmalloc(req->size, GFP_KERNEL);
	if (!buf) {
		ret = -ENOMEM;
		goto err;
	}

	if (req->index & CMD_WR_FLAG) {
		/* write */
		memcpy(buf, req->data, req->size);
		requesttype = (USB_TYPE_VENDOR | USB_DIR_OUT);
		pipe = usb_sndctrlpipe(d->udev, 0);
	} else {
		/* read */
		requesttype = (USB_TYPE_VENDOR | USB_DIR_IN);
		pipe = usb_rcvctrlpipe(d->udev, 0);
	}

	ret = usb_control_msg(d->udev, pipe, 0, requesttype, req->value,
64
			req->index, buf, req->size, 1000);
65 66 67 68

	dvb_usb_dbg_usb_control_msg(d->udev, 0, requesttype, req->value,
			req->index, buf, req->size);

69 70
	if (ret > 0)
		ret = 0;
71 72 73 74 75 76 77

	/* read request, copy returned data to return buf */
	if (!ret && requesttype == (USB_TYPE_VENDOR | USB_DIR_IN))
		memcpy(req->data, buf, req->size);

	kfree(buf);

78 79 80 81
	if (ret)
		goto err;

	return ret;
82
err:
83
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
84 85 86
	return ret;
}

87
static int rtl28xx_wr_regs(struct dvb_usb_device *d, u16 reg, u8 *val, int len)
88 89 90 91 92
{
	struct rtl28xxu_req req;

	if (reg < 0x3000)
		req.index = CMD_USB_WR;
93
	else if (reg < 0x4000)
94
		req.index = CMD_SYS_WR;
95 96
	else
		req.index = CMD_IR_WR;
97 98 99 100 101 102 103 104 105 106 107 108 109 110

	req.value = reg;
	req.size = len;
	req.data = val;

	return rtl28xxu_ctrl_msg(d, &req);
}

static int rtl2831_rd_regs(struct dvb_usb_device *d, u16 reg, u8 *val, int len)
{
	struct rtl28xxu_req req;

	if (reg < 0x3000)
		req.index = CMD_USB_RD;
111
	else if (reg < 0x4000)
112
		req.index = CMD_SYS_RD;
113 114
	else
		req.index = CMD_IR_RD;
115 116 117 118 119 120 121 122

	req.value = reg;
	req.size = len;
	req.data = val;

	return rtl28xxu_ctrl_msg(d, &req);
}

123
static int rtl28xx_wr_reg(struct dvb_usb_device *d, u16 reg, u8 val)
124
{
125
	return rtl28xx_wr_regs(d, reg, &val, 1);
126 127
}

128
static int rtl28xx_rd_reg(struct dvb_usb_device *d, u16 reg, u8 *val)
129 130 131 132 133 134 135 136 137 138
{
	return rtl2831_rd_regs(d, reg, val, 1);
}

/* I2C */
static int rtl28xxu_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
	int num)
{
	int ret;
	struct dvb_usb_device *d = i2c_get_adapdata(adap);
139
	struct rtl28xxu_priv *priv = d->priv;
140 141 142 143 144
	struct rtl28xxu_req req;

	/*
	 * It is not known which are real I2C bus xfer limits, but testing
	 * with RTL2831U + MT2060 gives max RD 24 and max WR 22 bytes.
145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
	 * TODO: find out RTL2832U lens
	 */

	/*
	 * I2C adapter logic looks rather complicated due to fact it handles
	 * three different access methods. Those methods are;
	 * 1) integrated demod access
	 * 2) old I2C access
	 * 3) new I2C access
	 *
	 * Used method is selected in order 1, 2, 3. Method 3 can handle all
	 * requests but there is two reasons why not use it always;
	 * 1) It is most expensive, usually two USB messages are needed
	 * 2) At least RTL2831U does not support it
	 *
	 * Method 3 is needed in case of I2C write+read (typical register read)
	 * where write is more than one byte.
162 163 164 165 166 167 168
	 */

	if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
		return -EAGAIN;

	if (num == 2 && !(msg[0].flags & I2C_M_RD) &&
		(msg[1].flags & I2C_M_RD)) {
169 170
		if (msg[0].len > 24 || msg[1].len > 24) {
			/* TODO: check msg[0].len max */
171
			ret = -EOPNOTSUPP;
172
			goto err_mutex_unlock;
173 174 175 176
		} else if (msg[0].addr == 0x10) {
			/* method 1 - integrated demod */
			req.value = (msg[0].buf[0] << 8) | (msg[0].addr << 1);
			req.index = CMD_DEMOD_RD | priv->page;
177 178 179
			req.size = msg[1].len;
			req.data = &msg[1].buf[0];
			ret = rtl28xxu_ctrl_msg(d, &req);
180 181
		} else if (msg[0].len < 2) {
			/* method 2 - old I2C */
182 183 184 185 186
			req.value = (msg[0].buf[0] << 8) | (msg[0].addr << 1);
			req.index = CMD_I2C_RD;
			req.size = msg[1].len;
			req.data = &msg[1].buf[0];
			ret = rtl28xxu_ctrl_msg(d, &req);
187 188 189 190 191 192 193 194
		} else {
			/* method 3 - new I2C */
			req.value = (msg[0].addr << 1);
			req.index = CMD_I2C_DA_WR;
			req.size = msg[0].len;
			req.data = msg[0].buf;
			ret = rtl28xxu_ctrl_msg(d, &req);
			if (ret)
195
				goto err_mutex_unlock;
196 197 198 199 200 201

			req.value = (msg[0].addr << 1);
			req.index = CMD_I2C_DA_RD;
			req.size = msg[1].len;
			req.data = msg[1].buf;
			ret = rtl28xxu_ctrl_msg(d, &req);
202 203 204
		}
	} else if (num == 1 && !(msg[0].flags & I2C_M_RD)) {
		if (msg[0].len > 22) {
205
			/* TODO: check msg[0].len max */
206
			ret = -EOPNOTSUPP;
207
			goto err_mutex_unlock;
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
		} else if (msg[0].addr == 0x10) {
			/* method 1 - integrated demod */
			if (msg[0].buf[0] == 0x00) {
				/* save demod page for later demod access */
				priv->page = msg[0].buf[1];
				ret = 0;
			} else {
				req.value = (msg[0].buf[0] << 8) |
					(msg[0].addr << 1);
				req.index = CMD_DEMOD_WR | priv->page;
				req.size = msg[0].len-1;
				req.data = &msg[0].buf[1];
				ret = rtl28xxu_ctrl_msg(d, &req);
			}
		} else if (msg[0].len < 23) {
			/* method 2 - old I2C */
224 225 226 227 228
			req.value = (msg[0].buf[0] << 8) | (msg[0].addr << 1);
			req.index = CMD_I2C_WR;
			req.size = msg[0].len-1;
			req.data = &msg[0].buf[1];
			ret = rtl28xxu_ctrl_msg(d, &req);
229 230 231 232 233 234 235
		} else {
			/* method 3 - new I2C */
			req.value = (msg[0].addr << 1);
			req.index = CMD_I2C_DA_WR;
			req.size = msg[0].len;
			req.data = msg[0].buf;
			ret = rtl28xxu_ctrl_msg(d, &req);
236 237 238 239 240
		}
	} else {
		ret = -EINVAL;
	}

241
err_mutex_unlock:
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
	mutex_unlock(&d->i2c_mutex);

	return ret ? ret : num;
}

static u32 rtl28xxu_i2c_func(struct i2c_adapter *adapter)
{
	return I2C_FUNC_I2C;
}

static struct i2c_algorithm rtl28xxu_i2c_algo = {
	.master_xfer   = rtl28xxu_i2c_xfer,
	.functionality = rtl28xxu_i2c_func,
};

static struct rtl2830_config rtl28xxu_rtl2830_mt2060_config = {
	.i2c_addr = 0x10, /* 0x20 */
	.xtal = 28800000,
	.ts_mode = 0,
	.spec_inv = 1,
	.vtop = 0x20,
	.krf = 0x04,
	.agc_targ_val = 0x2d,

};

static struct rtl2830_config rtl28xxu_rtl2830_qt1010_config = {
	.i2c_addr = 0x10, /* 0x20 */
	.xtal = 28800000,
	.ts_mode = 0,
	.spec_inv = 1,
	.vtop = 0x20,
	.krf = 0x04,
	.agc_targ_val = 0x2d,
};

static struct rtl2830_config rtl28xxu_rtl2830_mxl5005s_config = {
	.i2c_addr = 0x10, /* 0x20 */
	.xtal = 28800000,
	.ts_mode = 0,
	.spec_inv = 0,
	.vtop = 0x3f,
	.krf = 0x04,
	.agc_targ_val = 0x3e,
};

288
static int rtl2831u_frontend_attach(struct dvb_usb_adapter *adap)
289 290
{
	int ret;
291 292
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
293 294
	u8 buf[1];
	struct rtl2830_config *rtl2830_config;
295
	/* open RTL2831U/RTL2830 I2C gate */
296
	struct rtl28xxu_req req_gate = { 0x0120, 0x0011, 0x0001, "\x08" };
297
	/* for MT2060 tuner probe */
298
	struct rtl28xxu_req req_mt2060 = { 0x00c0, CMD_I2C_RD, 1, buf };
299
	/* for QT1010 tuner probe */
300
	struct rtl28xxu_req req_qt1010 = { 0x0fc4, CMD_I2C_RD, 1, buf };
301

302
	dev_dbg(&d->udev->dev, "%s:\n", __func__);
303 304 305 306 307 308 309 310 311 312

	/*
	 * RTL2831U GPIOs
	 * =========================================================
	 * GPIO0 | tuner#0 | 0 off | 1 on  | MXL5005S (?)
	 * GPIO2 | LED     | 0 off | 1 on  |
	 * GPIO4 | tuner#1 | 0 on  | 1 off | MT2060
	 */

	/* GPIO direction */
313
	ret = rtl28xx_wr_reg(d, SYS_GPIO_DIR, 0x0a);
314 315 316 317
	if (ret)
		goto err;

	/* enable as output GPIO0, GPIO2, GPIO4 */
318
	ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_EN, 0x15);
319 320 321 322 323 324 325 326
	if (ret)
		goto err;

	/*
	 * Probe used tuner. We need to know used tuner before demod attach
	 * since there is some demod params needed to set according to tuner.
	 */

327 328 329
	/* demod needs some time to wake up */
	msleep(20);

330
	/* open demod I2C gate */
331
	ret = rtl28xxu_ctrl_msg(d, &req_gate);
332 333 334 335
	if (ret)
		goto err;

	/* check QT1010 ID(?) register; reg=0f val=2c */
336
	ret = rtl28xxu_ctrl_msg(d, &req_qt1010);
337 338 339
	if (ret == 0 && buf[0] == 0x2c) {
		priv->tuner = TUNER_RTL2830_QT1010;
		rtl2830_config = &rtl28xxu_rtl2830_qt1010_config;
340
		dev_dbg(&d->udev->dev, "%s: QT1010\n", __func__);
341 342
		goto found;
	} else {
343 344
		dev_dbg(&d->udev->dev, "%s: QT1010 probe failed=%d - %02x\n",
				__func__, ret, buf[0]);
345 346 347
	}

	/* open demod I2C gate */
348
	ret = rtl28xxu_ctrl_msg(d, &req_gate);
349 350 351 352
	if (ret)
		goto err;

	/* check MT2060 ID register; reg=00 val=63 */
353
	ret = rtl28xxu_ctrl_msg(d, &req_mt2060);
354 355 356
	if (ret == 0 && buf[0] == 0x63) {
		priv->tuner = TUNER_RTL2830_MT2060;
		rtl2830_config = &rtl28xxu_rtl2830_mt2060_config;
357
		dev_dbg(&d->udev->dev, "%s: MT2060\n", __func__);
358 359
		goto found;
	} else {
360 361
		dev_dbg(&d->udev->dev, "%s: MT2060 probe failed=%d - %02x\n",
				__func__, ret, buf[0]);
362 363 364
	}

	/* assume MXL5005S */
365
	ret = 0;
366 367
	priv->tuner = TUNER_RTL2830_MXL5005S;
	rtl2830_config = &rtl28xxu_rtl2830_mxl5005s_config;
368
	dev_dbg(&d->udev->dev, "%s: MXL5005S\n", __func__);
369 370 371 372
	goto found;

found:
	/* attach demodulator */
373 374 375
	adap->fe[0] = dvb_attach(rtl2830_attach, rtl2830_config,
		&d->i2c_adap);
	if (adap->fe[0] == NULL) {
376 377 378 379 380 381
		ret = -ENODEV;
		goto err;
	}

	return ret;
err:
382
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
383 384 385
	return ret;
}

386 387 388 389 390 391 392 393 394 395 396 397 398 399
static struct rtl2832_config rtl28xxu_rtl2832_fc0012_config = {
	.i2c_addr = 0x10, /* 0x20 */
	.xtal = 28800000,
	.if_dvbt = 0,
	.tuner = TUNER_RTL2832_FC0012
};

static struct rtl2832_config rtl28xxu_rtl2832_fc0013_config = {
	.i2c_addr = 0x10, /* 0x20 */
	.xtal = 28800000,
	.if_dvbt = 0,
	.tuner = TUNER_RTL2832_FC0013
};

400 401 402 403 404 405
static struct rtl2832_config rtl28xxu_rtl2832_tua9001_config = {
	.i2c_addr = 0x10, /* 0x20 */
	.xtal = 28800000,
	.tuner = TUNER_RTL2832_TUA9001,
};

406 407 408 409 410 411
static int rtl2832u_fc0012_tuner_callback(struct dvb_usb_device *d,
		int cmd, int arg)
{
	int ret;
	u8 val;

412 413
	dev_dbg(&d->udev->dev, "%s: cmd=%d arg=%d\n", __func__, cmd, arg);

414 415 416
	switch (cmd) {
	case FC_FE_CALLBACK_VHF_ENABLE:
		/* set output values */
417
		ret = rtl28xx_rd_reg(d, SYS_GPIO_OUT_VAL, &val);
418 419 420 421 422 423 424 425 426
		if (ret)
			goto err;

		if (arg)
			val &= 0xbf; /* set GPIO6 low */
		else
			val |= 0x40; /* set GPIO6 high */


427
		ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_VAL, val);
428 429 430 431 432 433 434 435 436 437
		if (ret)
			goto err;
		break;
	default:
		ret = -EINVAL;
		goto err;
	}
	return 0;

err:
438
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
439 440 441 442 443 444 445 446 447 448 449
	return ret;
}


static int rtl2832u_fc0013_tuner_callback(struct dvb_usb_device *d,
		int cmd, int arg)
{
	/* TODO implement*/
	return 0;
}

450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
static int rtl2832u_tua9001_tuner_callback(struct dvb_usb_device *d,
		int cmd, int arg)
{
	int ret;
	u8 val;

	dev_dbg(&d->udev->dev, "%s: cmd=%d arg=%d\n", __func__, cmd, arg);

	/*
	 * CEN     always enabled by hardware wiring
	 * RESETN  GPIO4
	 * RXEN    GPIO1
	 */

	ret = rtl28xx_rd_reg(d, SYS_GPIO_OUT_VAL, &val);
	if (ret < 0)
		goto err;

	switch (cmd) {
	case TUA9001_CMD_RESETN:
		if (arg)
			val |= (1 << 4);
		else
			val &= ~(1 << 4);

		ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_VAL, val);
		if (ret < 0)
			goto err;
		break;
	case TUA9001_CMD_RXEN:
		if (arg)
			val |= (1 << 1);
		else
			val &= ~(1 << 1);

		ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_VAL, val);
		if (ret < 0)
			goto err;
		break;
	}

	return 0;

err:
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
	return ret;
}

498 499 500 501 502 503 504 505 506 507
static int rtl2832u_tuner_callback(struct dvb_usb_device *d, int cmd, int arg)
{
	struct rtl28xxu_priv *priv = d->priv;

	switch (priv->tuner) {
	case TUNER_RTL2832_FC0012:
		return rtl2832u_fc0012_tuner_callback(d, cmd, arg);

	case TUNER_RTL2832_FC0013:
		return rtl2832u_fc0013_tuner_callback(d, cmd, arg);
508 509 510

	case TUNER_RTL2832_TUA9001:
		return rtl2832u_tua9001_tuner_callback(d, cmd, arg);
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533
	default:
		break;
	}

	return -ENODEV;
}

static int rtl2832u_frontend_callback(void *adapter_priv, int component,
				    int cmd, int arg)
{
	struct i2c_adapter *adap = adapter_priv;
	struct dvb_usb_device *d = i2c_get_adapdata(adap);

	switch (component) {
	case DVB_FRONTEND_COMPONENT_TUNER:
		return rtl2832u_tuner_callback(d, cmd, arg);
	default:
		break;
	}

	return -EINVAL;
}

534 535 536
static int rtl2832u_frontend_attach(struct dvb_usb_adapter *adap)
{
	int ret;
537 538
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
539 540
	struct rtl2832_config *rtl2832_config;
	u8 buf[2], val;
541 542 543 544
	/* open RTL2832U/RTL2832 I2C gate */
	struct rtl28xxu_req req_gate_open = {0x0120, 0x0011, 0x0001, "\x18"};
	/* close RTL2832U/RTL2832 I2C gate */
	struct rtl28xxu_req req_gate_close = {0x0120, 0x0011, 0x0001, "\x10"};
545 546 547 548 549 550
	/* for FC0012 tuner probe */
	struct rtl28xxu_req req_fc0012 = {0x00c6, CMD_I2C_RD, 1, buf};
	/* for FC0013 tuner probe */
	struct rtl28xxu_req req_fc0013 = {0x00c6, CMD_I2C_RD, 1, buf};
	/* for MT2266 tuner probe */
	struct rtl28xxu_req req_mt2266 = {0x00c0, CMD_I2C_RD, 1, buf};
551 552
	/* for FC2580 tuner probe */
	struct rtl28xxu_req req_fc2580 = {0x01ac, CMD_I2C_RD, 1, buf};
553 554 555 556 557 558 559 560 561 562 563 564
	/* for MT2063 tuner probe */
	struct rtl28xxu_req req_mt2063 = {0x00c0, CMD_I2C_RD, 1, buf};
	/* for MAX3543 tuner probe */
	struct rtl28xxu_req req_max3543 = {0x00c0, CMD_I2C_RD, 1, buf};
	/* for TUA9001 tuner probe */
	struct rtl28xxu_req req_tua9001 = {0x7ec0, CMD_I2C_RD, 2, buf};
	/* for MXL5007T tuner probe */
	struct rtl28xxu_req req_mxl5007t = {0xd9c0, CMD_I2C_RD, 1, buf};
	/* for E4000 tuner probe */
	struct rtl28xxu_req req_e4000 = {0x02c8, CMD_I2C_RD, 1, buf};
	/* for TDA18272 tuner probe */
	struct rtl28xxu_req req_tda18272 = {0x00c0, CMD_I2C_RD, 2, buf};
565

566
	dev_dbg(&d->udev->dev, "%s:\n", __func__);
567

568
	ret = rtl28xx_rd_reg(d, SYS_GPIO_DIR, &val);
569 570 571
	if (ret)
		goto err;

572 573
	val &= 0xbf;

574
	ret = rtl28xx_wr_reg(d, SYS_GPIO_DIR, val);
575 576 577
	if (ret)
		goto err;

578
	/* enable as output GPIO3 and GPIO6*/
579
	ret = rtl28xx_rd_reg(d, SYS_GPIO_OUT_EN, &val);
580 581 582
	if (ret)
		goto err;

583 584
	val |= 0x48;

585
	ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_EN, val);
586 587 588
	if (ret)
		goto err;

589 590 591 592 593 594
	/*
	 * Probe used tuner. We need to know used tuner before demod attach
	 * since there is some demod params needed to set according to tuner.
	 */

	/* open demod I2C gate */
595
	ret = rtl28xxu_ctrl_msg(d, &req_gate_open);
596 597 598
	if (ret)
		goto err;

599 600 601
	priv->tuner = TUNER_NONE;

	/* check FC0012 ID register; reg=00 val=a1 */
602
	ret = rtl28xxu_ctrl_msg(d, &req_fc0012);
603 604 605
	if (ret == 0 && buf[0] == 0xa1) {
		priv->tuner = TUNER_RTL2832_FC0012;
		rtl2832_config = &rtl28xxu_rtl2832_fc0012_config;
606 607
		dev_info(&d->udev->dev, "%s: FC0012 tuner found",
				KBUILD_MODNAME);
608 609 610 611
		goto found;
	}

	/* check FC0013 ID register; reg=00 val=a3 */
612
	ret = rtl28xxu_ctrl_msg(d, &req_fc0013);
613 614 615
	if (ret == 0 && buf[0] == 0xa3) {
		priv->tuner = TUNER_RTL2832_FC0013;
		rtl2832_config = &rtl28xxu_rtl2832_fc0013_config;
616 617
		dev_info(&d->udev->dev, "%s: FC0013 tuner found",
				KBUILD_MODNAME);
618 619 620 621
		goto found;
	}

	/* check MT2266 ID register; reg=00 val=85 */
622
	ret = rtl28xxu_ctrl_msg(d, &req_mt2266);
623 624 625
	if (ret == 0 && buf[0] == 0x85) {
		priv->tuner = TUNER_RTL2832_MT2266;
		/* TODO implement tuner */
626 627
		dev_info(&d->udev->dev, "%s: MT2266 tuner found",
				KBUILD_MODNAME);
628 629 630
		goto unsupported;
	}

631
	/* check FC2580 ID register; reg=01 val=56 */
632
	ret = rtl28xxu_ctrl_msg(d, &req_fc2580);
633 634
	if (ret == 0 && buf[0] == 0x56) {
		priv->tuner = TUNER_RTL2832_FC2580;
635 636
		/* FIXME: do not abuse fc0012 settings */
		rtl2832_config = &rtl28xxu_rtl2832_fc0012_config;
637 638
		dev_info(&d->udev->dev, "%s: FC2580 tuner found",
				KBUILD_MODNAME);
639
		goto found;
640 641 642
	}

	/* check MT2063 ID register; reg=00 val=9e || 9c */
643
	ret = rtl28xxu_ctrl_msg(d, &req_mt2063);
644 645 646
	if (ret == 0 && (buf[0] == 0x9e || buf[0] == 0x9c)) {
		priv->tuner = TUNER_RTL2832_MT2063;
		/* TODO implement tuner */
647 648
		dev_info(&d->udev->dev, "%s: MT2063 tuner found",
				KBUILD_MODNAME);
649 650 651 652
		goto unsupported;
	}

	/* check MAX3543 ID register; reg=00 val=38 */
653
	ret = rtl28xxu_ctrl_msg(d, &req_max3543);
654 655 656
	if (ret == 0 && buf[0] == 0x38) {
		priv->tuner = TUNER_RTL2832_MAX3543;
		/* TODO implement tuner */
657 658
		dev_info(&d->udev->dev, "%s: MAX3534 tuner found",
				KBUILD_MODNAME);
659
		goto unsupported;
660 661
	}

662
	/* check TUA9001 ID register; reg=7e val=2328 */
663
	ret = rtl28xxu_ctrl_msg(d, &req_tua9001);
664 665
	if (ret == 0 && buf[0] == 0x23 && buf[1] == 0x28) {
		priv->tuner = TUNER_RTL2832_TUA9001;
666
		rtl2832_config = &rtl28xxu_rtl2832_tua9001_config;
667 668
		dev_info(&d->udev->dev, "%s: TUA9001 tuner found",
				KBUILD_MODNAME);
669
		goto found;
670 671 672
	}

	/* check MXL5007R ID register; reg=d9 val=14 */
673
	ret = rtl28xxu_ctrl_msg(d, &req_mxl5007t);
674 675 676
	if (ret == 0 && buf[0] == 0x14) {
		priv->tuner = TUNER_RTL2832_MXL5007T;
		/* TODO implement tuner */
677 678
		dev_info(&d->udev->dev, "%s: MXL5007T tuner found",
				KBUILD_MODNAME);
679 680 681 682
		goto unsupported;
	}

	/* check E4000 ID register; reg=02 val=40 */
683
	ret = rtl28xxu_ctrl_msg(d, &req_e4000);
684 685
	if (ret == 0 && buf[0] == 0x40) {
		priv->tuner = TUNER_RTL2832_E4000;
686 687
		/* FIXME: do not abuse fc0012 settings */
		rtl2832_config = &rtl28xxu_rtl2832_fc0012_config;
688 689
		dev_info(&d->udev->dev, "%s: E4000 tuner found",
				KBUILD_MODNAME);
690
		goto found;
691 692 693
	}

	/* check TDA18272 ID register; reg=00 val=c760  */
694
	ret = rtl28xxu_ctrl_msg(d, &req_tda18272);
695 696 697
	if (ret == 0 && (buf[0] == 0xc7 || buf[1] == 0x60)) {
		priv->tuner = TUNER_RTL2832_TDA18272;
		/* TODO implement tuner */
698 699
		dev_info(&d->udev->dev, "%s: TDA18272 tuner found",
				KBUILD_MODNAME);
700 701 702 703
		goto unsupported;
	}

unsupported:
704
	/* close demod I2C gate */
705
	ret = rtl28xxu_ctrl_msg(d, &req_gate_close);
706 707 708 709
	if (ret)
		goto err;

	/* tuner not found */
710
	dev_dbg(&d->udev->dev, "%s: No compatible tuner found\n", __func__);
711
	ret = -ENODEV;
712
	return ret;
713 714 715

found:
	/* close demod I2C gate */
716
	ret = rtl28xxu_ctrl_msg(d, &req_gate_close);
717 718 719 720
	if (ret)
		goto err;

	/* attach demodulator */
721 722 723
	adap->fe[0] = dvb_attach(rtl2832_attach, rtl2832_config,
		&d->i2c_adap);
		if (adap->fe[0] == NULL) {
724 725 726 727 728
			ret = -ENODEV;
			goto err;
		}

	/* set fe callbacks */
729
	adap->fe[0]->callback = rtl2832u_frontend_callback;
730 731

	return ret;
732

733
err:
734
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
735 736 737
	return ret;
}

738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
static struct qt1010_config rtl28xxu_qt1010_config = {
	.i2c_address = 0x62, /* 0xc4 */
};

static struct mt2060_config rtl28xxu_mt2060_config = {
	.i2c_address = 0x60, /* 0xc0 */
	.clock_out = 0,
};

static struct mxl5005s_config rtl28xxu_mxl5005s_config = {
	.i2c_address     = 0x63, /* 0xc6 */
	.if_freq         = IF_FREQ_4570000HZ,
	.xtal_freq       = CRYSTAL_FREQ_16000000HZ,
	.agc_mode        = MXL_SINGLE_AGC,
	.tracking_filter = MXL_TF_C_H,
	.rssi_enable     = MXL_RSSI_ENABLE,
	.cap_select      = MXL_CAP_SEL_ENABLE,
	.div_out         = MXL_DIV_OUT_4,
	.clock_out       = MXL_CLOCK_OUT_DISABLE,
	.output_load     = MXL5005S_IF_OUTPUT_LOAD_200_OHM,
	.top		 = MXL5005S_TOP_25P2,
	.mod_mode        = MXL_DIGITAL_MODE,
	.if_mode         = MXL_ZERO_IF,
	.AgcMasterByte   = 0x00,
};

764
static int rtl2831u_tuner_attach(struct dvb_usb_adapter *adap)
765 766
{
	int ret;
767 768
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
769
	struct i2c_adapter *rtl2830_tuner_i2c;
770
	struct dvb_frontend *fe;
771

772
	dev_dbg(&d->udev->dev, "%s:\n", __func__);
773 774

	/* use rtl2830 driver I2C adapter, for more info see rtl2830 driver */
775
	rtl2830_tuner_i2c = rtl2830_get_tuner_i2c_adapter(adap->fe[0]);
776 777 778

	switch (priv->tuner) {
	case TUNER_RTL2830_QT1010:
779
		fe = dvb_attach(qt1010_attach, adap->fe[0],
780
				rtl2830_tuner_i2c, &rtl28xxu_qt1010_config);
781 782
		break;
	case TUNER_RTL2830_MT2060:
783
		fe = dvb_attach(mt2060_attach, adap->fe[0],
784 785
				rtl2830_tuner_i2c, &rtl28xxu_mt2060_config,
				1220);
786 787
		break;
	case TUNER_RTL2830_MXL5005S:
788
		fe = dvb_attach(mxl5005s_attach, adap->fe[0],
789
				rtl2830_tuner_i2c, &rtl28xxu_mxl5005s_config);
790 791
		break;
	default:
792
		fe = NULL;
793 794
		dev_err(&d->udev->dev, "%s: unknown tuner=%d\n", KBUILD_MODNAME,
				priv->tuner);
795 796 797 798 799 800 801 802 803
	}

	if (fe == NULL) {
		ret = -ENODEV;
		goto err;
	}

	return 0;
err:
804
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
805 806 807
	return ret;
}

808 809 810 811 812
static const struct e4000_config rtl2832u_e4000_config = {
	.i2c_addr = 0x64,
	.clock = 28800000,
};

813 814 815 816 817
static const struct fc2580_config rtl2832u_fc2580_config = {
	.i2c_addr = 0x56,
	.clock = 16384000,
};

818 819 820 821
static struct tua9001_config rtl2832u_tua9001_config = {
	.i2c_addr = 0x60,
};

822 823 824
static int rtl2832u_tuner_attach(struct dvb_usb_adapter *adap)
{
	int ret;
825 826
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
827
	struct dvb_frontend *fe;
828
	u8 val;
829

830
	dev_dbg(&d->udev->dev, "%s:\n", __func__);
831 832

	switch (priv->tuner) {
833
	case TUNER_RTL2832_FC0012:
834 835
		fe = dvb_attach(fc0012_attach, adap->fe[0],
			&d->i2c_adap, 0xc6>>1, 0, FC_XTAL_28_8_MHZ);
836 837 838

		/* since fc0012 includs reading the signal strength delegate
		 * that to the tuner driver */
839 840
		adap->fe[0]->ops.read_signal_strength =
				adap->fe[0]->ops.tuner_ops.get_rf_strength;
841
		return 0;
842
		break;
843
	case TUNER_RTL2832_FC0013:
844 845
		fe = dvb_attach(fc0013_attach, adap->fe[0],
			&d->i2c_adap, 0xc6>>1, 0, FC_XTAL_28_8_MHZ);
846 847

		/* fc0013 also supports signal strength reading */
848 849
		adap->fe[0]->ops.read_signal_strength =
				adap->fe[0]->ops.tuner_ops.get_rf_strength;
850
		return 0;
851 852 853 854
	case TUNER_RTL2832_E4000:
		fe = dvb_attach(e4000_attach, adap->fe[0], &d->i2c_adap,
				&rtl2832u_e4000_config);
		break;
855 856 857 858
	case TUNER_RTL2832_FC2580:
		fe = dvb_attach(fc2580_attach, adap->fe[0], &d->i2c_adap,
				&rtl2832u_fc2580_config);
		break;
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
	case TUNER_RTL2832_TUA9001:
		/* enable GPIO1 and GPIO4 as output */
		ret = rtl28xx_rd_reg(d, SYS_GPIO_DIR, &val);
		if (ret < 0)
			goto err;

		val &= ~(1 << 1);
		val &= ~(1 << 4);

		ret = rtl28xx_wr_reg(d, SYS_GPIO_DIR, val);
		if (ret < 0)
			goto err;

		ret = rtl28xx_rd_reg(d, SYS_GPIO_OUT_EN, &val);
		if (ret < 0)
			goto err;

		val |= (1 << 1);
		val |= (1 << 4);

		ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_EN, val);
		if (ret < 0)
			goto err;

		fe = dvb_attach(tua9001_attach, adap->fe[0], &d->i2c_adap,
				&rtl2832u_tua9001_config);
		break;
886
	default:
887
		fe = NULL;
888 889
		dev_err(&d->udev->dev, "%s: unknown tuner=%d\n", KBUILD_MODNAME,
				priv->tuner);
890 891 892 893 894 895 896 897 898
	}

	if (fe == NULL) {
		ret = -ENODEV;
		goto err;
	}

	return 0;
err:
899
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
900 901 902
	return ret;
}

903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
static int rtl28xxu_init(struct dvb_usb_device *d)
{
	int ret;
	u8 val;

	dev_dbg(&d->udev->dev, "%s:\n", __func__);

	/* init USB endpoints */
	ret = rtl28xx_rd_reg(d, USB_SYSCTL_0, &val);
	if (ret)
		goto err;

	/* enable DMA and Full Packet Mode*/
	val |= 0x09;
	ret = rtl28xx_wr_reg(d, USB_SYSCTL_0, val);
	if (ret)
		goto err;

	/* set EPA maximum packet size to 0x0200 */
	ret = rtl28xx_wr_regs(d, USB_EPA_MAXPKT, "\x00\x02\x00\x00", 4);
	if (ret)
		goto err;

	/* change EPA FIFO length */
	ret = rtl28xx_wr_regs(d, USB_EPA_FIFO_CFG, "\x14\x00\x00\x00", 4);
	if (ret)
		goto err;

	return ret;
err:
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
	return ret;
}

937
static int rtl2831u_power_ctrl(struct dvb_usb_device *d, int onoff)
938 939
{
	int ret;
940
	u8 gpio, sys0, epa_ctl[2];
941

942
	dev_dbg(&d->udev->dev, "%s: onoff=%d\n", __func__, onoff);
943 944

	/* demod adc */
945
	ret = rtl28xx_rd_reg(d, SYS_SYS0, &sys0);
946 947 948 949
	if (ret)
		goto err;

	/* tuner power, read GPIOs */
950
	ret = rtl28xx_rd_reg(d, SYS_GPIO_OUT_VAL, &gpio);
951 952 953
	if (ret)
		goto err;

954 955
	dev_dbg(&d->udev->dev, "%s: RD SYS0=%02x GPIO_OUT_VAL=%02x\n", __func__,
			sys0, gpio);
956 957 958 959

	if (onoff) {
		gpio |= 0x01; /* GPIO0 = 1 */
		gpio &= (~0x10); /* GPIO4 = 0 */
960
		gpio |= 0x04; /* GPIO2 = 1, LED on */
961 962
		sys0 = sys0 & 0x0f;
		sys0 |= 0xe0;
963 964
		epa_ctl[0] = 0x00; /* clear stall */
		epa_ctl[1] = 0x00; /* clear reset */
965 966 967
	} else {
		gpio &= (~0x01); /* GPIO0 = 0 */
		gpio |= 0x10; /* GPIO4 = 1 */
968
		gpio &= (~0x04); /* GPIO2 = 1, LED off */
969
		sys0 = sys0 & (~0xc0);
970 971
		epa_ctl[0] = 0x10; /* set stall */
		epa_ctl[1] = 0x02; /* set reset */
972 973
	}

974 975
	dev_dbg(&d->udev->dev, "%s: WR SYS0=%02x GPIO_OUT_VAL=%02x\n", __func__,
			sys0, gpio);
976 977

	/* demod adc */
978
	ret = rtl28xx_wr_reg(d, SYS_SYS0, sys0);
979 980 981 982
	if (ret)
		goto err;

	/* tuner power, write GPIOs */
983
	ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_VAL, gpio);
984 985 986
	if (ret)
		goto err;

987 988 989 990 991 992 993 994
	/* streaming EP: stall & reset */
	ret = rtl28xx_wr_regs(d, USB_EPA_CTL, epa_ctl, 2);
	if (ret)
		goto err;

	if (onoff)
		usb_clear_halt(d->udev, usb_rcvbulkpipe(d->udev, 0x81));

995 996
	return ret;
err:
997
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
998 999 1000
	return ret;
}

1001 1002 1003 1004 1005
static int rtl2832u_power_ctrl(struct dvb_usb_device *d, int onoff)
{
	int ret;
	u8 val;

1006
	dev_dbg(&d->udev->dev, "%s: onoff=%d\n", __func__, onoff);
1007 1008 1009

	if (onoff) {
		/* set output values */
1010
		ret = rtl28xx_rd_reg(d, SYS_GPIO_OUT_VAL, &val);
1011 1012 1013 1014 1015 1016
		if (ret)
			goto err;

		val |= 0x08;
		val &= 0xef;

1017
		ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_VAL, val);
1018 1019 1020 1021
		if (ret)
			goto err;

		/* demod_ctl_1 */
1022
		ret = rtl28xx_rd_reg(d, SYS_DEMOD_CTL1, &val);
1023 1024 1025 1026 1027
		if (ret)
			goto err;

		val &= 0xef;

1028
		ret = rtl28xx_wr_reg(d, SYS_DEMOD_CTL1, val);
1029 1030 1031 1032 1033
		if (ret)
			goto err;

		/* demod control */
		/* PLL enable */
1034
		ret = rtl28xx_rd_reg(d, SYS_DEMOD_CTL, &val);
1035 1036 1037 1038 1039 1040
		if (ret)
			goto err;

		/* bit 7 to 1 */
		val |= 0x80;

1041
		ret = rtl28xx_wr_reg(d, SYS_DEMOD_CTL, val);
1042 1043 1044
		if (ret)
			goto err;

1045
		ret = rtl28xx_rd_reg(d, SYS_DEMOD_CTL, &val);
1046 1047 1048 1049 1050
		if (ret)
			goto err;

		val |= 0x20;

1051
		ret = rtl28xx_wr_reg(d, SYS_DEMOD_CTL, val);
1052 1053 1054 1055 1056 1057
		if (ret)
			goto err;

		mdelay(5);

		/*enable ADC_Q and ADC_I */
1058
		ret = rtl28xx_rd_reg(d, SYS_DEMOD_CTL, &val);
1059 1060 1061 1062 1063
		if (ret)
			goto err;

		val |= 0x48;

1064
		ret = rtl28xx_wr_reg(d, SYS_DEMOD_CTL, val);
1065 1066 1067
		if (ret)
			goto err;

1068 1069 1070 1071 1072 1073 1074 1075
		/* streaming EP: clear stall & reset */
		ret = rtl28xx_wr_regs(d, USB_EPA_CTL, "\x00\x00", 2);
		if (ret)
			goto err;

		ret = usb_clear_halt(d->udev, usb_rcvbulkpipe(d->udev, 0x81));
		if (ret)
			goto err;
1076 1077
	} else {
		/* demod_ctl_1 */
1078
		ret = rtl28xx_rd_reg(d, SYS_DEMOD_CTL1, &val);
1079 1080 1081 1082 1083
		if (ret)
			goto err;

		val |= 0x0c;

1084
		ret = rtl28xx_wr_reg(d, SYS_DEMOD_CTL1, val);
1085 1086 1087 1088
		if (ret)
			goto err;

		/* set output values */
1089
		ret = rtl28xx_rd_reg(d, SYS_GPIO_OUT_VAL, &val);
1090 1091 1092 1093 1094
		if (ret)
				goto err;

		val |= 0x10;

1095
		ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_VAL, val);
1096 1097 1098 1099
		if (ret)
			goto err;

		/* demod control */
1100
		ret = rtl28xx_rd_reg(d, SYS_DEMOD_CTL, &val);
1101 1102 1103 1104 1105
		if (ret)
			goto err;

		val &= 0x37;

1106
		ret = rtl28xx_wr_reg(d, SYS_DEMOD_CTL, val);
1107 1108 1109
		if (ret)
			goto err;

1110 1111 1112 1113
		/* streaming EP: set stall & reset */
		ret = rtl28xx_wr_regs(d, USB_EPA_CTL, "\x10\x02", 2);
		if (ret)
			goto err;
1114 1115 1116 1117
	}

	return ret;
err:
1118
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
1119 1120 1121 1122
	return ret;
}


1123
static int rtl2831u_rc_query(struct dvb_usb_device *d)
1124
{
1125 1126
	int ret, i;
	struct rtl28xxu_priv *priv = d->priv;
1127 1128
	u8 buf[5];
	u32 rc_code;
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148
	struct rtl28xxu_reg_val rc_nec_tab[] = {
		{ 0x3033, 0x80 },
		{ 0x3020, 0x43 },
		{ 0x3021, 0x16 },
		{ 0x3022, 0x16 },
		{ 0x3023, 0x5a },
		{ 0x3024, 0x2d },
		{ 0x3025, 0x16 },
		{ 0x3026, 0x01 },
		{ 0x3028, 0xb0 },
		{ 0x3029, 0x04 },
		{ 0x302c, 0x88 },
		{ 0x302e, 0x13 },
		{ 0x3030, 0xdf },
		{ 0x3031, 0x05 },
	};

	/* init remote controller */
	if (!priv->rc_active) {
		for (i = 0; i < ARRAY_SIZE(rc_nec_tab); i++) {
1149
			ret = rtl28xx_wr_reg(d, rc_nec_tab[i].reg,
1150
					rc_nec_tab[i].val);
1151 1152 1153 1154 1155
			if (ret)
				goto err;
		}
		priv->rc_active = true;
	}
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168

	ret = rtl2831_rd_regs(d, SYS_IRRC_RP, buf, 5);
	if (ret)
		goto err;

	if (buf[4] & 0x01) {
		if (buf[2] == (u8) ~buf[3]) {
			if (buf[0] == (u8) ~buf[1]) {
				/* NEC standard (16 bit) */
				rc_code = buf[0] << 8 | buf[2];
			} else {
				/* NEC extended (24 bit) */
				rc_code = buf[0] << 16 |
1169
						buf[1] << 8 | buf[2];
1170 1171 1172 1173 1174 1175 1176 1177 1178
			}
		} else {
			/* NEC full (32 bit) */
			rc_code = buf[0] << 24 | buf[1] << 16 |
					buf[2] << 8 | buf[3];
		}

		rc_keydown(d->rc_dev, rc_code, 0);

1179
		ret = rtl28xx_wr_reg(d, SYS_IRRC_SR, 1);
1180 1181 1182 1183
		if (ret)
			goto err;

		/* repeated intentionally to avoid extra keypress */
1184
		ret = rtl28xx_wr_reg(d, SYS_IRRC_SR, 1);
1185 1186 1187 1188 1189 1190
		if (ret)
			goto err;
	}

	return ret;
err:
1191
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
1192 1193 1194
	return ret;
}

1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
static int rtl2831u_get_rc_config(struct dvb_usb_device *d,
		struct dvb_usb_rc *rc)
{
	rc->map_name = RC_MAP_EMPTY;
	rc->allowed_protos = RC_TYPE_NEC;
	rc->query = rtl2831u_rc_query;
	rc->interval = 400;

	return 0;
}

1206 1207 1208 1209 1210 1211 1212
static int rtl2832u_rc_query(struct dvb_usb_device *d)
{
	int ret, i;
	struct rtl28xxu_priv *priv = d->priv;
	u8 buf[128];
	int len;
	struct rtl28xxu_reg_val rc_nec_tab[] = {
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226
		{ IR_RX_CTRL,             0x20 },
		{ IR_RX_BUF_CTRL,         0x80 },
		{ IR_RX_IF,               0xff },
		{ IR_RX_IE,               0xff },
		{ IR_MAX_DURATION0,       0xd0 },
		{ IR_MAX_DURATION1,       0x07 },
		{ IR_IDLE_LEN0,           0xc0 },
		{ IR_IDLE_LEN1,           0x00 },
		{ IR_GLITCH_LEN,          0x03 },
		{ IR_RX_CLK,              0x09 },
		{ IR_RX_CFG,              0x1c },
		{ IR_MAX_H_TOL_LEN,       0x1e },
		{ IR_MAX_L_TOL_LEN,       0x1e },
		{ IR_RX_CTRL,             0x80 },
1227 1228 1229 1230 1231
	};

	/* init remote controller */
	if (!priv->rc_active) {
		for (i = 0; i < ARRAY_SIZE(rc_nec_tab); i++) {
1232
			ret = rtl28xx_wr_reg(d, rc_nec_tab[i].reg,
1233
					rc_nec_tab[i].val);
1234 1235 1236 1237 1238 1239
			if (ret)
				goto err;
		}
		priv->rc_active = true;
	}

1240
	ret = rtl28xx_rd_reg(d, IR_RX_IF, &buf[0]);
1241 1242 1243 1244 1245 1246
	if (ret)
		goto err;

	if (buf[0] != 0x83)
		goto exit;

1247
	ret = rtl28xx_rd_reg(d, IR_RX_BC, &buf[0]);
1248 1249 1250 1251 1252 1253 1254 1255
	if (ret)
		goto err;

	len = buf[0];
	ret = rtl2831_rd_regs(d, IR_RX_BUF, buf, len);

	/* TODO: pass raw IR to Kernel IR decoder */

1256 1257 1258
	ret = rtl28xx_wr_reg(d, IR_RX_IF, 0x03);
	ret = rtl28xx_wr_reg(d, IR_RX_BUF_CTRL, 0x80);
	ret = rtl28xx_wr_reg(d, IR_RX_CTRL, 0x80);
1259 1260 1261 1262

exit:
	return ret;
err:
1263
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
1264 1265 1266
	return ret;
}

1267 1268 1269 1270 1271 1272 1273
static int rtl2832u_get_rc_config(struct dvb_usb_device *d,
		struct dvb_usb_rc *rc)
{
	rc->map_name = RC_MAP_EMPTY;
	rc->allowed_protos = RC_TYPE_NEC;
	rc->query = rtl2832u_rc_query;
	rc->interval = 400;
1274

1275 1276
	return 0;
}
1277

1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
static const struct dvb_usb_device_properties rtl2831u_props = {
	.driver_name = KBUILD_MODNAME,
	.owner = THIS_MODULE,
	.adapter_nr = adapter_nr,
	.size_of_priv = sizeof(struct rtl28xxu_priv),

	.power_ctrl = rtl2831u_power_ctrl,
	.i2c_algo = &rtl28xxu_i2c_algo,
	.frontend_attach = rtl2831u_frontend_attach,
	.tuner_attach = rtl2831u_tuner_attach,
	.init = rtl28xxu_init,
	.get_rc_config = rtl2831u_get_rc_config,

	.num_adapters = 1,
	.adapter = {
		{
			.stream = DVB_USB_STREAM_BULK(0x81, 6, 8 * 512),
1295 1296
		},
	},
1297
};
1298

1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
static const struct dvb_usb_device_properties rtl2832u_props = {
	.driver_name = KBUILD_MODNAME,
	.owner = THIS_MODULE,
	.adapter_nr = adapter_nr,
	.size_of_priv = sizeof(struct rtl28xxu_priv),

	.power_ctrl = rtl2832u_power_ctrl,
	.i2c_algo = &rtl28xxu_i2c_algo,
	.frontend_attach = rtl2832u_frontend_attach,
	.tuner_attach = rtl2832u_tuner_attach,
	.init = rtl28xxu_init,
	.get_rc_config = rtl2832u_get_rc_config,

	.num_adapters = 1,
	.adapter = {
		{
			.stream = DVB_USB_STREAM_BULK(0x81, 6, 8 * 512),
1316 1317
		},
	},
1318 1319
};

1320 1321 1322 1323 1324 1325 1326 1327
static const struct usb_device_id rtl28xxu_id_table[] = {
	{ DVB_USB_DEVICE(USB_VID_REALTEK, USB_PID_REALTEK_RTL2831U,
		&rtl2831u_props, "Realtek RTL2831U reference design", NULL) },
	{ DVB_USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_FREECOM_DVBT,
		&rtl2831u_props, "Freecom USB2.0 DVB-T", NULL) },
	{ DVB_USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_FREECOM_DVBT_2,
		&rtl2831u_props, "Freecom USB2.0 DVB-T", NULL) },

1328 1329 1330 1331
	{ DVB_USB_DEVICE(USB_VID_REALTEK, 0x2832,
		&rtl2832u_props, "Realtek RTL2832U reference design", NULL) },
	{ DVB_USB_DEVICE(USB_VID_REALTEK, 0x2838,
		&rtl2832u_props, "Realtek RTL2832U reference design", NULL) },
1332 1333 1334 1335 1336 1337
	{ DVB_USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_STICK_BLACK_REV1,
		&rtl2832u_props, "Terratec Cinergy T Stick Black", NULL) },
	{ DVB_USB_DEVICE(USB_VID_GTEK, USB_PID_DELOCK_USB2_DVBT,
		&rtl2832u_props, "G-Tek Electronics Group Lifeview LV5TDLX DVB-T", NULL) },
	{ DVB_USB_DEVICE(USB_VID_TERRATEC, USB_PID_NOXON_DAB_STICK,
		&rtl2832u_props, "NOXON DAB/DAB+ USB dongle", NULL) },
1338 1339
	{ DVB_USB_DEVICE(USB_VID_GTEK, USB_PID_TREKSTOR_TERRES_2_0,
		&rtl2832u_props, "Trekstor DVB-T Stick Terres 2.0", NULL) },
1340 1341
	{ DVB_USB_DEVICE(USB_VID_DEXATEK, 0x1101,
		&rtl2832u_props, "Dexatek DK DVB-T Dongle", NULL) },
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
	{ }
};
MODULE_DEVICE_TABLE(usb, rtl28xxu_id_table);

static struct usb_driver rtl28xxu_usb_driver = {
	.name = KBUILD_MODNAME,
	.id_table = rtl28xxu_id_table,
	.probe = dvb_usbv2_probe,
	.disconnect = dvb_usbv2_disconnect,
	.suspend = dvb_usbv2_suspend,
	.resume = dvb_usbv2_resume,
1353
	.reset_resume = dvb_usbv2_reset_resume,
1354 1355
	.no_dynamic_id = 1,
	.soft_unbind = 1,
1356 1357
};

1358
module_usb_driver(rtl28xxu_usb_driver);
1359 1360 1361

MODULE_DESCRIPTION("Realtek RTL28xxU DVB USB driver");
MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
1362
MODULE_AUTHOR("Thomas Mair <thomas.mair86@googlemail.com>");
1363
MODULE_LICENSE("GPL");