729a866af3
Added processor thermal device mail box interface for workload hints setting. These hints will give indication to hardware to better manage power and thermals. The supported hints are: idle semi_active burusty sustained battery_life For example when the system is on battery, the hardware can be less aggressive in power ramp up. This will create an attribute group at /sys/bus/pci/devices/0000:00:04.0/workload_request This folder contains two attributes: workload_available_types : (RO): This shows available workload types workload_type: (RW) : Allows to set and get current workload type setting Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Link: https://lore.kernel.org/r/20201126171829.945969-4-srinivas.pandruvada@linux.intel.com
12 lines
589 B
Makefile
12 lines
589 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_INT340X_THERMAL) += int3400_thermal.o
|
|
obj-$(CONFIG_INT340X_THERMAL) += int340x_thermal_zone.o
|
|
obj-$(CONFIG_INT340X_THERMAL) += int3402_thermal.o
|
|
obj-$(CONFIG_INT340X_THERMAL) += int3403_thermal.o
|
|
obj-$(CONFIG_INT340X_THERMAL) += processor_thermal_device.o
|
|
obj-$(CONFIG_PROC_THERMAL_MMIO_RAPL) += processor_thermal_rapl.o
|
|
obj-$(CONFIG_INT340X_THERMAL) += processor_thermal_rfim.o
|
|
obj-$(CONFIG_INT340X_THERMAL) += processor_thermal_mbox.o
|
|
obj-$(CONFIG_INT3406_THERMAL) += int3406_thermal.o
|
|
obj-$(CONFIG_ACPI_THERMAL_REL) += acpi_thermal_rel.o
|