rtl28xxu.c 44.9 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
 *
 *    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"

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
#ifdef CONFIG_MEDIA_ATTACH
#define dvb_attach_sdr(FUNCTION, ARGS...) ({ \
	void *__r = NULL; \
	typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
	if (__a) { \
		__r = (void *) __a(ARGS); \
		if (__r == NULL) \
			symbol_put(FUNCTION); \
	} \
	__r; \
})

#else
#define dvb_attach_sdr(FUNCTION, ARGS...) ({ \
	FUNCTION(ARGS); \
})

#endif

44 45 46
static int rtl28xxu_disable_rc;
module_param_named(disable_rc, rtl28xxu_disable_rc, int, 0644);
MODULE_PARM_DESC(disable_rc, "disable RTL2832U remote controller");
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
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,
74
			req->index, buf, req->size, 1000);
75 76 77 78

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

79 80
	if (ret > 0)
		ret = 0;
81 82 83 84 85 86 87

	/* 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);

88 89 90 91
	if (ret)
		goto err;

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

97
static int rtl28xx_wr_regs(struct dvb_usb_device *d, u16 reg, u8 *val, int len)
98 99 100 101 102
{
	struct rtl28xxu_req req;

	if (reg < 0x3000)
		req.index = CMD_USB_WR;
103
	else if (reg < 0x4000)
104
		req.index = CMD_SYS_WR;
105 106
	else
		req.index = CMD_IR_WR;
107 108 109 110 111 112 113 114 115 116 117 118 119 120

	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;
121
	else if (reg < 0x4000)
122
		req.index = CMD_SYS_RD;
123 124
	else
		req.index = CMD_IR_RD;
125 126 127 128 129 130 131 132

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

	return rtl28xxu_ctrl_msg(d, &req);
}

133
static int rtl28xx_wr_reg(struct dvb_usb_device *d, u16 reg, u8 val)
134
{
135
	return rtl28xx_wr_regs(d, reg, &val, 1);
136 137
}

138
static int rtl28xx_rd_reg(struct dvb_usb_device *d, u16 reg, u8 *val)
139 140 141 142
{
	return rtl2831_rd_regs(d, reg, val, 1);
}

143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
static int rtl28xx_wr_reg_mask(struct dvb_usb_device *d, u16 reg, u8 val,
		u8 mask)
{
	int ret;
	u8 tmp;

	/* no need for read if whole reg is written */
	if (mask != 0xff) {
		ret = rtl28xx_rd_reg(d, reg, &tmp);
		if (ret)
			return ret;

		val &= mask;
		tmp &= ~mask;
		val |= tmp;
	}

	return rtl28xx_wr_reg(d, reg, val);
}

163 164 165 166 167 168
/* 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);
169
	struct rtl28xxu_priv *priv = d->priv;
170 171 172 173 174
	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.
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
	 * 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.
192 193 194 195 196 197 198
	 */

	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)) {
199 200
		if (msg[0].len > 24 || msg[1].len > 24) {
			/* TODO: check msg[0].len max */
201
			ret = -EOPNOTSUPP;
202
			goto err_mutex_unlock;
203 204 205 206
		} 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;
207 208 209
			req.size = msg[1].len;
			req.data = &msg[1].buf[0];
			ret = rtl28xxu_ctrl_msg(d, &req);
210 211
		} else if (msg[0].len < 2) {
			/* method 2 - old I2C */
212 213 214 215 216
			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);
217 218 219 220 221 222 223 224
		} 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)
225
				goto err_mutex_unlock;
226 227 228 229 230 231

			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);
232 233 234
		}
	} else if (num == 1 && !(msg[0].flags & I2C_M_RD)) {
		if (msg[0].len > 22) {
235
			/* TODO: check msg[0].len max */
236
			ret = -EOPNOTSUPP;
237
			goto err_mutex_unlock;
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
		} 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 */
254 255 256 257 258
			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);
259 260 261 262 263 264 265
		} 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);
266 267 268 269 270
		}
	} else {
		ret = -EINVAL;
	}

271
err_mutex_unlock:
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
	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,
};

287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
static int rtl2831u_read_config(struct dvb_usb_device *d)
{
	struct rtl28xxu_priv *priv = d_to_priv(d);
	int ret;
	u8 buf[1];
	/* open RTL2831U/RTL2830 I2C gate */
	struct rtl28xxu_req req_gate_open = {0x0120, 0x0011, 0x0001, "\x08"};
	/* tuner probes */
	struct rtl28xxu_req req_mt2060 = {0x00c0, CMD_I2C_RD, 1, buf};
	struct rtl28xxu_req req_qt1010 = {0x0fc4, CMD_I2C_RD, 1, buf};

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

	/*
	 * 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 */
	ret = rtl28xx_wr_reg(d, SYS_GPIO_DIR, 0x0a);
	if (ret)
		goto err;

	/* enable as output GPIO0, GPIO2, GPIO4 */
	ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_EN, 0x15);
	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.
	 */

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

	priv->tuner_name = "NONE";

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

	/* check QT1010 ID(?) register; reg=0f val=2c */
	ret = rtl28xxu_ctrl_msg(d, &req_qt1010);
	if (ret == 0 && buf[0] == 0x2c) {
		priv->tuner = TUNER_RTL2830_QT1010;
		priv->tuner_name = "QT1010";
		goto found;
	}

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

	/* check MT2060 ID register; reg=00 val=63 */
	ret = rtl28xxu_ctrl_msg(d, &req_mt2060);
	if (ret == 0 && buf[0] == 0x63) {
		priv->tuner = TUNER_RTL2830_MT2060;
		priv->tuner_name = "MT2060";
		goto found;
	}

	/* assume MXL5005S */
	priv->tuner = TUNER_RTL2830_MXL5005S;
	priv->tuner_name = "MXL5005S";
	goto found;

found:
	dev_dbg(&d->udev->dev, "%s: tuner=%s\n", __func__, priv->tuner_name);

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

368 369 370 371
static int rtl2832u_read_config(struct dvb_usb_device *d)
{
	struct rtl28xxu_priv *priv = d_to_priv(d);
	int ret;
372
	u8 buf[2];
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
	/* 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"};
	/* tuner probes */
	struct rtl28xxu_req req_fc0012 = {0x00c6, CMD_I2C_RD, 1, buf};
	struct rtl28xxu_req req_fc0013 = {0x00c6, CMD_I2C_RD, 1, buf};
	struct rtl28xxu_req req_mt2266 = {0x00c0, CMD_I2C_RD, 1, buf};
	struct rtl28xxu_req req_fc2580 = {0x01ac, CMD_I2C_RD, 1, buf};
	struct rtl28xxu_req req_mt2063 = {0x00c0, CMD_I2C_RD, 1, buf};
	struct rtl28xxu_req req_max3543 = {0x00c0, CMD_I2C_RD, 1, buf};
	struct rtl28xxu_req req_tua9001 = {0x7ec0, CMD_I2C_RD, 2, buf};
	struct rtl28xxu_req req_mxl5007t = {0xd9c0, CMD_I2C_RD, 1, buf};
	struct rtl28xxu_req req_e4000 = {0x02c8, CMD_I2C_RD, 1, buf};
	struct rtl28xxu_req req_tda18272 = {0x00c0, CMD_I2C_RD, 2, buf};
388
	struct rtl28xxu_req req_r820t = {0x0034, CMD_I2C_RD, 1, buf};
389
	struct rtl28xxu_req req_r828d = {0x0074, CMD_I2C_RD, 1, buf};
390
	struct rtl28xxu_req req_mn88472 = {0xff38, CMD_I2C_RD, 1, buf};
391
	struct rtl28xxu_req req_mn88473 = {0xff38, CMD_I2C_RD, 1, buf};
392 393 394

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

395 396
	/* enable GPIO3 and GPIO6 as output */
	ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_DIR, 0x00, 0x40);
397 398 399
	if (ret)
		goto err;

400
	ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_OUT_EN, 0x48, 0x48);
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
	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.
	 */

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

	priv->tuner_name = "NONE";

	/* check FC0012 ID register; reg=00 val=a1 */
	ret = rtl28xxu_ctrl_msg(d, &req_fc0012);
	if (ret == 0 && buf[0] == 0xa1) {
		priv->tuner = TUNER_RTL2832_FC0012;
		priv->tuner_name = "FC0012";
421
		goto tuner_found;
422 423 424 425 426 427 428
	}

	/* check FC0013 ID register; reg=00 val=a3 */
	ret = rtl28xxu_ctrl_msg(d, &req_fc0013);
	if (ret == 0 && buf[0] == 0xa3) {
		priv->tuner = TUNER_RTL2832_FC0013;
		priv->tuner_name = "FC0013";
429
		goto tuner_found;
430 431 432 433 434 435 436
	}

	/* check MT2266 ID register; reg=00 val=85 */
	ret = rtl28xxu_ctrl_msg(d, &req_mt2266);
	if (ret == 0 && buf[0] == 0x85) {
		priv->tuner = TUNER_RTL2832_MT2266;
		priv->tuner_name = "MT2266";
437
		goto tuner_found;
438 439 440 441 442 443 444
	}

	/* check FC2580 ID register; reg=01 val=56 */
	ret = rtl28xxu_ctrl_msg(d, &req_fc2580);
	if (ret == 0 && buf[0] == 0x56) {
		priv->tuner = TUNER_RTL2832_FC2580;
		priv->tuner_name = "FC2580";
445
		goto tuner_found;
446 447 448 449 450 451 452
	}

	/* check MT2063 ID register; reg=00 val=9e || 9c */
	ret = rtl28xxu_ctrl_msg(d, &req_mt2063);
	if (ret == 0 && (buf[0] == 0x9e || buf[0] == 0x9c)) {
		priv->tuner = TUNER_RTL2832_MT2063;
		priv->tuner_name = "MT2063";
453
		goto tuner_found;
454 455 456 457 458 459 460
	}

	/* check MAX3543 ID register; reg=00 val=38 */
	ret = rtl28xxu_ctrl_msg(d, &req_max3543);
	if (ret == 0 && buf[0] == 0x38) {
		priv->tuner = TUNER_RTL2832_MAX3543;
		priv->tuner_name = "MAX3543";
461
		goto tuner_found;
462 463 464 465 466 467 468
	}

	/* check TUA9001 ID register; reg=7e val=2328 */
	ret = rtl28xxu_ctrl_msg(d, &req_tua9001);
	if (ret == 0 && buf[0] == 0x23 && buf[1] == 0x28) {
		priv->tuner = TUNER_RTL2832_TUA9001;
		priv->tuner_name = "TUA9001";
469
		goto tuner_found;
470 471 472 473 474 475 476
	}

	/* check MXL5007R ID register; reg=d9 val=14 */
	ret = rtl28xxu_ctrl_msg(d, &req_mxl5007t);
	if (ret == 0 && buf[0] == 0x14) {
		priv->tuner = TUNER_RTL2832_MXL5007T;
		priv->tuner_name = "MXL5007T";
477
		goto tuner_found;
478 479 480 481 482 483 484
	}

	/* check E4000 ID register; reg=02 val=40 */
	ret = rtl28xxu_ctrl_msg(d, &req_e4000);
	if (ret == 0 && buf[0] == 0x40) {
		priv->tuner = TUNER_RTL2832_E4000;
		priv->tuner_name = "E4000";
485
		goto tuner_found;
486 487 488 489 490 491 492
	}

	/* check TDA18272 ID register; reg=00 val=c760  */
	ret = rtl28xxu_ctrl_msg(d, &req_tda18272);
	if (ret == 0 && (buf[0] == 0xc7 || buf[1] == 0x60)) {
		priv->tuner = TUNER_RTL2832_TDA18272;
		priv->tuner_name = "TDA18272";
493
		goto tuner_found;
494 495
	}

496
	/* check R820T ID register; reg=00 val=69 */
497
	ret = rtl28xxu_ctrl_msg(d, &req_r820t);
498
	if (ret == 0 && buf[0] == 0x69) {
499 500
		priv->tuner = TUNER_RTL2832_R820T;
		priv->tuner_name = "R820T";
501
		goto tuner_found;
502 503
	}

504 505 506 507 508
	/* check R828D ID register; reg=00 val=69 */
	ret = rtl28xxu_ctrl_msg(d, &req_r828d);
	if (ret == 0 && buf[0] == 0x69) {
		priv->tuner = TUNER_RTL2832_R828D;
		priv->tuner_name = "R828D";
509
		goto tuner_found;
510 511
	}

512
tuner_found:
513 514
	dev_dbg(&d->udev->dev, "%s: tuner=%s\n", __func__, priv->tuner_name);

515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
	/* probe slave demod */
	if (priv->tuner == TUNER_RTL2832_R828D) {
		/* power on MN88472 demod on GPIO0 */
		ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_OUT_VAL, 0x01, 0x01);
		if (ret)
			goto err;

		ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_DIR, 0x00, 0x01);
		if (ret)
			goto err;

		ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_OUT_EN, 0x01, 0x01);
		if (ret)
			goto err;

		/* check MN88472 answers */
		ret = rtl28xxu_ctrl_msg(d, &req_mn88472);
		if (ret == 0 && buf[0] == 0x02) {
			dev_dbg(&d->udev->dev, "%s: MN88472 found\n", __func__);
			priv->slave_demod = SLAVE_DEMOD_MN88472;
			goto demod_found;
		}
537 538 539 540 541 542 543

		ret = rtl28xxu_ctrl_msg(d, &req_mn88473);
		if (ret == 0 && buf[0] == 0x03) {
			dev_dbg(&d->udev->dev, "%s: MN88473 found\n", __func__);
			priv->slave_demod = SLAVE_DEMOD_MN88473;
			goto demod_found;
		}
544 545 546
	}

demod_found:
547 548 549 550 551 552 553 554 555 556 557
	/* close demod I2C gate */
	ret = rtl28xxu_ctrl_msg(d, &req_gate_close);
	if (ret < 0)
		goto err;

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

558 559
static const struct rtl2830_platform_data rtl2830_mt2060_platform_data = {
	.clk = 28800000,
560 561 562 563 564 565 566
	.spec_inv = 1,
	.vtop = 0x20,
	.krf = 0x04,
	.agc_targ_val = 0x2d,

};

567 568
static const struct rtl2830_platform_data rtl2830_qt1010_platform_data = {
	.clk = 28800000,
569 570 571 572 573 574
	.spec_inv = 1,
	.vtop = 0x20,
	.krf = 0x04,
	.agc_targ_val = 0x2d,
};

575 576
static const struct rtl2830_platform_data rtl2830_mxl5005s_platform_data = {
	.clk = 28800000,
577 578 579 580 581 582
	.spec_inv = 0,
	.vtop = 0x3f,
	.krf = 0x04,
	.agc_targ_val = 0x3e,
};

583
static int rtl2831u_frontend_attach(struct dvb_usb_adapter *adap)
584
{
585 586
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
587 588 589
	struct rtl2830_platform_data *pdata = &priv->rtl2830_platform_data;
	struct i2c_board_info board_info;
	struct i2c_client *client;
590
	int ret;
591

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

594 595
	switch (priv->tuner) {
	case TUNER_RTL2830_QT1010:
596
		*pdata = rtl2830_qt1010_platform_data;
597 598
		break;
	case TUNER_RTL2830_MT2060:
599
		*pdata = rtl2830_mt2060_platform_data;
600 601
		break;
	case TUNER_RTL2830_MXL5005S:
602
		*pdata = rtl2830_mxl5005s_platform_data;
603 604 605 606 607 608
		break;
	default:
		dev_err(&d->udev->dev, "%s: unknown tuner=%s\n",
				KBUILD_MODNAME, priv->tuner_name);
		ret = -ENODEV;
		goto err;
609 610 611
	}

	/* attach demodulator */
612 613 614 615 616 617 618
	memset(&board_info, 0, sizeof(board_info));
	strlcpy(board_info.type, "rtl2830", I2C_NAME_SIZE);
	board_info.addr = 0x10;
	board_info.platform_data = pdata;
	request_module("%s", board_info.type);
	client = i2c_new_device(&d->i2c_adap, &board_info);
	if (client == NULL || client->dev.driver == NULL) {
619 620 621 622
		ret = -ENODEV;
		goto err;
	}

623 624 625 626 627 628 629 630 631 632 633
	if (!try_module_get(client->dev.driver->owner)) {
		i2c_unregister_device(client);
		ret = -ENODEV;
		goto err;
	}

	adap->fe[0] = pdata->get_dvb_frontend(client);
	priv->demod_i2c_adapter = pdata->get_i2c_adapter(client);

	priv->i2c_client_demod = client;

634
	return 0;
635
err:
636
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
637 638 639
	return ret;
}

640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
static const struct rtl2832_platform_data rtl2832_fc0012_platform_data = {
	.clk = 28800000,
	.tuner = TUNER_RTL2832_FC0012
};

static const struct rtl2832_platform_data rtl2832_fc0013_platform_data = {
	.clk = 28800000,
	.tuner = TUNER_RTL2832_FC0013
};

static const struct rtl2832_platform_data rtl2832_tua9001_platform_data = {
	.clk = 28800000,
	.tuner = TUNER_RTL2832_TUA9001,
};

static const struct rtl2832_platform_data rtl2832_e4000_platform_data = {
	.clk = 28800000,
	.tuner = TUNER_RTL2832_E4000,
};

static const struct rtl2832_platform_data rtl2832_r820t_platform_data = {
	.clk = 28800000,
	.tuner = TUNER_RTL2832_R820T,
};

/* TODO: these are redundant information for rtl2832_sdr driver */
666
static const struct rtl2832_config rtl28xxu_rtl2832_fc0012_config = {
667 668 669 670 671
	.i2c_addr = 0x10, /* 0x20 */
	.xtal = 28800000,
	.tuner = TUNER_RTL2832_FC0012
};

672
static const struct rtl2832_config rtl28xxu_rtl2832_fc0013_config = {
673 674 675 676 677
	.i2c_addr = 0x10, /* 0x20 */
	.xtal = 28800000,
	.tuner = TUNER_RTL2832_FC0013
};

678
static const struct rtl2832_config rtl28xxu_rtl2832_tua9001_config = {
679 680 681 682 683
	.i2c_addr = 0x10, /* 0x20 */
	.xtal = 28800000,
	.tuner = TUNER_RTL2832_TUA9001,
};

684
static const struct rtl2832_config rtl28xxu_rtl2832_e4000_config = {
685 686 687 688 689
	.i2c_addr = 0x10, /* 0x20 */
	.xtal = 28800000,
	.tuner = TUNER_RTL2832_E4000,
};

690
static const struct rtl2832_config rtl28xxu_rtl2832_r820t_config = {
691 692 693 694 695
	.i2c_addr = 0x10,
	.xtal = 28800000,
	.tuner = TUNER_RTL2832_R820T,
};

696 697 698 699 700 701
static int rtl2832u_fc0012_tuner_callback(struct dvb_usb_device *d,
		int cmd, int arg)
{
	int ret;
	u8 val;

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

704 705 706
	switch (cmd) {
	case FC_FE_CALLBACK_VHF_ENABLE:
		/* set output values */
707
		ret = rtl28xx_rd_reg(d, SYS_GPIO_OUT_VAL, &val);
708 709 710 711 712 713 714 715 716
		if (ret)
			goto err;

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


717
		ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_VAL, val);
718 719 720 721 722 723 724 725 726
		if (ret)
			goto err;
		break;
	default:
		ret = -EINVAL;
		goto err;
	}
	return 0;
err:
727
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
728 729 730
	return ret;
}

731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
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
	 */

	switch (cmd) {
	case TUA9001_CMD_RESETN:
		if (arg)
748
			val = (1 << 4);
749
		else
750
			val = (0 << 4);
751

752 753
		ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_OUT_VAL, val, 0x10);
		if (ret)
754 755 756 757
			goto err;
		break;
	case TUA9001_CMD_RXEN:
		if (arg)
758
			val = (1 << 1);
759
		else
760
			val = (0 << 1);
761

762 763
		ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_OUT_VAL, val, 0x02);
		if (ret)
764 765 766 767 768 769 770 771 772 773
			goto err;
		break;
	}

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

774 775 776 777 778 779 780
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);
781 782
	case TUNER_RTL2832_TUA9001:
		return rtl2832u_tua9001_tuner_callback(d, cmd, arg);
783 784 785 786
	default:
		break;
	}

787
	return 0;
788 789 790
}

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

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

799 800 801 802 803 804 805
	switch (component) {
	case DVB_FRONTEND_COMPONENT_TUNER:
		return rtl2832u_tuner_callback(d, cmd, arg);
	default:
		break;
	}

806
	return 0;
807 808
}

809 810
static int rtl2832u_frontend_attach(struct dvb_usb_adapter *adap)
{
811 812
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
813 814
	struct rtl2832_platform_data *pdata = &priv->rtl2832_platform_data;
	struct i2c_board_info board_info;
815
	struct i2c_client *client;
816
	int ret;
817

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

820 821
	switch (priv->tuner) {
	case TUNER_RTL2832_FC0012:
822
		*pdata = rtl2832_fc0012_platform_data;
823 824
		break;
	case TUNER_RTL2832_FC0013:
825
		*pdata = rtl2832_fc0013_platform_data;
826 827
		break;
	case TUNER_RTL2832_FC2580:
828
		/* FIXME: do not abuse fc0012 settings */
829
		*pdata = rtl2832_fc0012_platform_data;
830 831
		break;
	case TUNER_RTL2832_TUA9001:
832
		*pdata = rtl2832_tua9001_platform_data;
833 834
		break;
	case TUNER_RTL2832_E4000:
835
		*pdata = rtl2832_e4000_platform_data;
836
		break;
837
	case TUNER_RTL2832_R820T:
838
	case TUNER_RTL2832_R828D:
839
		*pdata = rtl2832_r820t_platform_data;
840
		break;
841 842 843 844
	default:
		dev_err(&d->udev->dev, "%s: unknown tuner=%s\n",
				KBUILD_MODNAME, priv->tuner_name);
		ret = -ENODEV;
845
		goto err;
846
	}
847 848

	/* attach demodulator */
849
	memset(&board_info, 0, sizeof(board_info));
850 851
	strlcpy(board_info.type, "rtl2832", I2C_NAME_SIZE);
	board_info.addr = 0x10;
852
	board_info.platform_data = pdata;
853 854 855 856 857 858 859 860 861
	request_module("%s", board_info.type);
	client = i2c_new_device(&d->i2c_adap, &board_info);
	if (client == NULL || client->dev.driver == NULL) {
		ret = -ENODEV;
		goto err;
	}

	if (!try_module_get(client->dev.driver->owner)) {
		i2c_unregister_device(client);
862 863 864
		ret = -ENODEV;
		goto err;
	}
865

866 867
	adap->fe[0] = pdata->get_dvb_frontend(client);
	priv->demod_i2c_adapter = pdata->get_i2c_adapter(client);
868

869
	priv->i2c_client_demod = client;
870

871
	/* set fe callback */
872
	adap->fe[0]->callback = rtl2832u_frontend_callback;
873

874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889
	if (priv->slave_demod) {
		struct i2c_board_info info = {};

		/*
		 * We continue on reduced mode, without DVB-T2/C, using master
		 * demod, when slave demod fails.
		 */
		ret = 0;

		/* attach slave demodulator */
		if (priv->slave_demod == SLAVE_DEMOD_MN88472) {
			struct mn88472_config mn88472_config = {};

			mn88472_config.fe = &adap->fe[1];
			mn88472_config.i2c_wr_max = 22,
			strlcpy(info.type, "mn88472", I2C_NAME_SIZE);
890
			mn88472_config.xtal = 20500000;
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
			info.addr = 0x18;
			info.platform_data = &mn88472_config;
			request_module(info.type);
			client = i2c_new_device(priv->demod_i2c_adapter, &info);
			if (client == NULL || client->dev.driver == NULL) {
				priv->slave_demod = SLAVE_DEMOD_NONE;
				goto err_slave_demod_failed;
			}

			if (!try_module_get(client->dev.driver->owner)) {
				i2c_unregister_device(client);
				priv->slave_demod = SLAVE_DEMOD_NONE;
				goto err_slave_demod_failed;
			}

906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
			priv->i2c_client_slave_demod = client;
		} else {
			struct mn88473_config mn88473_config = {};

			mn88473_config.fe = &adap->fe[1];
			mn88473_config.i2c_wr_max = 22,
			strlcpy(info.type, "mn88473", I2C_NAME_SIZE);
			info.addr = 0x18;
			info.platform_data = &mn88473_config;
			request_module(info.type);
			client = i2c_new_device(priv->demod_i2c_adapter, &info);
			if (client == NULL || client->dev.driver == NULL) {
				priv->slave_demod = SLAVE_DEMOD_NONE;
				goto err_slave_demod_failed;
			}

			if (!try_module_get(client->dev.driver->owner)) {
				i2c_unregister_device(client);
				priv->slave_demod = SLAVE_DEMOD_NONE;
				goto err_slave_demod_failed;
			}

928 929 930 931
			priv->i2c_client_slave_demod = client;
		}
	}

932
	return 0;
933
err_slave_demod_failed:
934
err:
935
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
936 937 938
	return ret;
}

939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
static int rtl2832u_frontend_detach(struct dvb_usb_adapter *adap)
{
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
	struct i2c_client *client;

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

	/* remove I2C slave demod */
	client = priv->i2c_client_slave_demod;
	if (client) {
		module_put(client->dev.driver->owner);
		i2c_unregister_device(client);
	}

	/* remove I2C demod */
	client = priv->i2c_client_demod;
	if (client) {
		module_put(client->dev.driver->owner);
		i2c_unregister_device(client);
	}

	return 0;
}

964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
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,
};

990
static int rtl2831u_tuner_attach(struct dvb_usb_adapter *adap)
991 992
{
	int ret;
993 994
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
995
	struct dvb_frontend *fe;
996

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

	switch (priv->tuner) {
	case TUNER_RTL2830_QT1010:
1001
		fe = dvb_attach(qt1010_attach, adap->fe[0],
1002 1003
				priv->demod_i2c_adapter,
				&rtl28xxu_qt1010_config);
1004 1005
		break;
	case TUNER_RTL2830_MT2060:
1006
		fe = dvb_attach(mt2060_attach, adap->fe[0],
1007 1008
				priv->demod_i2c_adapter,
				&rtl28xxu_mt2060_config, 1220);
1009 1010
		break;
	case TUNER_RTL2830_MXL5005S:
1011
		fe = dvb_attach(mxl5005s_attach, adap->fe[0],
1012 1013
				priv->demod_i2c_adapter,
				&rtl28xxu_mxl5005s_config);
1014 1015
		break;
	default:
1016
		fe = NULL;
1017 1018
		dev_err(&d->udev->dev, "%s: unknown tuner=%d\n", KBUILD_MODNAME,
				priv->tuner);
1019 1020 1021 1022 1023 1024 1025 1026 1027
	}

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

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

1032 1033 1034 1035 1036
static const struct fc2580_config rtl2832u_fc2580_config = {
	.i2c_addr = 0x56,
	.clock = 16384000,
};

1037 1038 1039 1040
static struct tua9001_config rtl2832u_tua9001_config = {
	.i2c_addr = 0x60,
};

1041 1042 1043 1044 1045
static const struct fc0012_config rtl2832u_fc0012_config = {
	.i2c_address = 0x63, /* 0xc6 >> 1 */
	.xtal_freq = FC_XTAL_28_8_MHZ,
};

1046 1047 1048 1049 1050 1051 1052
static const struct r820t_config rtl2832u_r820t_config = {
	.i2c_addr = 0x1a,
	.xtal = 28800000,
	.max_i2c_msg_len = 2,
	.rafael_chip = CHIP_R820T,
};

1053 1054 1055 1056 1057 1058 1059
static const struct r820t_config rtl2832u_r828d_config = {
	.i2c_addr = 0x3a,
	.xtal = 16000000,
	.max_i2c_msg_len = 2,
	.rafael_chip = CHIP_R828D,
};

1060 1061 1062
static int rtl2832u_tuner_attach(struct dvb_usb_adapter *adap)
{
	int ret;
1063 1064
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
1065
	struct rtl2832_platform_data *pdata = &priv->rtl2832_platform_data;
1066 1067 1068
	struct dvb_frontend *fe = NULL;
	struct i2c_board_info info;
	struct i2c_client *client;
1069

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

1072 1073
	memset(&info, 0, sizeof(struct i2c_board_info));

1074
	switch (priv->tuner) {
1075
	case TUNER_RTL2832_FC0012:
1076
		fe = dvb_attach(fc0012_attach, adap->fe[0],
1077
			priv->demod_i2c_adapter, &rtl2832u_fc0012_config);
1078 1079 1080

		/* since fc0012 includs reading the signal strength delegate
		 * that to the tuner driver */
1081 1082
		adap->fe[0]->ops.read_signal_strength =
				adap->fe[0]->ops.tuner_ops.get_rf_strength;
1083 1084

		/* attach SDR */
1085
		dvb_attach_sdr(rtl2832_sdr_attach, adap->fe[0], &d->i2c_adap,
1086
				&rtl28xxu_rtl2832_fc0012_config, NULL);
1087
		break;
1088
	case TUNER_RTL2832_FC0013:
1089
		fe = dvb_attach(fc0013_attach, adap->fe[0],
1090
			priv->demod_i2c_adapter, 0xc6>>1, 0, FC_XTAL_28_8_MHZ);
1091 1092

		/* fc0013 also supports signal strength reading */
1093 1094
		adap->fe[0]->ops.read_signal_strength =
				adap->fe[0]->ops.tuner_ops.get_rf_strength;
1095 1096

		/* attach SDR */
1097
		dvb_attach_sdr(rtl2832_sdr_attach, adap->fe[0], &d->i2c_adap,
1098
				&rtl28xxu_rtl2832_fc0013_config, NULL);
1099
		break;
1100
	case TUNER_RTL2832_E4000: {
1101
			struct v4l2_subdev *sd;
1102
			struct i2c_adapter *i2c_adap_internal =
1103 1104
					pdata->get_private_i2c_adapter(priv->i2c_client_demod);

1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
			struct e4000_config e4000_config = {
				.fe = adap->fe[0],
				.clock = 28800000,
			};

			strlcpy(info.type, "e4000", I2C_NAME_SIZE);
			info.addr = 0x64;
			info.platform_data = &e4000_config;

			request_module(info.type);
1115
			client = i2c_new_device(priv->demod_i2c_adapter, &info);
1116 1117 1118 1119 1120 1121 1122 1123
			if (client == NULL || client->dev.driver == NULL)
				break;

			if (!try_module_get(client->dev.driver->owner)) {
				i2c_unregister_device(client);
				break;
			}

1124
			priv->i2c_client_tuner = client;
1125
			sd = i2c_get_clientdata(client);
1126
			i2c_set_adapdata(i2c_adap_internal, d);
1127 1128

			/* attach SDR */
1129
			dvb_attach_sdr(rtl2832_sdr_attach, adap->fe[0],
1130
					i2c_adap_internal,
1131
					&rtl28xxu_rtl2832_e4000_config, sd);
1132
		}
1133
		break;
1134
	case TUNER_RTL2832_FC2580:
1135 1136
		fe = dvb_attach(fc2580_attach, adap->fe[0],
				priv->demod_i2c_adapter,
1137 1138
				&rtl2832u_fc2580_config);
		break;
1139 1140
	case TUNER_RTL2832_TUA9001:
		/* enable GPIO1 and GPIO4 as output */
1141 1142
		ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_DIR, 0x00, 0x12);
		if (ret)
1143 1144
			goto err;

1145 1146
		ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_OUT_EN, 0x12, 0x12);
		if (ret)
1147 1148
			goto err;

1149 1150
		fe = dvb_attach(tua9001_attach, adap->fe[0],
				priv->demod_i2c_adapter,
1151 1152
				&rtl2832u_tua9001_config);
		break;
1153
	case TUNER_RTL2832_R820T:
1154 1155
		fe = dvb_attach(r820t_attach, adap->fe[0],
				priv->demod_i2c_adapter,
1156
				&rtl2832u_r820t_config);
1157

1158 1159 1160
		/* Use tuner to get the signal strength */
		adap->fe[0]->ops.read_signal_strength =
				adap->fe[0]->ops.tuner_ops.get_rf_strength;
1161 1162

		/* attach SDR */
1163
		dvb_attach_sdr(rtl2832_sdr_attach, adap->fe[0], &d->i2c_adap,
1164
				&rtl28xxu_rtl2832_r820t_config, NULL);
1165 1166
		break;
	case TUNER_RTL2832_R828D:
1167 1168
		fe = dvb_attach(r820t_attach, adap->fe[0],
				priv->demod_i2c_adapter,
1169
				&rtl2832u_r828d_config);
1170 1171
		adap->fe[0]->ops.read_signal_strength =
				adap->fe[0]->ops.tuner_ops.get_rf_strength;
1172 1173 1174 1175 1176 1177 1178 1179

		if (adap->fe[1]) {
			fe = dvb_attach(r820t_attach, adap->fe[1],
					priv->demod_i2c_adapter,
					&rtl2832u_r828d_config);
			adap->fe[1]->ops.read_signal_strength =
					adap->fe[1]->ops.tuner_ops.get_rf_strength;
		}
1180 1181 1182 1183

		/* attach SDR */
		dvb_attach_sdr(rtl2832_sdr_attach, adap->fe[0], &d->i2c_adap,
				&rtl28xxu_rtl2832_r820t_config, NULL);
1184
		break;
1185
	default:
1186 1187
		dev_err(&d->udev->dev, "%s: unknown tuner=%d\n", KBUILD_MODNAME,
				priv->tuner);
1188 1189
	}

1190
	if (fe == NULL && priv->i2c_client_tuner == NULL) {
1191 1192 1193 1194 1195 1196
		ret = -ENODEV;
		goto err;
	}

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

1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
static int rtl2832u_tuner_detach(struct dvb_usb_adapter *adap)
{
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
	struct i2c_client *client;

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

	/* remove I2C tuner */
	client = priv->i2c_client_tuner;
	if (client) {
		module_put(client->dev.driver->owner);
		i2c_unregister_device(client);
	}

	return 0;
}

1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
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;
}

1253
static int rtl2831u_power_ctrl(struct dvb_usb_device *d, int onoff)
1254 1255
{
	int ret;
1256
	u8 gpio, sys0, epa_ctl[2];
1257

1258
	dev_dbg(&d->udev->dev, "%s: onoff=%d\n", __func__, onoff);
1259 1260

	/* demod adc */
1261
	ret = rtl28xx_rd_reg(d, SYS_SYS0, &sys0);
1262 1263 1264 1265
	if (ret)
		goto err;

	/* tuner power, read GPIOs */
1266
	ret = rtl28xx_rd_reg(d, SYS_GPIO_OUT_VAL, &gpio);
1267 1268 1269
	if (ret)
		goto err;

1270 1271
	dev_dbg(&d->udev->dev, "%s: RD SYS0=%02x GPIO_OUT_VAL=%02x\n", __func__,
			sys0, gpio);
1272 1273 1274 1275

	if (onoff) {
		gpio |= 0x01; /* GPIO0 = 1 */
		gpio &= (~0x10); /* GPIO4 = 0 */
1276
		gpio |= 0x04; /* GPIO2 = 1, LED on */
1277 1278
		sys0 = sys0 & 0x0f;
		sys0 |= 0xe0;
1279 1280
		epa_ctl[0] = 0x00; /* clear stall */
		epa_ctl[1] = 0x00; /* clear reset */
1281 1282 1283
	} else {
		gpio &= (~0x01); /* GPIO0 = 0 */
		gpio |= 0x10; /* GPIO4 = 1 */
1284
		gpio &= (~0x04); /* GPIO2 = 1, LED off */
1285
		sys0 = sys0 & (~0xc0);
1286 1287
		epa_ctl[0] = 0x10; /* set stall */
		epa_ctl[1] = 0x02; /* set reset */
1288 1289
	}

1290 1291
	dev_dbg(&d->udev->dev, "%s: WR SYS0=%02x GPIO_OUT_VAL=%02x\n", __func__,
			sys0, gpio);
1292 1293

	/* demod adc */
1294
	ret = rtl28xx_wr_reg(d, SYS_SYS0, sys0);
1295 1296 1297 1298
	if (ret)
		goto err;

	/* tuner power, write GPIOs */
1299
	ret = rtl28xx_wr_reg(d, SYS_GPIO_OUT_VAL, gpio);
1300 1301 1302
	if (ret)
		goto err;

1303 1304 1305 1306 1307 1308 1309 1310
	/* 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));

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

1317 1318 1319 1320
static int rtl2832u_power_ctrl(struct dvb_usb_device *d, int onoff)
{
	int ret;

1321
	dev_dbg(&d->udev->dev, "%s: onoff=%d\n", __func__, onoff);
1322 1323

	if (onoff) {
1324 1325
		/* GPIO3=1, GPIO4=0 */
		ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_OUT_VAL, 0x08, 0x18);
1326 1327 1328
		if (ret)
			goto err;

1329 1330
		/* suspend? */
		ret = rtl28xx_wr_reg_mask(d, SYS_DEMOD_CTL1, 0x00, 0x10);
1331 1332 1333
		if (ret)
			goto err;

1334 1335
		/* enable PLL */
		ret = rtl28xx_wr_reg_mask(d, SYS_DEMOD_CTL, 0x80, 0x80);
1336 1337 1338
		if (ret)
			goto err;

1339 1340
		/* disable reset */
		ret = rtl28xx_wr_reg_mask(d, SYS_DEMOD_CTL, 0x20, 0x20);
1341 1342 1343
		if (ret)
			goto err;

1344 1345 1346 1347 1348 1349 1350 1351
		/* 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;
1352
	} else {
1353 1354
		/* GPIO4=1 */
		ret = rtl28xx_wr_reg_mask(d, SYS_GPIO_OUT_VAL, 0x10, 0x10);
1355 1356 1357
		if (ret)
			goto err;

1358 1359
		/* disable PLL */
		ret = rtl28xx_wr_reg_mask(d, SYS_DEMOD_CTL, 0x00, 0x80);
1360 1361 1362
		if (ret)
			goto err;

1363 1364 1365 1366
		/* streaming EP: set stall & reset */
		ret = rtl28xx_wr_regs(d, USB_EPA_CTL, "\x10\x02", 2);
		if (ret)
			goto err;
1367 1368 1369 1370
	}

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

1375 1376 1377
static int rtl2832u_frontend_ctrl(struct dvb_frontend *fe, int onoff)
{
	struct dvb_usb_device *d = fe_to_d(fe);
1378 1379
	struct rtl28xxu_priv *priv = fe_to_priv(fe);
	struct rtl2832_platform_data *pdata = &priv->rtl2832_platform_data;
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
	int ret;
	u8 val;

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

	/* control internal demod ADC */
	if (fe->id == 0 && onoff)
		val = 0x48; /* enable ADC */
	else
		val = 0x00; /* disable ADC */

	ret = rtl28xx_wr_reg_mask(d, SYS_DEMOD_CTL, val, 0x48);
	if (ret)
		goto err;

1395 1396
	/* bypass slave demod TS through master demod */
	if (fe->id == 1 && onoff) {
1397
		ret = pdata->enable_slave_ts(priv->i2c_client_demod);
1398 1399 1400 1401
		if (ret)
			goto err;
	}

1402 1403 1404 1405 1406 1407
	return 0;
err:
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
	return ret;
}

1408
#if IS_ENABLED(CONFIG_RC_CORE)
1409
static int rtl2831u_rc_query(struct dvb_usb_device *d)
1410
{
1411 1412
	int ret, i;
	struct rtl28xxu_priv *priv = d->priv;
1413 1414
	u8 buf[5];
	u32 rc_code;
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
	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++) {
1435
			ret = rtl28xx_wr_reg(d, rc_nec_tab[i].reg,
1436
					rc_nec_tab[i].val);
1437 1438 1439 1440 1441
			if (ret)
				goto err;
		}
		priv->rc_active = true;
	}
1442 1443 1444 1445 1446 1447 1448 1449 1450

	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) */
1451
				rc_code = RC_SCANCODE_NEC(buf[0], buf[2]);
1452 1453
			} else {
				/* NEC extended (24 bit) */
1454 1455
				rc_code = RC_SCANCODE_NECX(buf[0] << 8 | buf[1],
							   buf[2]);
1456 1457 1458
			}
		} else {
			/* NEC full (32 bit) */
1459 1460
			rc_code = RC_SCANCODE_NEC32(buf[0] << 24 | buf[1] << 16 |
						    buf[2] << 8  | buf[3]);
1461 1462
		}

1463
		rc_keydown(d->rc_dev, RC_TYPE_NEC, rc_code, 0);
1464

1465
		ret = rtl28xx_wr_reg(d, SYS_IRRC_SR, 1);
1466 1467 1468 1469
		if (ret)
			goto err;

		/* repeated intentionally to avoid extra keypress */
1470
		ret = rtl28xx_wr_reg(d, SYS_IRRC_SR, 1);
1471 1472 1473 1474 1475 1476
		if (ret)
			goto err;
	}

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

1481 1482 1483 1484
static int rtl2831u_get_rc_config(struct dvb_usb_device *d,
		struct dvb_usb_rc *rc)
{
	rc->map_name = RC_MAP_EMPTY;
1485
	rc->allowed_protos = RC_BIT_NEC;
1486 1487 1488 1489 1490 1491
	rc->query = rtl2831u_rc_query;
	rc->interval = 400;

	return 0;
}

1492 1493
static int rtl2832u_rc_query(struct dvb_usb_device *d)
{
1494
	int ret, i, len;
1495
	struct rtl28xxu_priv *priv = d->priv;
1496
	struct ir_raw_event ev;
1497
	u8 buf[128];
1498 1499 1500 1501 1502
	static const struct rtl28xxu_reg_val_mask refresh_tab[] = {
		{IR_RX_IF,               0x03, 0xff},
		{IR_RX_BUF_CTRL,         0x80, 0xff},
		{IR_RX_CTRL,             0x80, 0xff},
	};
1503 1504 1505

	/* init remote controller */
	if (!priv->rc_active) {
1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527
		static const struct rtl28xxu_reg_val_mask init_tab[] = {
			{SYS_DEMOD_CTL1,         0x00, 0x04},
			{SYS_DEMOD_CTL1,         0x00, 0x08},
			{USB_CTRL,               0x20, 0x20},
			{SYS_GPIO_DIR,           0x00, 0x08},
			{SYS_GPIO_OUT_EN,        0x08, 0x08},
			{SYS_GPIO_OUT_VAL,       0x08, 0x08},
			{IR_MAX_DURATION0,       0xd0, 0xff},
			{IR_MAX_DURATION1,       0x07, 0xff},
			{IR_IDLE_LEN0,           0xc0, 0xff},
			{IR_IDLE_LEN1,           0x00, 0xff},
			{IR_GLITCH_LEN,          0x03, 0xff},
			{IR_RX_CLK,              0x09, 0xff},
			{IR_RX_CFG,              0x1c, 0xff},
			{IR_MAX_H_TOL_LEN,       0x1e, 0xff},
			{IR_MAX_L_TOL_LEN,       0x1e, 0xff},
			{IR_RX_CTRL,             0x80, 0xff},
		};

		for (i = 0; i < ARRAY_SIZE(init_tab); i++) {
			ret = rtl28xx_wr_reg_mask(d, init_tab[i].reg,
					init_tab[i].val, init_tab[i].mask);
1528 1529 1530
			if (ret)
				goto err;
		}
1531

1532 1533 1534
		priv->rc_active = true;
	}

1535
	ret = rtl28xx_rd_reg(d, IR_RX_IF, &buf[0]);
1536 1537 1538 1539
	if (ret)
		goto err;

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

1542
	ret = rtl28xx_rd_reg(d, IR_RX_BC, &buf[0]);
1543 1544 1545 1546 1547
	if (ret)
		goto err;

	len = buf[0];

1548 1549 1550 1551
	/* read raw code from hw */
	ret = rtl2831_rd_regs(d, IR_RX_BUF, buf, len);
	if (ret)
		goto err;
1552

1553 1554 1555 1556
	/* let hw receive new code */
	for (i = 0; i < ARRAY_SIZE(refresh_tab); i++) {
		ret = rtl28xx_wr_reg_mask(d, refresh_tab[i].reg,
				refresh_tab[i].val, refresh_tab[i].mask);
1557 1558 1559
		if (ret)
			goto err;
	}
1560

1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573
	/* pass data to Kernel IR decoder */
	init_ir_raw_event(&ev);

	for (i = 0; i < len; i++) {
		ev.pulse = buf[i] >> 7;
		ev.duration = 50800 * (buf[i] & 0x7f);
		ir_raw_event_store_with_filter(d->rc_dev, &ev);
	}

	/* 'flush' ir_raw_event_store_with_filter() */
	ir_raw_event_set_idle(d->rc_dev, true);
	ir_raw_event_handle(d->rc_dev);
exit:
1574 1575
	return ret;
err:
1576
	dev_dbg(&d->udev->dev, "%s: failed=%d\n", __func__, ret);
1577 1578 1579
	return ret;
}

1580 1581 1582
static int rtl2832u_get_rc_config(struct dvb_usb_device *d,
		struct dvb_usb_rc *rc)
{
1583 1584 1585 1586
	/* disable IR interrupts in order to avoid SDR sample loss */
	if (rtl28xxu_disable_rc)
		return rtl28xx_wr_reg(d, IR_RX_IE, 0x00);

1587 1588 1589
	/* load empty to enable rc */
	if (!rc->map_name)
		rc->map_name = RC_MAP_EMPTY;
1590
	rc->allowed_protos = RC_BIT_ALL;
1591
	rc->driver_type = RC_DRIVER_IR_RAW;
1592 1593
	rc->query = rtl2832u_rc_query;
	rc->interval = 400;
1594

1595 1596
	return 0;
}
1597
#else
1598 1599
#define rtl2831u_get_rc_config NULL
#define rtl2832u_get_rc_config NULL
1600
#endif
1601

1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619
static int rtl28xxu_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
{
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
	struct rtl2830_platform_data *pdata = &priv->rtl2830_platform_data;

	return pdata->pid_filter_ctrl(adap->fe[0], onoff);
}

static int rtl28xxu_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid, int onoff)
{
	struct dvb_usb_device *d = adap_to_d(adap);
	struct rtl28xxu_priv *priv = d_to_priv(d);
	struct rtl2830_platform_data *pdata = &priv->rtl2830_platform_data;

	return pdata->pid_filter(adap->fe[0], index, pid, onoff);
}

1620 1621 1622 1623 1624 1625 1626 1627
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,
1628
	.read_config = rtl2831u_read_config,
1629
	.frontend_attach = rtl2831u_frontend_attach,
1630
	.frontend_detach = rtl2832u_frontend_detach,
1631 1632 1633 1634 1635 1636 1637
	.tuner_attach = rtl2831u_tuner_attach,
	.init = rtl28xxu_init,
	.get_rc_config = rtl2831u_get_rc_config,

	.num_adapters = 1,
	.adapter = {
		{
1638 1639 1640 1641 1642 1643 1644
			.caps = DVB_USB_ADAP_HAS_PID_FILTER |
				DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,

			.pid_filter_count = 32,
			.pid_filter_ctrl = rtl28xxu_pid_filter_ctrl,
			.pid_filter = rtl28xxu_pid_filter,

1645
			.stream = DVB_USB_STREAM_BULK(0x81, 6, 8 * 512),
1646 1647
		},
	},
1648
};
1649

1650 1651 1652 1653 1654 1655 1656
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,
1657
	.frontend_ctrl = rtl2832u_frontend_ctrl,
1658
	.i2c_algo = &rtl28xxu_i2c_algo,
1659
	.read_config = rtl2832u_read_config,
1660
	.frontend_attach = rtl2832u_frontend_attach,
1661
	.frontend_detach = rtl2832u_frontend_detach,
1662
	.tuner_attach = rtl2832u_tuner_attach,
1663
	.tuner_detach = rtl2832u_tuner_detach,
1664 1665 1666 1667 1668 1669 1670
	.init = rtl28xxu_init,
	.get_rc_config = rtl2832u_get_rc_config,

	.num_adapters = 1,
	.adapter = {
		{
			.stream = DVB_USB_STREAM_BULK(0x81, 6, 8 * 512),
1671 1672
		},
	},
1673 1674
};

1675
static const struct usb_device_id rtl28xxu_id_table[] = {
1676
	/* RTL2831U devices: */
1677 1678 1679 1680 1681 1682 1683
	{ 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) },

1684
	/* RTL2832U devices: */
1685 1686 1687 1688
	{ 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) },
1689
	{ DVB_USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_STICK_BLACK_REV1,
1690
		&rtl2832u_props, "TerraTec Cinergy T Stick Black", RC_MAP_TERRATEC_SLIM) },
1691 1692 1693
	{ 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,
1694
		&rtl2832u_props, "TerraTec NOXON DAB Stick", NULL) },
1695
	{ DVB_USB_DEVICE(USB_VID_TERRATEC, USB_PID_NOXON_DAB_STICK_REV2,
1696
		&rtl2832u_props, "TerraTec NOXON DAB Stick (rev 2)", NULL) },
1697 1698
	{ DVB_USB_DEVICE(USB_VID_TERRATEC, USB_PID_NOXON_DAB_STICK_REV3,
		&rtl2832u_props, "TerraTec NOXON DAB Stick (rev 3)", NULL) },
1699 1700
	{ DVB_USB_DEVICE(USB_VID_GTEK, USB_PID_TREKSTOR_TERRES_2_0,
		&rtl2832u_props, "Trekstor DVB-T Stick Terres 2.0", NULL) },
1701 1702
	{ DVB_USB_DEVICE(USB_VID_DEXATEK, 0x1101,
		&rtl2832u_props, "Dexatek DK DVB-T Dongle", NULL) },
1703 1704
	{ DVB_USB_DEVICE(USB_VID_LEADTEK, 0x6680,
		&rtl2832u_props, "DigitalNow Quad DVB-T Receiver", NULL) },
1705 1706
	{ DVB_USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_MINID,
		&rtl2832u_props, "Leadtek Winfast DTV Dongle Mini D", NULL) },
1707 1708
	{ DVB_USB_DEVICE(USB_VID_TERRATEC, 0x00d3,
		&rtl2832u_props, "TerraTec Cinergy T Stick RC (Rev. 3)", NULL) },
1709 1710
	{ DVB_USB_DEVICE(USB_VID_DEXATEK, 0x1102,
		&rtl2832u_props, "Dexatek DK mini DVB-T Dongle", NULL) },
1711 1712
	{ DVB_USB_DEVICE(USB_VID_TERRATEC, 0x00d7,
		&rtl2832u_props, "TerraTec Cinergy T Stick+", NULL) },
1713 1714
	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, 0xd3a8,
		&rtl2832u_props, "ASUS My Cinema-U3100Mini Plus V2", NULL) },
1715
	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, 0xd393,
1716
		&rtl2832u_props, "GIGABYTE U7300", NULL) },
1717
	{ DVB_USB_DEVICE(USB_VID_DEXATEK, 0x1104,
1718
		&rtl2832u_props, "MSI DIGIVOX Micro HD", NULL) },
1719 1720
	{ DVB_USB_DEVICE(USB_VID_COMPRO, 0x0620,
		&rtl2832u_props, "Compro VideoMate U620F", NULL) },
1721 1722
	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, 0xd394,
		&rtl2832u_props, "MaxMedia HU394-T", NULL) },
1723
	{ DVB_USB_DEVICE(USB_VID_LEADTEK, 0x6a03,
1724
		&rtl2832u_props, "Leadtek WinFast DTV Dongle mini", NULL) },
1725
	{ DVB_USB_DEVICE(USB_VID_GTEK, USB_PID_CPYTO_REDI_PC50A,
1726
		&rtl2832u_props, "Crypto ReDi PC 50 A", NULL) },
1727 1728
	{ DVB_USB_DEVICE(USB_VID_KYE, 0x707f,
		&rtl2832u_props, "Genius TVGo DVB-T03", NULL) },
1729 1730
	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, 0xd395,
		&rtl2832u_props, "Peak DVB-T USB", NULL) },
1731 1732
	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV20_RTL2832U,
		&rtl2832u_props, "Sveon STV20", NULL) },
1733 1734
	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV21,
		&rtl2832u_props, "Sveon STV21", NULL) },
1735 1736
	{ DVB_USB_DEVICE(USB_VID_KWORLD_2, USB_PID_SVEON_STV27,
		&rtl2832u_props, "Sveon STV27", NULL) },
1737

1738
	/* RTL2832P devices: */
1739 1740
	{ DVB_USB_DEVICE(USB_VID_HANFTEK, 0x0131,
		&rtl2832u_props, "Astrometa DVB-T2", NULL) },
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751
	{ }
};
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,
1752
	.reset_resume = dvb_usbv2_reset_resume,
1753 1754
	.no_dynamic_id = 1,
	.soft_unbind = 1,
1755 1756
};

1757
module_usb_driver(rtl28xxu_usb_driver);
1758 1759 1760

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