Kconfig 738 B

12345678910111213141516171819202122232425
  1. menu "AArch64 Architecture Configuration"
  2. config ARCH_TEXT_OFFSET
  3. hex "Text offset"
  4. default 0x200000
  5. config ARCH_RAM_OFFSET
  6. hex "RAM offset"
  7. default 0
  8. config ARCH_SECONDARY_CPU_STACK_SIZE
  9. int "Secondary CPU stack size"
  10. default 4096
  11. config ARCH_HAVE_EFFICIENT_UNALIGNED_ACCESS
  12. bool
  13. default y
  14. config ARCH_USING_GENERIC_CPUID
  15. bool "Using generic cpuid implemenation"
  16. select ARCH_USING_HW_THREAD_SELF
  17. default y if RT_USING_OFW
  18. default n
  19. config ARCH_HEAP_SIZE
  20. hex "Size of system heap"
  21. default 0x4000000
  22. config ARCH_INIT_PAGE_SIZE
  23. hex "Size of init page region"
  24. default 0x200000
  25. endmenu