[media] si2157: Add support for spectral inversion
This is needed for PCTV 522e support. Signed-off-by: Matthias Schwarzott <zzam@gentoo.org> Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
Родитель
c3b513bd69
Коммит
05024efe12
|
@ -253,6 +253,8 @@ static int si2157_set_params(struct dvb_frontend *fe)
|
||||||
|
|
||||||
memcpy(cmd.args, "\x14\x00\x03\x07\x00\x00", 6);
|
memcpy(cmd.args, "\x14\x00\x03\x07\x00\x00", 6);
|
||||||
cmd.args[4] = delivery_system | bandwidth;
|
cmd.args[4] = delivery_system | bandwidth;
|
||||||
|
if (s->inversion)
|
||||||
|
cmd.args[5] = 0x01;
|
||||||
cmd.wlen = 6;
|
cmd.wlen = 6;
|
||||||
cmd.rlen = 1;
|
cmd.rlen = 1;
|
||||||
ret = si2157_cmd_execute(s, &cmd);
|
ret = si2157_cmd_execute(s, &cmd);
|
||||||
|
@ -307,6 +309,7 @@ static int si2157_probe(struct i2c_client *client,
|
||||||
|
|
||||||
s->client = client;
|
s->client = client;
|
||||||
s->fe = cfg->fe;
|
s->fe = cfg->fe;
|
||||||
|
s->inversion = cfg->inversion;
|
||||||
mutex_init(&s->i2c_mutex);
|
mutex_init(&s->i2c_mutex);
|
||||||
|
|
||||||
/* check if the tuner is there */
|
/* check if the tuner is there */
|
||||||
|
|
|
@ -29,6 +29,11 @@ struct si2157_config {
|
||||||
* frontend
|
* frontend
|
||||||
*/
|
*/
|
||||||
struct dvb_frontend *fe;
|
struct dvb_frontend *fe;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Spectral Inversion
|
||||||
|
*/
|
||||||
|
bool inversion;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -26,6 +26,7 @@ struct si2157 {
|
||||||
struct i2c_client *client;
|
struct i2c_client *client;
|
||||||
struct dvb_frontend *fe;
|
struct dvb_frontend *fe;
|
||||||
bool active;
|
bool active;
|
||||||
|
bool inversion;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* firmare command struct */
|
/* firmare command struct */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче