mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-31 11:01:19 +00:00
This covers modules which need to initialize before task_start(), but don't particularly care in what order they're initialized. Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=none TEST=if it boots, it works Change-Id: I69829aac8d1c3c14ee04916a794b84bbf03a09eb
28 lines
820 B
C
28 lines
820 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"
|
|
|
|
/* Return 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);
|
|
|
|
/* Read 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 */
|