mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 00:21:46 +00:00
This reduces memory / code size, and gets rid of ifdefs in temp_sensor.c.
BUG=chrome-os-partner:15714
BRANCH=none
TEST=boot system and run 'ectool temps all' every few seconds
- ectool temps all
The numbers should update over time.
Change-Id: Idaac7e6e4cbc1d6689f5d3b607c623a5cc536a4f
Signed-off-by: Randall Spangler <rspangler@chromium.org>
Reviewed-on: https://gerrit.chromium.org/gerrit/36940
31 lines
712 B
C
31 lines
712 B
C
/* 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.
|
|
*/
|
|
|
|
/* Temperature sensor module for Chrome EC */
|
|
|
|
#include "adc.h"
|
|
#include "common.h"
|
|
#include "hooks.h"
|
|
#include "lm4_adc.h"
|
|
|
|
/* Initialize temperature reading to a sane value (27 C) */
|
|
static int last_val = 300;
|
|
|
|
static void chip_temp_sensor_poll(void)
|
|
{
|
|
last_val = adc_read_channel(ADC_CH_EC_TEMP);
|
|
}
|
|
DECLARE_HOOK(HOOK_SECOND, chip_temp_sensor_poll, HOOK_PRIO_DEFAULT);
|
|
|
|
int chip_temp_sensor_get_val(int idx, int *temp_ptr)
|
|
{
|
|
if (last_val == ADC_READ_ERROR)
|
|
return EC_ERROR_UNKNOWN;
|
|
|
|
*temp_ptr = last_val;
|
|
|
|
return EC_SUCCESS;
|
|
}
|