nrf_ficr.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. /**
  2. * Copyright (c) 2018 - 2020, Nordic Semiconductor ASA
  3. *
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without modification,
  7. * are permitted provided that the following conditions are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright notice, this
  10. * list of conditions and the following disclaimer.
  11. *
  12. * 2. Redistributions in binary form, except as embedded into a Nordic
  13. * Semiconductor ASA integrated circuit in a product or a software update for
  14. * such product, must reproduce the above copyright notice, this list of
  15. * conditions and the following disclaimer in the documentation and/or other
  16. * materials provided with the distribution.
  17. *
  18. * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
  19. * contributors may be used to endorse or promote products derived from this
  20. * software without specific prior written permission.
  21. *
  22. * 4. This software, with or without modification, must only be used with a
  23. * Nordic Semiconductor ASA integrated circuit.
  24. *
  25. * 5. Any software provided in binary form under this license must not be reverse
  26. * engineered, decompiled, modified and/or disassembled.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
  29. * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30. * OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
  31. * DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
  32. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  33. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  34. * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  35. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  36. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  37. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  38. *
  39. */
  40. #ifndef NRF_FICR_H__
  41. #define NRF_FICR_H__
  42. #include <nrfx.h>
  43. #ifdef __cplusplus
  44. extern "C" {
  45. #endif
  46. /**
  47. * @defgroup nrf_ficr_hal FICR HAL
  48. * @{
  49. * @ingroup nrf_ficr
  50. * @brief Hardware access layer (HAL) for getting data from
  51. * the Factory Information Configuration Registers (FICR).
  52. */
  53. /**
  54. * @brief Function for getting the size of the code memory page.
  55. *
  56. * @param[in] p_reg Pointer to the structure of registers of the peripheral.
  57. *
  58. * @return Code memory page size in bytes.
  59. */
  60. __STATIC_INLINE uint32_t nrf_ficr_codepagesize_get(NRF_FICR_Type const * p_reg);
  61. /**
  62. * @brief Function for getting the size of the code memory rendered as number of pages.
  63. *
  64. * @param[in] p_reg Pointer to the structure of registers of the peripheral.
  65. *
  66. * @return Code memory size rendered as number of pages.
  67. */
  68. __STATIC_INLINE uint32_t nrf_ficr_codesize_get(NRF_FICR_Type const * p_reg);
  69. /**
  70. * @brief Function for getting the unique device identifier.
  71. *
  72. * @param[in] p_reg Pointer to the structure of registers of the peripheral.
  73. * @param[in] reg_id Register index.
  74. *
  75. * @return Unique device identifier.
  76. */
  77. __STATIC_INLINE uint32_t nrf_ficr_deviceid_get(NRF_FICR_Type const * p_reg, uint32_t reg_id);
  78. #if defined(FICR_NFC_TAGHEADER0_MFGID_Msk) || defined(__NRFX_DOXYGEN__)
  79. /**
  80. * @brief Function for getting the default header values for the NFC tag.
  81. *
  82. * @param[in] p_reg Pointer to the structure of registers of the peripheral.
  83. * @param[in] tagheader_id Tag header index.
  84. *
  85. * @return The default header value of the NFC tag for the specified header index.
  86. */
  87. __STATIC_INLINE uint32_t nrf_ficr_nfc_tagheader_get(NRF_FICR_Type const * p_reg,
  88. uint32_t tagheader_id);
  89. #endif // defined(FICR_NFC_TAGHEADER0_MFGID_Msk) || defined(__NRFX_DOXYGEN__)
  90. #ifndef SUPPRESS_INLINE_IMPLEMENTATION
  91. __STATIC_INLINE uint32_t nrf_ficr_codepagesize_get(NRF_FICR_Type const * p_reg)
  92. {
  93. #if defined(FICR_INFO_CODEPAGESIZE_CODEPAGESIZE_Msk)
  94. return p_reg->INFO.CODEPAGESIZE;
  95. #else
  96. return p_reg->CODEPAGESIZE;
  97. #endif
  98. }
  99. __STATIC_INLINE uint32_t nrf_ficr_codesize_get(NRF_FICR_Type const * p_reg)
  100. {
  101. #if defined(FICR_INFO_CODESIZE_CODESIZE_Msk)
  102. return p_reg->INFO.CODESIZE;
  103. #else
  104. return p_reg->CODESIZE;
  105. #endif
  106. }
  107. __STATIC_INLINE uint32_t nrf_ficr_deviceid_get(NRF_FICR_Type const * p_reg, uint32_t reg_id)
  108. {
  109. #if defined(FICR_INFO_DEVICEID_DEVICEID_Msk)
  110. return p_reg->INFO.DEVICEID[reg_id];
  111. #else
  112. return p_reg->DEVICEID[reg_id];
  113. #endif
  114. }
  115. #if defined(FICR_NFC_TAGHEADER0_MFGID_Msk)
  116. __STATIC_INLINE uint32_t nrf_ficr_nfc_tagheader_get(NRF_FICR_Type const * p_reg,
  117. uint32_t tagheader_id)
  118. {
  119. switch(tagheader_id) {
  120. case 0:
  121. return p_reg->NFC.TAGHEADER0;
  122. break;
  123. case 1:
  124. return p_reg->NFC.TAGHEADER1;
  125. break;
  126. case 2:
  127. return p_reg->NFC.TAGHEADER2;
  128. break;
  129. case 3:
  130. return p_reg->NFC.TAGHEADER3;
  131. break;
  132. default:
  133. return 0;
  134. }
  135. }
  136. #endif // defined(FICR_NFC_TAGHEADER0_MFGID_Msk)
  137. #endif // SUPPRESS_INLINE_IMPLEMENTATION
  138. /** @} */
  139. #ifdef __cplusplus
  140. }
  141. #endif
  142. #endif // NRF_FICR_H__