Manu Abraham | 8bd135b | 2007-07-03 09:53:42 -0300 | [diff] [blame] | 1 | /* |
| 2 | STB0899 Multistandard Frontend driver |
| 3 | Copyright (C) Manu Abraham (abraham.manu@gmail.com) |
| 4 | |
| 5 | Copyright (C) ST Microelectronics |
| 6 | |
| 7 | This program is free software; you can redistribute it and/or modify |
| 8 | it under the terms of the GNU General Public License as published by |
| 9 | the Free Software Foundation; either version 2 of the License, or |
| 10 | (at your option) any later version. |
| 11 | |
| 12 | This program is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | GNU General Public License for more details. |
| 16 | |
| 17 | You should have received a copy of the GNU General Public License |
| 18 | along with this program; if not, write to the Free Software |
| 19 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 20 | */ |
| 21 | |
| 22 | #ifndef __STB0899_DRV_H |
| 23 | #define __STB0899_DRV_H |
| 24 | |
| 25 | #include <linux/kernel.h> |
| 26 | #include <linux/module.h> |
| 27 | |
| 28 | #include "dvb_frontend.h" |
| 29 | |
| 30 | #define STB0899_TSMODE_SERIAL 1 |
| 31 | #define STB0899_CLKPOL_FALLING 2 |
| 32 | #define STB0899_CLKNULL_PARITY 3 |
| 33 | #define STB0899_SYNC_FORCED 4 |
| 34 | #define STB0899_FECMODE_DSS 5 |
| 35 | |
| 36 | struct stb0899_s1_reg { |
| 37 | u16 address; |
| 38 | u8 data; |
| 39 | }; |
| 40 | |
| 41 | struct stb0899_s2_reg { |
| 42 | u16 offset; |
| 43 | u32 base_address; |
| 44 | u32 data; |
| 45 | }; |
| 46 | |
Manu Abraham | ecdec31 | 2007-09-24 19:38:11 -0300 | [diff] [blame^] | 47 | enum stb0899_inversion { |
| 48 | IQ_SWAP_OFF = 0, |
| 49 | IQ_SWAP_ON, |
| 50 | IQ_SWAP_AUTO |
| 51 | }; |
| 52 | |
Manu Abraham | 8bd135b | 2007-07-03 09:53:42 -0300 | [diff] [blame] | 53 | struct stb0899_config { |
| 54 | const struct stb0899_s1_reg *init_dev; |
| 55 | const struct stb0899_s2_reg *init_s2_demod; |
| 56 | const struct stb0899_s1_reg *init_s1_demod; |
| 57 | const struct stb0899_s2_reg *init_s2_fec; |
| 58 | const struct stb0899_s1_reg *init_tst; |
| 59 | |
Manu Abraham | ecdec31 | 2007-09-24 19:38:11 -0300 | [diff] [blame^] | 60 | enum stb0899_inversion inversion; |
| 61 | |
Manu Abraham | 8bd135b | 2007-07-03 09:53:42 -0300 | [diff] [blame] | 62 | u32 xtal_freq; |
| 63 | |
| 64 | u8 demod_address; |
| 65 | u8 ts_output_mode; |
| 66 | u8 block_sync_mode; |
| 67 | u8 ts_pfbit_toggle; |
| 68 | |
| 69 | u8 clock_polarity; |
| 70 | u8 data_clk_parity; |
| 71 | u8 fec_mode; |
| 72 | u8 data_output_ctl; |
| 73 | u8 data_fifo_mode; |
| 74 | u8 out_rate_comp; |
| 75 | u8 i2c_repeater; |
Manu Abraham | ecdec31 | 2007-09-24 19:38:11 -0300 | [diff] [blame^] | 76 | // int inversion; |
Manu Abraham | 8bd135b | 2007-07-03 09:53:42 -0300 | [diff] [blame] | 77 | |
| 78 | u32 esno_ave; |
| 79 | u32 esno_quant; |
| 80 | u32 avframes_coarse; |
| 81 | u32 avframes_fine; |
| 82 | u32 miss_threshold; |
| 83 | u32 uwp_threshold_acq; |
| 84 | u32 uwp_threshold_track; |
| 85 | u32 uwp_threshold_sof; |
| 86 | u32 sof_search_timeout; |
| 87 | |
| 88 | u32 btr_nco_bits; |
| 89 | u32 btr_gain_shift_offset; |
| 90 | u32 crl_nco_bits; |
| 91 | u32 ldpc_max_iter; |
| 92 | |
| 93 | int (*tuner_set_frequency)(struct dvb_frontend *fe, u32 frequency); |
| 94 | int (*tuner_get_frequency)(struct dvb_frontend *fe, u32 *frequency); |
| 95 | int (*tuner_set_bandwidth)(struct dvb_frontend *fe, u32 bandwidth); |
| 96 | int (*tuner_get_bandwidth)(struct dvb_frontend *fe, u32 *bandwidth); |
| 97 | int (*tuner_set_rfsiggain)(struct dvb_frontend *fe, u32 rf_gain); |
| 98 | }; |
| 99 | |
| 100 | extern struct dvb_frontend *stb0899_attach(struct stb0899_config *config, struct i2c_adapter *i2c); |
| 101 | |
| 102 | #endif |