Kconfig.soc 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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_WKEN_BAT
  29. bool
  30. prompt "eanbel battery first conected to run system"
  31. default n
  32. help
  33. the battery is connected for the first time;if disable, battery first insert,system power off.
  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 SLEEP_SENSOR_RUN_ON_NOR
  41. bool
  42. prompt "enable sleep sensor algo run on NOR"
  43. default n
  44. help
  45. enable sleep sensor algo run on NOR
  46. config SLEEP_TIMER_DEBUG
  47. bool
  48. prompt "enable sleep timestamp debug"
  49. default n
  50. help
  51. enable sleep timestamp debug
  52. config SLEEP_UART_SILENT
  53. bool
  54. prompt "enable sleep uart silent"
  55. default n
  56. help
  57. enable sleep uart silent
  58. config SLEEP_COPY_SRAM_FOR_SENSOR
  59. bool
  60. prompt "enable copy sram for sensor algo"
  61. default n
  62. help
  63. enable copy sram for sensor algo
  64. config SLEEP_MEMORY_CHECK_INTEGRITY
  65. bool
  66. prompt "enable memory check integrity"
  67. default n
  68. help
  69. enable memory check integrity
  70. config SLEEP_DISABLE_BT
  71. bool
  72. prompt "disable Bluetooth when deep sleep"
  73. default n
  74. help
  75. disable Bluetooth when deep sleep
  76. config SYS_WAKELOCK
  77. bool
  78. prompt "System Wake Lock Support"
  79. depends on PM
  80. default n
  81. help
  82. This option enables actions system wake lock.
  83. config CPU_PWRGAT
  84. bool
  85. prompt "support cpu power gating"
  86. default n
  87. help
  88. This option support cpu power gating
  89. config S1ML_LITTLE_BIAS
  90. bool
  91. prompt "support s1ml little bias"
  92. default n
  93. help
  94. This option support s1ml little bias regulation
  95. endif