2021-06-18 12:55:15 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
#
|
|
|
|
# Makefile for drivers/platform/x86/intel
|
|
|
|
# Intel x86 Platform-Specific Drivers
|
|
|
|
#
|
|
|
|
|
2023-07-26 11:46:35 +00:00
|
|
|
obj-$(CONFIG_INTEL_ATOMISP2_PDX86) += atomisp2/
|
2022-08-10 17:50:59 +00:00
|
|
|
obj-$(CONFIG_INTEL_IFS) += ifs/
|
2023-07-10 15:56:00 +00:00
|
|
|
obj-$(CONFIG_INTEL_SAR_INT1092) += int1092/
|
2021-06-18 12:55:15 +00:00
|
|
|
obj-$(CONFIG_INTEL_SKL_INT3472) += int3472/
|
2021-09-24 14:15:42 +00:00
|
|
|
obj-$(CONFIG_INTEL_PMC_CORE) += pmc/
|
2022-03-15 14:57:45 +00:00
|
|
|
obj-$(CONFIG_INTEL_PMT_CLASS) += pmt/
|
2022-03-25 19:53:16 +00:00
|
|
|
obj-$(CONFIG_INTEL_SPEED_SELECT_INTERFACE) += speed_select_if/
|
2025-02-14 15:35:12 +00:00
|
|
|
obj-$(CONFIG_INTEL_TELEMETRY) += telemetry/
|
2023-11-21 14:55:45 +00:00
|
|
|
obj-$(CONFIG_INTEL_WMI) += wmi/
|
2023-09-13 13:01:42 +00:00
|
|
|
obj-$(CONFIG_INTEL_UNCORE_FREQ_CONTROL) += uncore-frequency/
|
2022-03-25 19:53:16 +00:00
|
|
|
|
2025-02-14 15:35:12 +00:00
|
|
|
# Intel input drivers
|
2025-02-14 15:51:59 +00:00
|
|
|
intel-target-$(CONFIG_INTEL_HID_EVENT) += hid.o
|
|
|
|
intel-target-$(CONFIG_INTEL_VBTN) += vbtn.o
|
2025-02-14 15:35:12 +00:00
|
|
|
|
2023-09-13 12:57:41 +00:00
|
|
|
# Intel miscellaneous drivers
|
2025-02-14 15:51:59 +00:00
|
|
|
intel-target-$(CONFIG_INTEL_INT0002_VGPIO) += int0002_vgpio.o
|
|
|
|
intel-target-$(CONFIG_INTEL_ISHTP_ECLITE) += ishtp_eclite.o
|
|
|
|
intel-target-$(CONFIG_INTEL_OAKTRAIL) += oaktrail.o
|
|
|
|
intel-target-$(CONFIG_INTEL_SDSI) += sdsi.o
|
|
|
|
intel-target-$(CONFIG_INTEL_VSEC) += vsec.o
|
2022-05-11 14:00:55 +00:00
|
|
|
|
2025-02-14 15:35:12 +00:00
|
|
|
# Intel PMIC / PMC / P-Unit drivers
|
|
|
|
obj-$(CONFIG_INTEL_CHT_INT33FE) += int33fe/
|
|
|
|
|
|
|
|
# TPMI drivers
|
2025-02-14 15:51:59 +00:00
|
|
|
intel-target-$(CONFIG_INTEL_PLR_TPMI) += plr_tpmi.o
|
|
|
|
intel-target-$(CONFIG_INTEL_TPMI_POWER_DOMAINS) += tpmi_power_domains.o
|
|
|
|
intel-target-$(CONFIG_INTEL_TPMI) += vsec_tpmi.o
|
2024-12-04 14:43:53 +00:00
|
|
|
|
2023-07-25 12:42:27 +00:00
|
|
|
# Intel Uncore drivers
|
2025-02-14 15:51:59 +00:00
|
|
|
intel-target-$(CONFIG_INTEL_RST) += rst.o
|
|
|
|
intel-target-$(CONFIG_INTEL_SMARTCONNECT) += smartconnect.o
|
|
|
|
intel-target-$(CONFIG_INTEL_TURBO_MAX_3) += turbo_max_3.o
|
|
|
|
|
|
|
|
# Add 'intel' prefix to each module listed in intel-target-*
|
|
|
|
define INTEL_OBJ_TARGET
|
|
|
|
intel-$(1)-y := $(1).o
|
|
|
|
obj-$(2) += intel-$(1).o
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach target, $(basename $(intel-target-y)), $(eval $(call INTEL_OBJ_TARGET,$(target),y)))
|
|
|
|
$(foreach target, $(basename $(intel-target-m)), $(eval $(call INTEL_OBJ_TARGET,$(target),m)))
|
2024-01-04 14:22:27 +00:00
|
|
|
|