summaryrefslogtreecommitdiff
path: root/common/mock_temp_sensor.c
blob: 7f2a6b1dd996da93213e4a444cba72ddbe656ff1 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* Copyright (c) 2012 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.
 */

/* Mock temperature sensor module for Chrome EC */

#include "board.h"
#include "console.h"
#include "temp_sensor.h"
#include "timer.h"
#include "util.h"

/* Defined in board_temp_sensor.c. Must be in the same order as
 * in enum temp_sensor_id.
 */
extern const struct temp_sensor_t temp_sensors[TEMP_SENSOR_COUNT];

static int temp_val[TEMP_SENSOR_TYPE_COUNT];

int temp_sensor_powered(enum temp_sensor_id id)
{
	/* Always powered */
	return 1;
}


int temp_sensor_read(enum temp_sensor_id id)
{
	return temp_val[temp_sensors[id].type];
}


void temp_sensor_task(void)
{
	/* Do nothing */
	while (1)
		usleep(5000000);
}


static int command_set_temp(int argc, char **argv, int type)
{
	char *e;
	int t;

	ASSERT(argc == 2);
	t = strtoi(argv[1], &e, 0);
	temp_val[type] = t;
	return EC_SUCCESS;
}


static int command_set_cpu_temp(int argc, char **argv)
{
	return command_set_temp(argc, argv, TEMP_SENSOR_TYPE_CPU);
}
DECLARE_CONSOLE_COMMAND(setcputemp, command_set_cpu_temp,
			"value",
			"Set mock CPU temperature value",
			NULL);


static int command_set_board_temp(int argc, char **argv)
{
	return command_set_temp(argc, argv, TEMP_SENSOR_TYPE_BOARD);
}
DECLARE_CONSOLE_COMMAND(setboardtemp, command_set_board_temp,
			"value",
			"Set mock board temperature value",
			NULL);


static int command_set_case_temp(int argc, char **argv)
{
	return command_set_temp(argc, argv, TEMP_SENSOR_TYPE_CASE);
}
DECLARE_CONSOLE_COMMAND(setcasetemp, command_set_case_temp,
			"value",
			"Set mock case temperature value",
			NULL);