Kconfig.soc 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. choice
  2. prompt "SoC Type"
  3. default META21_FPGA
  4. config META12_FPGA
  5. bool "Meta 1.2 FPGA"
  6. select METAG_META12
  7. help
  8. This is a Meta 1.2 FPGA bitstream, just a bare CPU.
  9. config META21_FPGA
  10. bool "Meta 2.1 FPGA"
  11. select METAG_META21
  12. help
  13. This is a Meta 2.1 FPGA bitstream, just a bare CPU.
  14. config SOC_TZ1090
  15. bool "Toumaz Xenif TZ1090 SoC (Comet)"
  16. select METAG_LNKGET_AROUND_CACHE
  17. select METAG_META21
  18. select METAG_SMP_WRITE_REORDERING
  19. help
  20. This is a Toumaz Technology Xenif TZ1090 (A.K.A. Comet) SoC containing
  21. a 2-threaded HTP.
  22. endchoice
  23. menu "SoC configuration"
  24. if METAG_META21
  25. # Meta 2.x specific options
  26. config METAG_META21_MMU
  27. bool "Meta 2.x MMU mode"
  28. default y
  29. help
  30. Use the Meta 2.x MMU in extended mode.
  31. config METAG_UNALIGNED
  32. bool "Meta 2.x unaligned access checking"
  33. default y
  34. help
  35. All memory accesses will be checked for alignment and an exception
  36. raised on unaligned accesses. This feature does cost performance
  37. but without it there will be no notification of this type of error.
  38. config METAG_USER_TCM
  39. bool "Meta on-chip memory support for userland"
  40. select GENERIC_ALLOCATOR
  41. default y
  42. help
  43. Allow the on-chip memories of Meta SoCs to be used by user
  44. applications.
  45. endif
  46. config METAG_HALT_ON_PANIC
  47. bool "Halt the core on panic"
  48. help
  49. Halt the core when a panic occurs. This is useful when running
  50. pre-production silicon or in an FPGA environment.
  51. endmenu