Kconfig.soc 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Copyright (c) 2016 Linaro Limited.
  2. # SPDX-License-Identifier: Apache-2.0
  3. choice
  4. prompt "LEOPARD MCU Selection"
  5. depends on SOC_SERIES_LEOPARD
  6. config SOC_LEOPARD
  7. bool "LEOPARD"
  8. endchoice
  9. if SOC_LEOPARD
  10. config SOC_SPI0_USE_CK64M
  11. bool
  12. prompt "enable cpu spi0 to use CK64M clock source"
  13. default y
  14. help
  15. enable cpu spi0 to use CK64M clock source
  16. config IRQ_VECTOR_IN_SRAM
  17. bool
  18. prompt "enable irq vector copy to sram"
  19. default n
  20. help
  21. enable irq vector copy to sram
  22. config SLEEP_FUNC_IN_SRAM
  23. bool
  24. prompt "enable sleep func copy to sram"
  25. default y
  26. help
  27. enable sleep func copy to sram
  28. config SOC_EP_MODE
  29. bool
  30. prompt "indicate ep mode"
  31. default n
  32. help
  33. ebable indicate ep mode
  34. config SOC_NO_PSRAM
  35. bool
  36. prompt "indicate soc not integrate psram"
  37. default n
  38. help
  39. prompt "indicate soc not integrate psram"
  40. config SOC_SIGN_ENABLE
  41. bool
  42. prompt "signature verification eanble"
  43. default n
  44. help
  45. signature verification eanble
  46. config SPI0CAHE_PSRAM
  47. bool
  48. prompt "SPI0CACHE MAP TO PSRAM"
  49. default n
  50. help
  51. spi0 cache map to psram
  52. endif