Makefile 2.1 KB
Newer Older
Z
Zhang Rui 已提交
1 2 3 4
#
# Makefile for sensor chip drivers.
#

5
obj-$(CONFIG_THERMAL)		+= thermal_sys.o
6
thermal_sys-y			+= thermal_core.o
Z
Zhang Rui 已提交
7

8 9
# interface to/from other layers providing sensors
thermal_sys-$(CONFIG_THERMAL_HWMON)		+= thermal_hwmon.o
10
thermal_sys-$(CONFIG_THERMAL_OF)		+= of-thermal.o
11

Z
Zhang Rui 已提交
12
# governors
13
thermal_sys-$(CONFIG_THERMAL_GOV_FAIR_SHARE)	+= fair_share.o
14
thermal_sys-$(CONFIG_THERMAL_GOV_BANG_BANG)	+= gov_bang_bang.o
15 16
thermal_sys-$(CONFIG_THERMAL_GOV_STEP_WISE)	+= step_wise.o
thermal_sys-$(CONFIG_THERMAL_GOV_USER_SPACE)	+= user_space.o
17
thermal_sys-$(CONFIG_THERMAL_GOV_POWER_ALLOCATOR)	+= power_allocator.o
Z
Zhang Rui 已提交
18 19

# cpufreq cooling
20
thermal_sys-$(CONFIG_CPU_THERMAL)	+= cpu_cooling.o
Z
Zhang Rui 已提交
21

22 23 24
# clock cooling
thermal_sys-$(CONFIG_CLOCK_THERMAL)	+= clock_cooling.o

Ø
Ørjan Eide 已提交
25 26 27
# devfreq cooling
thermal_sys-$(CONFIG_DEVFREQ_THERMAL) += devfreq_cooling.o

Z
Zhang Rui 已提交
28
# platform thermal drivers
29
obj-$(CONFIG_QCOM_SPMI_TEMP_ALARM)	+= qcom-spmi-temp-alarm.o
Z
Zhang Rui 已提交
30
obj-$(CONFIG_SPEAR_THERMAL)	+= spear_thermal.o
31
obj-$(CONFIG_ROCKCHIP_THERMAL)	+= rockchip_thermal.o
32
obj-$(CONFIG_RCAR_THERMAL)	+= rcar_thermal.o
33
obj-$(CONFIG_KIRKWOOD_THERMAL)  += kirkwood_thermal.o
34
obj-y				+= samsung/
35
obj-$(CONFIG_DOVE_THERMAL)  	+= dove_thermal.o
36
obj-$(CONFIG_DB8500_THERMAL)	+= db8500_thermal.o
37
obj-$(CONFIG_ARMADA_THERMAL)	+= armada_thermal.o
38
obj-$(CONFIG_TANGO_THERMAL)	+= tango_thermal.o
39
obj-$(CONFIG_IMX_THERMAL)	+= imx_thermal.o
40
obj-$(CONFIG_DB8500_CPUFREQ_COOLING)	+= db8500_cpufreq_cooling.o
41
obj-$(CONFIG_INTEL_POWERCLAMP)	+= intel_powerclamp.o
42
obj-$(CONFIG_X86_PKG_TEMP_THERMAL)	+= x86_pkg_temp_thermal.o
43
obj-$(CONFIG_INTEL_SOC_DTS_IOSF_CORE)	+= intel_soc_dts_iosf.o
44
obj-$(CONFIG_INTEL_SOC_DTS_THERMAL)	+= intel_soc_dts_thermal.o
45
obj-$(CONFIG_INTEL_QUARK_DTS_THERMAL)	+= intel_quark_dts_thermal.o
46
obj-$(CONFIG_TI_SOC_THERMAL)	+= ti-soc-thermal/
47
obj-$(CONFIG_INT340X_THERMAL)  += int340x_thermal/
48
obj-$(CONFIG_INTEL_BXT_PMIC_THERMAL) += intel_bxt_pmic_thermal.o
49
obj-$(CONFIG_INTEL_PCH_THERMAL)	+= intel_pch_thermal.o
50
obj-$(CONFIG_ST_THERMAL)	+= st/
51
obj-$(CONFIG_TEGRA_SOCTHERM)	+= tegra/
52
obj-$(CONFIG_HISI_THERMAL)     += hisi_thermal.o
53
obj-$(CONFIG_MTK_THERMAL)	+= mtk_thermal.o
54
obj-$(CONFIG_GENERIC_ADC_THERMAL)	+= thermal-generic-adc.o