mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 00:21:46 +00:00
In order to perform testing across all future boards and enable easier debugging, we need a host command to read temperature sensor name and sensor type. BUG=chrome-os-patner:9836 TEST='ectool tempsinfo 0' shows sensor name and its type. Change-Id: I06d9c6b045902394179c35e2ee8bc8dc551e8e98
38 lines
1.0 KiB
C
38 lines
1.0 KiB
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.
|
|
*/
|
|
|
|
/* Temp sensor host commands for Chrome EC */
|
|
|
|
#include "host_command.h"
|
|
#include "temp_sensor.h"
|
|
#include "util.h"
|
|
|
|
|
|
/* Defined in board_temp_sensor.c. Must be in the same order as
|
|
* in enum temp_sensor_id.
|
|
*/
|
|
extern const struct temp_sensor_t temp_sensors[TEMP_SENSOR_COUNT];
|
|
|
|
|
|
int temp_sensor_command_get_info(uint8_t *data, int *resp_size)
|
|
{
|
|
struct ec_params_temp_sensor_get_info *p =
|
|
(struct ec_params_temp_sensor_get_info *)data;
|
|
struct ec_response_temp_sensor_get_info *r =
|
|
(struct ec_response_temp_sensor_get_info *)data;
|
|
int id = p->id;
|
|
|
|
if (id >= TEMP_SENSOR_COUNT)
|
|
return EC_RES_ERROR;
|
|
|
|
strzcpy(r->sensor_name, temp_sensors[id].name, 30);
|
|
r->sensor_type = temp_sensors[id].type;
|
|
|
|
*resp_size = sizeof(struct ec_response_temp_sensor_get_info);
|
|
return EC_RES_SUCCESS;
|
|
}
|
|
DECLARE_HOST_COMMAND(EC_CMD_TEMP_SENSOR_GET_INFO,
|
|
temp_sensor_command_get_info);
|