4 * Driver for ST STV0367 DVB-T & DVB-C demodulator IC.
6 * Copyright (C) ST Microelectronics.
7 * Copyright (C) 2010,2011 NetUP Inc.
8 * Copyright (C) 2010,2011 Igor M. Liplianin <liplianin@netup.ru>
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.
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
19 * GNU General Public License for more details.
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.
25 /* Common driver error constants */
27 #ifndef STV0367_PRIV_H
28 #define STV0367_PRIV_H
41 /* MACRO definitions */
42 #define ABS(X) ((X) < 0 ? (-1 * (X)) : (X))
43 #define MAX(X, Y) ((X) >= (Y) ? (X) : (Y))
44 #define MIN(X, Y) ((X) <= (Y) ? (X) : (Y))
45 #define INRANGE(X, Y, Z) \
46 ((((X) <= (Y)) && ((Y) <= (Z))) || \
47 (((Z) <= (Y)) && ((Y) <= (X))) ? 1 : 0)
50 #define MAKEWORD(X, Y) (((X) << 8) + (Y))
53 #define LSB(X) (((X) & 0xff))
54 #define MSB(Y) (((Y) >> 8) & 0xff)
55 #define MMSB(Y)(((Y) >> 16) & 0xff)
57 enum stv0367_ter_signal_type
{
64 FE_TER_PRFOUNDOK
= 10,
65 FE_TER_NOPRFOUND
= 11,
74 enum stv0367_ts_mode
{
75 STV0367_OUTPUTMODE_DEFAULT
,
76 STV0367_SERIAL_PUNCT_CLOCK
,
77 STV0367_SERIAL_CONT_CLOCK
,
78 STV0367_PARALLEL_PUNCT_CLOCK
,
82 enum stv0367_clk_pol
{
83 STV0367_CLOCKPOLARITY_DEFAULT
,
84 STV0367_RISINGEDGE_CLOCK
,
85 STV0367_FALLINGEDGE_CLOCK
89 FE_TER_CHAN_BW_6M
= 6,
90 FE_TER_CHAN_BW_7M
= 7,
95 enum FE_TER_Rate_TPS
{
104 enum stv0367_ter_mode
{
110 enum FE_TER_Hierarchy_Alpha
{
111 FE_TER_HIER_ALPHA_NONE
, /* Regular modulation */
112 FE_TER_HIER_ALPHA_1
, /* Hierarchical modulation a = 1*/
113 FE_TER_HIER_ALPHA_2
, /* Hierarchical modulation a = 2*/
114 FE_TER_HIER_ALPHA_4
/* Hierarchical modulation a = 4*/
117 enum stv0367_ter_hierarchy
{
118 FE_TER_HIER_NONE
, /*Hierarchy None*/
119 FE_TER_HIER_LOW_PRIO
, /*Hierarchy : Low Priority*/
120 FE_TER_HIER_HIGH_PRIO
, /*Hierarchy : High Priority*/
121 FE_TER_HIER_PRIO_ANY
/*Hierarchy :Any*/
125 enum fe_stv0367_ter_spec
{
126 FE_TER_INVERSION_NONE
= 0,
127 FE_TER_INVERSION
= 1,
128 FE_TER_INVERSION_AUTO
= 2,
129 FE_TER_INVERSION_UNK
= 4
133 enum stv0367_ter_if_iq_mode
{
134 FE_TER_NORMAL_IF_TUNER
= 0,
135 FE_TER_LONGPATH_IF_TUNER
= 1,
141 enum FE_TER_FECRate
{
142 FE_TER_FEC_NONE
= 0x00, /* no FEC rate specified */
143 FE_TER_FEC_ALL
= 0xFF, /* Logical OR of all FECs */
145 FE_TER_FEC_2_3
= (1 << 1),
146 FE_TER_FEC_3_4
= (1 << 2),
147 FE_TER_FEC_4_5
= (1 << 3),
148 FE_TER_FEC_5_6
= (1 << 4),
149 FE_TER_FEC_6_7
= (1 << 5),
150 FE_TER_FEC_7_8
= (1 << 6),
151 FE_TER_FEC_8_9
= (1 << 7)
164 enum stv0367_ter_force
{
165 FE_TER_FORCENONE
= 0,
169 enum stv0367cab_mod
{
181 FE_CAB_FEC_A
= 1, /* J83 Annex A */
182 FE_CAB_FEC_B
= (1 << 1),/* J83 Annex B */
183 FE_CAB_FEC_C
= (1 << 2) /* J83 Annex C */
186 struct stv0367_cab_signal_info
{
188 u32 frequency
; /* kHz */
189 u32 symbol_rate
; /* Mbds */
190 enum stv0367cab_mod modulation
;
191 fe_spectral_inversion_t spect_inv
;
192 s32 Power_dBmx10
; /* Power of the RF signal (dBm x 10) */
193 u32 CN_dBx10
; /* Carrier to noise ratio (dB x 10) */
194 u32 BER
; /* Bit error rate (x 10000000) */
197 enum stv0367_cab_signal_type
{