Kconfig 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. # Kconfig - DSP device configuration options
  2. #
  3. #
  4. # Copyright (c) 2018 Actions Semiconductor Co., Ltd
  5. #
  6. # SPDX-License-Identifier: Apache-2.0
  7. #
  8. #
  9. # MPU options
  10. #
  11. config MPU_ACTS
  12. bool "Memory protect unit for Actions SoC"
  13. default n
  14. help
  15. enable actions mpu
  16. choice
  17. prompt "mpu driven select"
  18. default MPU_EXCEPTION_DRIVEN
  19. help
  20. Select mpu driven
  21. config MPU_IRQ_DRIVEN
  22. bool
  23. prompt "use mpu interrupt driven"
  24. depends on MPU_ACTS
  25. help
  26. This option select mpu driven type
  27. config MPU_EXCEPTION_DRIVEN
  28. bool
  29. prompt "use mpu exception driven"
  30. depends on MPU_ACTS
  31. help
  32. This option select mpu driven type
  33. endchoice
  34. config MPU_MONITOR_CACHECODE_WRITE
  35. bool
  36. prompt "use mpu monitor cache code write"
  37. depends on MPU_ACTS
  38. default y
  39. help
  40. This option enables mpu monitor cache code write
  41. config MPU_MONITOR_FLASH_AREA_WRITE
  42. bool
  43. prompt "use mpu monitor nor flash cache address write"
  44. depends on !MPU_MONITOR_CACHECODE_WRITE
  45. default n
  46. help
  47. This option enables nor flash address write
  48. config MPU_MONITOR_FLASH_AREA_BASE
  49. hex
  50. prompt "use mpu monitor nor flash area write base address"
  51. depends on MPU_MONITOR_FLASH_AREA_WRITE
  52. default 0x10000000
  53. help
  54. This option set mpu monitor nor flash area write base address
  55. config MPU_MONITOR_FLASH_AREA_END
  56. hex
  57. prompt "use mpu monitor nor flash area write end address"
  58. depends on MPU_MONITOR_FLASH_AREA_WRITE
  59. default 0x18000000
  60. help
  61. This option set mpu monitor nor flash area write end address
  62. config MPU_MONITOR_RAMFUNC_WRITE
  63. bool
  64. prompt "use mpu monitor ramfunc write"
  65. depends on MPU_ACTS
  66. default y
  67. help
  68. This option enables mpu monitor ramfunc write
  69. config MPU_MONITOR_USER_DATA
  70. bool
  71. prompt "use mpu monitor user data"
  72. depends on MPU_ACTS
  73. default y
  74. help
  75. This option enables mpu monitor dsp write mcu memory
  76. config MPU_MONITOR_ROMFUNC_WRITE
  77. bool
  78. prompt "use mpu monitor rom func write"
  79. depends on MPU_ACTS
  80. default n
  81. help
  82. This option enables mpu monitor rom func write
  83. config MPU_ACTS_MAX_INDEX
  84. int
  85. prompt "mpu max entry index"
  86. depends on MPU_ACTS
  87. default 4
  88. help
  89. This option select mpu monitor bt controller memory index
  90. config MPU_MONITOR_CACHECODE_WRITE_INDEX
  91. int
  92. prompt "use mpu monitor cache code write index"
  93. depends on MPU_MONITOR_CACHECODE_WRITE || MPU_MONITOR_FLASH_AREA_WRITE
  94. default 0
  95. help
  96. This option select mpu monitor cache code write index
  97. config MPU_MONITOR_RAMFUNC_WRITE_INDEX
  98. int
  99. prompt "use mpu monitor ramfunc write"
  100. depends on MPU_MONITOR_RAMFUNC_WRITE
  101. default 1
  102. help
  103. This option select mpu monitor ramfunc write index
  104. config MPU_MONITOR_USER_DATA_INDEX
  105. int
  106. prompt "use mpu monitor user data memory index"
  107. depends on MPU_ACTS
  108. default 3
  109. help
  110. This option select mpu monitor user data memory index
  111. config MPU_MONITOR_ROMFUNC_WRITE_INDEX
  112. int
  113. prompt "use mpu monitor rom func write index"
  114. depends on MPU_MONITOR_ROMFUNC_WRITE
  115. default 2
  116. help
  117. This option select mpu monitor rom func write index