1 //<MStar Software> 2 //****************************************************************************** 3 // MStar Software 4 // Copyright (c) 2010 - 2012 MStar Semiconductor, Inc. All rights reserved. 5 // All software, firmware and related documentation herein ("MStar Software") are 6 // intellectual property of MStar Semiconductor, Inc. ("MStar") and protected by 7 // law, including, but not limited to, copyright law and international treaties. 8 // Any use, modification, reproduction, retransmission, or republication of all 9 // or part of MStar Software is expressly prohibited, unless prior written 10 // permission has been granted by MStar. 11 // 12 // By accessing, browsing and/or using MStar Software, you acknowledge that you 13 // have read, understood, and agree, to be bound by below terms ("Terms") and to 14 // comply with all applicable laws and regulations: 15 // 16 // 1. MStar shall retain any and all right, ownership and interest to MStar 17 // Software and any modification/derivatives thereof. 18 // No right, ownership, or interest to MStar Software and any 19 // modification/derivatives thereof is transferred to you under Terms. 20 // 21 // 2. You understand that MStar Software might include, incorporate or be 22 // supplied together with third party`s software and the use of MStar 23 // Software may require additional licenses from third parties. 24 // Therefore, you hereby agree it is your sole responsibility to separately 25 // obtain any and all third party right and license necessary for your use of 26 // such third party`s software. 27 // 28 // 3. MStar Software and any modification/derivatives thereof shall be deemed as 29 // MStar`s confidential information and you agree to keep MStar`s 30 // confidential information in strictest confidence and not disclose to any 31 // third party. 32 // 33 // 4. MStar Software is provided on an "AS IS" basis without warranties of any 34 // kind. Any warranties are hereby expressly disclaimed by MStar, including 35 // without limitation, any warranties of merchantability, non-infringement of 36 // intellectual property rights, fitness for a particular purpose, error free 37 // and in conformity with any international standard. You agree to waive any 38 // claim against MStar for any loss, damage, cost or expense that you may 39 // incur related to your use of MStar Software. 40 // In no event shall MStar be liable for any direct, indirect, incidental or 41 // consequential damages, including without limitation, lost of profit or 42 // revenues, lost or damage of data, and unauthorized system use. 43 // You agree that this Section 4 shall still apply without being affected 44 // even if MStar Software has been modified by MStar in accordance with your 45 // request or instruction for your use, except otherwise agreed by both 46 // parties in writing. 47 // 48 // 5. If requested, MStar may from time to time provide technical supports or 49 // services in relation with MStar Software to you for your use of 50 // MStar Software in conjunction with your or your customer`s product 51 // ("Services"). 52 // You understand and agree that, except otherwise agreed by both parties in 53 // writing, Services are provided on an "AS IS" basis and the warranty 54 // disclaimer set forth in Section 4 above shall apply. 55 // 56 // 6. Nothing contained herein shall be construed as by implication, estoppels 57 // or otherwise: 58 // (a) conferring any license or right to use MStar name, trademark, service 59 // mark, symbol or any other identification; 60 // (b) obligating MStar or any of its affiliates to furnish any person, 61 // including without limitation, you and your customers, any assistance 62 // of any kind whatsoever, or any information; or 63 // (c) conferring any license or right under any intellectual property right. 64 // 65 // 7. These terms shall be governed by and construed in accordance with the laws 66 // of Taiwan, R.O.C., excluding its conflict of law rules. 67 // Any and all dispute arising out hereof or related hereto shall be finally 68 // settled by arbitration referred to the Chinese Arbitration Association, 69 // Taipei in accordance with the ROC Arbitration Law and the Arbitration 70 // Rules of the Association by three (3) arbitrators appointed in accordance 71 // with the said Rules. 72 // The place of arbitration shall be in Taipei, Taiwan and the language shall 73 // be English. 74 // The arbitration award shall be final and binding to both parties. 75 // 76 //****************************************************************************** 77 //<MStar Software> 78 //////////////////////////////////////////////////////////////////////////////// 79 // 80 // Copyright (c) 20011-20013 MStar Semiconductor, Inc. 81 // All rights reserved. 82 // 83 // Unless otherwise stipulated in writing, any and all information contained 84 // herein regardless in any format shall remain the sole proprietary of 85 // MStar Semiconductor Inc. and be kept in strict confidence 86 // ("MStar Confidential Information") by the recipient. 87 // Any unauthorized act including without limitation unauthorized disclosure, 88 // copying, use, reproduction, sale, distribution, modification, disassembling, 89 // reverse engineering and compiling of the contents of MStar Confidential 90 // Information is unlawful and strictly prohibited. MStar hereby reserves the 91 // rights to any and all damages, losses, costs and expenses resulting therefrom. 92 // 93 //////////////////////////////////////////////////////////////////////////////// 94 95 //////////////////////////////////////////////////////////////////////////////////////////////////// 96 // file halTSO.h 97 // @brief TS I/O (TSO) HAL 98 // @author MStar Semiconductor,Inc. 99 //////////////////////////////////////////////////////////////////////////////////////////////////// 100 #ifndef __HAL_TSO_H__ 101 #define __HAL_TSO_H__ 102 103 #include "MsCommon.h" 104 105 #include "regTSO.h" 106 107 //-------------------------------------------------------------------------------------------------- 108 // Driver Compiler Option 109 //-------------------------------------------------------------------------------------------------- 110 111 //-------------------------------------------------------------------------------------------------- 112 // TSP Hardware Abstraction Layer 113 //-------------------------------------------------------------------------------------------------- 114 115 #define _TsoPid ((REG_Pid*)(REG_PIDFLT_BASE)) 116 117 //-------------------------------------------------------------------------------------------------- 118 // Macro of bit operations 119 //-------------------------------------------------------------------------------------------------- 120 121 122 //////////////////////////////////////////////// 123 // HAL API 124 //////////////////////////////////////////////// 125 126 // TSO in mux select 127 #define HAL_TSOIN_MUX_TS0 0x0000 128 #define HAL_TSOIN_MUX_TS1 0x0001 129 #define HAL_TSOIN_MUX_TS2 0x0002 130 #define HAL_TSOIN_MUX_TS3 0xFFFF 131 #define HAL_TSOIN_MUX_TS4 0xFFFF 132 #define HAL_TSOIN_MUX_TS5 0xFFFF 133 #define HAL_TSOIN_MUX_TSCB 0xFFFF //not supported 134 #define HAL_TSOIN_MUX_TSDEMOD0 0x0007 135 #define HAL_TSOIN_MUX_TSDEMOD1 0xFFFF //not supported 136 #define HAL_TSOIN_MUX_MEM 0x0008 137 #define HAL_TSOIN_MUX_MEM1 0xFFFF 138 139 // TSO output mux select 140 #define HAL_TSOOUT_MUX_TS1 0x0001 141 #define HAL_TSOOUT_MUX_TS3 0xFFFF //not supported 142 143 144 // TSO In Clk select 145 #define HAL_TSO_CLKIN_TS0 0x0000 146 #define HAL_TSO_CLKIN_TS1 0x0001 147 #define HAL_TSO_CLKIN_TS2 0x0002 148 #define HAL_TSO_CLKIN_TS3 0xFFFF 149 #define HAL_TSO_CLKIN_TSCB 0xFFFF //not supported 150 #define HAL_TSO_CLKIN_TSDEMOD0 0x0003 151 #define HAL_TSO_CLKIN_TSDEMOD1 0xFFFF //not supported 152 #define HAL_TSO_CLKIN_TS4 0xFFFF 153 #define HAL_TSO_CLKIN_TS5 0xFFFF 154 155 156 // Pre TsoOut Select 157 #define HAL_PRE_TSO_OUT_SEL_TS0IN 0x0000 158 #define HAL_PRE_TSO_OUT_SEL_TS1IN 0x0001 159 #define HAL_PRE_TSO_OUT_SEL_TS2IN 0x0002 160 #define HAL_PRE_TSO_OUT_SEL_TS3IN 0xFFFF 161 #define HAL_PRE_TSO_OUT_SEL_TS4IN 0xFFFF 162 #define HAL_PRE_TSO_OUT_SEL_TS5IN 0xFFFF 163 #define HAL_PRE_TSO_OUT_SEL_TSCBIN 0xFFFF //not supported 164 #define HAL_PRE_TSO_OUT_SEL_TSDEMOD0 0xFFFF //not supported 165 166 // TSO ClkOut DivClk Src Select 167 #define HAL_TSO_OUT_DIV_SEL_172M_2N 0x0000 168 #define HAL_TSO_OUT_DIV_SEL_288M_2N 0x0800 169 #define HAL_TSO_OUT_DIV_SEL_216M_N 0xFFFF //not supported 170 171 // TSO ClkOut Select 172 #define HAL_TSO_OUT_SEL_TSO_OUT_DIV2N 0x0000 173 #define HAL_TSO_OUT_SEL_TSO_OUT_62MHz 0x0400 174 #define HAL_TSO_OUT_SEL_TSO_OUT_54MHz 0x0800 175 #define HAL_TSO_OUT_SEL_TSO_OUT_PTSOOUT 0x0C00 176 #define HAL_TSO_OUT_SEL_TSO_OUT_PTSOOUT_DIV8 0x1000 177 #define HAL_TSO_OUT_SEL_TSO_OUT_27MHz 0x1400 178 #define HAL_TSO_OUT_SEL_TSO_OUT_FROM_DEMOD 0x1C00 179 #define HAL_TSO_OUT_SEL_TSO_OUT_DIV 0xFFFF //not supported 180 181 //TSO Channel IF 182 #define HAL_TSO_TSIF_LIVE1 1 183 #define HAL_TSO_TSIF_LIVE2 5 184 #define HAL_TSO_TSIF_FILE1 HAL_TSO_TSIF_LIVE2 185 186 //TSO SVQ RX packet mode 187 #define HAL_TSO_SVQRX_MODE_OPENCABLE 0 188 #define HAL_TSO_SVQRX_MODE_CIP 1 189 #define HAL_TSO_SVQRX_MODE_192 2 190 191 //TSO timestamp base 192 #define HAL_TSO_TIMESTAMP_90K 0 193 #define HAL_TSO_TIMESTAMP_27M 1 194 195 196 typedef struct stDrvTSOOutClk 197 { 198 MS_U16 u16OutClk; 199 MS_U16 u16OutDivSrc; 200 MS_U16 u16OutDivNum; 201 MS_U16 u16PreTsoOutClk; 202 MS_BOOL bClkInvert; 203 MS_BOOL bEnable; 204 }HalTSOOutClk; 205 206 // 207 // General API 208 void HAL_TSO_SetBank(MS_VIRT virtBankAddr); 209 void HAL_TSO_Init(void); 210 void HAL_TSO_Reset_All(MS_U8 u8Eng); 211 void HAL_TSO_Reset(MS_U8 u8Eng); 212 void HAL_TSO_Reset_SubItem(MS_U8 u8Eng, MS_U16 u16RstItem); 213 void HAL_TSO_HWInt_Enable(MS_U8 u8Eng, MS_BOOL bEnable, MS_U16 u16init); 214 void HAL_TSO_HWInt_Clear(MS_U8 u8Eng, MS_U16 u16Int); 215 MS_U16 HAL_TSO_HWInt_Status(MS_U8 u8Eng); 216 217 void HAL_TSO_Recover_TSOutMode(MS_U8 u8Eng); 218 MS_BOOL HAL_TSO_OutPad(MS_U8 u8Eng, MS_U16* pu16OutPad, MS_BOOL bSet); 219 220 MS_BOOL HAL_TSO_SelPad(MS_U8 u8Eng, MS_U8 u8TsIf, MS_U16 u16InPadSel, MS_BOOL bParallel); 221 MS_BOOL HAL_TSO_Set_InClk(MS_U8 u8Eng, MS_U8 u8TsIf, MS_U16 u16ClkSel, MS_BOOL bClkInvert, MS_BOOL bEnable); 222 MS_BOOL HAL_TSO_GetInputTSIF_Status(MS_U8 u8Eng, MS_U8 u8TsIf, MS_U16* pu16Pad, MS_BOOL* pbClkInvert, MS_BOOL* pbExtSync, MS_BOOL* pbParl); 223 MS_BOOL HAL_TSO_OutClk_DefSelect(MS_U8 u8Eng, MS_U16 u16PadSel, MS_BOOL bSet, HalTSOOutClk* pstOutClkSet); 224 void HAL_TSO_OutputClk(MS_U8 u8Eng, HalTSOOutClk* pstOutClkSet, MS_BOOL bSet); 225 MS_BOOL HAL_TSO_GetOutputClk(MS_U8 u8Eng, HalTSOOutClk* pstOutClkSet); 226 MS_BOOL HAL_TSO_Set_TSOOut_Phase_Tune(MS_U8 u8Eng, MS_U16 u16ClkOutPhase, MS_BOOL bPhaseEnable); 227 MS_BOOL HAL_TSO_PreTsoOutClk(MS_U8 u8Eng, MS_U16* pu16PreTsoOutSel, MS_BOOL bSet); 228 MS_BOOL HAL_TSO_TSOOutDiv(MS_U8 u8Eng, MS_U16* pu16ClkOutDivSrcSel, MS_U16* pu16ClkOutDivNum, MS_BOOL bSet); 229 MS_BOOL HAL_TSO_OutClk(MS_U8 u8Eng, MS_U16* pu16ClkOutSel, MS_BOOL* pbClkInvert, MS_BOOL* pbEnable, MS_BOOL bSet); 230 231 void HAL_TSO_Flt_SetPid(MS_U8 u8Eng, MS_U16 u16FltId, MS_U16 u16PID); 232 void HAL_TSO_Flt_SetInputSrc(MS_U8 u8Eng, MS_U16 u16FltId, MS_U16 u16InputSrc); 233 MS_BOOL HAL_TSO_ReplaceFlt_SetPktPid(MS_U8 u8Eng, MS_U16 u16FltId, MS_U8 u8TsIf, MS_U16 u16OldPid, MS_U16 u16NewPid); 234 MS_BOOL HAL_TSO_ReplaceFlt_Enable(MS_U8 u8Eng, MS_U16 u16FltId, MS_BOOL bEnable); 235 236 void HAL_TSO_Set_Filein_ReadAddr(MS_U8 u8Eng, MS_U8 u8FileEng, MS_PHY phyAddr); 237 void HAL_TSO_Set_Filein_ReadLen(MS_U8 u8Eng, MS_U8 u8FileEng, MS_U32 u32len); 238 MS_PHY HAL_TSO_Get_Filein_ReadAddr(MS_U8 u8Eng, MS_U8 u8FileEng); 239 void HAL_TSO_Set_Filein_Ctrl(MS_U8 u8Eng, MS_U8 u8FileEng, MS_U16 u16ctrl); 240 MS_U16 HAL_TSO_Get_Filein_Ctrl(MS_U8 u8Eng, MS_U8 u8FileEng); 241 MS_BOOL HAL_TSO_Set_Filein_MOBFKey(MS_U8 u8FileEng, MS_U32 u32Key, MS_BOOL bSecured); 242 MS_BOOL HAL_TSO_Filein_Enable(MS_U8 u8Eng, MS_U8 u8FileEng, MS_BOOL bEnable); 243 MS_BOOL HAL_TSO_Set_Filein_MOBFKey(MS_U8 u8FileEng, MS_U32 u32Key, MS_BOOL bSecured); 244 void HAL_TSO_FileinTimer_Enable(MS_U8 u8Eng, MS_U8 u8FileEng, MS_BOOL bEnable); 245 void HAL_TSO_Filein_Rate(MS_U8 u8Eng, MS_U8 u8FileEng, MS_U16 u16timer); 246 void HAL_TSO_Filein_192Mode_Enable(MS_U8 u8Eng, MS_U8 u8FileEng, MS_BOOL bEnable); 247 void HAL_TSO_Filein_192BlockMode_Enable(MS_U8 u8Eng, MS_U8 u8FileEng, MS_BOOL bEnable); 248 MS_U16 HAL_TSO_CmdQ_FIFO_Get_WRCnt(MS_U8 u8Eng, MS_U8 u8FileEng); 249 MS_BOOL HAL_TSO_CmdQ_FIFO_IsFull(MS_U8 u8Eng, MS_U8 u8FileEng); 250 MS_BOOL HAL_TSO_CmdQ_FIFO_IsEmpty(MS_U8 u8Eng, MS_U8 u8FileEng); 251 MS_U8 HAL_TSO_CmdQ_FIFO_Get_WRLevel(MS_U8 u8Eng, MS_U8 u8FileEng); 252 MS_BOOL HAL_TSO_CmdQ_Reset(MS_U8 u8Eng, MS_U8 u8FileEng); 253 254 void HAL_TSO_RW_ValidBlock_Count(MS_U8 u8Eng, MS_BOOL bWrite, MS_U16 *pu16ValidBlockCnt); 255 void HAL_TSO_RW_InvalidBlock_Count(MS_U8 u8Eng, MS_BOOL bWrite, MS_U16 *pu16InvalidBlockCnt); 256 void HAL_TSO_RW_OutputPktSize(MS_U8 u8Eng, MS_BOOL bWrite, MS_U16 *pu16PktSize); 257 258 void HAL_TSO_LPcr2_Set(MS_U8 u8Eng, MS_U8 u8FileEng, MS_U32 u32lpcr2); 259 MS_U32 HAL_TSO_LPcr2_Get(MS_U8 u8Eng, MS_U8 u8FileEng); 260 MS_U32 HAL_TSO_TimeStamp_Get(MS_U8 u8Eng, MS_U8 u8FileEng); 261 MS_BOOL HAL_TSO_PktChkSize_Set(MS_U8 u8Eng, MS_U8 u8If, MS_U8 u8size); 262 void HAL_TSO_Filein_PktChkSize_Set(MS_U8 u8Eng, MS_U8 u8FileEng, MS_U8 u8size); 263 264 void HAL_TSO_Cfg1_Enable(MS_U8 u8Eng, MS_U16 u16CfgItem, MS_BOOL bEnable); 265 void HAL_TSO_Cfg4_Enable(MS_U8 u8Eng, MS_U16 u16CfgItem, MS_BOOL bEnable); 266 MS_BOOL HAL_TSO_ChIf_Enable(MS_U8 u8Eng, MS_U8 u8ChIf, MS_BOOL bEnable); 267 MS_BOOL HAL_TSO_ChIf_Cfg(MS_U8 u8Eng, MS_U8 u8ChIf, MS_U16 u16Cfg, MS_BOOL bEnable); 268 MS_BOOL HAL_TSO_Get_ChIf_Cfg(MS_U8 u8Eng, MS_U8 u8ChIf, MS_U16* pu16Cfg, MS_BOOL *pbEnable); 269 MS_BOOL HAL_TSO_SVQBuf_Set(MS_U8 u8Eng, MS_U8 u8ChIf, MS_PHY phyBufAddr, MS_U32 u32BufSize); 270 MS_BOOL HAL_TSO_ChIf_ClrByteCnt(MS_U8 u8Eng, MS_U8 u8ChIf); 271 MS_BOOL HAL_TSO_LocalStreamID(MS_U8 u8Eng, MS_U8 u8ChIf, MS_U8* pu8StrID, MS_BOOL beSet); 272 MS_BOOL HAL_TSO_SVQ_TX_Reset(MS_U8 u8Eng, MS_U8 u8ChIf); 273 MS_BOOL HAL_TSO_Set_SVQRX_MOBFKey(MS_U8 u8Eng, MS_U32 u32Key, MS_BOOL bSecured); 274 MS_BOOL HAL_TSO_Set_SVQRX_PktMode(MS_U8 u8Eng, MS_U16 u16mode); 275 MS_BOOL HAL_TSO_Set_SVQRX_ArbitorMode(MS_U8 u8Eng, MS_U16 u16mode, MS_U16 *pu16SvqRxPri); 276 MS_BOOL HAL_TSO_Set_SVQ_LocalSysTimestamp(MS_U8 u8Eng, MS_U32 u32systime); 277 MS_BOOL HAL_TSO_Get_SVQ_Status(MS_U8 u8Eng, MS_U8 u8ChIf, MS_U16* pu16Status); 278 MS_BOOL HAL_TSO_GetDelayTime_PreHd2Output(MS_U8 u8Eng, MS_U8 u8ChIf, MS_U32 *pu32time); 279 MS_BOOL HAL_TSO_Get_MaxDelta_ChId(MS_U8 u8Eng, MS_U8 *pu8ChIf); 280 MS_BOOL HAL_TSO_Sel_LocalSysStampClkBase(MS_U8 u8Eng, MS_U16 u16ClkBase); 281 282 283 #endif // #ifndef __HAL_TSO_H__ 284 285 286