Config.arc 1007 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. config CONFIG_ARC_HAS_ATOMICS
  26. bool "Support for LLOCK/SCOND instructions"
  27. default y
  28. help
  29. LLOCK/SCOND instructions are needed to implement atomic r-m-w
  30. Otherwise libc needs kernel assisted atomic cmpxchg available
  31. since v4.9 kernel
  32. choice
  33. prompt "MMU Page Size"
  34. default CONFIG_ARC_PAGE_SIZE_8K
  35. config CONFIG_ARC_PAGE_SIZE_8K
  36. bool "8KB"
  37. help
  38. Choose between 4k, 8k (default) or 16k
  39. config CONFIG_ARC_PAGE_SIZE_16K
  40. bool "16KB"
  41. config CONFIG_ARC_PAGE_SIZE_4K
  42. bool "4KB"
  43. endchoice