Config.in.csky 965 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. choice
  2. prompt "Target Architecture Variant"
  3. default BR2_ck610
  4. help
  5. Specific CPU variant to use
  6. config BR2_ck610
  7. # Not supported by upstream gcc <= 9, and handled as a special
  8. # exception in package/gcc/Config.in.host
  9. bool "ck610"
  10. config BR2_ck807
  11. bool "ck807"
  12. config BR2_ck810
  13. bool "ck810"
  14. config BR2_ck860
  15. bool "ck860"
  16. endchoice
  17. config BR2_CSKY_FPU
  18. bool "Enable FPU coprocessor"
  19. depends on BR2_ck810 || BR2_ck807 || BR2_ck860
  20. help
  21. You can say N here if your C-SKY CPU doesn't have a
  22. Floating-Point Coprocessor or if you don't need FPU support
  23. for your user-space programs.
  24. config BR2_CSKY_VDSP
  25. bool "Enable VDSP enhanced instructions Co-processor"
  26. depends on BR2_CSKY_FPU
  27. config BR2_GCC_TARGET_FLOAT_ABI
  28. default "soft" if !BR2_CSKY_FPU
  29. default "hard" if BR2_CSKY_FPU
  30. config BR2_ARCH
  31. default "csky"
  32. config BR2_ENDIAN
  33. default "LITTLE"
  34. config BR2_READELF_ARCH_NAME
  35. default "CSKY"
  36. # vim: ft=kconfig
  37. # -*- mode:kconfig; -*-