mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 18:41:11 +00:00
Implement ALS code and add a new thermal sensor (Fintek, F75303) BUG=b:71839392 BRANCH=none TEST=Verify Nami can read ALS and thermal data via I2C by ec console. Change-Id: I0f8fd486f62508bbca30a57f435b9f26621cf34b Signed-off-by: Elmo_Lan <elmo_lan@compal.corp-partner.google.com> Reviewed-on: https://chromium-review.googlesource.com/863350 Commit-Ready: Elmo Lan <elmo_lan@compal.corp-partner.google.com> Tested-by: Elmo Lan <elmo_lan@compal.corp-partner.google.com> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-by: Elmo Lan <elmo_lan@compal.corp-partner.google.com>
34 lines
845 B
C
34 lines
845 B
C
/* Copyright 2018 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.
|
|
*/
|
|
|
|
/* F75303 temperature sensor module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_F75303_H
|
|
#define __CROS_EC_F75303_H
|
|
|
|
#define F75303_I2C_ADDR 0x9A /* 7-bit address is 0x4C */
|
|
|
|
enum f75303_index {
|
|
F75303_IDX_LOCAL = 0,
|
|
F75303_IDX_REMOTE,
|
|
};
|
|
|
|
/* F75303 register */
|
|
#define F75303_TEMP_LOCAL 0x00
|
|
#define F75303_TEMP_REMOTE 0x01
|
|
|
|
/**
|
|
* Get the last polled value of a sensor.
|
|
*
|
|
* @param idx Index to read. Idx indicates whether to read die
|
|
* temperature or external temperature.
|
|
* @param temp_ptr Destination for temperature in K.
|
|
*
|
|
* @return EC_SUCCESS if successful, non-zero if error.
|
|
*/
|
|
int f75303_get_val(int idx, int *temp_ptr);
|
|
|
|
#endif /* __CROS_EC_F75303_H */
|