hv_mw_Video.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. /**
  2. * @file hv_mw_Video.h
  3. * @brief Header file of dpu module.
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. * (+) Use hv_mw_Video(...) as a function handle.
  10. *
  11. * @endverbatim
  12. *
  13. * @author HiView SoC Software Team
  14. * @version 1.0.0
  15. * @date 2022-08-10
  16. */
  17. #ifndef __SDK_MIDDLEWARE_VIDEO_INC_VIDEO_H__
  18. #define __SDK_MIDDLEWARE_VIDEO_INC_VIDEO_H__
  19. #include "hv_comm_DataType.h"
  20. #include "hv_comm_Define.h"
  21. #include "hv_comm_PqDef.h"
  22. #include "../../inc/hv_mw_Channel_Manager.h"
  23. typedef struct _DataPathSearchTable
  24. {
  25. DisplayDataPathMode enDataPathMode;
  26. ColorFormatType enColorFormat;
  27. CompressRatio enCompressRatio;
  28. }DataPathSearchElem;
  29. /**
  30. * @brief Get default fake VideoConfigParams config param.
  31. * @param[in] none
  32. * @return VideoConfigParams.
  33. */
  34. VOID Hv_Mw_Video_GetFakeVideoConfigParams(VideoTimingParam *pstVideoTiming, VideoConfigParams *pstVideoConfigParams);
  35. /**
  36. * @brief Estimate Sub Channel ddr Size
  37. * @return ddr size.
  38. */
  39. UINT32 Hv_Mw_Video_EstimateSubChannelMemSize(ChannelData* pstChannelData);
  40. /**
  41. * @brief video data patch is framesync
  42. * @return Status, 0-frc, 1-framesync.
  43. */
  44. BOOL Hv_Mw_Video_CheckUseFrameSync(BOOL bVflipEnable, const VideoTimingParam* pstVideoTiming, const VideoConfigParams* pstVideoConfigParams);
  45. /**
  46. * @brief Send Reconfig data path message to System task
  47. * @param[in] none
  48. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  49. */
  50. Status Hv_Mw_Video_DataPathReconfig( VOID );
  51. /**
  52. * @brief video Data path config
  53. * @param[in] ChannelType-main or sub, VideoConfigParams-param calc by preconfig,VdeTimingParam-param from RX.
  54. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  55. */
  56. Status Hv_Mw_Video_ConfigDisplayDataPath(ChannelData* pstChannelData, VideoConfigParams* pstVideoConfigParams, VideoTimingParam* pstRxVideoTiming);
  57. /**
  58. * @brief set INP pattern frame rate for pq calibrate
  59. * @param[in] uiFrameRate frame rate.
  60. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  61. */
  62. Status Hv_Mw_Video_SetPqCalibrateFrameRate(UINT32 uiFrameRate);
  63. /**
  64. * @brief Set video aspect ratio.
  65. * @param[in] enVideoRatio:read in hv_comm_Define.h
  66. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  67. */
  68. Status Hv_Mw_Video_SetAspectRatio(VideoRatio enVideoRatio);
  69. /**
  70. * @brief set main channel video inputport source.
  71. * @param[in] 0- HDMI0 1:HDMI1 2-DP0 3-DP1.
  72. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  73. */
  74. Status Hv_Mw_Video_SetMainVideoSource(LinkPortIndex enLinkPortIndex);
  75. #ifdef CONFIG_USER_DOUBLE_CHANNEL_ON
  76. /**
  77. * @brief Set PIP / PBP funciton enable.
  78. * @param[in] 0- close PIP or PBP 1-PIP enable 2-pbp enable.
  79. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  80. */
  81. Status Hv_Mw_Video_SetPxpMode(PxpMode enPxpMode);
  82. /**
  83. * @brief set sub channel video inputport source.
  84. * @param[in] 0- HDMI0 1:HDMI1 2-DP0 3-DP1.
  85. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  86. */
  87. Status Hv_Mw_Video_SetSubVideoSource(LinkPortIndex enLinkPortIndex);
  88. /**
  89. * @brief swap main and sub channel inputport source.
  90. * @param[in] none.
  91. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  92. */
  93. Status Hv_Mw_Video_SetMainSubVideoSourceSwap();
  94. /**
  95. * @brief In pip Mode set sub window position.
  96. * @param[in] 0:左上 1:左下 2:右上 3右下
  97. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  98. */
  99. Status Hv_Mw_Video_SetSubVideoWindowPosition(PipPos enPipPos);
  100. /**
  101. * @brief set pip sub h position
  102. */
  103. VOID Hv_Mw_Video_SetPipWindowHPosition(USHORT16 usHPosLevel);
  104. /**
  105. * @brief set pip sub V position
  106. */
  107. VOID Hv_Mw_Video_SetPipWindowVPosition(USHORT16 usVPosLevel);
  108. /**
  109. * @brief get pip sub h position
  110. */
  111. USHORT16 Hv_Mw_Video_GetPipWindowHPosition(VOID);
  112. /**
  113. * @brief get pip sub V position
  114. */
  115. USHORT16 Hv_Mw_Video_GetPipWindowVPosition(VOID);
  116. /**
  117. * @brief set pip window size.
  118. * @param[in] 0-small 1-big
  119. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  120. */
  121. Status Hv_Mw_Video_SetSubVideoWindowSize(PipSize enPipSize);
  122. #endif
  123. /**
  124. * @brief set professional esport funciton switch.
  125. * @param[in] HV_OFF-close HV_ON-open
  126. */
  127. VOID Hv_Mw_Video_SetProEsportSwitch(UCHAR8 ucSw);
  128. /**
  129. * @brief set FreeSync funciton switch.
  130. * @param[in] HV_OFF-close HV_ON-open
  131. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  132. */
  133. Status Hv_Mw_Video_SetFreeSyncSwitch(UCHAR8 ucSw);
  134. /**
  135. * @brief 需要修改EDID重新拉HPD的HDR开关类型
  136. * @param[in] 0-close 1-open
  137. */
  138. VOID Hv_Mw_Video_SetEdidHdrSwitch(UINT32 uiValue);
  139. /**
  140. * @brief Set h flip
  141. * @param[in] HV_OFF-close HV_ON-open
  142. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  143. */
  144. Status Hv_Mw_Video_SetHflipSwitch(UCHAR8 ucSw);
  145. /**
  146. * @brief Set v flip
  147. * @param[in] HV_OFF-close HV_ON-open
  148. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  149. */
  150. Status Hv_Mw_Video_SetVflipSwitch(UCHAR8 ucSw);
  151. /**
  152. * @brief set auto search signal source function enable .
  153. * @param[in] HV_OFF-close HV_ON-open
  154. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  155. */
  156. Status Hv_Mw_Video_SetVideoAutoSelectSw(UCHAR8 ucSw);
  157. /**
  158. * @brief calc dcw ddr size.
  159. */
  160. VOID Hv_Mw_video_CalcDcwDdrOrWtrSize(VideoConfigParams* pstVideoConfigParams);
  161. #if (HV_CONFIG_ON == HV_PROJECT_CONFIG_MAGNIFY)
  162. /**
  163. * @brief Calc ddr video size.
  164. * @param[in] VideoConfigParams
  165. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  166. */
  167. VOID Hv_Mw_video_CalcMagniferDdrVideoSize(VideoConfigParams* pstVideoConfigParams);
  168. /**
  169. * @brief set Magnify Glass function Switch .
  170. * @param[in] HV_OFF-close HV_ON-open
  171. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  172. */
  173. Status Hv_Mw_Video_SetMagnifyGlassSwitch(UCHAR8 ucSw);
  174. /**
  175. * @brief set Magnify Glass function ratio .
  176. * @param[in] 0-100
  177. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  178. */
  179. Status Hv_Mw_Video_SetMagnifyGlassRatio(FLOAT32 fMgRatio);
  180. /**
  181. * @brief set Magnify Glass position
  182. * @param[in] range usMgPosH: 0-pannel Hactive, usMgPosV: 0-panel Vactive
  183. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  184. */
  185. Status Hv_Mw_Video_SetMagnifyGlassPos(USHORT16 usMgPosH, USHORT16 usMgPosV);
  186. /**
  187. * @brief set Magnify Glass sampling location
  188. * @param[in] range usSampleLocH: 0-pannel Hactive, usSampleLocV: 0-panel Vactive
  189. */
  190. VOID Hv_Mw_Video_SetMagnifyGlassSamplingLocation(USHORT16 usSampleLocH, USHORT16 usSampleLocV);
  191. /**
  192. * @brief set Magnify Glass Size
  193. * @param[in] range usMgHsize:0-panne Havtive , usMgVsize: 0-panel Vactive
  194. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  195. */
  196. Status Hv_Mw_Video_SetMagnifyGlassSize(USHORT16 usMgHsize, USHORT16 usMgVsize);
  197. #endif
  198. /**
  199. * @brief Set mprt enable.
  200. * @param[in] enMprtType:0-disable , 1: normal mprt, 2: vrr mprt
  201. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  202. */
  203. VOID Hv_Mw_Video_SetOutMprtPwmEnable(MprtType enMprtType);
  204. #if (HV_CONFIG_ON == HV_PROJECT_CONFIG_MAIN_MONTAGE)
  205. /**
  206. * @brief Set main channel montage enbale.
  207. * @param[in] bSw:0-disable , 1: enable
  208. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  209. */
  210. Status Hv_Mw_Video_SetMainMontageSw(UCHAR8 ucSw);
  211. /**
  212. * @brief Updata video param for montage setting.
  213. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  214. */
  215. Status Hv_Mw_Video_SetMainMontageParam(USHORT16 usCutHsta, USHORT16 usCutHend, USHORT16 usCutVsta, USHORT16 usCutVend);
  216. #endif
  217. /**
  218. * @brief Set ALLM enable and return status.
  219. * @return Status, 0-HV_FALSE, 1-HV_TRUE.
  220. */
  221. BOOL Hv_Mw_Video_SetMainALLMStatus(VOID);
  222. /**
  223. * @brief Set main channel over scan enbale.
  224. * @param[in] HV_OFF-close HV_ON-open
  225. */
  226. VOID Hv_Mw_Video_SetOverScanEn(UCHAR8 ucSw);
  227. /**
  228. * @brief Set main channel over scan enbale.
  229. * @return Status, 0-HV_FALSE, 1-HV_TRUE.
  230. */
  231. BOOL Hv_Mw_Video_GetOverScanEn(VOID);
  232. #if (HV_CONFIG_ON == HV_PROJECT_CONFIG_OVER_PANEL_CLOCK_EN)
  233. /**
  234. * @brief Set panel over clock en.
  235. */
  236. VOID Hv_Mw_Video_SetOverClockEn(UCHAR8 ucSw);
  237. /**
  238. * @brief Get panel over clock en.
  239. * @return Status, 0-HV_FALSE, 1-HV_TRUE.
  240. */
  241. BOOL Hv_Mw_Video_GetOverClockEn(VOID);
  242. #endif
  243. /**
  244. * @brief Get dtc vtotal is in panel spec.
  245. * @return BOOL, 0-HV_FALSE, 1-HV_TRUE.
  246. */
  247. BOOL Hv_Mw_Video_IsDtcVtotalInPanlSpec(VOID);
  248. /**
  249. * @brief Get dtc dynamic htotal
  250. */
  251. USHORT16 Hv_Mw_Video_GetDtcDynamicHtotal(VOID);
  252. /**
  253. * @brief Updata panel param for video to used.
  254. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  255. */
  256. VOID Hv_Mw_Video_SetVideoPanelParam(VOID);
  257. /**
  258. * @brief Set Line interrupt
  259. * @param[in] ucIndex: one of 24 index
  260. * @param[in] usLine: Line number of Interrupt
  261. * @return Status, None
  262. */
  263. VOID Hv_Mw_Video_SetLineInt(UCHAR8 ucIndex, USHORT16 usLine);
  264. /**
  265. * @brief Set Line en 24bit
  266. * @param[in] uiEn, 24bit en
  267. * @return Status, None
  268. */
  269. VOID Hv_Mw_Video_SetLineIntEn(UINT32 uiEn);
  270. /**
  271. * @brief Set dpu int en
  272. * @param[in] ucEn, 5bits
  273. * @return Status, None
  274. */
  275. VOID Hv_Mw_Video_SetDpuIntEn(UCHAR8 ucEn);
  276. /**
  277. * @brief Set Main Channel pos if not full screen
  278. * @param[in] pstVideoConfigParams
  279. * @param[in] usHoffset
  280. * @param[in] usVoffset
  281. * @return Status, None
  282. */
  283. VOID Hv_Mw_Video_SetMainPicPos(VideoConfigParams* pstVideoConfigParams, USHORT16 usHoffset, USHORT16 usVoffset);
  284. #endif