2012-05-18 14:47:40 -03:00
/*
* Realtek RTL2832 DVB - T demodulator driver
*
* Copyright ( C ) 2012 Thomas Mair < thomas . mair86 @ gmail . com >
2014-12-16 13:54:23 -03:00
* Copyright ( C ) 2012 - 2014 Antti Palosaari < crope @ iki . fi >
2012-05-18 14:47:40 -03:00
*
* 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 .
*/
# ifndef RTL2832_H
# define RTL2832_H
# include <linux/dvb/frontend.h>
2014-12-16 13:37:18 -03:00
# include <linux/i2c-mux.h>
2012-05-18 14:47:40 -03:00
2015-02-02 14:20:01 -03:00
/**
* struct rtl2832_platform_data - Platform data for the rtl2832 driver
* @ clk : Clock frequency ( 4000000 , 16000000 , 25000000 , 28800000 ) .
* @ tuner : Used tuner model .
* @ get_dvb_frontend : Get DVB frontend .
* @ get_i2c_adapter : Get I2C adapter .
2016-02-05 18:26:30 -02:00
* @ slave_ts_ctrl : Control slave TS interface .
2015-02-02 14:20:01 -03:00
* @ pid_filter : Set PID to PID filter .
* @ pid_filter_ctrl : Control PID filter .
*/
2014-12-02 10:55:17 -03:00
struct rtl2832_platform_data {
2014-12-13 05:26:27 -03:00
u32 clk ;
/*
2014-12-16 13:37:18 -03:00
* XXX : This list must be kept sync with dvb_usb_rtl28xxu USB IF driver .
2014-12-13 05:26:27 -03:00
*/
2015-04-23 22:52:07 -03:00
# define RTL2832_TUNER_FC2580 0x21
2014-12-13 05:26:27 -03:00
# define RTL2832_TUNER_TUA9001 0x24
# define RTL2832_TUNER_FC0012 0x26
# define RTL2832_TUNER_E4000 0x27
# define RTL2832_TUNER_FC0013 0x29
# define RTL2832_TUNER_R820T 0x2a
# define RTL2832_TUNER_R828D 0x2b
2015-05-05 13:54:19 -03:00
# define RTL2832_TUNER_SI2157 0x2c
2014-12-13 05:26:27 -03:00
u8 tuner ;
2014-12-12 23:16:19 -03:00
struct dvb_frontend * ( * get_dvb_frontend ) ( struct i2c_client * ) ;
struct i2c_adapter * ( * get_i2c_adapter ) ( struct i2c_client * ) ;
2016-02-05 18:26:30 -02:00
int ( * slave_ts_ctrl ) ( struct i2c_client * , bool ) ;
2014-12-14 14:07:35 -03:00
int ( * pid_filter ) ( struct dvb_frontend * , u8 , u16 , int ) ;
int ( * pid_filter_ctrl ) ( struct dvb_frontend * , int ) ;
2015-02-02 14:20:01 -03:00
/* private: Register access for SDR module use only */
2014-12-15 13:34:13 -03:00
int ( * bulk_read ) ( struct i2c_client * , unsigned int , void * , size_t ) ;
int ( * bulk_write ) ( struct i2c_client * , unsigned int , const void * , size_t ) ;
int ( * update_bits ) ( struct i2c_client * , unsigned int , unsigned int , unsigned int ) ;
2014-12-02 10:55:17 -03:00
} ;
2012-05-18 14:47:40 -03:00
# endif /* RTL2832_H */