act_arm_mpu.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright (c) 2015 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_ACT_ARM_MPU_H_
  7. #define ZEPHYR_INCLUDE_ACT_ARM_MPU_H_
  8. #include <kernel.h>
  9. #include <kernel_structs.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /*mpu attr */
  14. #define MPU_ATTR_NO 0 /*read and no exe*/
  15. #define MPU_ATTR_RW 1 /*read/write and exe*/
  16. #define MPU_ATTR_RO 2 /*read and exe*/
  17. /*mpu chan */
  18. #define MPU_CHAN_ROM 0 /*system use*/
  19. #define MPU_CHAN_CODE 1 /*system use*/
  20. #define MPU_CHAN_RAMFUC 2 /*system use*/
  21. #define MPU_CHAN_SHELL 3 /*shell cmd use*/
  22. #define MPU_CHAN_USER0 4 /*common use*/
  23. #define MPU_CHAN_USER1 5 /*common use*/
  24. #define MPU_CHAN_USER2 6 /*common use*/
  25. #define MPU_CHAN_USER3 7 /*commonuse*/
  26. /**
  27. *
  28. * @brief mpu set mem_base= must align to size(32B) , n >= 5 (32-2GB)
  29. *
  30. * chan: MPU chan
  31. * mem_base: mpu base addr
  32. * size: mpu size
  33. * attr: *mpu attr
  34. * @return size of the d-cache line or 0 if the d-cache is not enabled.
  35. */
  36. void act_mpu_set(uint32_t chan, uint32_t mem_base, uint32_t size, uint32_t attr);
  37. void act_mpu_unset(uint32_t chan);
  38. void arm_mpu_protect_init(void);
  39. /*arm trace enable*/
  40. void cpu_trace_enable(int enable);
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif /* ZEPHYR_INCLUDE_ACT_ARM_MPU_H_ */