2 * Linux-DVB Driver for DiBcom's DiB0090 base-band RF Tuner.
4 * Copyright (C) 2005-7 DiBcom (http://www.dibcom.fr/)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.
16 #define DEFAULT_DIB0090_I2C_ADDRESS 0x60
18 struct dib0090_io_config
{
26 u8 adc_clock_ratio
; /* valid is 8, 7 ,6 */
27 u16 pll_int_loop_filt
;
30 struct dib0090_wbd_slope
{
31 u16 max_freq
; /* for every frequency less than or equal to that field: this information is correct */
39 struct dib0090_low_if_offset_table
{
45 struct dib0090_config
{
46 struct dib0090_io_config io
;
47 int (*reset
) (struct dvb_frontend
*, int);
48 int (*sleep
) (struct dvb_frontend
*, int);
51 int freq_offset_khz_uhf
;
52 int freq_offset_khz_vhf
;
54 int (*get_adc_power
) (struct dvb_frontend
*);
56 u8 clkouttobamse
:1; /* activate or deactivate clock output */
60 /* add drives and other things if necessary */
70 const struct dib0090_low_if_offset_table
*low_if
;
72 u16 force_cband_input
;
73 struct dib0090_wbd_slope
*wbd
;
75 u8 force_crystal_mode
;
78 #if IS_ENABLED(CONFIG_DVB_TUNER_DIB0090)
79 extern struct dvb_frontend
*dib0090_register(struct dvb_frontend
*fe
, struct i2c_adapter
*i2c
, const struct dib0090_config
*config
);
80 extern struct dvb_frontend
*dib0090_fw_register(struct dvb_frontend
*fe
, struct i2c_adapter
*i2c
, const struct dib0090_config
*config
);
81 extern void dib0090_dcc_freq(struct dvb_frontend
*fe
, u8 fast
);
82 extern void dib0090_pwm_gain_reset(struct dvb_frontend
*fe
);
83 extern u16
dib0090_get_wbd_target(struct dvb_frontend
*tuner
);
84 extern u16
dib0090_get_wbd_offset(struct dvb_frontend
*fe
);
85 extern int dib0090_gain_control(struct dvb_frontend
*fe
);
86 extern enum frontend_tune_state
dib0090_get_tune_state(struct dvb_frontend
*fe
);
87 extern int dib0090_set_tune_state(struct dvb_frontend
*fe
, enum frontend_tune_state tune_state
);
88 extern void dib0090_get_current_gain(struct dvb_frontend
*fe
, u16
* rf
, u16
* bb
, u16
* rf_gain_limit
, u16
* rflt
);
89 extern void dib0090_set_dc_servo(struct dvb_frontend
*fe
, u8 DC_servo_cutoff
);
90 extern int dib0090_set_switch(struct dvb_frontend
*fe
, u8 sw1
, u8 sw2
, u8 sw3
);
91 extern int dib0090_set_vga(struct dvb_frontend
*fe
, u8 onoff
);
92 extern int dib0090_update_rframp_7090(struct dvb_frontend
*fe
,
94 extern int dib0090_update_tuning_table_7090(struct dvb_frontend
*fe
,
97 static inline struct dvb_frontend
*dib0090_register(struct dvb_frontend
*fe
, struct i2c_adapter
*i2c
, const struct dib0090_config
*config
)
99 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
103 static inline struct dvb_frontend
*dib0090_fw_register(struct dvb_frontend
*fe
, struct i2c_adapter
*i2c
, struct dib0090_config
*config
)
105 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
109 static inline void dib0090_dcc_freq(struct dvb_frontend
*fe
, u8 fast
)
111 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
114 static inline void dib0090_pwm_gain_reset(struct dvb_frontend
*fe
)
116 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
119 static inline u16
dib0090_get_wbd_target(struct dvb_frontend
*tuner
)
121 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
125 static inline u16
dib0090_get_wbd_offset(struct dvb_frontend
*fe
)
127 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
131 static inline int dib0090_gain_control(struct dvb_frontend
*fe
)
133 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
137 static inline enum frontend_tune_state
dib0090_get_tune_state(struct dvb_frontend
*fe
)
139 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
143 static inline int dib0090_set_tune_state(struct dvb_frontend
*fe
, enum frontend_tune_state tune_state
)
145 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
149 static inline void dib0090_get_current_gain(struct dvb_frontend
*fe
, u16
* rf
, u16
* bb
, u16
* rf_gain_limit
, u16
* rflt
)
151 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
154 static inline void dib0090_set_dc_servo(struct dvb_frontend
*fe
, u8 DC_servo_cutoff
)
156 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
159 static inline int dib0090_set_switch(struct dvb_frontend
*fe
,
160 u8 sw1
, u8 sw2
, u8 sw3
)
162 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
166 static inline int dib0090_set_vga(struct dvb_frontend
*fe
, u8 onoff
)
168 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
172 static inline int dib0090_update_rframp_7090(struct dvb_frontend
*fe
,
175 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
179 static inline int dib0090_update_tuning_table_7090(struct dvb_frontend
*fe
,
182 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);