mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +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
34 lines
827 B
C
34 lines
827 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"
|
|
|
|
/**
|
|
* Get the current CPU temperature.
|
|
*
|
|
* Note that the PECI interface is currently a little flaky; if you get an
|
|
* error, retry a bit later.
|
|
*
|
|
* @return the CPU temperature in degrees K, or -1 if error.
|
|
*/
|
|
int peci_get_cpu_temp(void);
|
|
|
|
/**
|
|
* Get the last polled value of the PECI temp sensor.
|
|
*
|
|
* @param idx Sensor index to read.
|
|
* @param temp_ptr Destination for temperature in K.
|
|
*
|
|
* @return EC_SUCCESS if successful, non-zero if error.
|
|
*/
|
|
int peci_temp_sensor_get_val(int idx, int *temp_ptr);
|
|
|
|
#endif /* __CROS_EC_PECI_H */
|