hv_vos_Endian.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * @file hv_vos_Endian.h
  3. * @brief Header file of endian.
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. * (+) Use ()
  10. *
  11. * @endverbatim
  12. * @author HiView SoC Software Team
  13. * @version 1.0.0
  14. * @date 2023-03-01
  15. */
  16. /** @file vos_endian.h
  17. * @brief VOS endian functions
  18. */
  19. #ifndef _HV_VOS_ENDIAN_H
  20. #define _HV_VOS_ENDIAN_H
  21. #include "hv_vos_Types.h"
  22. VOS_EXTERN_C_BEGIN
  23. /** @defgroup VOS_ENDIAN VOS_ENDIAN
  24. * VOS endian related routines
  25. * @{
  26. */
  27. #ifndef HV_SWAP32
  28. #define HV_SWAP32(x) \
  29. ( \
  30. (((x) >> 24) & 0xFF ) | \
  31. (((x) >> 8) & 0xFF00) | \
  32. (((x) & 0xFF00) << 8 ) | \
  33. (((x) & 0xFF) << 24 ) \
  34. )
  35. #endif
  36. #ifndef HV_SWAP16
  37. #define HV_SWAP16(x) \
  38. ( \
  39. (((x) & 0xFF) << 8 ) | \
  40. (((x) & 0xFF00) >> 8 ) \
  41. )
  42. #endif
  43. #ifndef HV_SWAP32_INPLACE
  44. #ifdef HV_CONFIG_ENDIAN_LITTLE
  45. #define HV_SWAP32_INPLACE(addr) HV_W32((addr), HV_SWAP32(HV_R32(addr)))
  46. #else
  47. #define HV_SWAP32_INPLACE(addr) HV_W32_BE((addr), HV_SWAP32(HV_R32_BE(addr)))
  48. #endif
  49. #endif
  50. /** @} */
  51. VOS_EXTERN_C_END
  52. #endif