DVBCore  1.0
Open source DVB engine
platform/inc/stbhwtun.h
Go to the documentation of this file.
00001 /*******************************************************************************
00002  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
00003  * Copyright © 2004 Ocean Blue Software Ltd
00004  *
00005  * This file is part of a DTVKit Software Component
00006  * You are permitted to copy, modify or distribute this file subject to the terms
00007  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
00008  * 
00009  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
00010  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
00011  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
00012  * 
00013  * If you or your organisation is not a member of DTVKit then you have access
00014  * to this source code outside of the terms of the licence agreement
00015  * and you are expected to delete this and any associated files immediately.
00016  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
00017  *******************************************************************************/
00024 // pre-processor mechanism so multiple inclusions don't cause compilation error
00025 
00026 #ifndef _STBHWTUN_H
00027 
00028 #define _STBHWTUN_H
00029 
00030 //---#includes for this file---------------------------------------------------
00031 #include "stbhwc.h"
00032 
00033 //---Constant and macro definitions for public use-----------------------------
00034 #define SYMBOL_RATE_AUTO         0
00035 
00036 //---Enumerations for public use-----------------------------------------------
00037 typedef enum e_stb_tune_system_type
00038 {
00039    TUNE_SYSTEM_TYPE_UNKNOWN = 0,
00040    TUNE_SYSTEM_TYPE_DVBT = 1,
00041    TUNE_SYSTEM_TYPE_DVBT2 = 2,
00042    TUNE_SYSTEM_TYPE_DVBS = 3,
00043    TUNE_SYSTEM_TYPE_DVBS2 = 4,
00044    TUNE_SYSTEM_TYPE_DVBC = 5
00045 } E_STB_TUNE_SYSTEM_TYPE;
00046 
00047 
00048 typedef enum e_stb_tune_signal_type
00049 {
00050    TUNE_SIGNAL_NONE = 0,
00051    TUNE_SIGNAL_QPSK = 1,
00052    TUNE_SIGNAL_COFDM = 2,
00053    TUNE_SIGNAL_QAM = 3,
00054    TUNE_SIGNAL_ANALOG = 4
00055 } E_STB_TUNE_SIGNAL_TYPE;
00056 
00057 /* Terrestrial */
00058 typedef enum e_stb_tune_tmode
00059 {
00060    TUNE_MODE_COFDM_1K = 0,
00061    TUNE_MODE_COFDM_2K = 1,
00062    TUNE_MODE_COFDM_4K = 2,
00063    TUNE_MODE_COFDM_8K = 3,
00064    TUNE_MODE_COFDM_16K = 4,
00065    TUNE_MODE_COFDM_32K = 5,
00066    TUNE_MODE_COFDM_UNDEFINED = 255
00067 } E_STB_TUNE_TMODE;
00068 
00069 typedef enum e_stb_tune_tbwidth
00070 {
00071    TUNE_TBWIDTH_8MHZ = 0,
00072    TUNE_TBWIDTH_7MHZ = 1,
00073    TUNE_TBWIDTH_6MHZ = 2,
00074    TUNE_TBWIDTH_5MHZ = 3
00075 } E_STB_TUNE_TBWIDTH;
00076 
00077 typedef enum e_stb_tune_tconst
00078 {
00079    TUNE_TCONST_QPSK = 0,
00080    TUNE_TCONST_QAM16 = 1,
00081    TUNE_TCONST_QAM64 = 2,
00082    TUNE_TCONST_QAM128 = 3,
00083    TUNE_TCONST_QAM256 = 4,
00084    TUNE_TCONST_UNDEFINED = 255
00085 } E_STB_TUNE_TCONST;
00086 
00087 typedef enum E_STB_TUNE_THIERARCHY
00088 {
00089    TUNE_THIERARCHY_NONE = 0,
00090    TUNE_THIERARCHY_1 = 1,
00091    TUNE_THIERARCHY_2 = 2,
00092    TUNE_THIERARCHY_4 = 4,
00093    TUNE_THIERARCHY_8 = 8,
00094    TUNE_THIERARCHY_16 = 16,
00095    TUNE_THIERARCHY_32 = 32,
00096    TUNE_THIERARCHY_64 = 64,
00097    TUNE_THIERARCHY_128 = 128,
00098    TUNE_THIERARCHY_UNDEFINED = 255
00099 } E_STB_TUNE_THIERARCHY;
00100 
00101 typedef enum e_stb_tune_tcoderate
00102 {
00103    TUNE_TCODERATE_1_2 = 0,
00104    TUNE_TCODERATE_2_3 = 1,
00105    TUNE_TCODERATE_3_4 = 2,
00106    TUNE_TCODERATE_5_6 = 3,
00107    TUNE_TCODERATE_7_8 = 4,
00108    TUNE_TCODERATE_UNDEFINED = 255
00109 } E_STB_TUNE_TCODERATE;
00110 
00111 typedef enum e_stb_tune_tguardint
00112 {
00113    TUNE_TGUARDINT_1_32 = 0,
00114    TUNE_TGUARDINT_1_16 = 1,
00115    TUNE_TGUARDINT_1_8 = 2,
00116    TUNE_TGUARDINT_1_4 = 3,
00117    TUNE_TGUARDINT_1_128 = 4,
00118    TUNE_TGUARDINT_19_128 = 5,
00119    TUNE_TGUARDINT_19_256 = 6,
00120    TUNE_TGUARDINT_UNDEFINED = 255
00121 } E_STB_TUNE_TGUARDINT;
00122 
00123 /* Cable */
00124 typedef enum  e_stb_tune_cmode
00125 {
00126    TUNE_MODE_QAM_4 = 0,
00127    TUNE_MODE_QAM_8 = 1,
00128    TUNE_MODE_QAM_16 = 2,
00129    TUNE_MODE_QAM_32 = 3,
00130    TUNE_MODE_QAM_64 = 4,
00131    TUNE_MODE_QAM_128 = 5,
00132    TUNE_MODE_QAM_256 = 6,
00133    TUNE_MODE_QAM_UNDEFINED = 255
00134 } E_STB_TUNE_CMODE;
00135 
00136 
00137 /* Satellite */
00138 typedef enum
00139 {
00140    TUNE_MOD_AUTO,
00141    TUNE_MOD_QPSK,   /* quartenary phase shift key */
00142    TUNE_MOD_8PSK,   /* octenary phase shift key */
00143    TUNE_MOD_16QAM   /* Not valid for DVB-S2 */
00144 } E_STB_TUNE_MODULATION;
00145 
00146 typedef enum e_stb_tune_lnb_voltage
00147 {
00148    LNB_VOLTAGE_OFF = 0,
00149    LNB_VOLTAGE_14V = 1,
00150    LNB_VOLTAGE_18V = 2
00151 } E_STB_TUNE_LNB_VOLTAGE;
00152 
00153 typedef enum e_stb_tune_fec
00154 {
00155    TUNE_FEC_AUTOMATIC = 0,
00156    TUNE_FEC_1_2 = 1,
00157    TUNE_FEC_2_3 = 2,
00158    TUNE_FEC_3_4 = 3,
00159    TUNE_FEC_5_6 = 4,
00160    TUNE_FEC_7_8 = 5,
00161    TUNE_FEC_1_4 = 6,
00162    TUNE_FEC_1_3 = 7,
00163    TUNE_FEC_2_5 = 8,
00164    TUNE_FEC_8_9 = 9,
00165    TUNE_FEC_9_10 = 10
00166 } E_STB_TUNE_FEC;
00167 
00168 
00169 /* Analog */
00170 typedef enum e_stb_tune_analog_video_type
00171 {
00172    TUNE_ANLG_VIDEO_PAL_I = 0,
00173    TUNE_ANLG_VIDEO_PAL_B = 1,
00174    TUNE_ANLG_VIDEO_PAL_G = 2,
00175    TUNE_ANLG_VIDEO_PAL_D = 3,
00176    TUNE_ANLG_VIDEO_PAL_K = 4,
00177    TUNE_ANLG_VIDEO_PAL_L = 5,
00178    TUNE_ANLG_VIDEO_PAL_LDASH = 6
00179 } E_STB_TUNE_ANALOG_VIDEO_TYPE;
00180 
00181 
00182 //---Global type defs for public use-------------------------------------------
00183 
00184 //---Global Function prototypes for public use---------------------------------
00185 
00190 void STB_TuneInitialise(U8BIT paths);
00191 
00204 void STB_TuneSetSystemType(U8BIT path, E_STB_TUNE_SYSTEM_TYPE type);
00205 
00212 E_STB_TUNE_SYSTEM_TYPE STB_TuneGetSystemType(U8BIT path);
00213 
00219 void STB_TuneAutoRelock(U8BIT path, BOOLEAN state);
00220 
00226 E_STB_TUNE_SIGNAL_TYPE STB_TuneGetSignalType(U8BIT path);
00227 
00233 U32BIT STB_TuneGetMinTunerFreqKHz(U8BIT path);
00234 
00240 U32BIT STB_TuneGetMaxTunerFreqKHz(U8BIT path);
00241 
00255 void STB_TuneStartTuner(U8BIT path, U32BIT freq, U32BIT srate, E_STB_TUNE_FEC fec,
00256    S8BIT freq_off, E_STB_TUNE_TMODE tmode, E_STB_TUNE_TBWIDTH tbwidth,
00257    E_STB_TUNE_CMODE cmode, E_STB_TUNE_ANALOG_VIDEO_TYPE anlg_vtype);
00258 
00263 void STB_TuneRestartTuner(U8BIT path);
00264 
00269 void STB_TuneStopTuner(U8BIT path);
00270 
00276 U8BIT STB_TuneGetSignalStrength(U8BIT path);
00277 
00283 U8BIT STB_TuneGetDataIntegrity(U8BIT path);
00284 
00290 U32BIT STB_TuneGetActualTerrFrequency(U8BIT path);
00291 
00297 S8BIT STB_TuneGetActualTerrFreqOffset(U8BIT path);
00298 
00304 E_STB_TUNE_TMODE STB_TuneGetActualTerrMode(U8BIT path);
00305 
00311 E_STB_TUNE_TBWIDTH STB_TuneGetActualTerrBwidth(U8BIT path);
00312 
00318 E_STB_TUNE_TCONST STB_TuneGetActualTerrConstellation(U8BIT path);
00319 
00325 E_STB_TUNE_THIERARCHY STB_TuneGetActualTerrHierarchy(U8BIT path);
00326 
00332 E_STB_TUNE_TCODERATE STB_TuneGetActualTerrLpCodeRate(U8BIT path);
00333 
00339 E_STB_TUNE_TCODERATE STB_TuneGetActualTerrHpCodeRate(U8BIT path);
00340 
00346 E_STB_TUNE_TGUARDINT STB_TuneGetActualTerrGuardInt(U8BIT path);
00347 
00353 U16BIT STB_TuneGetActualTerrCellId(U8BIT path);
00354 
00360 void STB_TuneSetPLP(U8BIT path, U8BIT plp);
00361 
00367 U8BIT STB_TuneGetPLP(U8BIT path);
00368 
00374 void STB_TuneActiveAerialPower(U8BIT path, BOOLEAN enabled);
00375 
00381 void STB_TuneSetLNBfrequencies(U8BIT path, U16BIT low_freq_mhz, U16BIT high_freq_mhz);
00382 
00388 void STB_TuneSetModulation(U8BIT path, E_STB_TUNE_MODULATION modulation);
00389 
00395 void STB_TuneSetLNBVoltage(U8BIT path, E_STB_TUNE_LNB_VOLTAGE voltage);
00396 
00402 void STB_TuneSet22kState(U8BIT path, BOOLEAN state);
00403 
00409 void STB_TuneSet12VSwitch(U8BIT path, BOOLEAN state);
00410 
00418 U8BIT STB_TuneGetDISEQCReply(U8BIT path, U8BIT *data, U32BIT timeout);
00419 
00426 void STB_TuneSendDISEQCMessage(U8BIT path, U8BIT *data, U8BIT size);
00427 
00433 void STB_TuneSetPulseLimitEast(U8BIT path, U16BIT count);
00434 
00440 void STB_TuneSetPulseLimitWest(U8BIT path, U16BIT count);
00441 
00442 void STB_TuneChangePulsePosition(U8BIT path, U16BIT count);
00443 
00449 U16BIT STB_TuneGetPulsePosition(U8BIT path);
00450 
00451 void STB_TuneAtPulsePosition(U8BIT path, U16BIT position);
00452 
00458 void STB_TuneChangeSkewPosition(U8BIT path, U16BIT count);
00459 
00466 U8BIT STB_TuneSatGetCarrierStrength(U8BIT path, U32BIT freq);
00467 
00473 U32BIT STB_TuneGetActualSymbolRate(U8BIT path);
00474 
00480 E_STB_TUNE_CMODE STB_TuneGetActualCableMode(U8BIT path);
00481 
00491 E_STB_TUNE_SYSTEM_TYPE STB_TuneGetSupportedSystemType(U8BIT path);
00492 
00493 #endif //  _STBHWTUN_H
00494 
 All Data Structures Files Functions Typedefs Defines