Kconfig 2.8 KB

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