Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

68 lignes
2.1 KiB

  1. /*
  2. * Copyright 2017-2020 NXP
  3. * All rights reserved.
  4. *
  5. * SPDX-License-Identifier: BSD-3-Clause
  6. *
  7. */
  8. #ifndef FSL_FTFX_UTILITIES_H
  9. #define FSL_FTFX_UTILITIES_H
  10. /*!
  11. * @addtogroup ftfx_utilities
  12. * @{
  13. */
  14. /*******************************************************************************
  15. * Definitions
  16. ******************************************************************************/
  17. /*! @brief Constructs the version number for drivers. */
  18. #if !defined(MAKE_VERSION)
  19. #define MAKE_VERSION(major, minor, bugfix) (((major) << 16) | ((minor) << 8) | (bugfix))
  20. #endif
  21. /*! @brief Constructs a status code value from a group and a code number. */
  22. #if !defined(MAKE_STATUS)
  23. #define MAKE_STATUS(group, code) ((((group)*100) + (code)))
  24. #endif
  25. /*! @brief Constructs the four character code for the Flash driver API key. */
  26. #if !defined(FOUR_CHAR_CODE)
  27. #define FOUR_CHAR_CODE(a, b, c, d) \
  28. (((uint32_t)(d) << 24u) | ((uint32_t)(c) << 16u) | ((uint32_t)(b) << 8u) | ((uint32_t)(a)))
  29. #endif
  30. /*! @brief Alignment(down) utility. */
  31. #if !defined(ALIGN_DOWN)
  32. #define ALIGN_DOWN(x, a) (((uint32_t)(x)) & ~((uint32_t)(a)-1u))
  33. #endif
  34. /*! @brief Alignment(up) utility. */
  35. #if !defined(ALIGN_UP)
  36. #define ALIGN_UP(x, a) ALIGN_DOWN((uint32_t)(x) + (uint32_t)(a)-1u, a)
  37. #endif
  38. /*! @brief bytes2word utility. */
  39. #define B1P4(b) (((uint32_t)(b)&0xFFU) << 24U)
  40. #define B1P3(b) (((uint32_t)(b)&0xFFU) << 16U)
  41. #define B1P2(b) (((uint32_t)(b)&0xFFU) << 8U)
  42. #define B1P1(b) ((uint32_t)(b)&0xFFU)
  43. #define B2P3(b) (((uint32_t)(b)&0xFFFFU) << 16U)
  44. #define B2P2(b) (((uint32_t)(b)&0xFFFFU) << 8U)
  45. #define B2P1(b) ((uint32_t)(b)&0xFFFFU)
  46. #define B3P2(b) (((uint32_t)(b)&0xFFFFFFU) << 8U)
  47. #define B3P1(b) ((uint32_t)(b)&0xFFFFFFU)
  48. #define BYTE2WORD_1_3(x, y) (B1P4(x) | B3P1(y))
  49. #define BYTE2WORD_2_2(x, y) (B2P3(x) | B2P1(y))
  50. #define BYTE2WORD_3_1(x, y) (B3P2(x) | B1P1(y))
  51. #define BYTE2WORD_1_1_2(x, y, z) (B1P4(x) | B1P3(y) | B2P1(z))
  52. #define BYTE2WORD_1_2_1(x, y, z) (B1P4(x) | B2P2(y) | B1P1(z))
  53. #define BYTE2WORD_2_1_1(x, y, z) (B2P3(x) | B1P2(y) | B1P1(z))
  54. #define BYTE2WORD_1_1_1_1(x, y, z, w) (B1P4(x) | B1P3(y) | B1P2(z) | B1P1(w))
  55. /*! @}*/
  56. #endif /* FSL_FTFX_UTILITIES_H */