Kconfig.soc 1.5 KB

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