Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. config INTEL_TH
  2. tristate "Intel(R) Trace Hub controller"
  3. depends on HAS_DMA && HAS_IOMEM
  4. help
  5. Intel(R) Trace Hub (TH) is a set of hardware blocks (subdevices) that
  6. produce, switch and output trace data from multiple hardware and
  7. software sources over several types of trace output ports encoded
  8. in System Trace Protocol (MIPI STPv2) and is intended to perform
  9. full system debugging.
  10. This option enables intel_th bus and common code used by TH
  11. subdevices to interact with each other and hardware and for
  12. platform glue layers to drive Intel TH devices.
  13. Say Y here to enable Intel(R) Trace Hub controller support.
  14. if INTEL_TH
  15. config INTEL_TH_PCI
  16. tristate "Intel(R) Trace Hub PCI controller"
  17. depends on PCI
  18. help
  19. Intel(R) Trace Hub may exist as a PCI device. This option enables
  20. support glue layer for PCI-based Intel TH.
  21. Say Y here to enable PCI Intel TH support.
  22. config INTEL_TH_GTH
  23. tristate "Intel(R) Trace Hub Global Trace Hub"
  24. help
  25. Global Trace Hub (GTH) is the central component of the
  26. Intel TH infrastructure and acts as a switch for source
  27. and output devices. This driver is required for other
  28. Intel TH subdevices to initialize.
  29. Say Y here to enable GTH subdevice of Intel(R) Trace Hub.
  30. config INTEL_TH_STH
  31. tristate "Intel(R) Trace Hub Software Trace Hub support"
  32. depends on STM
  33. help
  34. Software Trace Hub (STH) enables trace data from software
  35. trace sources to be sent out via Intel(R) Trace Hub. It
  36. uses stm class device to interface with its sources.
  37. Say Y here to enable STH subdevice of Intel(R) Trace Hub.
  38. config INTEL_TH_MSU
  39. tristate "Intel(R) Trace Hub Memory Storage Unit"
  40. help
  41. Memory Storage Unit (MSU) trace output device enables
  42. storing STP traces to system memory. It supports single
  43. and multiblock modes of operation and provides read()
  44. and mmap() access to the collected data.
  45. Say Y here to enable MSU output device for Intel TH.
  46. config INTEL_TH_PTI
  47. tristate "Intel(R) Trace Hub PTI output"
  48. help
  49. Parallel Trace Interface unit (PTI) is a trace output device
  50. of Intel TH architecture that facilitates STP trace output via
  51. a PTI port.
  52. Say Y to enable PTI output of Intel TH data.
  53. config INTEL_TH_DEBUG
  54. bool "Intel(R) Trace Hub debugging"
  55. depends on DEBUG_FS
  56. help
  57. Say Y here to enable debugging.
  58. endif