aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/stb0899_priv.h
diff options
context:
space:
mode:
authorManu Abraham <abraham.manu@gmail.com>2007-07-03 08:53:42 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-29 14:53:13 -0500
commit8bd135bab91f4659d4c62466029aff468e56f235 (patch)
tree9cc0450ed16abc4e1029f6ed3bb62d4abfbeee63 /drivers/media/dvb/frontends/stb0899_priv.h
parent2b1b945f88537a110f018f6a50b1f01bbb23fb7e (diff)
V4L/DVB (9375): Add STB0899 support
Signed-off-by: Manu Abraham <manu@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/stb0899_priv.h')
-rw-r--r--drivers/media/dvb/frontends/stb0899_priv.h272
1 files changed, 272 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/stb0899_priv.h b/drivers/media/dvb/frontends/stb0899_priv.h
new file mode 100644
index 000000000000..47e533dd417d
--- /dev/null
+++ b/drivers/media/dvb/frontends/stb0899_priv.h
@@ -0,0 +1,272 @@
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_PRIV_H
23#define __STB0899_PRIV_H
24
25#include "dvb_frontend.h"
26#include "stb0899_drv.h"
27
28#define FE_ERROR 0
29#define FE_NOTICE 1
30#define FE_INFO 2
31#define FE_DEBUG 3
32#define FE_DEBUGREG 4
33
34#define dprintk(x, y, z, format, arg...) do { \
35 if (z) { \
36 if ((x > FE_ERROR) && (x > y)) \
37 printk(KERN_ERR "%s: " format "\n", __func__ , ##arg); \
38 else if ((x > FE_NOTICE) && (x > y)) \
39 printk(KERN_NOTICE "%s: " format "\n", __func__ , ##arg); \
40 else if ((x > FE_INFO) && (x > y)) \
41 printk(KERN_INFO "%s: " format "\n", __func__ , ##arg); \
42 else if ((x > FE_DEBUG) && (x > y)) \
43 printk(KERN_DEBUG "%s: " format "\n", __func__ , ##arg); \
44 } else { \
45 if (x > y) \
46 printk(format, ##arg); \
47 } \
48} while(0)
49
50#define INRANGE(val, x, y) (((x <= val) && (val <= y)) || \
51 ((y <= val) && (val <= x)) ? 1 : 0)
52
53#define BYTE0 0
54#define BYTE1 8
55#define BYTE2 16
56#define BYTE3 24
57
58#define GETBYTE(x, y) (((x) >> (y)) & 0xff)
59#define MAKEWORD32(a, b, c, d) (((a) << 24) | ((b) << 16) | ((c) << 8) | (d))
60#define MAKEWORD16(a, b) (((a) << 8) | (b))
61
62#define MIN(x, y) ((x) <= (y) ? (x) : (y))
63#define MAX(x, y) ((x) >= (y) ? (x) : (y))
64#define ABS(x) ((x) >= 0 ? (x) : -(x))
65
66#define LSB(x) ((x & 0xff))
67#define MSB(y) ((y >> 8) & 0xff)
68
69
70#define STB0899_GETFIELD(bitf, val) ((val >> STB0899_OFFST_##bitf) & ((1 << STB0899_WIDTH_##bitf) - 1))
71
72
73#define STB0899_SETFIELD(mask, val, width, offset) (mask & (~(((1 << width) - 1) << \
74 offset))) | ((val & \
75 ((1 << width) - 1)) << offset)
76
77#define STB0899_SETFIELD_VAL(bitf, mask, val) (mask = (mask & (~(((1 << STB0899_WIDTH_##bitf) - 1) <<\
78 STB0899_OFFST_##bitf))) | \
79 (val << STB0899_OFFST_##bitf))
80
81
82enum stb0899_status {
83 NOAGC1 = 0,
84 AGC1OK,
85 NOTIMING,
86 ANALOGCARRIER,
87 TIMINGOK,
88 NOAGC2,
89 AGC2OK,
90 NOCARRIER,
91 CARRIEROK,
92 NODATA,
93 FALSELOCK,
94 DATAOK,
95 OUTOFRANGE,
96 RANGEOK,
97 DVBS2_DEMOD_LOCK,
98 DVBS2_DEMOD_NOLOCK,
99 DVBS2_FEC_LOCK,
100 DVBS2_FEC_NOLOCK
101};
102
103enum stb0899_modcod {
104 STB0899_DUMMY_PLF,
105 STB0899_QPSK_14,
106 STB0899_QPSK_13,
107 STB0899_QPSK_25,
108 STB0899_QPSK_12,
109 STB0899_QPSK_35,
110 STB0899_QPSK_23,
111 STB0899_QPSK_34,
112 STB0899_QPSK_45,
113 STB0899_QPSK_56,
114 STB0899_QPSK_89,
115 STB0899_QPSK_910,
116 STB0899_8PSK_35,
117 STB0899_8PSK_23,
118 STB0899_8PSK_34,
119 STB0899_8PSK_56,
120 STB0899_8PSK_89,
121 STB0899_8PSK_910,
122 STB0899_16APSK_23,
123 STB0899_16APSK_34,
124 STB0899_16APSK_45,
125 STB0899_16APSK_56,
126 STB0899_16APSK_89,
127 STB0899_16APSK_910,
128 STB0899_32APSK_34,
129 STB0899_32APSK_45,
130 STB0899_32APSK_56,
131 STB0899_32APSK_89,
132 STB0899_32APSK_910
133};
134
135enum stb0899_frame {
136 STB0899_LONG_FRAME,
137 STB0899_SHORT_FRAME
138};
139
140enum stb0899_inversion {
141 IQ_SWAP_OFF = 0,
142 IQ_SWAP_ON,
143 IQ_SWAP_AUTO
144};
145
146enum stb0899_alpha {
147 RRC_20,
148 RRC_25,
149 RRC_35
150};
151
152struct stb0899_tab {
153 s32 real;
154 s32 read;
155};
156
157enum stb0899_fec {
158 STB0899_FEC_1_2 = 13,
159 STB0899_FEC_2_3 = 18,
160 STB0899_FEC_3_4 = 21,
161 STB0899_FEC_5_6 = 24,
162 STB0899_FEC_6_7 = 25,
163 STB0899_FEC_7_8 = 26
164};
165
166struct stb0899_params {
167 u32 freq; /* Frequency */
168 u32 srate; /* Symbol rate */
169 enum dvbfe_fec fecrate;
170};
171
172struct stb0899_internal {
173 u32 master_clk;
174 u32 freq; /* Demod internal Frequency */
175 u32 srate; /* Demod internal Symbol rate */
176 enum stb0899_fec fecrate; /* Demod internal FEC rate */
177 u32 srch_range; /* Demod internal Search Range */
178 u32 sub_range; /* Demod current sub range (Hz) */
179 u32 tuner_step; /* Tuner step (Hz) */
180 u32 tuner_offst; /* Relative offset to carrier (Hz) */
181 u32 tuner_bw; /* Current bandwidth of the tuner (Hz) */
182
183 s32 mclk; /* Masterclock Divider factor (binary) */
184 s32 rolloff; /* Current RollOff of the filter (x100) */
185
186 s16 derot_freq; /* Current derotator frequency (Hz) */
187 s16 derot_percent;
188
189 s16 direction; /* Current derotator search direction */
190 s16 derot_step; /* Derotator step (binary value) */
191 s16 t_timing; /* Timing loop time constant (ms) */
192 s16 t_derot; /* Derotator time constant (ms) */
193 s16 t_data; /* Data recovery time constant (ms) */
194 s16 sub_dir; /* Direction of the next sub range */
195
196 s16 t_agc1; /* Agc1 time constant (ms) */
197 s16 t_agc2; /* Agc2 time constant (ms) */
198
199 u32 lock; /* Demod internal lock state */
200 enum stb0899_status status; /* Demod internal status */
201
202 /* DVB-S2 */
203 s32 agc_gain; /* RF AGC Gain */
204 s32 center_freq; /* Nominal carrier frequency */
205 s32 av_frame_coarse; /* Coarse carrier freq search frames */
206 s32 av_frame_fine; /* Fine carrier freq search frames */
207
208 s16 step_size; /* Carrier frequency search step size */
209
210 enum stb0899_alpha rrc_alpha;
211 enum stb0899_inversion inversion;
212 enum stb0899_modcod modcod;
213 u8 pilots; /* Pilots found */
214
215 enum stb0899_frame frame_length;
216 u8 v_status; /* VSTATUS */
217 u8 err_ctrl; /* ERRCTRLn */
218};
219
220struct stb0899_state {
221 struct i2c_adapter *i2c;
222 struct stb0899_config *config;
223 struct dvb_frontend frontend;
224
225 u32 verbose; /* Cached module verbosity level */
226
227 struct stb0899_internal internal; /* Device internal parameters */
228
229 /* cached params from API */
230 enum dvbfe_delsys delsys;
231 struct stb0899_params params;
232
233 u32 rx_freq; /* DiSEqC 2.0 receiver freq */
234 struct mutex search_lock;
235};
236/* stb0899.c */
237extern int stb0899_read_reg(struct stb0899_state *state,
238 unsigned int reg);
239
240extern u32 _stb0899_read_s2reg(struct stb0899_state *state,
241 u32 stb0899_i2cdev,
242 u32 stb0899_base_addr,
243 u16 stb0899_reg_offset);
244
245extern int stb0899_read_regs(struct stb0899_state *state,
246 unsigned int reg, u8 *buf,
247 size_t count);
248
249extern int stb0899_write_regs(struct stb0899_state *state,
250 unsigned int reg, u8 *data,
251 size_t count);
252
253extern int stb0899_write_reg(struct stb0899_state *state,
254 unsigned int reg,
255 u8 data);
256
257extern int stb0899_write_s2reg(struct stb0899_state *state,
258 u32 stb0899_i2cdev,
259 u32 stb0899_base_addr,
260 u16 stb0899_reg_offset,
261 u32 stb0899_data);
262
263
264#define STB0899_READ_S2REG(DEVICE, REG) (_stb0899_read_s2reg(state, DEVICE, STB0899_BASE_##REG, STB0899_OFF0_##REG))
265//#define STB0899_WRITE_S2REG(DEVICE, REG, DATA) (_stb0899_write_s2reg(state, DEVICE, STB0899_BASE_##REG, STB0899_OFF0_##REG, DATA))
266
267/* stb0899_algo.c */
268extern enum stb0899_status stb0899_dvbs_algo(struct stb0899_state *state);
269extern enum stb0899_status stb0899_dvbs2_algo(struct stb0899_state *state);
270extern long stb0899_carr_width(struct stb0899_state *state);
271
272#endif //__STB0899_PRIV_H