hv_comm_MemParser.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /**
  2. * @file hv_mem_Parser.h
  3. * @brief Header file of Project.
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. *
  10. *
  11. * @endverbatim
  12. *
  13. * @author HiView SoC Software Team
  14. * @version 1.0.0
  15. * @date 2023-05-18
  16. */
  17. #include "hv_comm_MemoryConfig.h"
  18. #include "hv_comm_FlashConfig.h"
  19. #include "hv_comm_DataType.h"
  20. #include "hv_vos_Comm.h"
  21. #include "hv_comm_Define.h"
  22. typedef enum _PqTableType
  23. {
  24. TABLE_PQ_NONE,
  25. TABLE_PQ_INIt_REG,
  26. TABLE_PQ_DITHER,
  27. TABLE_PQ_SCL,
  28. TABLE_PQ_LDC,
  29. TABLE_PQ_OD,
  30. TABLE_PQ_CONTRAST,
  31. TABLE_PQ_YCCM,
  32. TABLE_PQ_SHARPNESS,
  33. TABLE_PQ_CONTRAST_PARAM,
  34. TABLE_PQ_SHARPNESS_PARAM,
  35. TABLE_PQ_GAMMA_T,
  36. TABLE_PQ_GAMMA_D,
  37. TABLE_PQ_OSD_GMD,
  38. TABLE_PQ_OSD_GMI,
  39. TABLE_PQ_WCG_CM,
  40. TABLE_PQ_WCG_GMD,
  41. TABLE_PQ_WCG_GMI,
  42. TABLE_PQ_HDR,
  43. TABLE_PQ_DEMURA,
  44. TABLE_PQ_MAX,
  45. }PqTableType;
  46. /**
  47. * @brief get pq table addr & size
  48. * @param[in] enType: PqTableType
  49. * @param[in] uiIndex: index
  50. * @param[out] puiAddr: table addr
  51. * @param[out] puiSize: table size
  52. */
  53. Status Hv_Pq_GetTable(PqTableType enType, UINT32 uiIndex, UINT32 *puiAddr, UINT32 *puiSize);
  54. /**
  55. * @brief show pq table addr & size
  56. */
  57. Status Hv_Pq_ShowTable(void);
  58. /**
  59. * @brief decompress pq partition, and then move to ddr positon.
  60. */
  61. void Hv_Pq_DecompressPart(void);
  62. /**
  63. * @brief get code superblock version.
  64. */
  65. UINT32 Hv_Comm_GetCodeVersion(void);
  66. /* copy logo and monitor data from flash to ddr, only rom version used. */
  67. void Hv_Comm_CopyLogoData(void);
  68. /* return address */
  69. UINT32 Hv_Board_Memory_FRCStart(void);
  70. /* return bytes */
  71. UINT32 Hv_Board_Memory_RemainSizeForFRC(void);
  72. /* return xxMbit/s */
  73. UINT32 Hv_Board_Memory_RemainBandForFRC(UINT32 PanelFreq);