Kconfig.soc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. select PINCTRL
  20. select PINCTRL_TZ1090
  21. select PINCTRL_TZ1090_PDC
  22. help
  23. This is a Toumaz Technology Xenif TZ1090 (A.K.A. Comet) SoC containing
  24. a 2-threaded HTP.
  25. endchoice
  26. menu "SoC configuration"
  27. if METAG_META21
  28. # Meta 2.x specific options
  29. config METAG_META21_MMU
  30. bool "Meta 2.x MMU mode"
  31. default y
  32. help
  33. Use the Meta 2.x MMU in extended mode.
  34. config METAG_UNALIGNED
  35. bool "Meta 2.x unaligned access checking"
  36. default y
  37. help
  38. All memory accesses will be checked for alignment and an exception
  39. raised on unaligned accesses. This feature does cost performance
  40. but without it there will be no notification of this type of error.
  41. config METAG_USER_TCM
  42. bool "Meta on-chip memory support for userland"
  43. select GENERIC_ALLOCATOR
  44. default y
  45. help
  46. Allow the on-chip memories of Meta SoCs to be used by user
  47. applications.
  48. endif
  49. config METAG_HALT_ON_PANIC
  50. bool "Halt the core on panic"
  51. help
  52. Halt the core when a panic occurs. This is useful when running
  53. pre-production silicon or in an FPGA environment.
  54. endmenu