Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1 | # |
| 2 | # Makefile for sensor chip drivers. |
| 3 | # |
| 4 | |
Zhang Rui | 63c4ec9 | 2008-04-21 16:07:13 +0800 | [diff] [blame] | 5 | obj-$(CONFIG_THERMAL) += thermal_sys.o |
Zhang Rui | 5fc024a | 2013-03-26 14:59:18 +0800 | [diff] [blame] | 6 | thermal_sys-y += thermal_core.o |
Zhang Rui | 445110e | 2012-11-15 16:07:46 +0800 | [diff] [blame] | 7 | |
Eduardo Valentin | 0dd8879 | 2013-07-03 15:14:28 -0400 | [diff] [blame] | 8 | # interface to/from other layers providing sensors |
| 9 | thermal_sys-$(CONFIG_THERMAL_HWMON) += thermal_hwmon.o |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 10 | thermal_sys-$(CONFIG_THERMAL_OF) += of-thermal.o |
Eduardo Valentin | 0dd8879 | 2013-07-03 15:14:28 -0400 | [diff] [blame] | 11 | |
Zhang Rui | 445110e | 2012-11-15 16:07:46 +0800 | [diff] [blame] | 12 | # governors |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 13 | thermal_sys-$(CONFIG_THERMAL_GOV_FAIR_SHARE) += fair_share.o |
| 14 | thermal_sys-$(CONFIG_THERMAL_GOV_STEP_WISE) += step_wise.o |
| 15 | thermal_sys-$(CONFIG_THERMAL_GOV_USER_SPACE) += user_space.o |
Zhang Rui | 445110e | 2012-11-15 16:07:46 +0800 | [diff] [blame] | 16 | |
| 17 | # cpufreq cooling |
Zhang Rui | bbf7fc8 | 2013-03-26 23:57:01 +0800 | [diff] [blame] | 18 | thermal_sys-$(CONFIG_CPU_THERMAL) += cpu_cooling.o |
Zhang Rui | 445110e | 2012-11-15 16:07:46 +0800 | [diff] [blame] | 19 | |
| 20 | # platform thermal drivers |
| 21 | obj-$(CONFIG_SPEAR_THERMAL) += spear_thermal.o |
Kuninori Morimoto | 1e426ff | 2012-07-21 10:53:48 +1000 | [diff] [blame] | 22 | obj-$(CONFIG_RCAR_THERMAL) += rcar_thermal.o |
Nobuhiro Iwamatsu | 7060aa3 | 2013-02-06 06:35:24 +0000 | [diff] [blame] | 23 | obj-$(CONFIG_KIRKWOOD_THERMAL) += kirkwood_thermal.o |
Amit Daniel Kachhap | c682137 | 2013-06-24 16:20:22 +0530 | [diff] [blame] | 24 | obj-y += samsung/ |
Andrew Lunn | 74ffa64 | 2013-02-06 06:35:26 +0000 | [diff] [blame] | 25 | obj-$(CONFIG_DOVE_THERMAL) += dove_thermal.o |
hongbo.zhang | aa1acb0 | 2012-11-15 18:56:42 +0800 | [diff] [blame] | 26 | obj-$(CONFIG_DB8500_THERMAL) += db8500_thermal.o |
Ezequiel Garcia | fa0d654 | 2013-04-02 01:37:41 +0000 | [diff] [blame] | 27 | obj-$(CONFIG_ARMADA_THERMAL) += armada_thermal.o |
Shawn Guo | ca3de46 | 2013-06-24 14:30:44 +0800 | [diff] [blame] | 28 | obj-$(CONFIG_IMX_THERMAL) += imx_thermal.o |
hongbo.zhang | aa1acb0 | 2012-11-15 18:56:42 +0800 | [diff] [blame] | 29 | obj-$(CONFIG_DB8500_CPUFREQ_COOLING) += db8500_cpufreq_cooling.o |
Jacob Pan | d6d71ee | 2013-01-21 04:37:57 -0800 | [diff] [blame] | 30 | obj-$(CONFIG_INTEL_POWERCLAMP) += intel_powerclamp.o |
Srinivas Pandruvada | f1a18a1 | 2013-05-17 23:42:02 +0000 | [diff] [blame] | 31 | obj-$(CONFIG_X86_PKG_TEMP_THERMAL) += x86_pkg_temp_thermal.o |
Eduardo Valentin | eb98200 | 2013-05-15 15:46:00 +0000 | [diff] [blame] | 32 | obj-$(CONFIG_TI_SOC_THERMAL) += ti-soc-thermal/ |
Srinivas Pandruvada | 925c36b | 2013-12-30 12:55:06 -0800 | [diff] [blame] | 33 | obj-$(CONFIG_ACPI_INT3403_THERMAL) += int3403_thermal.o |