blob: 54b5c14f57cf3b73a4cbdf9f52abd1f6c521a51d [file] [log] [blame]
Devin Heitmuellerca3355a2010-07-04 18:42:11 -03001/*
2 Copyright (c), 2004-2005,2007-2010 Trident Microsystems, Inc.
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7
8 * Redistributions of source code must retain the above copyright notice,
9 this list of conditions and the following disclaimer.
10 * Redistributions in binary form must reproduce the above copyright notice,
11 this list of conditions and the following disclaimer in the documentation
12 and/or other materials provided with the distribution.
13 * Neither the name of Trident Microsystems nor Hauppauge Computer Works
14 nor the names of its contributors may be used to endorse or promote
15 products derived from this software without specific prior written
16 permission.
17
18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 POSSIBILITY OF SUCH DAMAGE.
29*/
30
Devin Heitmueller38b2df92012-08-13 21:18:02 -030031/**
32* \file $Id: drxj.h,v 1.132 2009/12/22 12:13:48 danielg Exp $
33*
34* \brief DRXJ specific header file
35*
36* \author Dragan Savic, Milos Nikolic, Mihajlo Katona, Tao Ding, Paul Janssen
37*/
38
Devin Heitmueller38b2df92012-08-13 21:18:02 -030039#ifndef __DRXJ_H__
40#define __DRXJ_H__
41/*-------------------------------------------------------------------------
42INCLUDES
43-------------------------------------------------------------------------*/
44
45#include "drx_driver.h"
46#include "drx_dap_fasi.h"
47
48#ifdef __cplusplus
49extern "C" {
50#endif
51
52/* Check DRX-J specific dap condition */
53/* Multi master mode and short addr format only will not work.
54 RMW, CRC reset, broadcast and switching back to single master mode
55 cannot be done with short addr only in multi master mode. */
Mauro Carvalho Chehab7ef66752014-01-16 11:08:15 -030056#if ((DRXDAP_SINGLE_MASTER == 0) && (DRXDAPFASI_LONG_ADDR_ALLOWED == 0))
Devin Heitmueller38b2df92012-08-13 21:18:02 -030057#error "Multi master mode and short addressing only is an illegal combination"
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -030058 *; /* Generate a fatal compiler error to make sure it stops here,
59 this is necesarry because not all compilers stop after a #error. */
Devin Heitmueller38b2df92012-08-13 21:18:02 -030060#endif
61
62/*-------------------------------------------------------------------------
63TYPEDEFS
64-------------------------------------------------------------------------*/
65/*============================================================================*/
66/*============================================================================*/
67/*== code support ============================================================*/
68/*============================================================================*/
69/*============================================================================*/
70
71/*============================================================================*/
72/*============================================================================*/
73/*== SCU cmd if =============================================================*/
74/*============================================================================*/
75/*============================================================================*/
76
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -030077 typedef struct {
Mauro Carvalho Chehab43a431e2012-03-20 00:49:45 -030078 u16 command;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -030079 /**< Command number */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -030080 u16 parameter_len;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -030081 /**< Data length in byte */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -030082 u16 result_len;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -030083 /**< result length in byte */
Mauro Carvalho Chehab43a431e2012-03-20 00:49:45 -030084 u16 *parameter;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -030085 /**< General purpous param */
Mauro Carvalho Chehab43a431e2012-03-20 00:49:45 -030086 u16 *result;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -030087 /**< General purpous param */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -030088 } drxjscu_cmd_t, *p_drxjscu_cmd_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -030089
90/*============================================================================*/
91/*============================================================================*/
92/*== CTRL CFG related data structures ========================================*/
93/*============================================================================*/
94/*============================================================================*/
95
96/* extra intermediate lock state for VSB,QAM,NTSC */
97#define DRXJ_DEMOD_LOCK (DRX_LOCK_STATE_1)
98
99/* OOB lock states */
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300100#define DRXJ_OOB_AGC_LOCK (DRX_LOCK_STATE_1) /* analog gain control lock */
101#define DRXJ_OOB_SYNC_LOCK (DRX_LOCK_STATE_2) /* digital gain control lock */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300102
103/* Intermediate powermodes for DRXJ */
104#define DRXJ_POWER_DOWN_MAIN_PATH DRX_POWER_MODE_8
105#define DRXJ_POWER_DOWN_CORE DRX_POWER_MODE_9
106#define DRXJ_POWER_DOWN_PLL DRX_POWER_MODE_10
107
108/* supstition for GPIO FNC mux */
109#define APP_O (0x0000)
110
111/*#define DRX_CTRL_BASE (0x0000)*/
112
113#define DRXJ_CTRL_CFG_BASE (0x1000)
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300114 typedef enum {
115 DRXJ_CFG_AGC_RF = DRXJ_CTRL_CFG_BASE,
116 DRXJ_CFG_AGC_IF,
117 DRXJ_CFG_AGC_INTERNAL,
118 DRXJ_CFG_PRE_SAW,
119 DRXJ_CFG_AFE_GAIN,
120 DRXJ_CFG_SYMBOL_CLK_OFFSET,
121 DRXJ_CFG_ACCUM_CR_RS_CW_ERR,
122 DRXJ_CFG_FEC_MERS_SEQ_COUNT,
123 DRXJ_CFG_OOB_MISC,
124 DRXJ_CFG_SMART_ANT,
125 DRXJ_CFG_OOB_PRE_SAW,
126 DRXJ_CFG_VSB_MISC,
127 DRXJ_CFG_RESET_PACKET_ERR,
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300128
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300129 /* ATV (FM) */
130 DRXJ_CFG_ATV_OUTPUT, /* also for FM (SIF control) but not likely */
131 DRXJ_CFG_ATV_MISC,
132 DRXJ_CFG_ATV_EQU_COEF,
133 DRXJ_CFG_ATV_AGC_STATUS, /* also for FM ( IF,RF, audioAGC ) */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300134
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300135 DRXJ_CFG_MPEG_OUTPUT_MISC,
136 DRXJ_CFG_HW_CFG,
137 DRXJ_CFG_OOB_LO_POW,
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300138
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300139 DRXJ_CFG_MAX /* dummy, never to be used */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300140 } drxj_cfg_type_t, *pdrxj_cfg_type_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300141
142/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300143* /struct drxj_cfg_smart_ant_io_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300144* smart antenna i/o.
145*/
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300146 typedef enum drxj_cfg_smart_ant_io_t {
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300147 DRXJ_SMT_ANT_OUTPUT = 0,
148 DRXJ_SMT_ANT_INPUT
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300149 } drxj_cfg_smart_ant_io_t, *pdrxj_cfg_smart_ant_io_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300150
151/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300152* /struct drxj_cfg_smart_ant_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300153* Set smart antenna.
154*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300155 typedef struct {
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300156 drxj_cfg_smart_ant_io_t io;
157 u16 ctrl_data;
158 } drxj_cfg_smart_ant_t, *p_drxj_cfg_smart_ant_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300159
160/**
161* /struct DRXJAGCSTATUS_t
162* AGC status information from the DRXJ-IQM-AF.
163*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300164 typedef struct {
Mauro Carvalho Chehab43a431e2012-03-20 00:49:45 -0300165 u16 IFAGC;
166 u16 RFAGC;
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300167 u16 digital_agc;
168 } drxj_agc_status_t, *pdrxj_agc_status_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300169
170/* DRXJ_CFG_AGC_RF, DRXJ_CFG_AGC_IF */
171
172/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300173* /struct drxj_agc_ctrl_mode_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300174* Available AGCs modes in the DRXJ.
175*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300176 typedef enum {
177 DRX_AGC_CTRL_AUTO = 0,
178 DRX_AGC_CTRL_USER,
179 DRX_AGC_CTRL_OFF
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300180 } drxj_agc_ctrl_mode_t, *pdrxj_agc_ctrl_mode_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300181
182/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300183* /struct drxj_cfg_agc_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300184* Generic interface for all AGCs present on the DRXJ.
185*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300186 typedef struct {
Mauro Carvalho Chehab61263c72012-03-20 01:18:02 -0300187 enum drx_standard standard; /* standard for which these settings apply */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300188 drxj_agc_ctrl_mode_t ctrl_mode; /* off, user, auto */
189 u16 output_level; /* range dependent on AGC */
190 u16 min_output_level; /* range dependent on AGC */
191 u16 max_output_level; /* range dependent on AGC */
Mauro Carvalho Chehab43a431e2012-03-20 00:49:45 -0300192 u16 speed; /* range dependent on AGC */
193 u16 top; /* rf-agc take over point */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300194 u16 cut_off_current; /* rf-agc is accelerated if output current
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300195 is below cut-off current */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300196 } drxj_cfg_agc_t, *p_drxj_cfg_agc_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300197
198/* DRXJ_CFG_PRE_SAW */
199
200/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300201* /struct drxj_cfg_pre_saw_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300202* Interface to configure pre SAW sense.
203*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300204 typedef struct {
Mauro Carvalho Chehab61263c72012-03-20 01:18:02 -0300205 enum drx_standard standard; /* standard to which these settings apply */
Mauro Carvalho Chehab43a431e2012-03-20 00:49:45 -0300206 u16 reference; /* pre SAW reference value, range 0 .. 31 */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300207 bool use_pre_saw; /* true algorithms must use pre SAW sense */
208 } drxj_cfg_pre_saw_t, *p_drxj_cfg_pre_saw_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300209
210/* DRXJ_CFG_AFE_GAIN */
211
212/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300213* /struct drxj_cfg_afe_gain_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300214* Interface to configure gain of AFE (LNA + PGA).
215*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300216 typedef struct {
Mauro Carvalho Chehab61263c72012-03-20 01:18:02 -0300217 enum drx_standard standard; /* standard to which these settings apply */
Mauro Carvalho Chehab43a431e2012-03-20 00:49:45 -0300218 u16 gain; /* gain in 0.1 dB steps, DRXJ range 140 .. 335 */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300219 } drxj_cfg_afe_gain_t, *p_drxj_cfg_afe_gain_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300220
221/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300222* /struct DRXJrs_errors_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300223* Available failure information in DRXJ_FEC_RS.
224*
225* Container for errors that are received in the most recently finished measurment period
226*
227*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300228 typedef struct {
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300229 u16 nr_bit_errors;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300230 /**< no of pre RS bit errors */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300231 u16 nr_symbol_errors;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300232 /**< no of pre RS symbol errors */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300233 u16 nr_packet_errors;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300234 /**< no of pre RS packet errors */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300235 u16 nr_failures;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300236 /**< no of post RS failures to decode */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300237 u16 nr_snc_par_fail_count;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300238 /**< no of post RS bit erros */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300239 } DRXJrs_errors_t, *p_drxjrs_errors_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300240
241/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300242* /struct drxj_cfg_vsb_misc_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300243* symbol error rate
244*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300245 typedef struct {
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300246 u32 symb_error;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300247 /**< symbol error rate sps */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300248 } drxj_cfg_vsb_misc_t, *p_drxj_cfg_vsb_misc_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300249
250/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300251* /enum drxj_mpeg_output_clock_rate_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300252* Mpeg output clock rate.
253*
254*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300255 typedef enum {
256 DRXJ_MPEG_START_WIDTH_1CLKCYC,
257 DRXJ_MPEG_START_WIDTH_8CLKCYC
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300258 } drxj_mpeg_start_width_t, *pdrxj_mpeg_start_width_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300259
260/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300261* /enum drxj_mpeg_output_clock_rate_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300262* Mpeg output clock rate.
263*
264*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300265 typedef enum {
266 DRXJ_MPEGOUTPUT_CLOCK_RATE_AUTO,
267 DRXJ_MPEGOUTPUT_CLOCK_RATE_75973K,
268 DRXJ_MPEGOUTPUT_CLOCK_RATE_50625K,
269 DRXJ_MPEGOUTPUT_CLOCK_RATE_37968K,
270 DRXJ_MPEGOUTPUT_CLOCK_RATE_30375K,
271 DRXJ_MPEGOUTPUT_CLOCK_RATE_25313K,
272 DRXJ_MPEGOUTPUT_CLOCK_RATE_21696K
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300273 } drxj_mpeg_output_clock_rate_t, *pdrxj_mpeg_output_clock_rate_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300274
275/**
276* /struct DRXJCfgMisc_t
277* Change TEI bit of MPEG output
278* reverse MPEG output bit order
279* set MPEG output clock rate
280*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300281 typedef struct {
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300282 bool disable_tei_handling; /**< if true pass (not change) TEI bit */
283 bool bit_reverse_mpeg_outout; /**< if true, parallel: msb on MD0; serial: lsb out first */
284 drxj_mpeg_output_clock_rate_t mpeg_output_clock_rate;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300285 /**< set MPEG output clock rate that overwirtes the derived one from symbol rate */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300286 drxj_mpeg_start_width_t mpeg_start_width; /**< set MPEG output start width */
287 } drxj_cfg_mpeg_output_misc_t, *p_drxj_cfg_mpeg_output_misc_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300288
289/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300290* /enum drxj_xtal_freq_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300291* Supported external crystal reference frequency.
292*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300293 typedef enum {
294 DRXJ_XTAL_FREQ_RSVD,
295 DRXJ_XTAL_FREQ_27MHZ,
296 DRXJ_XTAL_FREQ_20P25MHZ,
297 DRXJ_XTAL_FREQ_4MHZ
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300298 } drxj_xtal_freq_t, *pdrxj_xtal_freq_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300299
300/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300301* /enum drxj_xtal_freq_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300302* Supported external crystal reference frequency.
303*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300304 typedef enum {
305 DRXJ_I2C_SPEED_400KBPS,
306 DRXJ_I2C_SPEED_100KBPS
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300307 } drxji2c_speed_t, *pdrxji2c_speed_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300308
309/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300310* /struct drxj_cfg_hw_cfg_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300311* Get hw configuration, such as crystal reference frequency, I2C speed, etc...
312*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300313 typedef struct {
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300314 drxj_xtal_freq_t xtal_freq;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300315 /**< crystal reference frequency */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300316 drxji2c_speed_t i2c_speed;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300317 /**< 100 or 400 kbps */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300318 } drxj_cfg_hw_cfg_t, *p_drxj_cfg_hw_cfg_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300319
320/*
321 * DRXJ_CFG_ATV_MISC
322 */
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300323 typedef struct {
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300324 s16 peak_filter; /* -8 .. 15 */
325 u16 noise_filter; /* 0 .. 15 */
326 } drxj_cfg_atv_misc_t, *p_drxj_cfg_atv_misc_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300327
328/*
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300329 * drxj_cfg_oob_misc_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300330 */
331#define DRXJ_OOB_STATE_RESET 0x0
332#define DRXJ_OOB_STATE_AGN_HUNT 0x1
333#define DRXJ_OOB_STATE_DGN_HUNT 0x2
334#define DRXJ_OOB_STATE_AGC_HUNT 0x3
335#define DRXJ_OOB_STATE_FRQ_HUNT 0x4
336#define DRXJ_OOB_STATE_PHA_HUNT 0x8
337#define DRXJ_OOB_STATE_TIM_HUNT 0x10
338#define DRXJ_OOB_STATE_EQU_HUNT 0x20
339#define DRXJ_OOB_STATE_EQT_HUNT 0x30
340#define DRXJ_OOB_STATE_SYNC 0x40
341
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300342 typedef struct {
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300343 drxj_agc_status_t agc;
344 bool eq_lock;
345 bool sym_timing_lock;
346 bool phase_lock;
347 bool freq_lock;
348 bool dig_gain_lock;
349 bool ana_gain_lock;
Mauro Carvalho Chehab43a431e2012-03-20 00:49:45 -0300350 u8 state;
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300351 } drxj_cfg_oob_misc_t, *p_drxj_cfg_oob_misc_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300352
353/*
354 * Index of in array of coef
355 */
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300356 typedef enum {
357 DRXJ_OOB_LO_POW_MINUS0DB = 0,
358 DRXJ_OOB_LO_POW_MINUS5DB,
359 DRXJ_OOB_LO_POW_MINUS10DB,
360 DRXJ_OOB_LO_POW_MINUS15DB,
361 DRXJ_OOB_LO_POW_MAX
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300362 } drxj_cfg_oob_lo_power_t, *p_drxj_cfg_oob_lo_power_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300363
364/*
365 * DRXJ_CFG_ATV_EQU_COEF
366 */
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300367 typedef struct {
Mauro Carvalho Chehab43a431e2012-03-20 00:49:45 -0300368 s16 coef0; /* -256 .. 255 */
369 s16 coef1; /* -256 .. 255 */
370 s16 coef2; /* -256 .. 255 */
371 s16 coef3; /* -256 .. 255 */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300372 } drxj_cfg_atv_equ_coef_t, *p_drxj_cfg_atv_equ_coef_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300373
374/*
375 * Index of in array of coef
376 */
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300377 typedef enum {
378 DRXJ_COEF_IDX_MN = 0,
379 DRXJ_COEF_IDX_FM,
380 DRXJ_COEF_IDX_L,
381 DRXJ_COEF_IDX_LP,
382 DRXJ_COEF_IDX_BG,
383 DRXJ_COEF_IDX_DK,
384 DRXJ_COEF_IDX_I,
385 DRXJ_COEF_IDX_MAX
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300386 } drxj_coef_array_index_t, *pdrxj_coef_array_index_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300387
388/*
389 * DRXJ_CFG_ATV_OUTPUT
390 */
391
392/**
393* /enum DRXJAttenuation_t
394* Attenuation setting for SIF AGC.
395*
396*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300397 typedef enum {
398 DRXJ_SIF_ATTENUATION_0DB,
399 DRXJ_SIF_ATTENUATION_3DB,
400 DRXJ_SIF_ATTENUATION_6DB,
401 DRXJ_SIF_ATTENUATION_9DB
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300402 } drxjsif_attenuation_t, *pdrxjsif_attenuation_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300403
404/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300405* /struct drxj_cfg_atv_output_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300406* SIF attenuation setting.
407*
408*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300409 typedef struct {
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300410 bool enable_cvbs_output; /* true= enabled */
411 bool enable_sif_output; /* true= enabled */
412 drxjsif_attenuation_t sif_attenuation;
413 } drxj_cfg_atv_output_t, *p_drxj_cfg_atv_output_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300414
415/*
416 DRXJ_CFG_ATV_AGC_STATUS (get only)
417*/
418/* TODO : AFE interface not yet finished, subject to change */
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300419 typedef struct {
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300420 u16 rf_agc_gain; /* 0 .. 877 uA */
421 u16 if_agc_gain; /* 0 .. 877 uA */
422 s16 video_agc_gain; /* -75 .. 1972 in 0.1 dB steps */
423 s16 audio_agc_gain; /* -4 .. 1020 in 0.1 dB steps */
424 u16 rf_agc_loop_gain; /* 0 .. 7 */
425 u16 if_agc_loop_gain; /* 0 .. 7 */
426 u16 video_agc_loop_gain; /* 0 .. 7 */
427 } drxj_cfg_atv_agc_status_t, *p_drxj_cfg_atv_agc_status_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300428
429/*============================================================================*/
430/*============================================================================*/
431/*== CTRL related data structures ============================================*/
432/*============================================================================*/
433/*============================================================================*/
434
435/* NONE */
436
437/*============================================================================*/
438/*============================================================================*/
439
440/*========================================*/
441/**
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300442* /struct drxj_data_t
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300443* DRXJ specific attributes.
444*
445* Global data container for DRXJ specific data.
446*
447*/
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300448 typedef struct {
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300449 /* device capabilties (determined during drx_open()) */
450 bool has_lna; /**< true if LNA (aka PGA) present */
451 bool has_oob; /**< true if OOB supported */
452 bool has_ntsc; /**< true if NTSC supported */
453 bool has_btsc; /**< true if BTSC supported */
454 bool has_smatx; /**< true if mat_tx is available */
455 bool has_smarx; /**< true if mat_rx is available */
456 bool has_gpio; /**< true if GPIO is available */
457 bool has_irqn; /**< true if IRQN is available */
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300458 /* A1/A2/A... */
Mauro Carvalho Chehab43a431e2012-03-20 00:49:45 -0300459 u8 mfx; /**< metal fix */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300460
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300461 /* tuner settings */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300462 bool mirror_freq_spectOOB;/**< tuner inversion (true = tuner mirrors the signal */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300463
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300464 /* standard/channel settings */
Mauro Carvalho Chehab61263c72012-03-20 01:18:02 -0300465 enum drx_standard standard; /**< current standard information */
466 enum drx_modulation constellation;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300467 /**< current constellation */
Mauro Carvalho Chehab73f70652012-03-20 00:59:03 -0300468 s32 frequency; /**< center signal frequency in KHz */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300469 enum drx_bandwidth curr_bandwidth;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300470 /**< current channel bandwidth */
Mauro Carvalho Chehab61263c72012-03-20 01:18:02 -0300471 enum drx_mirror mirror; /**< current channel mirror */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300472
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300473 /* signal quality information */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300474 u32 fec_bits_desired; /**< BER accounting period */
475 u16 fec_vd_plen; /**< no of trellis symbols: VD SER measurement period */
476 u16 qam_vd_prescale; /**< Viterbi Measurement Prescale */
477 u16 qam_vd_period; /**< Viterbi Measurement period */
478 u16 fec_rs_plen; /**< defines RS BER measurement period */
479 u16 fec_rs_prescale; /**< ReedSolomon Measurement Prescale */
480 u16 fec_rs_period; /**< ReedSolomon Measurement period */
481 bool reset_pkt_err_acc; /**< Set a flag to reset accumulated packet error */
482 u16 pkt_errAccStart; /**< Set a flag to reset accumulated packet error */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300483
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300484 /* HI configuration */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300485 u16 hi_cfg_timing_div; /**< HI Configure() parameter 2 */
486 u16 hi_cfg_bridge_delay; /**< HI Configure() parameter 3 */
487 u16 hi_cfg_wake_up_key; /**< HI Configure() parameter 4 */
488 u16 hi_cfg_ctrl; /**< HI Configure() parameter 5 */
489 u16 hi_cfg_transmit; /**< HI Configure() parameter 6 */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300490
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300491 /* UIO configuartion */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300492 drxuio_mode_t uio_sma_rx_mode;/**< current mode of SmaRx pin */
493 drxuio_mode_t uio_sma_tx_mode;/**< current mode of SmaTx pin */
494 drxuio_mode_t uio_gpio_mode; /**< current mode of ASEL pin */
495 drxuio_mode_t uio_irqn_mode; /**< current mode of IRQN pin */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300496
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300497 /* IQM fs frequecy shift and inversion */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300498 u32 iqm_fs_rate_ofs; /**< frequency shifter setting after setchannel */
499 bool pos_image; /**< Ture: positive image */
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300500 /* IQM RC frequecy shift */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300501 u32 iqm_rc_rate_ofs; /**< frequency shifter setting after setchannel */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300502
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300503 /* ATV configuartion */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300504 u32 atv_cfg_changed_flags; /**< flag: flags cfg changes */
505 s16 atv_top_equ0[DRXJ_COEF_IDX_MAX]; /**< shadow of ATV_TOP_EQU0__A */
506 s16 atv_top_equ1[DRXJ_COEF_IDX_MAX]; /**< shadow of ATV_TOP_EQU1__A */
507 s16 atv_top_equ2[DRXJ_COEF_IDX_MAX]; /**< shadow of ATV_TOP_EQU2__A */
508 s16 atv_top_equ3[DRXJ_COEF_IDX_MAX]; /**< shadow of ATV_TOP_EQU3__A */
509 bool phase_correction_bypass;/**< flag: true=bypass */
510 s16 atv_top_vid_peak; /**< shadow of ATV_TOP_VID_PEAK__A */
511 u16 atv_top_noise_th; /**< shadow of ATV_TOP_NOISE_TH__A */
512 bool enable_cvbs_output; /**< flag CVBS ouput enable */
513 bool enable_sif_output; /**< flag SIF ouput enable */
514 drxjsif_attenuation_t sif_attenuation;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300515 /**< current SIF att setting */
516 /* Agc configuration for QAM and VSB */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300517 drxj_cfg_agc_t qam_rf_agc_cfg; /**< qam RF AGC config */
518 drxj_cfg_agc_t qam_if_agc_cfg; /**< qam IF AGC config */
519 drxj_cfg_agc_t vsb_rf_agc_cfg; /**< vsb RF AGC config */
520 drxj_cfg_agc_t vsb_if_agc_cfg; /**< vsb IF AGC config */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300521
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300522 /* PGA gain configuration for QAM and VSB */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300523 u16 qam_pga_cfg; /**< qam PGA config */
524 u16 vsb_pga_cfg; /**< vsb PGA config */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300525
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300526 /* Pre SAW configuration for QAM and VSB */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300527 drxj_cfg_pre_saw_t qam_pre_saw_cfg;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300528 /**< qam pre SAW config */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300529 drxj_cfg_pre_saw_t vsb_pre_saw_cfg;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300530 /**< qam pre SAW config */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300531
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300532 /* Version information */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300533 char v_text[2][12]; /**< allocated text versions */
534 drx_version_t v_version[2]; /**< allocated versions structs */
535 drx_version_list_t v_list_elements[2];
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300536 /**< allocated version list */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300537
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300538 /* smart antenna configuration */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300539 bool smart_ant_inverted;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300540
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300541 /* Tracking filter setting for OOB */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300542 u16 oob_trk_filter_cfg[8];
543 bool oob_power_on;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300544
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300545 /* MPEG static bitrate setting */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300546 u32 mpeg_ts_static_bitrate; /**< bitrate static MPEG output */
547 bool disable_te_ihandling; /**< MPEG TS TEI handling */
548 bool bit_reverse_mpeg_outout;/**< MPEG output bit order */
549 drxj_mpeg_output_clock_rate_t mpeg_output_clock_rate;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300550 /**< MPEG output clock rate */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300551 drxj_mpeg_start_width_t mpeg_start_width;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300552 /**< MPEG Start width */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300553
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300554 /* Pre SAW & Agc configuration for ATV */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300555 drxj_cfg_pre_saw_t atv_pre_saw_cfg;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300556 /**< atv pre SAW config */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300557 drxj_cfg_agc_t atv_rf_agc_cfg; /**< atv RF AGC config */
558 drxj_cfg_agc_t atv_if_agc_cfg; /**< atv IF AGC config */
559 u16 atv_pga_cfg; /**< atv pga config */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300560
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300561 u32 curr_symbol_rate;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300562
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300563 /* pin-safe mode */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300564 bool pdr_safe_mode; /**< PDR safe mode activated */
565 u16 pdr_safe_restore_val_gpio;
566 u16 pdr_safe_restore_val_v_sync;
567 u16 pdr_safe_restore_val_sma_rx;
568 u16 pdr_safe_restore_val_sma_tx;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300569
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300570 /* OOB pre-saw value */
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300571 u16 oob_pre_saw;
572 drxj_cfg_oob_lo_power_t oob_lo_pow;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300573
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300574 drx_aud_data_t aud_data;
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300575 /**< audio storage */
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300576
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300577 } drxj_data_t, *pdrxj_data_t;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300578
579/*-------------------------------------------------------------------------
580Access MACROS
581-------------------------------------------------------------------------*/
582/**
583* \brief Compilable references to attributes
584* \param d pointer to demod instance
585*
586* Used as main reference to an attribute field.
587* Can be used by both macro implementation and function implementation.
588* These macros are defined to avoid duplication of code in macro and function
589* definitions that handle access of demod common or extended attributes.
590*
591*/
592
Mauro Carvalho Chehab7ef66752014-01-16 11:08:15 -0300593#define DRXJ_ATTR_BTSC_DETECT(d) \
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300594 (((pdrxj_data_t)(d)->my_ext_attr)->aud_data.btsc_detect)
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300595
596/**
597* \brief Actual access macros
598* \param d pointer to demod instance
599* \param x value to set or to get
600*
601* SET macros must be used to set the value of an attribute.
602* GET macros must be used to retrieve the value of an attribute.
603* Depending on the value of DRX_USE_ACCESS_FUNCTIONS the macro's will be
604* substituted by "direct-access-inline-code" or a function call.
605*
606*/
Mauro Carvalho Chehab7ef66752014-01-16 11:08:15 -0300607#define DRXJ_GET_BTSC_DETECT(d, x) \
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300608 do { \
Mauro Carvalho Chehab7ef66752014-01-16 11:08:15 -0300609 (x) = DRXJ_ATTR_BTSC_DETECT((d); \
610 } while (0)
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300611
Mauro Carvalho Chehab7ef66752014-01-16 11:08:15 -0300612#define DRXJ_SET_BTSC_DETECT(d, x) \
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300613 do { \
Mauro Carvalho Chehab7ef66752014-01-16 11:08:15 -0300614 DRXJ_ATTR_BTSC_DETECT(d) = (x); \
615 } while (0)
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300616
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300617/*-------------------------------------------------------------------------
618DEFINES
619-------------------------------------------------------------------------*/
620
621/**
622* \def DRXJ_NTSC_CARRIER_FREQ_OFFSET
623* \brief Offset from picture carrier to centre frequency in kHz, in RF domain
624*
625* For NTSC standard.
626* NTSC channels are listed by their picture carrier frequency (Fpc).
627* The function DRX_CTRL_SET_CHANNEL requires the centre frequency as input.
628* In case the tuner module is not used the DRX-J requires that the tuner is
629* tuned to the centre frequency of the channel:
630*
631* Fcentre = Fpc + DRXJ_NTSC_CARRIER_FREQ_OFFSET
632*
633*/
Mauro Carvalho Chehab73f70652012-03-20 00:59:03 -0300634#define DRXJ_NTSC_CARRIER_FREQ_OFFSET ((s32)(1750))
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300635
636/**
637* \def DRXJ_PAL_SECAM_BG_CARRIER_FREQ_OFFSET
638* \brief Offset from picture carrier to centre frequency in kHz, in RF domain
639*
640* For PAL/SECAM - BG standard. This define is needed in case the tuner module
641* is NOT used. PAL/SECAM channels are listed by their picture carrier frequency (Fpc).
642* The DRX-J requires that the tuner is tuned to:
643* Fpc + DRXJ_PAL_SECAM_BG_CARRIER_FREQ_OFFSET
644*
645* In case the tuner module is used the drxdriver takes care of this.
646* In case the tuner module is NOT used the application programmer must take
647* care of this.
648*
649*/
Mauro Carvalho Chehab73f70652012-03-20 00:59:03 -0300650#define DRXJ_PAL_SECAM_BG_CARRIER_FREQ_OFFSET ((s32)(2375))
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300651
652/**
653* \def DRXJ_PAL_SECAM_DKIL_CARRIER_FREQ_OFFSET
654* \brief Offset from picture carrier to centre frequency in kHz, in RF domain
655*
656* For PAL/SECAM - DK, I, L standards. This define is needed in case the tuner module
657* is NOT used. PAL/SECAM channels are listed by their picture carrier frequency (Fpc).
658* The DRX-J requires that the tuner is tuned to:
659* Fpc + DRXJ_PAL_SECAM_DKIL_CARRIER_FREQ_OFFSET
660*
661* In case the tuner module is used the drxdriver takes care of this.
662* In case the tuner module is NOT used the application programmer must take
663* care of this.
664*
665*/
Mauro Carvalho Chehab73f70652012-03-20 00:59:03 -0300666#define DRXJ_PAL_SECAM_DKIL_CARRIER_FREQ_OFFSET ((s32)(2775))
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300667
668/**
669* \def DRXJ_PAL_SECAM_LP_CARRIER_FREQ_OFFSET
670* \brief Offset from picture carrier to centre frequency in kHz, in RF domain
671*
672* For PAL/SECAM - LP standard. This define is needed in case the tuner module
673* is NOT used. PAL/SECAM channels are listed by their picture carrier frequency (Fpc).
674* The DRX-J requires that the tuner is tuned to:
675* Fpc + DRXJ_PAL_SECAM_LP_CARRIER_FREQ_OFFSET
676*
677* In case the tuner module is used the drxdriver takes care of this.
678* In case the tuner module is NOT used the application programmer must take
679* care of this.
680*/
Mauro Carvalho Chehab73f70652012-03-20 00:59:03 -0300681#define DRXJ_PAL_SECAM_LP_CARRIER_FREQ_OFFSET ((s32)(-3255))
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300682
683/**
684* \def DRXJ_FM_CARRIER_FREQ_OFFSET
685* \brief Offset from sound carrier to centre frequency in kHz, in RF domain
686*
687* For FM standard.
688* FM channels are listed by their sound carrier frequency (Fsc).
689* The function DRX_CTRL_SET_CHANNEL requires the Ffm frequency (see below) as
690* input.
691* In case the tuner module is not used the DRX-J requires that the tuner is
692* tuned to the Ffm frequency of the channel.
693*
694* Ffm = Fsc + DRXJ_FM_CARRIER_FREQ_OFFSET
695*
696*/
Mauro Carvalho Chehab73f70652012-03-20 00:59:03 -0300697#define DRXJ_FM_CARRIER_FREQ_OFFSET ((s32)(-3000))
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300698
699/* Revision types -------------------------------------------------------*/
700
701#define DRXJ_TYPE_ID (0x3946000DUL)
702
703/* Macros ---------------------------------------------------------------*/
704
705/* Convert OOB lock status to string */
706#define DRXJ_STR_OOB_LOCKSTATUS(x) ( \
Mauro Carvalho Chehab7ef66752014-01-16 11:08:15 -0300707 (x == DRX_NEVER_LOCK) ? "Never" : \
708 (x == DRX_NOT_LOCKED) ? "No" : \
709 (x == DRX_LOCKED) ? "Locked" : \
710 (x == DRX_LOCK_STATE_1) ? "AGC lock" : \
711 (x == DRX_LOCK_STATE_2) ? "sync lock" : \
712 "(Invalid)")
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300713
714/*-------------------------------------------------------------------------
715ENUM
716-------------------------------------------------------------------------*/
717
718/*-------------------------------------------------------------------------
719STRUCTS
720-------------------------------------------------------------------------*/
721
722/*-------------------------------------------------------------------------
723Exported FUNCTIONS
724-------------------------------------------------------------------------*/
725
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300726 extern int drxj_open(pdrx_demod_instance_t demod);
727 extern int drxj_close(pdrx_demod_instance_t demod);
728 extern int drxj_ctrl(pdrx_demod_instance_t demod,
729 u32 ctrl, void *ctrl_data);
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300730
731/*-------------------------------------------------------------------------
732Exported GLOBAL VARIABLES
733-------------------------------------------------------------------------*/
Mauro Carvalho Chehab57afe2f2014-01-16 11:24:57 -0300734 extern drx_access_func_t drx_dap_drxj_funct_g;
735 extern drx_demod_func_t drxj_functions_g;
736 extern drxj_data_t drxj_data_g;
737 extern struct i2c_device_addr drxj_default_addr_g;
738 extern drx_common_attr_t drxj_default_comm_attr_g;
739 extern drx_demod_instance_t drxj_default_demod_g;
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300740
741/*-------------------------------------------------------------------------
742THE END
743-------------------------------------------------------------------------*/
744#ifdef __cplusplus
745}
746#endif
Mauro Carvalho Chehab443f18d2012-03-20 00:00:42 -0300747#endif /* __DRXJ_H__ */