hv_comm_Utilities.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /**
  2. * @file hv_comm_Utilities.h
  3. * @brief Header file of Utilities module.
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. *
  10. * @endverbatim
  11. *
  12. * @author HiView SoC Software Team
  13. * @version 1.0.0
  14. * @date 2022-08-22
  15. */
  16. #ifndef __SDK_COMMON_UTIL_UTILITIES_INC_HSUTILITIES_H__
  17. #define __SDK_COMMON_UTIL_UTILITIES_INC_HSUTILITIES_H__
  18. #include "hv_comm_DataType.h"
  19. #include "hv_vos_Conn.h"
  20. #include "hv_comm_Define.h"
  21. typedef struct SettingData_Tag
  22. {
  23. UINT32 uiAddr; ///< register address want to read or write
  24. UCHAR8 ubStartBit; ///< register start bit
  25. UCHAR8 ubEndBit; ///< register end bit
  26. UCHAR8 ubResv1; ///< reserve byte 1
  27. UCHAR8 ubResv2; ///< reserve byte 2
  28. UINT32 uiVal; ///< register write value
  29. }SettingData, *PSettingData;
  30. typedef struct _HDBF_TAG
  31. {
  32. CHAR8 HDB_Magic[4];
  33. CHAR8 HDB_ChipName[8];
  34. CHAR8 HDB_ModuleName[16];
  35. UINT32 HDB_RegCount;
  36. UCHAR8 HDB_Expand;
  37. UCHAR8 HDB_DefIndx;
  38. USHORT16 HDB_AttrItem;
  39. USHORT16 HDB_AttrVer;
  40. UCHAR8 HDB_Resv[26];
  41. }HDBF_Header, *PHDBF_Header;
  42. // INT32 Hv_Common_Log2 (UINT32 uiParam);
  43. BOOL HDB_Init(UINT32 *uiDBAddr, UINT32 arrIdx);
  44. UINT32 Hv_Common_GetEven(UINT32 uiParam);
  45. VOID Hv_Common_BinConfigInit(const UINT32 *uiConfigAddr, UINT32 uiLen);
  46. /**
  47. * @brief Read bytes reg.
  48. * @param[in] uiRegAdrr Reg addr to read.
  49. * @param[out] pucData the data write to reg.
  50. * @param[in] uwLen the length of write data.
  51. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  52. */
  53. VOID Hv_Common_WriteRegBytes(const UCHAR8 *pucData, UINT32 uiRegAdrr, UINT32 uiLen);
  54. /**
  55. * @brief Read bytes reg.
  56. * @param[in] uwRegAdrr Reg addr to read.
  57. * @param[out] pucData the data read from reg.
  58. * @param[in] uwLen the length of read data.
  59. * @return Status, 0-HV_SUCCESS, 1-HV_FAILURE.
  60. */
  61. Status Hv_Common_ReadRegBytes(UCHAR8 *pucData, UINT32 uiRegAdrr, UINT32 uiLen);
  62. /**
  63. * @brief Compute the sqrt of the float value.
  64. * @param[in] Value need to be caculate.
  65. * @return Float value of the sqrt result.
  66. */
  67. FLOAT32 Hv_Common_Sqrt(FLOAT32 fValue);
  68. #endif