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) 2008-2009 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 #ifndef _HAL_GE_H_ 96 #define _HAL_GE_H_ 97 98 99 //------------------------------------------------------------------------------------------------- 100 // Macro and Define 101 //------------------------------------------------------------------------------------------------- 102 #define bNeedSetActiveCtrlMiu1 TRUE 103 #define GE_THRESHOLD_SETTING 0xD 104 #define GE_WORD_UNIT 16 105 #define GE_MAX_MIU 2 106 #define GE_TABLE_REGNUM 0x80 107 108 #define GE_VCMDQ_SIZE_MIN (GE_WORD_UNIT*512) 109 #define GE_VCMDQ_SIZE_MAX (GE_WORD_UNIT*65536) 110 111 #define GE_FMT_I1 0x0 112 #define GE_FMT_I2 0x1 113 #define GE_FMT_I4 0x2 114 #define GE_FMT_I8 0x4 115 #define GE_FMT_FaBaFgBg2266 0x6 116 #define GE_FMT_1ABFgBg12355 0x7 117 #define GE_FMT_RGB565 0x8 118 #define GE_FMT_ARGB1555 0x9 119 #define GE_FMT_ARGB4444 0xA 120 #define GE_FMT_ARGB1555_DST 0xC 121 #define GE_FMT_YUV422 0xE 122 #define GE_FMT_ARGB8888 0xF 123 #define GE_FMT_RGBA5551 0x10 124 #define GE_FMT_ABGR1555 0x11 125 #define GE_FMT_BGRA5551 0x12 126 #define GE_FMT_RGBA4444 0x13 127 #define GE_FMT_ABGR4444 0x14 128 #define GE_FMT_BGRA4444 0x15 129 #define GE_FMT_BGR565 0x16 130 #define GE_FMT_RGBA8888 0x1D 131 #define GE_FMT_ABGR8888 0x1E 132 #define GE_FMT_BGRA8888 0x1F 133 #define GE_FMT_GENERIC 0xFFFF 134 135 #if (GE_WORD_UNIT==32) 136 #define GE_VQ_4K 0x0UL 137 #define GE_VQ_8K 0x0UL 138 #define GE_VQ_16K 0x0UL 139 #define GE_VQ_32K 0x1UL 140 #define GE_VQ_64K 0x2UL 141 #define GE_VQ_128K 0x3UL 142 #define GE_VQ_256K 0x4UL 143 #define GE_VQ_512K 0x5UL 144 #define GE_VQ_1024K 0x6UL 145 #define GE_VQ_2048K 0x7UL 146 #else 147 #define GE_VQ_4K 0x0UL 148 #define GE_VQ_8K 0x0UL 149 #define GE_VQ_16K 0x1UL 150 #define GE_VQ_32K 0x2UL 151 #define GE_VQ_64K 0x3UL 152 #define GE_VQ_128K 0x4UL 153 #define GE_VQ_256K 0x5UL 154 #define GE_VQ_512K 0x6UL 155 #define GE_VQ_1024K 0x7UL 156 #endif 157 158 159 #define __USE_GE_POLLING_MODE 0 160 #define __USE_GE_INT_MODE 1 // Kernel must enable CONFIG_MP_PLATFORM_UTOPIA2_INTERRUPT 161 162 #ifdef CONFIG_GFX_TAG_INTERRUPT 163 164 #if defined(MSOS_TYPE_LINUX) || defined(MSOS_TYPE_LINUX_KERNEL) 165 #define __GE_WAIT_TAG_MODE __USE_GE_INT_MODE 166 #else 167 #define __GE_WAIT_TAG_MODE __USE_GE_POLLING_MODE 168 #endif 169 170 #else 171 172 #define __GE_WAIT_TAG_MODE __USE_GE_POLLING_MODE 173 174 #endif 175 176 #define GE_VQ_MIU_HANG_PATCH TRUE //GE VQ need the same MIU as src and dst buffer 177 #define GE_VQADDR_LOCK_PATCH 1 // this is for the miu & riu lock problem 178 #define GE_VQADDR_ENHANCE_LOCK_TIMES 5 179 180 //------------------------------------------------------------------------------------------------- 181 // Type and Structure 182 //------------------------------------------------------------------------------------------------- 183 typedef struct _GE_ColorDelta 184 { 185 MS_U32 r; // s7.12 186 MS_U32 g; 187 MS_U32 b; 188 MS_U16 a; // s4.11 189 } GE_ColorDelta; 190 191 /*the following is for parameters for shared between multiple process context*/ 192 typedef struct 193 { 194 MS_BOOL bGE_DirectToReg; 195 MS_U16 global_tagID; 196 MS_U16 u16ShareRegImage[GE_TABLE_REGNUM]; 197 MS_U16 u16ShareRegImageEx[GE_TABLE_REGNUM]; 198 #ifdef GE_VQ_MIU_HANG_PATCH 199 MS_U8 u8VCmdQMiu; 200 #endif 201 }GE_CTX_HAL_SHARED; 202 203 /*the following is for parameters for used in local process context*/ 204 typedef struct 205 { 206 GE_CTX_HAL_SHARED *pHALShared; 207 GE_CHIP_PROPERTY *pGeChipPro; 208 MS_U32 u32_mmio_base; 209 MS_U32 u32_mmio_base2; 210 MS_U16 u16RegGETable[GE_TABLE_REGNUM]; //Store for GE RegInfo 211 MS_U16 u16RegGETableEX[GE_TABLE_REGNUM]; //Store for GE RegInfo 212 MS_BOOL bIsComp; 213 MS_BOOL bPaletteDirty; 214 MS_U32 u32Palette[GE_PALETTE_NUM]; 215 MS_BOOL bYScalingPatch; 216 }GE_CTX_HAL_LOCAL; 217 218 //------------------------------------------------------------------------------------------------- 219 // Function and Variable 220 //------------------------------------------------------------------------------------------------- 221 void GE_Chip_Proprity_Init(GE_CTX_HAL_LOCAL *pGEHalLocal); 222 void GE_ResetState(GE_CTX_HAL_LOCAL *pGEHalLocal); 223 void GE_WaitIdle(GE_CTX_HAL_LOCAL *pGEHalLocal); 224 GE_Result GE_Map_Share_Reg(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 addr); 225 void GE_WriteReg(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 addr, MS_U16 value); 226 MS_U16 GE_ReadReg(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 addr); 227 void GE1_WriteReg(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 addr, MS_U16 value); 228 void GE2_WriteReg(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 addr, MS_U16 value); 229 MS_U16 GE2_ReadReg(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 addr); 230 GE_Result GE_InitCtxHalPalette(GE_CTX_HAL_LOCAL *pGEHalLocal); 231 void GE_Init_HAL_Context(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_CTX_HAL_SHARED *pHALShared, MS_BOOL bNeedInitShared); 232 void GE_Init_RegImage(GE_CTX_HAL_LOCAL *pGEHalLocal); 233 void GE_Init(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_Config *cfg); 234 GE_Result GE_SetRotate(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_RotateAngle geRotAngle); 235 GE_Result GE_SetOnePixelMode(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL enable); 236 GE_Result GE_SetBlend(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_BlendOp eBlendOp); 237 GE_Result GE_SetAlpha(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_AlphaSrc eAlphaSrc); 238 GE_Result GE_QueryDFBBldCaps(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 *pU16SupportedBldFlags); 239 GE_Result GE_EnableDFBBld(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL enable); 240 GE_Result GE_SetDFBBldFlags(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 u16DFBBldFlags); 241 GE_Result GE_SetDFBBldOP(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_DFBBldOP geSrcBldOP, GE_DFBBldOP geDstBldOP); 242 GE_Result GE_SetDFBBldConstColor(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_RgbColor geRgbColor); 243 GE_Result GE_SetDFBBldSrcColorMask(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_RgbColor geRgbColor); 244 GE_Result GE_WriteProtect(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U8 miu, MS_PHYADDR addr_low, MS_PHYADDR addr_high, GE_WPType eWPType); 245 GE_Result GE_SetSrcTile(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL tile); 246 GE_Result GE_SetDstTile(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL tile); 247 GE_Result GE_GetFmtCaps(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_BufFmt fmt, GE_BufType type, GE_FmtCaps *caps); 248 GE_Result GE_Set_IOMap_Base(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U32 addr); 249 GE_Result GE_Set_IOMap_Base2(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U32 addr); 250 //GE_Result GE_Get_BackupRegArray(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U32* addr); 251 //void GE_RestoreReg(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 addr, MS_U16 value); 252 //MS_U16 GE_BackupReg(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 addr); 253 MS_U16 GE_GetNextTAGID(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL bStepTagBefore); 254 GE_Result GE_WaitTAGID(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 tagID); 255 GE_Result GE_Restore_HAL_Context(GE_CTX_HAL_LOCAL *pGEHalLocal); 256 GE_Result GE_ClrInvalMIUFlg(GE_CTX_HAL_LOCAL *pGEHalLocal,MS_BOOL enable); 257 GE_Result GE_EnableDynaClkGate(GE_CTX_HAL_LOCAL *pGEHalLocal,MS_BOOL enable); 258 GE_Result GE_CalcBltScaleRatio(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 u16SrcWidth, MS_U16 u16SrcHeight, MS_U16 u16DstWidth, MS_U16 u16DstHeight, GE_ScaleInfo *pScaleinfo); 259 GE_Result GE_SetBltScaleRatio(GE_CTX_HAL_LOCAL *pGEHalLocal,GE_Rect *src, GE_DstBitBltType *dst, GE_Flag flags, GE_ScaleInfo* scaleinfo); 260 GE_Result GE_BitBltEX_Trape(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_Rect *pSrcRect, GE_Normalized_Trapezoid *pGENormTrapezoid, MS_U32 u32Flags, GE_ScaleInfo* pScaleinfo); 261 GE_Result GE_FillTrapezoid(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL bYTrapezoid, GE_Normalized_Trapezoid *pGENormTrapezoid, MS_U32 u32Color, GE_ColorDelta *pColorDeltaX, GE_ColorDelta *pColorDeltaY); 262 GE_Result GE_EnableTrapezoidAA(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL bEnable); 263 GE_Result GE_EnableTrapSubPixCorr(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL bEnable); 264 GE_Result GE_SetDisaMIUAccess(GE_CTX_HAL_LOCAL *pGEHalLocal,MS_BOOL enable); 265 GE_Result GE_SetASCK(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL enable); 266 GE_Result GE_SetDSCK(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL enable); 267 GE_Result GE_SetVCmdBuffer(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_PHYADDR u32Addr, GE_VcmqBufSize enBufSize); 268 MS_U32 GE_ConvertAPIAddr2HAL(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U8 u8MIUId, MS_U32 u32GE_APIAddrInMIU); 269 MS_U32 GE_ConvertHALAddr2API(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U8 u8MIUId, MS_U32 u32GE_HALAddr); 270 void GE_SetActiveCtrlMiu1(GE_CTX_HAL_LOCAL *pGEHalLocal); 271 GE_Result GE_SetClock(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL bOnOff); 272 MS_BOOL GE_NonOnePixelModeCaps(GE_CTX_HAL_LOCAL *pGEHalLocal, PatchBitBltInfo* patchInfo); 273 GE_Result HAL_GE_EnableCalcSrc_WidthHeight(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL bEnable); 274 GE_Result GEWD_ReadReg(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 addr, MS_U16* value); 275 GE_Result GEWD_WriteReg(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 addr, MS_U16 value); 276 GE_Result GE_SetTLBMode(GE_CTX_HAL_LOCAL *pGEHalLocal, GE_TLB_Mode tlb_type); 277 GE_Result GE_GetTLBSRCADDR(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_PHYADDR* addr); 278 GE_Result GE_GetTLBDSTADDR(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_PHYADDR* addr); 279 GE_Result GE_SetTLBSrcBaseAddr(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_PHYADDR addr); 280 GE_Result GE_SetTLBDstBaseAddr(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_PHYADDR addr); 281 GE_Result GE_FlushTLBTable(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL bEnable); 282 GE_Result GE_SetTLBTag(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U16 tag); 283 GE_Result GE_StopFlushTLB(GE_CTX_HAL_LOCAL *pGEHalLocal); 284 GE_Result GE_Get_MIU_INTERVAL(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U8 miu, MS_U32* value); 285 GE_Result HAL_GE_AdjustDstWin( GE_CTX_HAL_LOCAL *pGEHalLocal, MS_BOOL bDstXInv ); 286 GE_Result HAL_GE_AdjustRotateDstWin(GE_CTX_HAL_LOCAL *pGEHalLocal, MS_U8 u8Rotate); 287 GE_Result HAL_GE_exit(GE_CTX_HAL_LOCAL *pGEHalLocal); 288 GE_Result HAL_GE_SetBurstMiuLen(GE_CTX_HAL_LOCAL *pGEHalLocal,MS_BOOL bEnable,MS_U32 u32BurstLen); 289 290 #define GE_SetSrcBufMIUId(pGEHalLocal, u8MIUId) do{}while(0) 291 #define GE_SetDstBufMIUId(pGEHalLocal, u8MIUId) do{}while(0) 292 #define GE_SetVQBufMIUId(pGEHalLocal, u8MIUId) do{}while(0) 293 #define GE_GetSrcBufMIUId(pGEHalLocal, u32GE_HALAddr) ((MS_U8)(((u32GE_HALAddr)&(1UL<<31))>>31)) 294 #define GE_GetDstBufMIUId(pGEHalLocal, u32GE_HALAddr) ((MS_U8)(((u32GE_HALAddr)&(1UL<<31))>>31)) 295 #endif // _HAL_GE_H_ 296 297