Kconfig 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_ACPI
  23. tristate "Intel(R) Trace Hub ACPI controller"
  24. depends on ACPI
  25. help
  26. Intel(R) Trace Hub may exist as an ACPI device. This option enables
  27. support glue layer for ACPI-based Intel TH. This typically implies
  28. 'host debugger' mode, that is, the trace configuration and capture
  29. is handled by an external debug host and corresponding controls will
  30. not be available on the target.
  31. Say Y here to enable ACPI Intel TH support.
  32. config INTEL_TH_GTH
  33. tristate "Intel(R) Trace Hub Global Trace Hub"
  34. help
  35. Global Trace Hub (GTH) is the central component of the
  36. Intel TH infrastructure and acts as a switch for source
  37. and output devices. This driver is required for other
  38. Intel TH subdevices to initialize.
  39. Say Y here to enable GTH subdevice of Intel(R) Trace Hub.
  40. config INTEL_TH_STH
  41. tristate "Intel(R) Trace Hub Software Trace Hub support"
  42. depends on STM
  43. help
  44. Software Trace Hub (STH) enables trace data from software
  45. trace sources to be sent out via Intel(R) Trace Hub. It
  46. uses stm class device to interface with its sources.
  47. Say Y here to enable STH subdevice of Intel(R) Trace Hub.
  48. config INTEL_TH_MSU
  49. tristate "Intel(R) Trace Hub Memory Storage Unit"
  50. help
  51. Memory Storage Unit (MSU) trace output device enables
  52. storing STP traces to system memory. It supports single
  53. and multiblock modes of operation and provides read()
  54. and mmap() access to the collected data.
  55. Say Y here to enable MSU output device for Intel TH.
  56. config INTEL_TH_PTI
  57. tristate "Intel(R) Trace Hub PTI output"
  58. help
  59. Parallel Trace Interface unit (PTI) is a trace output device
  60. of Intel TH architecture that facilitates STP trace output via
  61. a PTI port.
  62. Say Y to enable PTI output of Intel TH data.
  63. config INTEL_TH_DEBUG
  64. bool "Intel(R) Trace Hub debugging"
  65. depends on DEBUG_FS
  66. help
  67. Say Y here to enable debugging.
  68. endif