summaryrefslogtreecommitdiff
path: root/zephyr/Kconfig.temperature
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2021-11-04 12:11:58 -0600
committerCommit Bot <commit-bot@chromium.org>2021-11-05 04:22:34 +0000
commit252457d4b21f46889eebad61d4c0a65331919cec (patch)
tree01856c4d31d710b20e85a74c8d7b5836e35c3b98 /zephyr/Kconfig.temperature
parent08f5a1e6fc2c9467230444ac9b582dcf4d9f0068 (diff)
downloadchrome-ec-release-R101-14588.B-ish.tar.gz
In the interest of making long-term branch maintenance incur as little technical debt on us as possible, we should not maintain any files on the branch we are not actually using. This has the added effect of making it extremely clear when merging CLs from the main branch when changes have the possibility to affect us. The follow-on CL adds a convenience script to actually pull updates from the main branch and generate a CL for the update. BUG=b:204206272 BRANCH=ish TEST=make BOARD=arcada_ish && make BOARD=drallion_ish Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Change-Id: I17e4694c38219b5a0823e0a3e55a28d1348f4b18 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3262038 Reviewed-by: Jett Rink <jettrink@chromium.org> Reviewed-by: Tom Hughes <tomhughes@chromium.org>
Diffstat (limited to 'zephyr/Kconfig.temperature')
-rw-r--r--zephyr/Kconfig.temperature65
1 files changed, 0 insertions, 65 deletions
diff --git a/zephyr/Kconfig.temperature b/zephyr/Kconfig.temperature
deleted file mode 100644
index 4af5aa99f8..0000000000
--- a/zephyr/Kconfig.temperature
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 2021 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-menuconfig PLATFORM_EC_TEMP_SENSOR
- bool "Temperature sensors"
- help
- Support for temperature sensors. Once enabled, "temps" console
- command and EC_CMD_TEMP_SENSOR_GET_INFO host command are available.
-
-if PLATFORM_EC_TEMP_SENSOR
-
-config PLATFORM_EC_DPTF
- bool "Dynamic Platform and Thermal Framework"
- default y if PLATFORM_EC_ACPI
- help
- Enables the Dynamic Platform and Thermal Framework (DPTF). DPTF
- exposes the temperature sensors and the fan controls to the
- Applicaiton Processor (AP) using Advanced Configuration and Power
- Interface (ACPI). This permits the AP to control thermal management
- independent of the EC.
-
- Even when DPTF is enabled, the EC still monitors temperature sensors
- and will take corrective actions for high temperatures such as turning
- on the fans or powering down the AP.
-
-config PLATFORM_EC_THERMISTOR
- bool "Thermistor support"
- depends on PLATFORM_EC_ADC
- help
- Enables support for thermistors (resistor whose resistance is
- strongly dependent on temperature) as temperature-sensor type.
-
-endif # PLATFORM_EC_TEMP_SENSOR
-
-
-config PLATFORM_EC_TEMP_SENSOR_FIRST_READ_DELAY
- bool "Enable a delay before reading temperature seensors"
- help
- Enables a delay on the first read of temperature sensors after
- the EC powers on. This allows for setting of any power rails that
- control the temperature sensors on the platform.
-
-if PLATFORM_EC_TEMP_SENSOR_FIRST_READ_DELAY
-
-config PLATFORM_EC_TEMP_SENSOR_FIRST_READ_DELAY_MS
- int "Temperature sensor read delay time"
- default 500
- help
- Sets the delay time, in milliseconds, before the first the EC will
- read any temperature sensors and perform any thermal management.
-
-endif # PLATFORM_EC_TEMP_SENSOR_FIRST_READ_DELAY
-
-config PLATFORM_EC_FAN
- bool "Fan support"
- depends on PLATFORM_EC_PWM
- help
- Enables support for fans. Allows periodic thermal task to
- automatically set the fan speed (control temperature).
- Once enabled fanduty, fanset, faninfo, fanauto consol command and
- EC_CMD_PWM_GET_FAN_TARGET_RPM, EC_CMD_PWM_SET_FAN_TARGET_RPM,
- EC_CMD_PWM_SET_FAN_DUTY, EC_CMD_THERMAL_AUTO_FAN_CTRL are
- available. Also enables a periodic task (1s) to verify fan is
- running (is not stalled).