Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
stv0900_priv.h
Go to the documentation of this file.
1 /*
2  * stv0900_priv.h
3  *
4  * Driver for ST STV0900 satellite demodulator IC.
5  *
6  * Copyright (C) ST Microelectronics.
7  * Copyright (C) 2009 NetUP Inc.
8  * Copyright (C) 2009 Igor M. Liplianin <[email protected]>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  *
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25 
26 #ifndef STV0900_PRIV_H
27 #define STV0900_PRIV_H
28 
29 #include <linux/i2c.h>
30 
31 #define ABS(X) ((X) < 0 ? (-1 * (X)) : (X))
32 #define INRANGE(X, Y, Z) ((((X) <= (Y)) && ((Y) <= (Z))) \
33  || (((Z) <= (Y)) && ((Y) <= (X))) ? 1 : 0)
34 
35 #ifndef MAKEWORD
36 #define MAKEWORD(X, Y) (((X) << 8) + (Y))
37 #endif
38 
39 #define LSB(X) (((X) & 0xFF))
40 #define MSB(Y) (((Y) >> 8) & 0xFF)
41 
42 #ifndef TRUE
43 #define TRUE (1 == 1)
44 #endif
45 #ifndef FALSE
46 #define FALSE (!TRUE)
47 #endif
48 
49 #define dprintk(args...) \
50  do { \
51  if (stvdebug) \
52  printk(KERN_DEBUG args); \
53  } while (0)
54 
55 #define STV0900_MAXLOOKUPSIZE 500
56 #define STV0900_BLIND_SEARCH_AGC2_TH 700
57 #define STV0900_BLIND_SEARCH_AGC2_TH_CUT30 1400
58 #define IQPOWER_THRESHOLD 30
59 
60 /* One point of the lookup table */
62  s32 realval;/* real value */
63  s32 regval;/* binary value */
64 };
65 
66 /* Lookup table definition */
68  s32 size;/* Size of the lookup table */
69  struct stv000_lookpoint table[STV0900_MAXLOOKUPSIZE];/* Lookup table */
70 };
71 
78 };
79 
82  STV0900_SERIAL_PUNCT_CLOCK,/*Serial punctured clock */
83  STV0900_SERIAL_CONT_CLOCK,/*Serial continues clock */
84  STV0900_PARALLEL_PUNCT_CLOCK,/*Parallel punctured clock */
85  STV0900_DVBCI_CLOCK/*Parallel continues clock : DVBCI */
86 };
87 
93 
94 };
95 
101 };
102 
117 };
118 
122 };
123 
125  STV0900_DVBS1_STANDARD,/* Found Standard*/
130 };
131 
134  STV0900_SEARCH_DVBS1,/* Search Standard*/
138 };
139 
141  STV0900_BLIND_SEARCH,/* offset freq and SR are Unknown */
142  STV0900_COLD_START,/* only the SR is known */
143  STV0900_WARM_START/* offset freq and SR are known */
144 };
145 
152 };
153 
185 };
186 
187 enum fe_stv0900_fec {/*DVBS1, DSS and turbo code puncture rate*/
191  STV0900_FEC_4_5,/*for turbo code only*/
193  STV0900_FEC_6_7,/*for DSS only */
195  STV0900_FEC_8_9,/*for turbo code only*/
197 };
198 
202 };
203 
207 };
208 
213 };
214 
220 };
221 
225 };
226 
233 };
234 
238 };
239 
241  u32 dmd_ref_clk;/* Reference,Input clock for the demod in Hz */
242 
243  /* Demodulator Type (single demod or dual demod) */
247 
251 
252  /* IQ from the tuner1 to the demod */
255 
259 
260  /* IQ from the tuner2 to the demod */
263 };
264 
266  enum fe_stv0900_demod_num path;/* Path Used demod1 or 2 */
267 
268  u32 frequency;/* Transponder frequency (in KHz) */
269  u32 symbol_rate;/* Transponder symbol rate (in bds)*/
270  u32 search_range;/* Range of the search (in Hz) */
271 
278 
279 };
280 
282  int locked;/* Transponder locked */
283  u32 frequency;/* Transponder frequency (in KHz) */
284  u32 symbol_rate;/* Transponder symbol rate (in Mbds) */
285 
294 
295  s32 Power;/* Power of the RF signal (dBm) */
296  s32 C_N;/* Carrier to noise ratio (dB x10)*/
297  u32 BER;/* Bit error rate (x10^7) */
298 
299 };
300 
304  /* manual RollOff for DVBS1/DSS only */
306  /* Demodulator use for single demod or for dual demod) */
308 
309  /*Demods */
310  s32 freq[2];
311  s32 bw[2];
314  /* for software/auto tuner */
315  int tuner_type[2];
316 
317  /* algorithm for search Blind, Cold or Warm*/
319  /* search standard: Auto, DVBS1/DSS only or DVBS2 only*/
321  /* inversion search : auto, auto norma first, normal or inverted */
326 
329 
330 
333  u8 clkmode;/* 0 for CLKI, 2 for XTALI */
338 };
339 
340 /* state for each demod */
342  /* pointer for internal params, one for each pair of demods */
343  struct stv0900_internal *internal;
345  const struct stv0900_config *config;
347  int demod;
348 };
349 
350 extern int stvdebug;
351 
352 extern s32 ge2comp(s32 a, s32 width);
353 
354 extern void stv0900_write_reg(struct stv0900_internal *i_params,
356 
357 extern u8 stv0900_read_reg(struct stv0900_internal *i_params,
358  u16 reg_addr);
359 
360 extern void stv0900_write_bits(struct stv0900_internal *i_params,
361  u32 label, u8 val);
362 
363 extern u8 stv0900_get_bits(struct stv0900_internal *i_params,
364  u32 label);
365 
366 extern int stv0900_get_demod_lock(struct stv0900_internal *i_params,
367  enum fe_stv0900_demod_num demod, s32 time_out);
368 extern int stv0900_check_signal_presence(struct stv0900_internal *i_params,
369  enum fe_stv0900_demod_num demod);
370 
371 extern enum fe_stv0900_signal_type stv0900_algo(struct dvb_frontend *fe);
372 
373 extern void stv0900_set_tuner(struct dvb_frontend *fe, u32 frequency,
374  u32 bandwidth);
375 extern void stv0900_set_bandwidth(struct dvb_frontend *fe, u32 bandwidth);
376 
377 extern void stv0900_start_search(struct stv0900_internal *i_params,
378  enum fe_stv0900_demod_num demod);
379 
380 extern u8 stv0900_get_optim_carr_loop(s32 srate,
381  enum fe_stv0900_modcode modcode,
382  s32 pilot, u8 chip_id);
383 
385  enum fe_stv0900_modulation modulation,
386  u8 chip_id);
387 
388 extern void stv0900_stop_all_s2_modcod(struct stv0900_internal *i_params,
389  enum fe_stv0900_demod_num demod);
390 
391 extern void stv0900_activate_s2_modcod(struct stv0900_internal *i_params,
392  enum fe_stv0900_demod_num demod);
393 
394 extern void stv0900_activate_s2_modcod_single(struct stv0900_internal *i_params,
395  enum fe_stv0900_demod_num demod);
396 
397 extern enum
399  enum fe_stv0900_demod_num demod);
400 
401 extern u32
402 stv0900_get_freq_auto(struct stv0900_internal *intp, int demod);
403 
404 extern void
405 stv0900_set_tuner_auto(struct stv0900_internal *intp, u32 Frequency,
406  u32 Bandwidth, int demod);
407 
408 #endif