mpu_acts.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief actions mpu interface
  9. */
  10. #ifndef MPU_ACTS_H_
  11. #define MPU_ACTS_H_
  12. /**
  13. * @brief Declare a minimum MPU guard alignment and size
  14. *
  15. * This specifies the minimum MPU guard alignment/size for the MPU. This
  16. * will be used to denote the guard section of the stack, if it exists.
  17. *
  18. * One key note is that this guard results in extra bytes being added to
  19. * the stack. APIs which give the stack ptr and stack size will take this
  20. * guard size into account.
  21. *
  22. * Stack is allocated, but initial stack pointer is at the end
  23. * (highest address). Stack grows down to the actual allocation
  24. * address (lowest address). Stack guard, if present, will comprise
  25. * the lowest MPU_GUARD_ALIGN_AND_SIZE bytes of the stack.
  26. *
  27. * As the stack grows down, it will reach the end of the stack when it
  28. * encounters either the stack guard region, or the stack allocation
  29. * address.
  30. *
  31. * ----------------------- <---- Stack allocation address + stack size +
  32. * | | MPU_GUARD_ALIGN_AND_SIZE
  33. * | Some thread data | <---- Defined when thread is created
  34. * | ... |
  35. * |---------------------| <---- Actual initial stack ptr
  36. * | Initial Stack Ptr | aligned to STACK_ALIGN_SIZE
  37. * | ... |
  38. * | ... |
  39. * | ... |
  40. * | ... |
  41. * | ... |
  42. * | ... |
  43. * | ... |
  44. * | ... |
  45. * | Stack Ends |
  46. * |---------------------- <---- Stack Buffer Ptr from API
  47. * | MPU Guard, |
  48. * | if present |
  49. * ----------------------- <---- Stack Allocation address
  50. *
  51. */
  52. #if defined(CONFIG_MPU_STACK_GUARD)
  53. #define MPU_GUARD_ALIGN_AND_SIZE 32
  54. #else
  55. #define MPU_GUARD_ALIGN_AND_SIZE 0
  56. #endif
  57. #define MPU_DMA_WRITE 0x20
  58. #define MPU_CPU_READ 0x10
  59. #define MPU_CPU_WRITE 0x08
  60. #define MPU_DSP_P_READ 0x04
  61. #define MPU_DSP_D_READ 0x02
  62. #define MPU_DSP_D_WRITE 0x01
  63. void mpu_set_address(uint32_t start, uint32_t end, uint32_t flag, uint32_t index);
  64. void mpu_protect_enable(void);
  65. void mpu_protect_disable(void);
  66. void mpu_enable_region(unsigned int index);
  67. void mpu_disable_region(unsigned int index);
  68. int mpu_region_is_enable(unsigned int index);
  69. #endif /* MPU_ACTS_H_ */