2011-07-09 02:34:09 +00:00
|
|
|
/*
|
|
|
|
* Realtek RTL2830 DVB-T demodulator driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "rtl2830_priv.h"
|
|
|
|
|
2013-11-02 08:11:47 +00:00
|
|
|
/* Max transfer size done by I2C transfer functions */
|
|
|
|
#define MAX_XFER_SIZE 64
|
|
|
|
|
2011-08-04 23:27:19 +00:00
|
|
|
/* write multiple hardware registers */
|
2014-12-09 01:47:21 +00:00
|
|
|
static int rtl2830_wr(struct i2c_client *client, u8 reg, const u8 *val, int len)
|
2011-07-09 02:34:09 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2013-11-02 08:11:47 +00:00
|
|
|
u8 buf[MAX_XFER_SIZE];
|
2011-07-09 02:34:09 +00:00
|
|
|
struct i2c_msg msg[1] = {
|
|
|
|
{
|
2014-12-09 03:24:13 +00:00
|
|
|
.addr = client->addr,
|
2011-07-09 02:34:09 +00:00
|
|
|
.flags = 0,
|
2013-11-02 08:11:47 +00:00
|
|
|
.len = 1 + len,
|
2011-07-09 02:34:09 +00:00
|
|
|
.buf = buf,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-11-02 08:11:47 +00:00
|
|
|
if (1 + len > sizeof(buf)) {
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_warn(&client->dev, "i2c wr reg=%04x: len=%d is too big!\n",
|
2014-12-09 05:31:53 +00:00
|
|
|
reg, len);
|
2013-11-02 08:11:47 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2011-08-04 23:27:19 +00:00
|
|
|
buf[0] = reg;
|
|
|
|
memcpy(&buf[1], val, len);
|
2011-07-09 02:34:09 +00:00
|
|
|
|
2014-12-09 03:24:13 +00:00
|
|
|
ret = i2c_transfer(client->adapter, msg, 1);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret == 1) {
|
|
|
|
ret = 0;
|
|
|
|
} else {
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_warn(&client->dev, "i2c wr failed=%d reg=%02x len=%d\n",
|
2014-12-09 05:31:53 +00:00
|
|
|
ret, reg, len);
|
2011-07-09 02:34:09 +00:00
|
|
|
ret = -EREMOTEIO;
|
|
|
|
}
|
2014-12-09 05:31:53 +00:00
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-04 23:27:19 +00:00
|
|
|
/* read multiple hardware registers */
|
2014-12-09 01:47:21 +00:00
|
|
|
static int rtl2830_rd(struct i2c_client *client, u8 reg, u8 *val, int len)
|
2011-07-09 02:34:09 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct i2c_msg msg[2] = {
|
|
|
|
{
|
2014-12-09 03:24:13 +00:00
|
|
|
.addr = client->addr,
|
2011-07-09 02:34:09 +00:00
|
|
|
.flags = 0,
|
2011-08-04 23:27:19 +00:00
|
|
|
.len = 1,
|
|
|
|
.buf = ®,
|
2011-07-09 02:34:09 +00:00
|
|
|
}, {
|
2014-12-09 03:24:13 +00:00
|
|
|
.addr = client->addr,
|
2011-07-09 02:34:09 +00:00
|
|
|
.flags = I2C_M_RD,
|
|
|
|
.len = len,
|
|
|
|
.buf = val,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-12-09 03:24:13 +00:00
|
|
|
ret = i2c_transfer(client->adapter, msg, 2);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret == 2) {
|
|
|
|
ret = 0;
|
|
|
|
} else {
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_warn(&client->dev, "i2c rd failed=%d reg=%02x len=%d\n",
|
2014-12-09 05:31:53 +00:00
|
|
|
ret, reg, len);
|
2011-07-09 02:34:09 +00:00
|
|
|
ret = -EREMOTEIO;
|
|
|
|
}
|
2014-12-09 05:31:53 +00:00
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-04 23:27:19 +00:00
|
|
|
/* write multiple registers */
|
2014-12-09 01:47:21 +00:00
|
|
|
static int rtl2830_wr_regs(struct i2c_client *client, u16 reg, const u8 *val, int len)
|
2011-08-04 23:27:19 +00:00
|
|
|
{
|
2014-12-09 01:47:21 +00:00
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2011-08-04 23:27:19 +00:00
|
|
|
int ret;
|
|
|
|
u8 reg2 = (reg >> 0) & 0xff;
|
|
|
|
u8 page = (reg >> 8) & 0xff;
|
|
|
|
|
|
|
|
/* switch bank if needed */
|
2014-12-09 01:31:28 +00:00
|
|
|
if (page != dev->page) {
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr(client, 0x00, &page, 1);
|
2011-08-04 23:27:19 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2014-12-09 01:31:28 +00:00
|
|
|
dev->page = page;
|
2011-08-04 23:27:19 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
return rtl2830_wr(client, reg2, val, len);
|
2011-08-04 23:27:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* read multiple registers */
|
2014-12-09 01:47:21 +00:00
|
|
|
static int rtl2830_rd_regs(struct i2c_client *client, u16 reg, u8 *val, int len)
|
2011-08-04 23:27:19 +00:00
|
|
|
{
|
2014-12-09 01:47:21 +00:00
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2011-08-04 23:27:19 +00:00
|
|
|
int ret;
|
|
|
|
u8 reg2 = (reg >> 0) & 0xff;
|
|
|
|
u8 page = (reg >> 8) & 0xff;
|
|
|
|
|
|
|
|
/* switch bank if needed */
|
2014-12-09 01:31:28 +00:00
|
|
|
if (page != dev->page) {
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr(client, 0x00, &page, 1);
|
2011-08-04 23:27:19 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2014-12-09 01:31:28 +00:00
|
|
|
dev->page = page;
|
2011-08-04 23:27:19 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
return rtl2830_rd(client, reg2, val, len);
|
2011-08-04 23:27:19 +00:00
|
|
|
}
|
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
/* read single register */
|
2014-12-09 01:47:21 +00:00
|
|
|
static int rtl2830_rd_reg(struct i2c_client *client, u16 reg, u8 *val)
|
2011-07-09 02:34:09 +00:00
|
|
|
{
|
2014-12-09 01:47:21 +00:00
|
|
|
return rtl2830_rd_regs(client, reg, val, 1);
|
2011-07-09 02:34:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* write single register with mask */
|
2014-12-09 01:47:21 +00:00
|
|
|
static int rtl2830_wr_reg_mask(struct i2c_client *client, u16 reg, u8 val, u8 mask)
|
2011-07-09 02:34:09 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
u8 tmp;
|
|
|
|
|
|
|
|
/* no need for read if whole reg is written */
|
|
|
|
if (mask != 0xff) {
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_rd_regs(client, reg, &tmp, 1);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
val &= mask;
|
|
|
|
tmp &= ~mask;
|
|
|
|
val |= tmp;
|
|
|
|
}
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
return rtl2830_wr_regs(client, reg, &val, 1);
|
2011-07-09 02:34:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* read single register with mask */
|
2014-12-09 01:47:21 +00:00
|
|
|
static int rtl2830_rd_reg_mask(struct i2c_client *client, u16 reg, u8 *val, u8 mask)
|
2011-07-09 02:34:09 +00:00
|
|
|
{
|
|
|
|
int ret, i;
|
|
|
|
u8 tmp;
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_rd_regs(client, reg, &tmp, 1);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
tmp &= mask;
|
|
|
|
|
|
|
|
/* find position of the first bit */
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
if ((mask >> i) & 0x01)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*val = tmp >> i;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtl2830_init(struct dvb_frontend *fe)
|
|
|
|
{
|
2014-12-09 01:47:21 +00:00
|
|
|
struct i2c_client *client = fe->demodulator_priv;
|
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2014-12-09 09:14:36 +00:00
|
|
|
struct dtv_frontend_properties *c = &dev->fe.dtv_property_cache;
|
2011-07-09 02:34:09 +00:00
|
|
|
int ret, i;
|
|
|
|
struct rtl2830_reg_val_mask tab[] = {
|
2014-12-09 05:31:53 +00:00
|
|
|
{0x00d, 0x01, 0x03},
|
|
|
|
{0x00d, 0x10, 0x10},
|
|
|
|
{0x104, 0x00, 0x1e},
|
|
|
|
{0x105, 0x80, 0x80},
|
|
|
|
{0x110, 0x02, 0x03},
|
|
|
|
{0x110, 0x08, 0x0c},
|
|
|
|
{0x17b, 0x00, 0x40},
|
|
|
|
{0x17d, 0x05, 0x0f},
|
|
|
|
{0x17d, 0x50, 0xf0},
|
|
|
|
{0x18c, 0x08, 0x0f},
|
|
|
|
{0x18d, 0x00, 0xc0},
|
|
|
|
{0x188, 0x05, 0x0f},
|
|
|
|
{0x189, 0x00, 0xfc},
|
|
|
|
{0x2d5, 0x02, 0x02},
|
|
|
|
{0x2f1, 0x02, 0x06},
|
|
|
|
{0x2f1, 0x20, 0xf8},
|
|
|
|
{0x16d, 0x00, 0x01},
|
|
|
|
{0x1a6, 0x00, 0x80},
|
|
|
|
{0x106, dev->pdata->vtop, 0x3f},
|
|
|
|
{0x107, dev->pdata->krf, 0x3f},
|
|
|
|
{0x112, 0x28, 0xff},
|
|
|
|
{0x103, dev->pdata->agc_targ_val, 0xff},
|
|
|
|
{0x00a, 0x02, 0x07},
|
|
|
|
{0x140, 0x0c, 0x3c},
|
|
|
|
{0x140, 0x40, 0xc0},
|
|
|
|
{0x15b, 0x05, 0x07},
|
|
|
|
{0x15b, 0x28, 0x38},
|
|
|
|
{0x15c, 0x05, 0x07},
|
|
|
|
{0x15c, 0x28, 0x38},
|
|
|
|
{0x115, dev->pdata->spec_inv, 0x01},
|
|
|
|
{0x16f, 0x01, 0x07},
|
|
|
|
{0x170, 0x18, 0x38},
|
|
|
|
{0x172, 0x0f, 0x0f},
|
|
|
|
{0x173, 0x08, 0x38},
|
|
|
|
{0x175, 0x01, 0x07},
|
|
|
|
{0x176, 0x00, 0xc0},
|
2011-07-09 02:34:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(tab); i++) {
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr_reg_mask(client, tab[i].reg, tab[i].val,
|
2014-12-09 05:31:53 +00:00
|
|
|
tab[i].mask);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr_regs(client, 0x18f, "\x28\x00", 2);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr_regs(client, 0x195,
|
2014-12-09 05:31:53 +00:00
|
|
|
"\x04\x06\x0a\x12\x0a\x12\x1e\x28", 8);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
/* TODO: spec init */
|
|
|
|
|
|
|
|
/* soft reset */
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr_reg_mask(client, 0x101, 0x04, 0x04);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr_reg_mask(client, 0x101, 0x00, 0x04);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
2014-12-09 09:14:36 +00:00
|
|
|
/* init stats here in order signal app which stats are supported */
|
2014-12-09 11:49:44 +00:00
|
|
|
c->strength.len = 1;
|
|
|
|
c->strength.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
|
2014-12-09 09:14:36 +00:00
|
|
|
c->cnr.len = 1;
|
|
|
|
c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
|
2014-12-09 12:45:16 +00:00
|
|
|
c->post_bit_error.len = 1;
|
|
|
|
c->post_bit_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
|
|
|
|
c->post_bit_count.len = 1;
|
|
|
|
c->post_bit_count.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
|
2014-12-09 09:14:36 +00:00
|
|
|
/* start statistics polling */
|
|
|
|
schedule_delayed_work(&dev->stat_work, msecs_to_jiffies(2000));
|
|
|
|
|
2014-12-09 01:31:28 +00:00
|
|
|
dev->sleeping = false;
|
2012-01-22 01:40:58 +00:00
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
return ret;
|
|
|
|
err:
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_dbg(&client->dev, "failed=%d\n", ret);
|
2011-07-09 02:34:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-01-22 01:40:58 +00:00
|
|
|
static int rtl2830_sleep(struct dvb_frontend *fe)
|
|
|
|
{
|
2014-12-09 01:47:21 +00:00
|
|
|
struct i2c_client *client = fe->demodulator_priv;
|
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2014-12-09 05:31:53 +00:00
|
|
|
|
2014-12-09 01:31:28 +00:00
|
|
|
dev->sleeping = true;
|
2014-12-09 09:14:36 +00:00
|
|
|
/* stop statistics polling */
|
|
|
|
cancel_delayed_work_sync(&dev->stat_work);
|
|
|
|
dev->fe_status = 0;
|
2014-12-09 05:31:53 +00:00
|
|
|
|
2012-01-22 01:40:58 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-27 14:24:08 +00:00
|
|
|
static int rtl2830_get_tune_settings(struct dvb_frontend *fe,
|
2014-12-09 05:31:53 +00:00
|
|
|
struct dvb_frontend_tune_settings *s)
|
2011-07-09 02:34:09 +00:00
|
|
|
{
|
|
|
|
s->min_delay_ms = 500;
|
|
|
|
s->step_size = fe->ops.info.frequency_stepsize * 2;
|
|
|
|
s->max_drift = (fe->ops.info.frequency_stepsize * 2) + 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtl2830_set_frontend(struct dvb_frontend *fe)
|
|
|
|
{
|
2014-12-09 01:47:21 +00:00
|
|
|
struct i2c_client *client = fe->demodulator_priv;
|
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2011-07-09 02:34:09 +00:00
|
|
|
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
|
|
|
int ret, i;
|
2012-09-12 23:23:48 +00:00
|
|
|
u64 num;
|
|
|
|
u8 buf[3], tmp;
|
|
|
|
u32 if_ctl, if_frequency;
|
2012-09-12 23:23:49 +00:00
|
|
|
static const u8 bw_params1[3][34] = {
|
2011-07-09 02:34:09 +00:00
|
|
|
{
|
|
|
|
0x1f, 0xf0, 0x1f, 0xf0, 0x1f, 0xfa, 0x00, 0x17, 0x00, 0x41,
|
|
|
|
0x00, 0x64, 0x00, 0x67, 0x00, 0x38, 0x1f, 0xde, 0x1f, 0x7a,
|
|
|
|
0x1f, 0x47, 0x1f, 0x7c, 0x00, 0x30, 0x01, 0x4b, 0x02, 0x82,
|
|
|
|
0x03, 0x73, 0x03, 0xcf, /* 6 MHz */
|
|
|
|
}, {
|
|
|
|
0x1f, 0xfa, 0x1f, 0xda, 0x1f, 0xc1, 0x1f, 0xb3, 0x1f, 0xca,
|
|
|
|
0x00, 0x07, 0x00, 0x4d, 0x00, 0x6d, 0x00, 0x40, 0x1f, 0xca,
|
|
|
|
0x1f, 0x4d, 0x1f, 0x2a, 0x1f, 0xb2, 0x00, 0xec, 0x02, 0x7e,
|
|
|
|
0x03, 0xd0, 0x04, 0x53, /* 7 MHz */
|
|
|
|
}, {
|
|
|
|
0x00, 0x10, 0x00, 0x0e, 0x1f, 0xf7, 0x1f, 0xc9, 0x1f, 0xa0,
|
|
|
|
0x1f, 0xa6, 0x1f, 0xec, 0x00, 0x4e, 0x00, 0x7d, 0x00, 0x3a,
|
|
|
|
0x1f, 0x98, 0x1f, 0x10, 0x1f, 0x40, 0x00, 0x75, 0x02, 0x5f,
|
|
|
|
0x04, 0x24, 0x04, 0xdb, /* 8 MHz */
|
|
|
|
},
|
|
|
|
};
|
2012-09-12 23:23:49 +00:00
|
|
|
static const u8 bw_params2[3][6] = {
|
|
|
|
{0xc3, 0x0c, 0x44, 0x33, 0x33, 0x30}, /* 6 MHz */
|
|
|
|
{0xb8, 0xe3, 0x93, 0x99, 0x99, 0x98}, /* 7 MHz */
|
|
|
|
{0xae, 0xba, 0xf3, 0x26, 0x66, 0x64}, /* 8 MHz */
|
2011-07-09 02:34:09 +00:00
|
|
|
};
|
|
|
|
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_dbg(&client->dev, "frequency=%u bandwidth_hz=%u inversion=%u\n",
|
2014-12-09 05:31:53 +00:00
|
|
|
c->frequency, c->bandwidth_hz, c->inversion);
|
2011-07-09 02:34:09 +00:00
|
|
|
|
|
|
|
/* program tuner */
|
|
|
|
if (fe->ops.tuner_ops.set_params)
|
|
|
|
fe->ops.tuner_ops.set_params(fe);
|
|
|
|
|
|
|
|
switch (c->bandwidth_hz) {
|
|
|
|
case 6000000:
|
|
|
|
i = 0;
|
|
|
|
break;
|
|
|
|
case 7000000:
|
|
|
|
i = 1;
|
|
|
|
break;
|
|
|
|
case 8000000:
|
|
|
|
i = 2;
|
|
|
|
break;
|
|
|
|
default:
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_err(&client->dev, "invalid bandwidth_hz %u\n",
|
2014-12-09 05:31:53 +00:00
|
|
|
c->bandwidth_hz);
|
2011-07-09 02:34:09 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr_reg_mask(client, 0x008, i << 1, 0x06);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
2012-09-12 23:23:48 +00:00
|
|
|
/* program if frequency */
|
|
|
|
if (fe->ops.tuner_ops.get_if_frequency)
|
|
|
|
ret = fe->ops.tuner_ops.get_if_frequency(fe, &if_frequency);
|
|
|
|
else
|
|
|
|
ret = -EINVAL;
|
2014-12-09 05:31:53 +00:00
|
|
|
if (ret)
|
2012-09-12 23:23:48 +00:00
|
|
|
goto err;
|
|
|
|
|
2014-12-09 03:24:13 +00:00
|
|
|
num = if_frequency % dev->pdata->clk;
|
2012-09-12 23:23:48 +00:00
|
|
|
num *= 0x400000;
|
2014-12-09 03:24:13 +00:00
|
|
|
num = div_u64(num, dev->pdata->clk);
|
2012-09-12 23:23:48 +00:00
|
|
|
num = -num;
|
|
|
|
if_ctl = num & 0x3fffff;
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_dbg(&client->dev, "if_frequency=%d if_ctl=%08x\n",
|
2014-12-09 05:31:53 +00:00
|
|
|
if_frequency, if_ctl);
|
2012-09-12 23:23:48 +00:00
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_rd_reg_mask(client, 0x119, &tmp, 0xc0); /* b[7:6] */
|
2012-09-12 23:23:48 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
buf[0] = tmp << 6;
|
|
|
|
buf[0] |= (if_ctl >> 16) & 0x3f;
|
|
|
|
buf[1] = (if_ctl >> 8) & 0xff;
|
|
|
|
buf[2] = (if_ctl >> 0) & 0xff;
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr_regs(client, 0x119, buf, 3);
|
2012-09-12 23:23:48 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
/* 1/2 split I2C write */
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr_regs(client, 0x11c, &bw_params1[i][0], 17);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
/* 2/2 split I2C write */
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr_regs(client, 0x12d, &bw_params1[i][17], 17);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_wr_regs(client, 0x19d, bw_params2[i], 6);
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
err:
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_dbg(&client->dev, "failed=%d\n", ret);
|
2011-07-09 02:34:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-18 18:58:57 +00:00
|
|
|
static int rtl2830_get_frontend(struct dvb_frontend *fe)
|
|
|
|
{
|
2014-12-09 01:47:21 +00:00
|
|
|
struct i2c_client *client = fe->demodulator_priv;
|
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2012-05-18 18:58:57 +00:00
|
|
|
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
|
|
|
int ret;
|
|
|
|
u8 buf[3];
|
|
|
|
|
2014-12-09 01:31:28 +00:00
|
|
|
if (dev->sleeping)
|
2012-05-18 19:02:55 +00:00
|
|
|
return 0;
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_rd_regs(client, 0x33c, buf, 2);
|
2012-05-18 18:58:57 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_rd_reg(client, 0x351, &buf[2]);
|
2012-05-18 18:58:57 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_dbg(&client->dev, "TPS=%*ph\n", 3, buf);
|
2012-05-18 18:58:57 +00:00
|
|
|
|
|
|
|
switch ((buf[0] >> 2) & 3) {
|
|
|
|
case 0:
|
|
|
|
c->modulation = QPSK;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
c->modulation = QAM_16;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
c->modulation = QAM_64;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ((buf[2] >> 2) & 1) {
|
|
|
|
case 0:
|
|
|
|
c->transmission_mode = TRANSMISSION_MODE_2K;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
c->transmission_mode = TRANSMISSION_MODE_8K;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ((buf[2] >> 0) & 3) {
|
|
|
|
case 0:
|
|
|
|
c->guard_interval = GUARD_INTERVAL_1_32;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
c->guard_interval = GUARD_INTERVAL_1_16;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
c->guard_interval = GUARD_INTERVAL_1_8;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
c->guard_interval = GUARD_INTERVAL_1_4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ((buf[0] >> 4) & 7) {
|
|
|
|
case 0:
|
|
|
|
c->hierarchy = HIERARCHY_NONE;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
c->hierarchy = HIERARCHY_1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
c->hierarchy = HIERARCHY_2;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
c->hierarchy = HIERARCHY_4;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ((buf[1] >> 3) & 7) {
|
|
|
|
case 0:
|
|
|
|
c->code_rate_HP = FEC_1_2;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
c->code_rate_HP = FEC_2_3;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
c->code_rate_HP = FEC_3_4;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
c->code_rate_HP = FEC_5_6;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
c->code_rate_HP = FEC_7_8;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ((buf[1] >> 0) & 7) {
|
|
|
|
case 0:
|
|
|
|
c->code_rate_LP = FEC_1_2;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
c->code_rate_LP = FEC_2_3;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
c->code_rate_LP = FEC_3_4;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
c->code_rate_LP = FEC_5_6;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
c->code_rate_LP = FEC_7_8;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_dbg(&client->dev, "failed=%d\n", ret);
|
2012-05-18 18:58:57 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
static int rtl2830_read_status(struct dvb_frontend *fe, fe_status_t *status)
|
|
|
|
{
|
2014-12-09 01:47:21 +00:00
|
|
|
struct i2c_client *client = fe->demodulator_priv;
|
2014-12-09 03:24:13 +00:00
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2011-07-09 02:34:09 +00:00
|
|
|
int ret;
|
|
|
|
u8 tmp;
|
2014-12-09 05:31:53 +00:00
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
*status = 0;
|
|
|
|
|
2014-12-09 01:31:28 +00:00
|
|
|
if (dev->sleeping)
|
2012-01-22 01:40:58 +00:00
|
|
|
return 0;
|
|
|
|
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_rd_reg_mask(client, 0x351, &tmp, 0x78); /* [6:3] */
|
2011-07-09 02:34:09 +00:00
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (tmp == 11) {
|
|
|
|
*status |= FE_HAS_SIGNAL | FE_HAS_CARRIER |
|
|
|
|
FE_HAS_VITERBI | FE_HAS_SYNC | FE_HAS_LOCK;
|
|
|
|
} else if (tmp == 10) {
|
|
|
|
*status |= FE_HAS_SIGNAL | FE_HAS_CARRIER |
|
|
|
|
FE_HAS_VITERBI;
|
|
|
|
}
|
|
|
|
|
2014-12-09 09:14:36 +00:00
|
|
|
dev->fe_status = *status;
|
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
return ret;
|
|
|
|
err:
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_dbg(&client->dev, "failed=%d\n", ret);
|
2011-07-09 02:34:09 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtl2830_read_snr(struct dvb_frontend *fe, u16 *snr)
|
|
|
|
{
|
2014-12-09 13:48:10 +00:00
|
|
|
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
2012-05-15 21:32:33 +00:00
|
|
|
|
2014-12-09 13:48:10 +00:00
|
|
|
if (c->cnr.stat[0].scale == FE_SCALE_DECIBEL)
|
|
|
|
*snr = div_s64(c->cnr.stat[0].svalue, 100);
|
2012-05-15 21:32:33 +00:00
|
|
|
else
|
|
|
|
*snr = 0;
|
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtl2830_read_ber(struct dvb_frontend *fe, u32 *ber)
|
|
|
|
{
|
2014-12-09 01:47:21 +00:00
|
|
|
struct i2c_client *client = fe->demodulator_priv;
|
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2012-05-18 15:23:42 +00:00
|
|
|
|
2014-12-09 13:27:32 +00:00
|
|
|
*ber = (dev->post_bit_error - dev->post_bit_error_prev);
|
|
|
|
dev->post_bit_error_prev = dev->post_bit_error;
|
2012-05-18 15:23:42 +00:00
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtl2830_read_ucblocks(struct dvb_frontend *fe, u32 *ucblocks)
|
|
|
|
{
|
|
|
|
*ucblocks = 0;
|
2014-12-09 05:31:53 +00:00
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtl2830_read_signal_strength(struct dvb_frontend *fe, u16 *strength)
|
|
|
|
{
|
2014-12-09 13:20:01 +00:00
|
|
|
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
|
2012-05-18 18:17:51 +00:00
|
|
|
|
2014-12-09 13:20:01 +00:00
|
|
|
if (c->strength.stat[0].scale == FE_SCALE_RELATIVE)
|
|
|
|
*strength = c->strength.stat[0].uvalue;
|
2012-05-18 18:17:51 +00:00
|
|
|
else
|
2014-12-09 13:20:01 +00:00
|
|
|
*strength = 0;
|
2012-05-18 18:17:51 +00:00
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct dvb_frontend_ops rtl2830_ops = {
|
2014-12-09 05:31:53 +00:00
|
|
|
.delsys = {SYS_DVBT},
|
2011-07-09 02:34:09 +00:00
|
|
|
.info = {
|
|
|
|
.name = "Realtek RTL2830 (DVB-T)",
|
|
|
|
.caps = FE_CAN_FEC_1_2 |
|
|
|
|
FE_CAN_FEC_2_3 |
|
|
|
|
FE_CAN_FEC_3_4 |
|
|
|
|
FE_CAN_FEC_5_6 |
|
|
|
|
FE_CAN_FEC_7_8 |
|
|
|
|
FE_CAN_FEC_AUTO |
|
|
|
|
FE_CAN_QPSK |
|
|
|
|
FE_CAN_QAM_16 |
|
|
|
|
FE_CAN_QAM_64 |
|
|
|
|
FE_CAN_QAM_AUTO |
|
|
|
|
FE_CAN_TRANSMISSION_MODE_AUTO |
|
|
|
|
FE_CAN_GUARD_INTERVAL_AUTO |
|
|
|
|
FE_CAN_HIERARCHY_AUTO |
|
|
|
|
FE_CAN_RECOVER |
|
|
|
|
FE_CAN_MUTE_TS
|
|
|
|
},
|
|
|
|
|
|
|
|
.init = rtl2830_init,
|
2012-01-22 01:40:58 +00:00
|
|
|
.sleep = rtl2830_sleep,
|
2011-07-09 02:34:09 +00:00
|
|
|
|
|
|
|
.get_tune_settings = rtl2830_get_tune_settings,
|
|
|
|
|
|
|
|
.set_frontend = rtl2830_set_frontend,
|
2012-05-18 18:58:57 +00:00
|
|
|
.get_frontend = rtl2830_get_frontend,
|
2011-07-09 02:34:09 +00:00
|
|
|
|
|
|
|
.read_status = rtl2830_read_status,
|
|
|
|
.read_snr = rtl2830_read_snr,
|
|
|
|
.read_ber = rtl2830_read_ber,
|
|
|
|
.read_ucblocks = rtl2830_read_ucblocks,
|
|
|
|
.read_signal_strength = rtl2830_read_signal_strength,
|
|
|
|
};
|
|
|
|
|
2014-12-09 09:14:36 +00:00
|
|
|
static void rtl2830_stat_work(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct rtl2830_dev *dev = container_of(work, struct rtl2830_dev, stat_work.work);
|
|
|
|
struct i2c_client *client = dev->client;
|
|
|
|
struct dtv_frontend_properties *c = &dev->fe.dtv_property_cache;
|
|
|
|
int ret, tmp;
|
|
|
|
u8 u8tmp, buf[2];
|
|
|
|
u16 u16tmp;
|
|
|
|
|
|
|
|
dev_dbg(&client->dev, "\n");
|
|
|
|
|
2014-12-09 11:49:44 +00:00
|
|
|
/* signal strength */
|
|
|
|
if (dev->fe_status & FE_HAS_SIGNAL) {
|
|
|
|
struct {signed int x:14; } s;
|
|
|
|
|
|
|
|
/* read IF AGC */
|
|
|
|
ret = rtl2830_rd_regs(client, 0x359, buf, 2);
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
u16tmp = buf[0] << 8 | buf[1] << 0;
|
|
|
|
u16tmp &= 0x3fff; /* [13:0] */
|
|
|
|
tmp = s.x = u16tmp; /* 14-bit bin to 2 complement */
|
|
|
|
u16tmp = clamp_val(-4 * tmp + 32767, 0x0000, 0xffff);
|
|
|
|
|
|
|
|
dev_dbg(&client->dev, "IF AGC=%d\n", tmp);
|
|
|
|
|
|
|
|
c->strength.stat[0].scale = FE_SCALE_RELATIVE;
|
|
|
|
c->strength.stat[0].uvalue = u16tmp;
|
|
|
|
} else {
|
|
|
|
c->strength.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
2014-12-09 09:14:36 +00:00
|
|
|
/* CNR */
|
|
|
|
if (dev->fe_status & FE_HAS_VITERBI) {
|
|
|
|
unsigned hierarchy, constellation;
|
|
|
|
#define CONSTELLATION_NUM 3
|
|
|
|
#define HIERARCHY_NUM 4
|
|
|
|
static const u32 constant[CONSTELLATION_NUM][HIERARCHY_NUM] = {
|
|
|
|
{70705899, 70705899, 70705899, 70705899},
|
|
|
|
{82433173, 82433173, 87483115, 94445660},
|
|
|
|
{92888734, 92888734, 95487525, 99770748},
|
|
|
|
};
|
|
|
|
|
|
|
|
ret = rtl2830_rd_reg(client, 0x33c, &u8tmp);
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
constellation = (u8tmp >> 2) & 0x03; /* [3:2] */
|
|
|
|
if (constellation > CONSTELLATION_NUM - 1)
|
|
|
|
goto err_schedule_delayed_work;
|
|
|
|
|
|
|
|
hierarchy = (u8tmp >> 4) & 0x07; /* [6:4] */
|
|
|
|
if (hierarchy > HIERARCHY_NUM - 1)
|
|
|
|
goto err_schedule_delayed_work;
|
|
|
|
|
|
|
|
ret = rtl2830_rd_regs(client, 0x40c, buf, 2);
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
u16tmp = buf[0] << 8 | buf[1] << 0;
|
|
|
|
if (u16tmp)
|
|
|
|
tmp = (constant[constellation][hierarchy] -
|
|
|
|
intlog10(u16tmp)) / ((1 << 24) / 10000);
|
|
|
|
else
|
|
|
|
tmp = 0;
|
|
|
|
|
|
|
|
dev_dbg(&client->dev, "CNR raw=%u\n", u16tmp);
|
|
|
|
|
|
|
|
c->cnr.stat[0].scale = FE_SCALE_DECIBEL;
|
|
|
|
c->cnr.stat[0].svalue = tmp;
|
|
|
|
} else {
|
|
|
|
c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
2014-12-09 12:45:16 +00:00
|
|
|
/* BER */
|
|
|
|
if (dev->fe_status & FE_HAS_LOCK) {
|
|
|
|
ret = rtl2830_rd_regs(client, 0x34e, buf, 2);
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
u16tmp = buf[0] << 8 | buf[1] << 0;
|
|
|
|
dev->post_bit_error += u16tmp;
|
|
|
|
dev->post_bit_count += 1000000;
|
|
|
|
|
|
|
|
dev_dbg(&client->dev, "BER errors=%u total=1000000\n", u16tmp);
|
|
|
|
|
|
|
|
c->post_bit_error.stat[0].scale = FE_SCALE_COUNTER;
|
|
|
|
c->post_bit_error.stat[0].uvalue = dev->post_bit_error;
|
|
|
|
c->post_bit_count.stat[0].scale = FE_SCALE_COUNTER;
|
|
|
|
c->post_bit_count.stat[0].uvalue = dev->post_bit_count;
|
|
|
|
} else {
|
|
|
|
c->post_bit_error.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
|
|
|
|
c->post_bit_count.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
2014-12-09 09:14:36 +00:00
|
|
|
err_schedule_delayed_work:
|
|
|
|
schedule_delayed_work(&dev->stat_work, msecs_to_jiffies(2000));
|
|
|
|
return;
|
|
|
|
err:
|
|
|
|
dev_dbg(&client->dev, "failed=%d\n", ret);
|
|
|
|
}
|
|
|
|
|
2014-12-09 19:08:44 +00:00
|
|
|
static int rtl2830_pid_filter_ctrl(struct dvb_frontend *fe, int onoff)
|
|
|
|
{
|
|
|
|
struct i2c_client *client = fe->demodulator_priv;
|
|
|
|
int ret;
|
|
|
|
u8 u8tmp;
|
|
|
|
|
|
|
|
dev_dbg(&client->dev, "onoff=%d\n", onoff);
|
|
|
|
|
|
|
|
/* enable / disable PID filter */
|
|
|
|
if (onoff)
|
|
|
|
u8tmp = 0x80;
|
|
|
|
else
|
|
|
|
u8tmp = 0x00;
|
|
|
|
|
|
|
|
ret = rtl2830_wr_reg_mask(client, 0x061, u8tmp, 0x80);
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
|
|
|
dev_dbg(&client->dev, "failed=%d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtl2830_pid_filter(struct dvb_frontend *fe, u8 index, u16 pid, int onoff)
|
|
|
|
{
|
|
|
|
struct i2c_client *client = fe->demodulator_priv;
|
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
|
|
|
int ret;
|
|
|
|
u8 buf[4];
|
|
|
|
|
|
|
|
dev_dbg(&client->dev, "index=%d pid=%04x onoff=%d\n",
|
|
|
|
index, pid, onoff);
|
|
|
|
|
|
|
|
/* skip invalid PIDs (0x2000) */
|
|
|
|
if (pid > 0x1fff || index > 32)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (onoff)
|
|
|
|
set_bit(index, &dev->filters);
|
|
|
|
else
|
|
|
|
clear_bit(index, &dev->filters);
|
|
|
|
|
|
|
|
/* enable / disable PIDs */
|
|
|
|
buf[0] = (dev->filters >> 0) & 0xff;
|
|
|
|
buf[1] = (dev->filters >> 8) & 0xff;
|
|
|
|
buf[2] = (dev->filters >> 16) & 0xff;
|
|
|
|
buf[3] = (dev->filters >> 24) & 0xff;
|
|
|
|
ret = rtl2830_wr_regs(client, 0x062, buf, 4);
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
/* add PID */
|
|
|
|
buf[0] = (pid >> 8) & 0xff;
|
|
|
|
buf[1] = (pid >> 0) & 0xff;
|
|
|
|
ret = rtl2830_wr_regs(client, 0x066 + 2 * index, buf, 2);
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
|
|
|
dev_dbg(&client->dev, "failed=%d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-12-07 07:07:29 +00:00
|
|
|
/*
|
|
|
|
* I2C gate/repeater logic
|
|
|
|
* We must use unlocked i2c_transfer() here because I2C lock is already taken
|
|
|
|
* by tuner driver. Gate is closed automatically after single I2C xfer.
|
|
|
|
*/
|
|
|
|
static int rtl2830_select(struct i2c_adapter *adap, void *mux_priv, u32 chan_id)
|
|
|
|
{
|
|
|
|
struct i2c_client *client = mux_priv;
|
2014-12-09 01:31:28 +00:00
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2014-12-07 07:07:29 +00:00
|
|
|
struct i2c_msg select_reg_page_msg[1] = {
|
|
|
|
{
|
2014-12-09 03:24:13 +00:00
|
|
|
.addr = client->addr,
|
2014-12-07 07:07:29 +00:00
|
|
|
.flags = 0,
|
|
|
|
.len = 2,
|
|
|
|
.buf = "\x00\x01",
|
|
|
|
}
|
|
|
|
};
|
|
|
|
struct i2c_msg gate_open_msg[1] = {
|
|
|
|
{
|
2014-12-09 03:24:13 +00:00
|
|
|
.addr = client->addr,
|
2014-12-07 07:07:29 +00:00
|
|
|
.flags = 0,
|
|
|
|
.len = 2,
|
|
|
|
.buf = "\x01\x08",
|
|
|
|
}
|
|
|
|
};
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* select register page */
|
2014-12-09 03:24:13 +00:00
|
|
|
ret = __i2c_transfer(client->adapter, select_reg_page_msg, 1);
|
2014-12-07 07:07:29 +00:00
|
|
|
if (ret != 1) {
|
|
|
|
dev_warn(&client->dev, "i2c write failed %d\n", ret);
|
|
|
|
if (ret >= 0)
|
|
|
|
ret = -EREMOTEIO;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2014-12-09 01:31:28 +00:00
|
|
|
dev->page = 1;
|
2014-12-07 07:07:29 +00:00
|
|
|
|
|
|
|
/* open tuner I2C repeater for 1 xfer, closes automatically */
|
2014-12-09 03:24:13 +00:00
|
|
|
ret = __i2c_transfer(client->adapter, gate_open_msg, 1);
|
2014-12-07 07:07:29 +00:00
|
|
|
if (ret != 1) {
|
|
|
|
dev_warn(&client->dev, "i2c write failed %d\n", ret);
|
|
|
|
if (ret >= 0)
|
|
|
|
ret = -EREMOTEIO;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err:
|
2014-12-09 02:32:19 +00:00
|
|
|
dev_dbg(&client->dev, "failed=%d\n", ret);
|
2014-12-07 07:07:29 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct dvb_frontend *rtl2830_get_dvb_frontend(struct i2c_client *client)
|
|
|
|
{
|
2014-12-09 01:31:28 +00:00
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2014-12-07 07:07:29 +00:00
|
|
|
|
|
|
|
dev_dbg(&client->dev, "\n");
|
|
|
|
|
2014-12-09 01:31:28 +00:00
|
|
|
return &dev->fe;
|
2014-12-07 07:07:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct i2c_adapter *rtl2830_get_i2c_adapter(struct i2c_client *client)
|
|
|
|
{
|
2014-12-09 01:31:28 +00:00
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2014-12-07 07:07:29 +00:00
|
|
|
|
|
|
|
dev_dbg(&client->dev, "\n");
|
|
|
|
|
2014-12-09 01:31:28 +00:00
|
|
|
return dev->adapter;
|
2014-12-07 07:07:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int rtl2830_probe(struct i2c_client *client,
|
2014-12-09 05:31:53 +00:00
|
|
|
const struct i2c_device_id *id)
|
2014-12-07 07:07:29 +00:00
|
|
|
{
|
|
|
|
struct rtl2830_platform_data *pdata = client->dev.platform_data;
|
2014-12-09 01:31:28 +00:00
|
|
|
struct rtl2830_dev *dev;
|
2014-12-07 07:07:29 +00:00
|
|
|
int ret;
|
|
|
|
u8 u8tmp;
|
|
|
|
|
|
|
|
dev_dbg(&client->dev, "\n");
|
|
|
|
|
|
|
|
if (pdata == NULL) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate memory for the internal state */
|
2014-12-09 01:31:28 +00:00
|
|
|
dev = kzalloc(sizeof(*dev), GFP_KERNEL);
|
|
|
|
if (dev == NULL) {
|
2014-12-07 07:07:29 +00:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* setup the state */
|
2014-12-09 01:31:28 +00:00
|
|
|
i2c_set_clientdata(client, dev);
|
2014-12-09 09:14:36 +00:00
|
|
|
dev->client = client;
|
2014-12-09 03:24:13 +00:00
|
|
|
dev->pdata = client->dev.platform_data;
|
2014-12-09 01:31:28 +00:00
|
|
|
dev->sleeping = true;
|
2014-12-09 09:14:36 +00:00
|
|
|
INIT_DELAYED_WORK(&dev->stat_work, rtl2830_stat_work);
|
2014-12-07 07:07:29 +00:00
|
|
|
|
|
|
|
/* check if the demod is there */
|
2014-12-09 01:47:21 +00:00
|
|
|
ret = rtl2830_rd_reg(client, 0x000, &u8tmp);
|
2014-12-07 07:07:29 +00:00
|
|
|
if (ret)
|
|
|
|
goto err_kfree;
|
|
|
|
|
|
|
|
/* create muxed i2c adapter for tuner */
|
2014-12-09 01:31:28 +00:00
|
|
|
dev->adapter = i2c_add_mux_adapter(client->adapter, &client->dev,
|
2014-12-07 07:07:29 +00:00
|
|
|
client, 0, 0, 0, rtl2830_select, NULL);
|
2014-12-09 01:31:28 +00:00
|
|
|
if (dev->adapter == NULL) {
|
2014-12-07 07:07:29 +00:00
|
|
|
ret = -ENODEV;
|
|
|
|
goto err_kfree;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* create dvb frontend */
|
2014-12-09 01:31:28 +00:00
|
|
|
memcpy(&dev->fe.ops, &rtl2830_ops, sizeof(dev->fe.ops));
|
2014-12-09 01:47:21 +00:00
|
|
|
dev->fe.demodulator_priv = client;
|
2014-12-07 07:07:29 +00:00
|
|
|
|
|
|
|
/* setup callbacks */
|
|
|
|
pdata->get_dvb_frontend = rtl2830_get_dvb_frontend;
|
|
|
|
pdata->get_i2c_adapter = rtl2830_get_i2c_adapter;
|
2014-12-09 19:08:44 +00:00
|
|
|
pdata->pid_filter = rtl2830_pid_filter;
|
|
|
|
pdata->pid_filter_ctrl = rtl2830_pid_filter_ctrl;
|
2014-12-07 07:07:29 +00:00
|
|
|
|
|
|
|
dev_info(&client->dev, "Realtek RTL2830 successfully attached\n");
|
|
|
|
|
2014-12-09 05:31:53 +00:00
|
|
|
return 0;
|
2014-12-07 07:07:29 +00:00
|
|
|
err_kfree:
|
2014-12-09 01:31:28 +00:00
|
|
|
kfree(dev);
|
2014-12-07 07:07:29 +00:00
|
|
|
err:
|
|
|
|
dev_dbg(&client->dev, "failed=%d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtl2830_remove(struct i2c_client *client)
|
|
|
|
{
|
2014-12-09 01:31:28 +00:00
|
|
|
struct rtl2830_dev *dev = i2c_get_clientdata(client);
|
2014-12-07 07:07:29 +00:00
|
|
|
|
|
|
|
dev_dbg(&client->dev, "\n");
|
|
|
|
|
2014-12-09 01:31:28 +00:00
|
|
|
i2c_del_mux_adapter(dev->adapter);
|
|
|
|
kfree(dev);
|
2014-12-09 05:31:53 +00:00
|
|
|
|
2014-12-07 07:07:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct i2c_device_id rtl2830_id_table[] = {
|
|
|
|
{"rtl2830", 0},
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(i2c, rtl2830_id_table);
|
|
|
|
|
|
|
|
static struct i2c_driver rtl2830_driver = {
|
|
|
|
.driver = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.name = "rtl2830",
|
|
|
|
},
|
|
|
|
.probe = rtl2830_probe,
|
|
|
|
.remove = rtl2830_remove,
|
|
|
|
.id_table = rtl2830_id_table,
|
|
|
|
};
|
|
|
|
|
|
|
|
module_i2c_driver(rtl2830_driver);
|
|
|
|
|
2011-07-09 02:34:09 +00:00
|
|
|
MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
|
|
|
|
MODULE_DESCRIPTION("Realtek RTL2830 DVB-T demodulator driver");
|
|
|
|
MODULE_LICENSE("GPL");
|