mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-29 01:50:53 +00:00
This is to prevent temperature value being read before the first time we
poll sensors causes unexpected error.
BUG=chrome-os-partner:12614
TEST="sysjump RW" and then "temps" immediately. Check all temperature
readings are near 300 K.
Change-Id: I5c84d9696b4876fdfcf14c3a416cbc09c040d4ee
Signed-off-by: Vic Yang <victoryang@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/30138
Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
172 lines
3.6 KiB
C
172 lines
3.6 KiB
C
/* 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 "chip_temp_sensor.h"
|
|
#include "chipset.h"
|
|
#include "common.h"
|
|
#include "console.h"
|
|
#include "gpio.h"
|
|
#include "i2c.h"
|
|
#include "host_command.h"
|
|
#include "peci.h"
|
|
#include "task.h"
|
|
#include "temp_sensor.h"
|
|
#include "thermal.h"
|
|
#include "timer.h"
|
|
#include "tmp006.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];
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
|
|
int temp_sensor_powered(enum temp_sensor_id id)
|
|
{
|
|
int flag = temp_sensors[id].power_flags;
|
|
|
|
if (flag & TEMP_SENSOR_POWER_VS &&
|
|
gpio_get_level(GPIO_PGOOD_1_8VS) == 0)
|
|
return 0;
|
|
|
|
if (flag & TEMP_SENSOR_POWER_CPU &&
|
|
!chipset_in_state(CHIPSET_STATE_ON))
|
|
return 0;
|
|
|
|
return 1;
|
|
}
|
|
|
|
|
|
void poll_slow_sensors(void)
|
|
{
|
|
/* Poll every second */
|
|
#ifdef CONFIG_TMP006
|
|
tmp006_poll();
|
|
#endif
|
|
#ifdef CHIP_lm4
|
|
chip_temp_sensor_poll();
|
|
#endif
|
|
}
|
|
|
|
static void poll_fast_sensors(void)
|
|
{
|
|
/* Poll every 1/4 second */
|
|
#ifdef CONFIG_PECI
|
|
peci_temp_sensor_poll();
|
|
#endif
|
|
}
|
|
|
|
|
|
static void update_mapped_memory(void)
|
|
{
|
|
int i, t;
|
|
uint8_t *mptr = host_get_memmap(EC_MEMMAP_TEMP_SENSOR);
|
|
|
|
for (i = 0; i < TEMP_SENSOR_COUNT; i++, mptr++) {
|
|
/*
|
|
* Switch to second range if first one is full, or stop if
|
|
* second range is also full.
|
|
*/
|
|
if (i == EC_TEMP_SENSOR_ENTRIES)
|
|
mptr = host_get_memmap(EC_MEMMAP_TEMP_SENSOR_B);
|
|
else if (i >= EC_TEMP_SENSOR_ENTRIES +
|
|
EC_TEMP_SENSOR_B_ENTRIES)
|
|
break;
|
|
|
|
if (!temp_sensor_powered(i)) {
|
|
*mptr = EC_TEMP_SENSOR_NOT_POWERED;
|
|
continue;
|
|
}
|
|
|
|
t = temp_sensor_read(i);
|
|
if (t == -1)
|
|
*mptr = EC_TEMP_SENSOR_ERROR;
|
|
else
|
|
*mptr = t - EC_TEMP_SENSOR_OFFSET;
|
|
}
|
|
}
|
|
|
|
|
|
void temp_sensor_task(void)
|
|
{
|
|
int i;
|
|
uint8_t *base, *base_b;
|
|
|
|
/*
|
|
* Initialize memory-mapped data. We initialize valid sensors to 23 C
|
|
* so that if a temperature value is read before we actually poll the
|
|
* sensors, we don't end up with an insane value.
|
|
*/
|
|
base = host_get_memmap(EC_MEMMAP_TEMP_SENSOR);
|
|
base_b = host_get_memmap(EC_MEMMAP_TEMP_SENSOR_B);
|
|
for (i = 0; i < TEMP_SENSOR_COUNT; ++i) {
|
|
if (i < EC_TEMP_SENSOR_ENTRIES)
|
|
base[i] = 0x60; /* 23 C */
|
|
else
|
|
base_b[i - EC_TEMP_SENSOR_ENTRIES] = 0x60; /* 23 C */
|
|
}
|
|
|
|
/* Set the rest of memory region to SENSOR_NOT_PRESENT */
|
|
for (; i < EC_TEMP_SENSOR_ENTRIES + EC_TEMP_SENSOR_B_ENTRIES; ++i) {
|
|
if (i < EC_TEMP_SENSOR_ENTRIES)
|
|
base[i] = EC_TEMP_SENSOR_NOT_PRESENT;
|
|
else
|
|
base_b[i - EC_TEMP_SENSOR_ENTRIES] =
|
|
EC_TEMP_SENSOR_NOT_PRESENT;
|
|
}
|
|
|
|
/* Temp sensor data is present, with B range supported. */
|
|
*host_get_memmap(EC_MEMMAP_THERMAL_VERSION) = 2;
|
|
|
|
while (1) {
|
|
for (i = 0; i < 4; ++i) {
|
|
usleep(250000);
|
|
poll_fast_sensors();
|
|
}
|
|
poll_slow_sensors();
|
|
update_mapped_memory();
|
|
}
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/* Console commands */
|
|
|
|
static int command_temps(int argc, char **argv)
|
|
{
|
|
int i;
|
|
int rv = EC_SUCCESS;
|
|
int t;
|
|
|
|
for (i = 0; i < TEMP_SENSOR_COUNT; ++i) {
|
|
ccprintf(" %-20s: ", temp_sensors[i].name);
|
|
t = temp_sensor_read(i);
|
|
if (t < 0) {
|
|
ccprintf("Error\n");
|
|
rv = EC_ERROR_UNKNOWN;
|
|
} else
|
|
ccprintf("%d K = %d C\n", t, t - 273);
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
DECLARE_CONSOLE_COMMAND(temps, command_temps,
|
|
NULL,
|
|
"Print temp sensors",
|
|
NULL);
|