1 #ifndef DIBX000_COMMON_H
2 #define DIBX000_COMMON_H
4 enum dibx000_i2c_interface
{
5 DIBX000_I2C_INTERFACE_TUNER
= 0,
6 DIBX000_I2C_INTERFACE_GPIO_1_2
= 1,
7 DIBX000_I2C_INTERFACE_GPIO_3_4
= 2,
8 DIBX000_I2C_INTERFACE_GPIO_6_7
= 3
11 struct dibx000_i2c_master
{
19 enum dibx000_i2c_interface selected_interface
;
21 /* struct i2c_adapter tuner_i2c_adap; */
22 struct i2c_adapter gated_tuner_i2c_adap
;
23 struct i2c_adapter master_i2c_adap_gpio12
;
24 struct i2c_adapter master_i2c_adap_gpio34
;
25 struct i2c_adapter master_i2c_adap_gpio67
;
27 struct i2c_adapter
*i2c_adap
;
32 /* for the I2C transfer */
33 struct i2c_msg msg
[34];
34 u8 i2c_write_buffer
[8];
35 u8 i2c_read_buffer
[2];
38 extern int dibx000_init_i2c_master(struct dibx000_i2c_master
*mst
,
39 u16 device_rev
, struct i2c_adapter
*i2c_adap
,
41 extern struct i2c_adapter
*dibx000_get_i2c_adapter(struct dibx000_i2c_master
43 enum dibx000_i2c_interface
45 extern void dibx000_exit_i2c_master(struct dibx000_i2c_master
*mst
);
46 extern void dibx000_reset_i2c_master(struct dibx000_i2c_master
*mst
);
47 extern int dibx000_i2c_set_speed(struct i2c_adapter
*i2c_adap
, u16 speed
);
49 extern u32
systime(void);
51 #define BAND_LBAND 0x01
54 #define BAND_SBAND 0x08
56 #define BAND_CBAND 0x20
58 #define BAND_OF_FREQUENCY(freq_kHz) ((freq_kHz) <= 170000 ? BAND_CBAND : \
59 (freq_kHz) <= 115000 ? BAND_FM : \
60 (freq_kHz) <= 250000 ? BAND_VHF : \
61 (freq_kHz) <= 863000 ? BAND_UHF : \
62 (freq_kHz) <= 2000000 ? BAND_LBAND : BAND_SBAND )
64 struct dibx000_agc_config
{
65 /* defines the capabilities of this AGC-setting - using the BAND_-defines */
105 u8 perform_agc_softsplit
;
115 struct dibx000_bandwidth_config
{
139 enum dibx000_adc_states
{
140 DIBX000_SLOW_ADC_ON
= 0,
141 DIBX000_SLOW_ADC_OFF
,
148 #define BANDWIDTH_TO_KHZ(v) ((v) == BANDWIDTH_8_MHZ ? 8000 : \
149 (v) == BANDWIDTH_7_MHZ ? 7000 : \
150 (v) == BANDWIDTH_6_MHZ ? 6000 : 8000)
152 #define BANDWIDTH_TO_INDEX(v) ( \
153 (v) == 8000 ? BANDWIDTH_8_MHZ : \
154 (v) == 7000 ? BANDWIDTH_7_MHZ : \
155 (v) == 6000 ? BANDWIDTH_6_MHZ : BANDWIDTH_8_MHZ )
157 /* Chip output mode. */
158 #define OUTMODE_HIGH_Z 0
159 #define OUTMODE_MPEG2_PAR_GATED_CLK 1
160 #define OUTMODE_MPEG2_PAR_CONT_CLK 2
161 #define OUTMODE_MPEG2_SERIAL 7
162 #define OUTMODE_DIVERSITY 4
163 #define OUTMODE_MPEG2_FIFO 5
164 #define OUTMODE_ANALOG_ADC 6
166 #define INPUT_MODE_OFF 0x11
167 #define INPUT_MODE_DIVERSITY 0x12
168 #define INPUT_MODE_MPEG 0x13
170 enum frontend_tune_state
{
201 CT_DEMOD_SEARCH_NEXT
= 41,
202 CT_DEMOD_STEP_LOCKED
,
210 struct dvb_frontend_parametersContext
{
211 #define CHANNEL_STATUS_PARAMETERS_UNKNOWN 0x01
212 #define CHANNEL_STATUS_PARAMETERS_SET 0x02
214 u32 tune_time_estimation
[2];
219 #define FE_STATUS_TUNE_FAILED 0
220 #define FE_STATUS_TUNE_TIMED_OUT -1
221 #define FE_STATUS_TUNE_TIME_TOO_SHORT -2
222 #define FE_STATUS_TUNE_PENDING -3
223 #define FE_STATUS_STD_SUCCESS -4
224 #define FE_STATUS_FFT_SUCCESS -5
225 #define FE_STATUS_DEMOD_SUCCESS -6
226 #define FE_STATUS_LOCKED -7
227 #define FE_STATUS_DATA_LOCKED -8
229 #define FE_CALLBACK_TIME_NEVER 0xffffffff
231 #define ABS(x) ((x < 0) ? (-x) : (x))
233 #define DATA_BUS_ACCESS_MODE_8BIT 0x01
234 #define DATA_BUS_ACCESS_MODE_16BIT 0x02
235 #define DATA_BUS_ACCESS_MODE_NO_ADDRESS_INCREMENT 0x10
237 struct dibGPIOFunction
{
238 #define BOARD_GPIO_COMPONENT_BUS_ADAPTER 1
239 #define BOARD_GPIO_COMPONENT_DEMOD 2
242 #define BOARD_GPIO_FUNCTION_BOARD_ON 1
243 #define BOARD_GPIO_FUNCTION_BOARD_OFF 2
244 #define BOARD_GPIO_FUNCTION_COMPONENT_ON 3
245 #define BOARD_GPIO_FUNCTION_COMPONENT_OFF 4
246 #define BOARD_GPIO_FUNCTION_SUBBAND_PWM 5
247 #define BOARD_GPIO_FUNCTION_SUBBAND_GPIO 6
250 /* mask, direction and value are used specify which GPIO to change GPIO0
251 * is LSB and possible GPIO31 is MSB. The same bit-position as in the
252 * mask is used for the direction and the value. Direction == 1 is OUT,
253 * 0 == IN. For direction "OUT" value is either 1 or 0, for direction IN
254 * value has no meaning.
256 * In case of BOARD_GPIO_FUNCTION_PWM mask is giving the GPIO to be
257 * used to do the PWM. Direction gives the PWModulator to be used.
258 * Value gives the PWM value in device-dependent scale.
265 #define MAX_NB_SUBBANDS 8
266 struct dibSubbandSelection
{
267 u8 size
; /* Actual number of subbands. */
270 struct dibGPIOFunction gpio
;
271 } subband
[MAX_NB_SUBBANDS
];
274 #define DEMOD_TIMF_SET 0x00
275 #define DEMOD_TIMF_GET 0x01
276 #define DEMOD_TIMF_UPDATE 0x02