esp_himem.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. // Copyright 2018 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #pragma once
  15. #include <stddef.h>
  16. #include "esp_err.h"
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. //Opaque pointers as handles for ram/range data
  21. typedef struct esp_himem_ramdata_t *esp_himem_handle_t;
  22. typedef struct esp_himem_rangedata_t *esp_himem_rangehandle_t;
  23. //ESP32 MMU block size
  24. #define ESP_HIMEM_BLKSZ (0x8000)
  25. #define ESP_HIMEM_MAPFLAG_RO 1 /*!< Indicates that a mapping will only be read from. Note that this is unused for now. */
  26. /**
  27. * @brief Allocate a block in high memory
  28. *
  29. * @param size Size of the to-be-allocated block, in bytes. Note that this needs to be
  30. * a multiple of the external RAM mmu block size (32K).
  31. * @param[out] handle_out Handle to be returned
  32. * @returns - ESP_OK if succesful
  33. * - ESP_ERR_NO_MEM if out of memory
  34. * - ESP_ERR_INVALID_SIZE if size is not a multiple of 32K
  35. */
  36. esp_err_t esp_himem_alloc(size_t size, esp_himem_handle_t *handle_out);
  37. /**
  38. * @brief Allocate a memory region to map blocks into
  39. *
  40. * This allocates a contiguous CPU memory region that can be used to map blocks
  41. * of physical memory into.
  42. *
  43. * @param size Size of the range to be allocated. Note this needs to be a multiple of
  44. * the external RAM mmu block size (32K).
  45. * @param[out] handle_out Handle to be returned
  46. * @returns - ESP_OK if succesful
  47. * - ESP_ERR_NO_MEM if out of memory or address space
  48. * - ESP_ERR_INVALID_SIZE if size is not a multiple of 32K
  49. */
  50. esp_err_t esp_himem_alloc_map_range(size_t size, esp_himem_rangehandle_t *handle_out);
  51. /**
  52. * @brief Map a block of high memory into the CPUs address space
  53. *
  54. * This effectively makes the block available for read/write operations.
  55. *
  56. * @note The region to be mapped needs to have offsets and sizes that are aligned to the
  57. * SPI RAM MMU block size (32K)
  58. *
  59. * @param handle Handle to the block of memory, as given by esp_himem_alloc
  60. * @param range Range handle to map the memory in
  61. * @param ram_offset Offset into the block of physical memory of the block to map
  62. * @param range_offset Offset into the address range where the block will be mapped
  63. * @param len Length of region to map
  64. * @param flags One of ESP_HIMEM_MAPFLAG_*
  65. * @param[out] out_ptr Pointer to variable to store resulting memory pointer in
  66. * @returns - ESP_OK if the memory could be mapped
  67. * - ESP_ERR_INVALID_ARG if offset, range or len aren't MMU-block-aligned (32K)
  68. * - ESP_ERR_INVALID_SIZE if the offsets/lengths don't fit in the allocated memory or range
  69. * - ESP_ERR_INVALID_STATE if a block in the selected ram offset/length is already mapped, or
  70. * if a block in the selected range offset/length already has a mapping.
  71. */
  72. esp_err_t esp_himem_map(esp_himem_handle_t handle, esp_himem_rangehandle_t range, size_t ram_offset, size_t range_offset, size_t len, int flags, void **out_ptr);
  73. /**
  74. * @brief Free a block of physical memory
  75. *
  76. * This clears out the associated handle making the memory available for re-allocation again.
  77. * This will only succeed if none of the memory blocks currently have a mapping.
  78. *
  79. * @param handle Handle to the block of memory, as given by esp_himem_alloc
  80. * @returns - ESP_OK if the memory is succesfully freed
  81. * - ESP_ERR_INVALID_ARG if the handle still is (partially) mapped
  82. */
  83. esp_err_t esp_himem_free(esp_himem_handle_t handle);
  84. /**
  85. * @brief Free a mapping range
  86. *
  87. * This clears out the associated handle making the range available for re-allocation again.
  88. * This will only succeed if none of the range blocks currently are used for a mapping.
  89. *
  90. * @param handle Handle to the range block, as given by esp_himem_alloc_map_range
  91. * @returns - ESP_OK if the memory is succesfully freed
  92. * - ESP_ERR_INVALID_ARG if the handle still is (partially) mapped to
  93. */
  94. esp_err_t esp_himem_free_map_range(esp_himem_rangehandle_t handle);
  95. /**
  96. * @brief Unmap a region
  97. *
  98. * @param range Range handle
  99. * @param ptr Pointer returned by esp_himem_map
  100. * @param len Length of the block to be unmapped. Must be aligned to the SPI RAM MMU blocksize (32K)
  101. * @returns - ESP_OK if the memory is succesfully unmapped,
  102. * - ESP_ERR_INVALID_ARG if ptr or len are invalid.
  103. */
  104. esp_err_t esp_himem_unmap(esp_himem_rangehandle_t range, void *ptr, size_t len);
  105. /**
  106. * @brief Get total amount of memory under control of himem API
  107. *
  108. * @returns Amount of memory, in bytes
  109. */
  110. size_t esp_himem_get_phys_size();
  111. /**
  112. * @brief Get free amount of memory under control of himem API
  113. *
  114. * @returns Amount of free memory, in bytes
  115. */
  116. size_t esp_himem_get_free_size();
  117. /**
  118. * @brief Get amount of SPI memory address space needed for bankswitching
  119. *
  120. * @note This is also weakly defined in esp32/spiram.c and returns 0 there, so
  121. * if no other function in this file is used, no memory is reserved.
  122. *
  123. * @returns Amount of reserved area, in bytes
  124. */
  125. size_t esp_himem_reserved_area_size();
  126. #ifdef __cplusplus
  127. }
  128. #endif