Config.in.mips 973 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice ADK_TARGET_MIPS_CPU_ARCH
  4. prompt "ISA configuration"
  5. depends on ADK_TARGET_ARCH_MIPS && ADK_TARGET_SYSTEM_QEMU_MIPS
  6. default ADK_CPU_MIPS_MIPS32R2
  7. config ADK_CPU_MIPS_MIPS32R6
  8. bool "MIPS32r6"
  9. select ADK_CPU_MIPS32R6
  10. config ADK_CPU_MIPS_MIPS32R2
  11. bool "MIPS32r2"
  12. select ADK_CPU_MIPS32R2
  13. config ADK_CPU_MIPS_MIPS32
  14. bool "MIPS32"
  15. select ADK_CPU_MIPS32
  16. endchoice
  17. choice ADK_TARGET_MIPS64_CPU_ARCH
  18. prompt "ISA configuration"
  19. depends on ADK_TARGET_ARCH_MIPS64 && ADK_TARGET_SYSTEM_QEMU_MIPS64
  20. default ADK_CPU_MIPS_MIPS64R2
  21. config ADK_CPU_MIPS_MIPS64R6
  22. bool "MIPS64r6"
  23. select ADK_CPU_MIPS32R6
  24. config ADK_CPU_MIPS_MIPS64R2
  25. bool "MIPS64r2"
  26. select ADK_CPU_MIPS64R2
  27. config ADK_CPU_MIPS_MIPS64
  28. bool "MIPS64"
  29. select ADK_CPU_MIPS64
  30. endchoice