nrf_nvmc.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /**
  2. * Copyright (c) 2012 - 2019, 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. /**
  41. *@file
  42. *@brief NMVC driver implementation
  43. */
  44. #include <nrfx.h>
  45. #include "nrf_nvmc.h"
  46. static inline void wait_for_flash_ready(void)
  47. {
  48. while (NRF_NVMC->READY == NVMC_READY_READY_Busy) {;}
  49. }
  50. void nrf_nvmc_page_erase(uint32_t address)
  51. {
  52. // Enable erase.
  53. NRF_NVMC->CONFIG = NVMC_CONFIG_WEN_Een;
  54. __ISB();
  55. __DSB();
  56. // Erase the page
  57. NRF_NVMC->ERASEPAGE = address;
  58. wait_for_flash_ready();
  59. NRF_NVMC->CONFIG = NVMC_CONFIG_WEN_Ren;
  60. __ISB();
  61. __DSB();
  62. }
  63. void nrf_nvmc_write_byte(uint32_t address, uint8_t value)
  64. {
  65. uint32_t byte_shift = address & (uint32_t)0x03;
  66. uint32_t address32 = address & ~byte_shift; // Address to the word this byte is in.
  67. uint32_t value32 = (*(uint32_t*)address32 & ~((uint32_t)0xFF << (byte_shift << (uint32_t)3)));
  68. value32 = value32 + ((uint32_t)value << (byte_shift << 3));
  69. // Enable write.
  70. NRF_NVMC->CONFIG = (NVMC_CONFIG_WEN_Wen << NVMC_CONFIG_WEN_Pos);
  71. __ISB();
  72. __DSB();
  73. *(uint32_t*)address32 = value32;
  74. wait_for_flash_ready();
  75. NRF_NVMC->CONFIG = (NVMC_CONFIG_WEN_Ren << NVMC_CONFIG_WEN_Pos);
  76. __ISB();
  77. __DSB();
  78. }
  79. void nrf_nvmc_write_word(uint32_t address, uint32_t value)
  80. {
  81. // Enable write.
  82. NRF_NVMC->CONFIG = NVMC_CONFIG_WEN_Wen;
  83. __ISB();
  84. __DSB();
  85. *(uint32_t*)address = value;
  86. wait_for_flash_ready();
  87. NRF_NVMC->CONFIG = NVMC_CONFIG_WEN_Ren;
  88. __ISB();
  89. __DSB();
  90. }
  91. void nrf_nvmc_write_bytes(uint32_t address, const uint8_t * src, uint32_t num_bytes)
  92. {
  93. uint32_t i;
  94. for (i = 0; i < num_bytes; i++)
  95. {
  96. nrf_nvmc_write_byte(address + i,src[i]);
  97. }
  98. }
  99. void nrf_nvmc_write_words(uint32_t address, const uint32_t * src, uint32_t num_words)
  100. {
  101. uint32_t i;
  102. // Enable write.
  103. NRF_NVMC->CONFIG = NVMC_CONFIG_WEN_Wen;
  104. __ISB();
  105. __DSB();
  106. for (i = 0; i < num_words; i++)
  107. {
  108. ((uint32_t*)address)[i] = src[i];
  109. wait_for_flash_ready();
  110. }
  111. NRF_NVMC->CONFIG = NVMC_CONFIG_WEN_Ren;
  112. __ISB();
  113. __DSB();
  114. }