summaryrefslogtreecommitdiff
path: root/zephyr/shim/src/thermal.c
blob: 2dd754b663a089eda94561c6d2b88caecb2be41d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* 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.
 */

#include "temp_sensor.h"
#include "temp_sensor/temp_sensor.h"
#include "ec_commands.h"

#define THERMAL_CONFIG(node_id) \
	[node_id] = { \
		.temp_host = { \
			[EC_TEMP_THRESH_WARN] = \
				C_TO_K(DT_PROP(node_id, temp_host_warn)), \
			[EC_TEMP_THRESH_HIGH] = \
				C_TO_K(DT_PROP(node_id, temp_host_high)), \
			[EC_TEMP_THRESH_HALT] = \
				C_TO_K(DT_PROP(node_id, temp_host_halt)), \
		}, \
		.temp_host_release = { \
			[EC_TEMP_THRESH_WARN] = C_TO_K( \
				DT_PROP(node_id, temp_host_release_warn)), \
			[EC_TEMP_THRESH_HIGH] = C_TO_K( \
				DT_PROP(node_id, temp_host_release_high)), \
			[EC_TEMP_THRESH_HALT] = C_TO_K( \
				DT_PROP(node_id, temp_host_release_halt)), \
		}, \
		.temp_fan_off = C_TO_K(DT_PROP(node_id, temp_fan_off)), \
		.temp_fan_max = C_TO_K(DT_PROP(node_id, temp_fan_max)), \
	},

struct ec_thermal_config thermal_params[] = {
#if DT_NODE_EXISTS(DT_PATH(named_temp_sensors))
	DT_FOREACH_CHILD(DT_PATH(named_temp_sensors), THERMAL_CONFIG)
#endif /* named_temp_sensors */
};