mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-11 21:14:07 +08:00
1ad3f701c3
CXL PMU devices can be found from entries in the Register Locator DVSEC. Reviewed-by: Dan Williams <dan.j.williams@intel.com> Reviewed-by: Dave Jiang <dave.jiang@intel.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Link: https://lore.kernel.org/r/20230526095824.16336-4-Jonathan.Cameron@huawei.com Signed-off-by: Dan Williams <dan.j.williams@intel.com>
18 lines
446 B
Makefile
18 lines
446 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_CXL_BUS) += cxl_core.o
|
|
obj-$(CONFIG_CXL_SUSPEND) += suspend.o
|
|
|
|
ccflags-y += -I$(srctree)/drivers/cxl
|
|
CFLAGS_trace.o = -DTRACE_INCLUDE_PATH=. -I$(src)
|
|
|
|
cxl_core-y := port.o
|
|
cxl_core-y += pmem.o
|
|
cxl_core-y += regs.o
|
|
cxl_core-y += memdev.o
|
|
cxl_core-y += mbox.o
|
|
cxl_core-y += pci.o
|
|
cxl_core-y += hdm.o
|
|
cxl_core-y += pmu.o
|
|
cxl_core-$(CONFIG_TRACING) += trace.o
|
|
cxl_core-$(CONFIG_CXL_REGION) += region.o
|