mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-01 21:02:27 +00:00
A temperature polling task is added to achieve temporal correction and also reduce the latency of reading temperature. Factor out sensor specific part to keep code clean. Signed-off-by: Vic Yang <victoryang@chromium.org> BUG=chrome-os-partner:7801 TEST=On link, 'temps' shows all temperature readings. Cover each sensor with hand and see object temperature rise. Compilation succeeded on bds/adv/daisy/discovery. Change-Id: I3c44c8b2e3ab2aa9ce640d3fc25e7fba56534b86
33 lines
897 B
C
33 lines
897 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.
|
|
*/
|
|
|
|
/* PECI module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_PECI_H
|
|
#define __CROS_EC_PECI_H
|
|
|
|
#include "common.h"
|
|
|
|
struct temp_sensor_t;
|
|
|
|
/* Initializes the module. */
|
|
int peci_init(void);
|
|
|
|
/* Returns the current CPU temperature in degrees K, or -1 if error.
|
|
*
|
|
* Note that the PECI interface is currently a little flaky; if you get an
|
|
* error, retry a bit later. */
|
|
int peci_get_cpu_temp(void);
|
|
|
|
/* Reads the CPU temperature sensor via PECI. This interface is for the
|
|
* temperature sensor module. Returns the temperature in degrees K, or -1 if
|
|
* error. */
|
|
int peci_temp_sensor_get_val(int idx);
|
|
|
|
/* Temperature polling of CPU temperature sensor via PECI. */
|
|
int peci_temp_sensor_poll(void);
|
|
|
|
#endif /* __CROS_EC_PECI_H */
|