Kconfig.defconfig.series 988 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Copyright (c) 2016 Linaro Limited
  2. # SPDX-License-Identifier: Apache-2.0
  3. # Kconfig symbols common to leopard series
  4. if SOC_SERIES_LEOPARD
  5. source "soc/arm/actions/leopard/Kconfig.defconfig.leopard*"
  6. config SOC_SERIES
  7. default "leopard"
  8. #config CORTEX_M_SYSTICK
  9. # bool
  10. # default y
  11. config HOSC_CLK_MHZ
  12. int "HOSC Clock (MHz)"
  13. DT_CHOSEN_Z_PSRAM := zephyr,psram
  14. config PSRAM_SIZE
  15. int "PSRAM Size in kB"
  16. default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_PSRAM),0,K)
  17. help
  18. The PSRAM size in kB. The default value comes from /chosen/zephyr,sram in
  19. devicetree. The user should generally avoid changing it via menuconfig or
  20. in configuration files.
  21. config PSRAM_BASE_ADDRESS
  22. hex "PSRAM Base Address"
  23. default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_PSRAM))
  24. help
  25. The PSRAM base address. The default value comes from from
  26. /chosen/zephyr,psram in devicetree. The user should generally avoid
  27. changing it via menuconfig or in configuration files.
  28. endif # SOC_SERIES_LEOPARD