diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2015-09-22 15:47:15 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-04 20:28:58 +0100 |
commit | 2b0b16d329add49d503ff08b45d7636731f493dc (patch) | |
tree | d82574fcbae6d3fc609b154211d35ecdde75aa93 /drivers/hwtracing/intel_th/Makefile | |
parent | 39f4034693b7c7bd1fe4cb58c93259d600f55561 (diff) | |
download | linux-2b0b16d329add49d503ff08b45d7636731f493dc.tar.gz linux-2b0b16d329add49d503ff08b45d7636731f493dc.tar.xz |
intel_th: Add pci glue layer for Intel(R) Trace Hub
This patch adds basic support for PCI-based Intel TH devices. It requests
2 bars (configuration registers for the subdevices and STH channel MMIO
region) and calls into Intel TH core code to create the bus with subdevices
etc.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hwtracing/intel_th/Makefile')
-rw-r--r-- | drivers/hwtracing/intel_th/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hwtracing/intel_th/Makefile b/drivers/hwtracing/intel_th/Makefile index dfd7906462da..5c13ed4121ad 100644 --- a/drivers/hwtracing/intel_th/Makefile +++ b/drivers/hwtracing/intel_th/Makefile @@ -1,3 +1,6 @@ obj-$(CONFIG_INTEL_TH) += intel_th.o intel_th-y := core.o intel_th-$(CONFIG_INTEL_TH_DEBUG) += debug.o + +obj-$(CONFIG_INTEL_TH_PCI) += intel_th_pci.o +intel_th_pci-y := pci.o |