xref: /utopia/UTPA2-700.0.x/modules/mvop/drv/mvop/_drvMVOP_weak.h (revision 53ee8cc121a030b8d368113ac3e966b4705770ef)
1 //<MStar Software>
2 //******************************************************************************
3 // MStar Software
4 // Copyright (c) 2spt_stMVOP_SUB_ENABLE010 - 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 ///////////////////////////////////////////////////////////////////////////////////////////////////
96 ///
97 /// @file   _drvMVOP_weak.h
98 /// @brief  MVOP weak symbols declaration.
99 /// @author MStar Semiconductor Inc.
100 ///////////////////////////////////////////////////////////////////////////////////////////////////
101 
102 #ifndef _DRV_MVOP_WEAK_H_
103 #define _DRV_MVOP_WEAK_H_
104 
105 #include "halMVOP.h"
106 
107 //-------------------------------------------------------------------------------------------------
108 //  Macro and Define
109 //-------------------------------------------------------------------------------------------------
110 #if defined(MSOS_TYPE_LINUX_KERNEL)
111 #define __mvop_weak      __attribute__((weak))
112 #define __mvop_if        extern
113 #define __mvop_weak_0      {return 0;}
114 #define __mvop_if_0
115 #define __mvop_weak_v      {}
116 #define __mvop_if_v
117 #else
118 #define __mvop_weak      __attribute__((weak))
119 #define __mvop_if        extern
120 #define __mvop_weak_0    __attribute__((weak))
121 #define __mvop_if_0      extern
122 #define __mvop_weak_v    __attribute__((weak))
123 #define __mvop_if_v      extern
124 #endif
125 //-------------------------------------------------------------------------------------------------
126 //  Function and Variable
127 //-------------------------------------------------------------------------------------------------
128 
129 //======================================================
130 // MAIN MVOP
131 __mvop_if void HAL_MVOP_SetVerticalMirrorMode(MS_BOOL bEnable) __mvop_weak;
132 __mvop_if void HAL_MVOP_SetHorizontallMirrorMode(MS_BOOL bEnable) __mvop_weak;
133 __mvop_if void HAL_MVOP_SetYUVBaseAdd(MS_PHY u32YOffset, MS_PHY u32UVOffset, MS_BOOL bProgressive, MS_BOOL b422pack) __mvop_weak;
134 __mvop_if void HAL_MVOP_SetRepeatField(MVOP_RptFldMode eMode) __mvop_weak;
135 __mvop_if void HAL_MVOP_SetVSyncMode(MS_U8 u8Mode) __mvop_weak;
136 __mvop_if MS_PHY HAL_MVOP_GetYBaseAdd(void) __mvop_weak;
137 __mvop_if MS_PHY HAL_MVOP_GetUVBaseAdd(void) __mvop_weak;
138 __mvop_if_0 MS_BOOL HAL_MVOP_Set3DLRInsVBlank(MS_U16 u16InsLines) __mvop_weak_0;
139 __mvop_if MS_BOOL HAL_MVOP_Set3DLRAltOutput(MS_BOOL bEnable) __mvop_weak;
140 __mvop_if MS_BOOL HAL_MVOP_Set3DLRAltOutput_VHalfScaling(MS_BOOL bEnable) __mvop_weak;
141 __mvop_if MS_BOOL HAL_MVOP_Get3DLRAltOutput(void) __mvop_weak;
142 __mvop_if MS_BOOL HAL_MVOP_Get3DLRAltSBSOutput(void) __mvop_weak;
143 __mvop_if EN_MVOP_Output_3D_TYPE HAL_MVOP_GetOutput3DType(void) __mvop_weak;
144 __mvop_if MS_BOOL HAL_MVOP_Set3DLR2ndCfg(MS_BOOL bEnable) __mvop_weak;
145 __mvop_if MS_BOOL HAL_MVOP_Get3DLR2ndCfg(void) __mvop_weak;
146 __mvop_if MS_BOOL HAL_MVOP_SetRgbFormat(MVOP_RgbFormat eRgbFmt) __mvop_weak;
147 __mvop_if MS_BOOL HAL_MVOP_GetSupportRgbFormat(MVOP_RgbFormat eRgbFmt) __mvop_weak;
148 __mvop_if MVOP_DrvMirror HAL_MVOP_GetMirrorMode(MVOP_DevID eID) __mvop_weak;
149 __mvop_if MS_BOOL HAL_MVOP_SetVerDup(MS_BOOL bEnable) __mvop_weak;
150 __mvop_if MS_BOOL HAL_MVOP_GetVerDup(void) __mvop_weak;
151 __mvop_if MS_BOOL HAL_MVOP_SetVerx4Dup(MS_BOOL bEnable) __mvop_weak;
152 __mvop_if MS_BOOL HAL_MVOP_GetVerx4Dup(void) __mvop_weak;
153 __mvop_if MS_BOOL HAL_MVOP_SetHorx4Dup(MS_BOOL bEnable) __mvop_weak;
154 __mvop_if MS_BOOL HAL_MVOP_GetHorx4Dup(void) __mvop_weak;
155 __mvop_if HALMVOPFREQUENCY HAL_MVOP_GetMaximumClk(void) __mvop_weak;
156 __mvop_if HALMVOPFREQUENCY HAL_MVOP_GetCurrentClk(void) __mvop_weak;
157 __mvop_if MS_BOOL HAL_MVOP_SetYUVBaseAddMultiView(MVOP_BaseAddInput *stBaseAddInfo) __mvop_weak;
158 __mvop_if MS_PHY HAL_MVOP_GetYBaseAddMultiView(MVOP_3DView eView) __mvop_weak;
159 __mvop_if MS_PHY HAL_MVOP_GetUVBaseAddMultiView(MVOP_3DView eView) __mvop_weak;
160 __mvop_if MS_U16 HAL_MVOP_GetTopVStart(MVOP_DevID eID) __mvop_weak;
161 __mvop_if MS_U16 HAL_MVOP_GetBottomVStart(MVOP_DevID eID) __mvop_weak;
162 __mvop_if MS_U16 HAL_MVOP_GetVCount(MVOP_DevID eID) __mvop_weak;
163 __mvop_if MS_BOOL HAL_MVOP_SetVC1RangeMap(MVOP_DevID eID, MVOP_VC1RangeMapInfo *stVC1RangeMapInfo) __mvop_weak;
164 __mvop_if void HAL_MVOP_SetEnable4k2kClk(MS_BOOL bEnable)__mvop_weak;
165 __mvop_if HALMVOPFREQUENCY HAL_MVOP_Get4k2kClk(void)__mvop_weak;
166 __mvop_if MS_BOOL HAL_MVOP_Set420BWSaveMode(MS_BOOL bEnable)__mvop_weak;
167 __mvop_if MS_BOOL HAL_MVOP_SetEVDYUVBaseAdd(MVOP_EVDBaseAddInput *stEVDBaseAddInfo)__mvop_weak;
168 __mvop_if void HAL_MVOP_SetEVDFeature(MVOP_DevID eID, MVOP_EVDFeature* stEVDInput)__mvop_weak;
169 __mvop_if void HAL_MVOP_SetRptPreVsyncFrame(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak;
170 __mvop_if MVOP_HSMode HAL_MVOP_GetHandShakeMode(MVOP_DevID eID)__mvop_weak;
171 __mvop_if MS_BOOL HAL_MVOP_CheckSTCCW(void)__mvop_weak;
172 __mvop_if MS_BOOL HAL_MVOP_GetIsMiuIPControl(HALMVOPMIUCLIENTINFO stInfo)__mvop_weak;
173 __mvop_if void HAL_MVOP_SelMIU(MVOP_DevID eDevID, HALMVOPMIUSEL eMiuMSB0, HALMVOPMIUSEL eMiuMSB1, HALMVOPMIUSEL eMiuLSB0, HALMVOPMIUSEL eMiuLSB1)__mvop_weak;
174 __mvop_if MS_BOOL HAL_MVOP_GetIsOnlyMiuIPControl(void)__mvop_weak;
175 __mvop_if void HAL_MVOP_SetDCSRAMClk(MS_U8 clkNum, MS_BOOL bEnable)__mvop_weak;
176 __mvop_if void HAL_MVOP_SetEnable4k2k2P(MS_BOOL bEnable)__mvop_weak;
177 __mvop_if void HAL_MVOP_GetMaxFramerate(MVOP_DevID eDevID, MVOP_GetMaxFps* stStreamInfo)__mvop_weak;
178 __mvop_if void HAL_MVOP_SetHandShakeMode(MVOP_DevID eDevID, MS_BOOL bEnable, MS_U8 u8Framerate)__mvop_weak;
179 __mvop_if void HAL_MVOP_SetCropforXC(MVOP_DevID eID, MVOP_XCGetCrop* stXCCrop, MS_U16 u16Width, MS_U16 u16Height)__mvop_weak;
180 __mvop_if MS_BOOL HAL_MVOP_SupportFRCOutputFPS(MVOP_DevID eID)__mvop_weak;
181 __mvop_if MS_BOOL HAL_MVOP_GetIsCurrentHSK(MVOP_DevID eID)__mvop_weak;
182 __mvop_if_0 MS_BOOL HAL_MVOP_AutoTimingHDS(MVOP_DevID eID)__mvop_weak_0;
183 #ifdef UFO_MVOP_GET_IS_SW_CROP
184 __mvop_if_0 void HAL_MVOP_GetCropAddbySW(MVOP_DevID eID, MVOP_XCGetCropMirAdd* stCropAdd)__mvop_weak_0;
185 __mvop_if_0 MS_BOOL HAL_MVOP_GetIsSWCrop(void)__mvop_weak_0;
186 #endif
187 #ifdef UFO_MVOP_RESET_SETTING
188 __mvop_if void HAL_MVOP_ResetMVOPSetting(MVOP_DevID eDevID)__mvop_weak;
189 #endif
190 __mvop_if void HAL_MVOP_SetInterlaceType(MVOP_DevID eDevID, MS_U16 u16ECONumber, MS_U8 u8Interlace)__mvop_weak;
191 #ifdef UFO_MVOP_DOLBY_HDR
192 __mvop_if void HAL_MVOP_Enable2DCTimingSync(MS_BOOL bEnable)__mvop_weak;
193 __mvop_if void HAL_MVOP_EnableHDRSetting(MS_BOOL bEnable)__mvop_weak;
194 #endif
195 __mvop_if void HAL_MVOP_SetSramPower(MVOP_DevID eID ,MS_BOOL bEnable)__mvop_weak;
196 #ifdef UFO_MVOP_FB_DEC_CLK
197 __mvop_if void HAL_MVOP_SetFBDecClk(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak;
198 #endif
199 #if defined(STB_DC_MODE)||(STB_DC)
200 __mvop_if HALMVOPFREQUENCY HAL_MVOP_SetDefaultClk(MVOP_DevID eDevID)__mvop_weak;
201 __mvop_if void HAL_MVOP_SetEnableFixClk(MS_BOOL bEnable)__mvop_weak;
202 __mvop_if MS_BOOL HAL_MVOP_GetIsCurrentXCGenTiming(MVOP_DevID eID)__mvop_weak;
203 __mvop_if void HAL_MVOP_SetTimingFromXC(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak;
204 __mvop_if void HAL_MVOP_MaskDBRegCtrl(MVOP_DevID eID, MS_BOOL bEnable ,MVOPMSAKDBREGCTRL eModeCtrl)__mvop_weak;
205 #endif
206 #ifdef UFO_MVOP_GET_IS_MVOP_AUTO_GEN_BLACK
207 __mvop_if MS_BOOL HAL_MVOP_GetIsMVOPSupportBLKBackground(MVOP_DevID eID)__mvop_weak;
208 #endif
209 __mvop_if void HAL_MVOP_Exit(MVOP_DevID eID)__mvop_weak;
210 __mvop_if void HAL_MVOP_UVSwapEnable(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak;
211 __mvop_if void HAL_MVOP_SetECONumber(MS_U16 u16ECOVersion)__mvop_weak;
212 
213 //======================================================
214 // SUB MVOP
215 __mvop_if void HAL_MVOP_SubRegSetBase(MS_VIRT u32Base)__mvop_weak;
216 __mvop_if void HAL_MVOP_SubInit(void)__mvop_weak;
217 __mvop_if void HAL_MVOP_SubSetFieldInverse(MS_BOOL b2MVD, MS_BOOL b2IP)__mvop_weak;
218 __mvop_if void HAL_MVOP_SubSetChromaWeighting(MS_BOOL bEnable)__mvop_weak;
219 __mvop_if void HAL_MVOP_SubLoadReg(void)__mvop_weak;
220 __mvop_if void HAL_MVOP_SubSetMIUReqMask(MS_BOOL bEnable)__mvop_weak;
221 __mvop_if void HAL_MVOP_SubRst(void)__mvop_weak;
222 __mvop_if void HAL_MVOP_SubEnable(MS_BOOL bEnable, MS_U8 u8Framerate)__mvop_weak;
223 __mvop_if MS_BOOL HAL_MVOP_SubGetEnableState(void)__mvop_weak;
224 __mvop_if HALMVOPFREQUENCY HAL_MVOP_SubGetMaxFreerunClk(void)__mvop_weak;
225 __mvop_if void HAL_MVOP_SubSetFrequency(HALMVOPFREQUENCY enFrequency)__mvop_weak;
226 __mvop_if void HAL_MVOP_SubSetOutputInterlace(MS_BOOL bEnable, MS_U16 u16ECOVersion)__mvop_weak;
227 __mvop_if void HAL_MVOP_SubSetPattern(MVOP_Pattern enMVOPPattern)__mvop_weak;
228 __mvop_if MS_BOOL HAL_MVOP_SubSetTileFormat(MVOP_TileFormat eTileFmt)__mvop_weak;
229 __mvop_if MS_BOOL HAL_MVOP_SubSetRgbFormat(MVOP_RgbFormat eRgbFmt) __mvop_weak;
230 __mvop_if MS_BOOL HAL_MVOP_SubEnable3DLR(MS_BOOL bEnable)__mvop_weak;
231 __mvop_if MS_BOOL HAL_MVOP_SubGet3DLRMode(void)__mvop_weak;
232 __mvop_if_0 MS_BOOL HAL_MVOP_SubSet3DLRInsVBlank(MS_U16 u16InsLines) __mvop_weak_0;
233 __mvop_if void HAL_MVOP_SubSetBlackBG(void)__mvop_weak;
234 __mvop_if void HAL_MVOP_SubSetCropWindow(MVOP_InputCfg *pparam)__mvop_weak;
235 __mvop_if void HAL_MVOP_SubSetInputMode( VOPINPUTMODE mode, MVOP_InputCfg *pparam, MS_U16 u16ECOVersion  )__mvop_weak;
236 __mvop_if void HAL_MVOP_SubEnableUVShift(MS_BOOL bEnable)__mvop_weak;
237 __mvop_if void HAL_MVOP_SubSetEnable60P(MS_BOOL bEnable)__mvop_weak;
238 __mvop_if void HAL_MVOP_SubSetOutputTiming( MVOP_Timing *ptiming )__mvop_weak;
239 __mvop_if void HAL_MVOP_SubSetDCClk(MS_U8 clkNum, MS_BOOL bEnable)__mvop_weak;
240 __mvop_if void HAL_MVOP_SubSetDCSRAMClk(MS_U8 clkNum, MS_BOOL bEnable)__mvop_weak;
241 __mvop_if void HAL_MVOP_SubSetSynClk(MVOP_Timing *ptiming)__mvop_weak;
242 __mvop_if void HAL_MVOP_SubSetMonoMode(MS_BOOL bEnable)__mvop_weak;
243 __mvop_if void HAL_MVOP_SubSetH264HardwireMode(MS_U16 u16ECOVersion)__mvop_weak;
244 __mvop_if void HAL_MVOP_SubSetRMHardwireMode(MS_U16 u16ECOVersion)__mvop_weak;
245 __mvop_if void HAL_MVOP_SubSetJpegHardwireMode(MS_U16 u16ECOVersion)__mvop_weak;
246 __mvop_if void HAL_MVOP_SubEnableMVDInterface(MS_BOOL bEnable)__mvop_weak;
247 __mvop_if MS_BOOL HAL_MVOP_SubGetTimingInfoFromRegisters(MVOP_TimingInfo_FromRegisters *pMvopTimingInfo)__mvop_weak;
248 __mvop_if void HAL_MVOP_SubSetHorizontallMirrorMode(MS_BOOL bEnable)__mvop_weak;
249 __mvop_if void HAL_MVOP_SubSetVerticalMirrorMode(MS_BOOL bEnable)__mvop_weak;
250 __mvop_if void HAL_MVOP_SubEnableFreerunMode(MS_BOOL bEnable)__mvop_weak;
251 __mvop_if void HAL_MVOP_SubSetYUVBaseAdd(MS_PHY u32YOffset, MS_PHY u32UVOffset, MS_BOOL bProgressive, MS_BOOL b422pack)__mvop_weak;
252 __mvop_if EN_MVOP_Output_3D_TYPE HAL_MVOP_SubGetOutput3DType(void) __mvop_weak;
253 __mvop_if MS_PHY HAL_MVOP_SubGetYBaseAdd(void) __mvop_weak;
254 __mvop_if MS_PHY HAL_MVOP_SubGetUVBaseAdd(void) __mvop_weak;
255 //__mvop_if MS_BOOL HAL_MVOP_SubSetVC1RangeMap(MVOP_VC1RangeMapInfo *stVC1RangeMapInfo) __mvop_weak;
256 __mvop_if void HAL_MVOP_SubSetEnable4k2kClk(MS_BOOL bEnable)__mvop_weak;
257 __mvop_if HALMVOPFREQUENCY HAL_MVOP_SubGet4k2kClk(void)__mvop_weak;
258 __mvop_if MS_BOOL HAL_MVOP_SubSet420BWSaveMode(MS_BOOL bEnable, MS_U16 u16ECOVersion)__mvop_weak;
259 __mvop_if MS_BOOL HAL_MVOP_SubSetEVDYUVBaseAdd(MVOP_EVDBaseAddInput *stEVDBaseAddInfo)__mvop_weak;
260 __mvop_if MS_BOOL HAL_MVOP_SubCheckSTCCW(void)__mvop_weak;
261 __mvop_if void HAL_MVOP_SubSetEnable4k2k2P(MS_BOOL bEnable)__mvop_weak;
262 __mvop_if void HAL_MVOP_SubSetVSyncMode(MS_U8 u8Mode)__mvop_weak;
263 __mvop_if MS_BOOL HAL_MVOP_SubSet3DLRAltOutput_VHalfScaling(MS_BOOL bEnable)__mvop_weak;
264 #ifdef UFO_MVOP_DOLBY_HDR
265 __mvop_if void HAL_MVOP_SubEnableHDRSetting(MS_BOOL bEnable)__mvop_weak;
266 #endif
267 //======================================================
268 // EX MVOP:: Extended HAL functions for MVOP modules
269 __mvop_if_v void HAL_MVOP_EX_RegSetBase(MS_VIRT u32Base)__mvop_weak_v;
270 __mvop_if_v void HAL_MVOP_EX_InitMirrorMode(MVOP_DevID eID, MS_BOOL bMir)__mvop_weak_v;
271 __mvop_if_0 MS_BOOL HAL_MVOP_EX_Init(MVOP_DevID eID)__mvop_weak_0;
272 __mvop_if_v void HAL_MVOP_EX_SetVerticalMirrorMode(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_v;
273 __mvop_if_v void HAL_MVOP_EX_SetHorizontallMirrorMode(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_v;
274 __mvop_if_v void HAL_MVOP_EX_SetFieldInverse(MVOP_DevID eID, MS_BOOL b2MVD, MS_BOOL b2IP)__mvop_weak_v;
275 __mvop_if_v void HAL_MVOP_EX_SetChromaWeighting(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_v;
276 __mvop_if_v void HAL_MVOP_EX_LoadReg(MVOP_DevID eID)__mvop_weak_v;
277 __mvop_if_v void HAL_MVOP_EX_SetMIUReqMask(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_v;
278 __mvop_if_v void HAL_MVOP_EX_Rst(MVOP_DevID eID)__mvop_weak_v;
279 __mvop_if_v void HAL_MVOP_EX_Enable(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_v;
280 __mvop_if_0 MS_BOOL HAL_MVOP_EX_GetEnableState(MVOP_DevID eID)__mvop_weak_0;
281 __mvop_if_0 HALMVOPFREQUENCY HAL_MVOP_EX_GetMaxFreerunClk(MVOP_DevID eID)__mvop_weak_0;
282 __mvop_if_0 HALMVOPFREQUENCY HAL_MVOP_EX_GetClk(MS_U32 u32PixClk)__mvop_weak_0;
283 __mvop_if_v void HAL_MVOP_EX_SetFrequency(MVOP_DevID eID, HALMVOPFREQUENCY enFrequency)__mvop_weak_v;
284 __mvop_if_v void HAL_MVOP_EX_SetOutputInterlace(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_v;
285 __mvop_if_v void HAL_MVOP_EX_SetPattern(MVOP_DevID eID, MVOP_Pattern enMVOPPattern)__mvop_weak_v;
286 __mvop_if_0 MS_BOOL HAL_MVOP_EX_SetTileFormat(MVOP_DevID eID, MVOP_TileFormat eTileFmt)__mvop_weak_0;
287 __mvop_if_0 MS_BOOL HAL_MVOP_EX_SetRgbFormat(MVOP_DevID eID, MVOP_RgbFormat eRgbFmt)__mvop_weak_0;
288 __mvop_if_v void HAL_MVOP_EX_SetBlackBG(MVOP_DevID eID)__mvop_weak_v;
289 __mvop_if_v void HAL_MVOP_EX_SetCropWindow(MVOP_DevID eID, MVOP_InputCfg *pparam)__mvop_weak_v;
290 __mvop_if_v void HAL_MVOP_EX_SetInputMode(MVOP_DevID eID, VOPINPUTMODE mode, MVOP_InputCfg *pparam )__mvop_weak_v;
291 __mvop_if_v void HAL_MVOP_EX_EnableUVShift(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_v;
292 __mvop_if_v void HAL_MVOP_EX_SetEnable60P(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_v;
293 __mvop_if_0 MVOP_Result HAL_MVOP_EX_EnableFreerunMode(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_0;
294 __mvop_if_v void HAL_MVOP_EX_SetOutputTiming(MVOP_DevID eID, MVOP_Timing *ptiming )__mvop_weak_v;
295 __mvop_if_v void HAL_MVOP_EX_SetDCClk(MVOP_DevID eID, MS_U8 clkNum, MS_BOOL bEnable)__mvop_weak_v;
296 __mvop_if_v void HAL_MVOP_EX_SetSynClk(MVOP_DevID eID, MVOP_Timing *ptiming, HALMVOPFREQUENCY eFreq)__mvop_weak_v;
297 __mvop_if_v void HAL_MVOP_EX_SetMonoMode(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_v;
298 __mvop_if_v void HAL_MVOP_EX_SetH264HardwireMode(MVOP_DevID eID)__mvop_weak_v;
299 __mvop_if_v void HAL_MVOP_EX_EnableMVDInterface(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_v;
300 __mvop_if_v void HAL_MVOP_EX_SetRMHardwireMode(MVOP_DevID eID)__mvop_weak_v;
301 __mvop_if_v void HAL_MVOP_EX_SetJpegHardwireMode(MVOP_DevID eID)__mvop_weak_v;
302 __mvop_if_0 MS_BOOL HAL_MVOP_EX_Enable3DLR(MVOP_DevID eID, MS_BOOL bEnable)__mvop_weak_0;
303 __mvop_if_0 MS_BOOL HAL_MVOP_EX_Get3DLRMode(MVOP_DevID eID)__mvop_weak_0;
304 __mvop_if_0 MS_BOOL HAL_MVOP_EX_Set3DLRInsVBlank(MS_U16 u16InsLines) __mvop_weak_0;
305 __mvop_if_0 MS_BOOL HAL_MVOP_EX_GetTimingInfoFromRegisters(MVOP_DevID eID, MVOP_TimingInfo_FromRegisters *pMvopTimingInfo)__mvop_weak_0;
306 __mvop_if_0 EN_MVOP_Output_3D_TYPE HAL_MVOP_EX_GetOutput3DType(MVOP_DevID eID)__mvop_weak_0;
307 
308 #if (defined(STB_DC_MODE)||(STB_DC))&&(MVOP_SUPPORT_SUB)
309 __mvop_if void HAL_MVOP_MaskDBRegCtrl(MVOP_DevID eID, MS_BOOL bEnable ,MVOPMSAKDBREGCTRL eModeCtrl)__mvop_weak;
310 #endif
311 __mvop_if MS_BOOL HAL_MVOP_IntEnableMask(MVOP_DevID eID, MS_U8 eIntType) __mvop_weak;
312 __mvop_if MS_U8 HAL_MVOP_IntGetStatus(MVOP_DevID eID) __mvop_weak;
313 
314 #endif // _DRV_MVOP_WEAK_H_
315