2021-06-18 15:55:15 +03:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
#
|
|
|
|
# Makefile for drivers/platform/x86/intel
|
|
|
|
# Intel x86 Platform-Specific Drivers
|
|
|
|
#
|
|
|
|
|
2021-08-20 14:04:52 +03:00
|
|
|
obj-$(CONFIG_INTEL_ATOMISP2_PDX86) += atomisp2/
|
2022-05-06 15:54:02 -07:00
|
|
|
obj-$(CONFIG_INTEL_IFS) += ifs/
|
2021-07-24 02:44:52 +05:30
|
|
|
obj-$(CONFIG_INTEL_SAR_INT1092) += int1092/
|
2021-06-18 15:55:15 +03:00
|
|
|
obj-$(CONFIG_INTEL_SKL_INT3472) += int3472/
|
2021-08-20 14:04:44 +03:00
|
|
|
obj-$(CONFIG_INTEL_PMC_CORE) += pmc/
|
2021-07-27 09:49:28 -07:00
|
|
|
obj-$(CONFIG_INTEL_PMT_CLASS) += pmt/
|
2021-08-20 14:04:51 +03:00
|
|
|
obj-$(CONFIG_INTEL_SPEED_SELECT_INTERFACE) += speed_select_if/
|
2021-08-20 14:04:46 +03:00
|
|
|
obj-$(CONFIG_INTEL_TELEMETRY) += telemetry/
|
2021-08-20 14:04:57 +03:00
|
|
|
obj-$(CONFIG_INTEL_WMI) += wmi/
|
2022-02-03 16:03:03 -08:00
|
|
|
obj-$(CONFIG_INTEL_UNCORE_FREQ_CONTROL) += uncore-frequency/
|
|
|
|
|
2021-08-20 14:04:40 +03:00
|
|
|
|
2021-08-20 14:04:53 +03:00
|
|
|
# Intel input drivers
|
2024-10-16 13:59:51 +03:00
|
|
|
intel-target-$(CONFIG_INTEL_HID_EVENT) += hid.o
|
|
|
|
intel-target-$(CONFIG_INTEL_VBTN) += vbtn.o
|
2021-08-20 14:04:53 +03:00
|
|
|
|
2021-08-20 14:04:54 +03:00
|
|
|
# Intel miscellaneous drivers
|
2024-10-16 13:59:51 +03: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
|
2021-08-20 14:04:54 +03:00
|
|
|
|
2021-08-20 14:04:40 +03:00
|
|
|
# Intel PMIC / PMC / P-Unit drivers
|
2024-10-16 13:59:51 +03:00
|
|
|
intel-target-$(CONFIG_INTEL_BYTCRC_PWRSRC) += bytcrc_pwrsrc.o
|
|
|
|
intel-target-$(CONFIG_INTEL_BXTWC_PMIC_TMU) += bxtwc_tmu.o
|
|
|
|
intel-target-$(CONFIG_INTEL_CHTDC_TI_PWRBTN) += chtdc_ti_pwrbtn.o
|
|
|
|
intel-target-$(CONFIG_INTEL_CHTWC_INT33FE) += chtwc_int33fe.o
|
|
|
|
intel-target-$(CONFIG_X86_ANDROID_TABLETS) += crystal_cove_charger.o
|
|
|
|
intel-target-$(CONFIG_INTEL_MRFLD_PWRBTN) += mrfld_pwrbtn.o
|
|
|
|
intel-target-$(CONFIG_INTEL_PUNIT_IPC) += punit_ipc.o
|
2021-08-20 14:04:47 +03:00
|
|
|
|
2023-02-01 17:07:35 -08:00
|
|
|
# TPMI drivers
|
2024-10-16 13:59:51 +03: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-05-28 10:34:57 +03:00
|
|
|
|
2021-08-20 14:04:47 +03:00
|
|
|
# Intel Uncore drivers
|
2024-10-16 13:59:51 +03: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)))
|