Config.arc 763 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. config TARGET_ARCH
  6. default "arc"
  7. config FORCE_OPTIONS_FOR_ARCH
  8. bool
  9. default y
  10. select ARCH_ANY_ENDIAN
  11. choice
  12. prompt "Target Processor Type"
  13. default CONFIG_ARC_CPU_700
  14. config CONFIG_ARC_CPU_700
  15. bool "ARC700"
  16. select ARCH_HAS_MMU
  17. help
  18. ARCompact ISA based ARC CPU
  19. config CONFIG_ARC_CPU_HS
  20. bool "ARC-HS"
  21. select ARCH_HAS_MMU
  22. help
  23. Next Generation ARCv2 ISA based Processors
  24. endchoice
  25. choice
  26. prompt "MMU Page Size"
  27. default CONFIG_ARC_PAGE_SIZE_8K
  28. config CONFIG_ARC_PAGE_SIZE_8K
  29. bool "8KB"
  30. help
  31. Choose between 4k, 8k (default) or 16k
  32. config CONFIG_ARC_PAGE_SIZE_16K
  33. bool "16KB"
  34. config CONFIG_ARC_PAGE_SIZE_4K
  35. bool "4KB"
  36. endchoice