summaryrefslogtreecommitdiff
path: root/common/temp_sensor.c
blob: 01bbd4bbe3f5952214f0e8eb6f2b924a7fbfd5f1 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* Copyright (c) 2011 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.
 */

/* Temperature sensor module for Chrome EC */

#include "i2c.h"
#include "temp_sensor.h"
#include "uart.h"
#include "util.h"
#include "console.h"
#include "board.h"
#include "peci.h"
#include "tmp006.h"
#include "task.h"
#include "chip_temp_sensor.h"
#include "lpc.h"
#include "lpc_commands.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];

int temp_sensor_read(enum temp_sensor_id id)
{
	const struct temp_sensor_t *sensor;

	if (id < 0 || id >= TEMP_SENSOR_COUNT)
		return -1;
	sensor = temp_sensors + id;
	return sensor->read(sensor->idx);
}

void poll_all_sensors(void)
{
#ifdef CONFIG_TMP006
	tmp006_poll();
#endif
#ifdef CONFIG_PECI
	peci_temp_sensor_poll();
#endif
#ifdef CHIP_lm4
	chip_temp_sensor_poll();
#endif
}


static void update_lpc_mapped_memory(void)
{
	int i, t;
	uint8_t *mapped = lpc_get_memmap_range() + EC_LPC_MEMMAP_TEMP_SENSOR;

	memset(mapped, 0xff, 16);

	for (i = 0; i < TEMP_SENSOR_COUNT && i < 16; ++i) {
		t = temp_sensor_read(i);
		if (t != -1)
			mapped[i] = t - EC_LPC_TEMP_SENSOR_OFFSET;
	}
}


void temp_sensor_task(void)
{
	while (1) {
		poll_all_sensors();
		update_lpc_mapped_memory();
		/* Wait 1s */
		task_wait_msg(1000000);
	}
}

/*****************************************************************************/
/* Console commands */

static int command_temps(int argc, char **argv)
{
	int i;
	int rv = 0;
	int t;

	uart_puts("Reading temperature sensors...\n");

	for (i = 0; i < TEMP_SENSOR_COUNT; ++i) {
		uart_printf("  %-20s: ", temp_sensors[i].name);
		t = temp_sensor_read(i);
		if (t < 0) {
			uart_printf("Error\n");
			rv = -1;
		}
		else
			uart_printf("%d K = %d C\n", t, t - 273);
	}

	if (rv == -1)
		return EC_ERROR_UNKNOWN;

	return EC_SUCCESS;
}
DECLARE_CONSOLE_COMMAND(temps, command_temps);

/*****************************************************************************/
/* Initialization */

int temp_sensor_init(void)
{
	return EC_SUCCESS;
}