diff options
author | Antti Palosaari <crope@iki.fi> | 2015-04-16 16:46:24 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-06-06 12:19:07 +0200 |
commit | d69abb79e123c111966fb41fe3c21533e2162f1a (patch) | |
tree | ab323ba7f2754a8835ffd515b78f7968a0e0a957 /drivers/media/dvb-frontends/tda10071.h | |
parent | [media] vivid: move PRINTSTR to separate functions (diff) | |
download | linux-d69abb79e123c111966fb41fe3c21533e2162f1a.tar.xz linux-d69abb79e123c111966fb41fe3c21533e2162f1a.zip |
[media] tda10071: implement I2C client bindings
Implement I2C client bindings.
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/tda10071.h')
-rw-r--r-- | drivers/media/dvb-frontends/tda10071.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/drivers/media/dvb-frontends/tda10071.h b/drivers/media/dvb-frontends/tda10071.h index da89f4249846..0ffbfa5b2dfb 100644 --- a/drivers/media/dvb-frontends/tda10071.h +++ b/drivers/media/dvb-frontends/tda10071.h @@ -24,6 +24,35 @@ #include <linux/kconfig.h> #include <linux/dvb/frontend.h> +/* + * I2C address + * 0x55, + */ + +/** + * struct tda10071_platform_data - Platform data for the tda10071 driver + * @clk: Clock frequency. + * @i2c_wr_max: Max bytes I2C adapter can write at once. + * @ts_mode: TS mode. + * @spec_inv: Input spectrum inversion. + * @pll_multiplier: PLL multiplier. + * @tuner_i2c_addr: CX24118A tuner I2C address (0x14, 0x54, ...). + * @get_dvb_frontend: Get DVB frontend. + */ + +struct tda10071_platform_data { + u32 clk; + u16 i2c_wr_max; +#define TDA10071_TS_SERIAL 0 +#define TDA10071_TS_PARALLEL 1 + u8 ts_mode; + bool spec_inv; + u8 pll_multiplier; + u8 tuner_i2c_addr; + + struct dvb_frontend* (*get_dvb_frontend)(struct i2c_client *); +}; + struct tda10071_config { /* Demodulator I2C address. * Default: none, must set |