Makefile 1.6 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
Z
Zhang Rui 已提交
17 18

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

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

Z
Zhang Rui 已提交
24 25
# platform thermal drivers
obj-$(CONFIG_SPEAR_THERMAL)	+= spear_thermal.o
26
obj-$(CONFIG_ROCKCHIP_THERMAL)	+= rockchip_thermal.o
27
obj-$(CONFIG_RCAR_THERMAL)	+= rcar_thermal.o
28
obj-$(CONFIG_KIRKWOOD_THERMAL)  += kirkwood_thermal.o
29
obj-y				+= samsung/
30
obj-$(CONFIG_DOVE_THERMAL)  	+= dove_thermal.o
31
obj-$(CONFIG_DB8500_THERMAL)	+= db8500_thermal.o
32
obj-$(CONFIG_ARMADA_THERMAL)	+= armada_thermal.o
33
obj-$(CONFIG_IMX_THERMAL)	+= imx_thermal.o
34
obj-$(CONFIG_DB8500_CPUFREQ_COOLING)	+= db8500_cpufreq_cooling.o
35
obj-$(CONFIG_INTEL_POWERCLAMP)	+= intel_powerclamp.o
36
obj-$(CONFIG_X86_PKG_TEMP_THERMAL)	+= x86_pkg_temp_thermal.o
37
obj-$(CONFIG_INTEL_SOC_DTS_IOSF_CORE)	+= intel_soc_dts_iosf.o
38
obj-$(CONFIG_INTEL_SOC_DTS_THERMAL)	+= intel_soc_dts_thermal.o
39
obj-$(CONFIG_TI_SOC_THERMAL)	+= ti-soc-thermal/
40
obj-$(CONFIG_INT340X_THERMAL)  += int340x_thermal/
41
obj-$(CONFIG_ST_THERMAL)	+= st/
42
obj-$(CONFIG_TEGRA_SOCTHERM)	+= tegra_soctherm.o