mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-29 10:00:51 +00:00
MOTIONSENSE_CMD_DUMP is deprecated, replaced with MOTIONSENSE_CMD_GET_DATA Also use vector_3_t instead of x,y,z ectool motionsense commands only work with newer firmware, to handle a dynamic number of sensors. - The host sends the number of sensor it has allocated space for. - If 0, the EC just sends the number of sensors available - Otherwise returns sensor information up to the limit imposed by the host. Remove MOTIONSENSE_GET_STATUS: not needed. It is only useful for LPC, to guarantee atomicity of the data. Remove MOTIONSENSE_GET_DATA: not needed since we increase the version number of MOTIONSENSE command. BUG=chrome-os-partner:31071,chromium:430792 BRANCH=ToT TEST=Compile. On a firmware that support the new command: /usr/sbin/ectool --name=cros_sh motionsense Motion sensing active Sensor 0: 92 15 1030 Sensor 1: -94 -63 718 /usr/sbin/ectool --name=cros_sh motionsense active 0 On a machine with older firmware (samus), check these functions are not working anymore. Change-Id: I64b62afff96670fb93457760d43d4e64e26e029f Signed-off-by: Gwendal Grignou <gwendal@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/226880 Reviewed-by: Alec Berg <alecaberg@chromium.org>
84 lines
2.0 KiB
C
84 lines
2.0 KiB
C
/* Copyright (c) 2014 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.
|
|
*/
|
|
|
|
/* Header for motion_sense.c */
|
|
|
|
#ifndef __CROS_EC_MOTION_SENSE_H
|
|
#define __CROS_EC_MOTION_SENSE_H
|
|
|
|
#include "chipset.h"
|
|
#include "common.h"
|
|
#include "ec_commands.h"
|
|
#include "gpio.h"
|
|
#include "math_util.h"
|
|
|
|
enum sensor_state {
|
|
SENSOR_NOT_INITIALIZED = 0,
|
|
SENSOR_INITIALIZED = 1,
|
|
SENSOR_INIT_ERROR = 2
|
|
};
|
|
|
|
#define SENSOR_ACTIVE_S5 CHIPSET_STATE_SOFT_OFF
|
|
#define SENSOR_ACTIVE_S3 CHIPSET_STATE_SUSPEND
|
|
#define SENSOR_ACTIVE_S0 CHIPSET_STATE_ON
|
|
#define SENSOR_ACTIVE_S0_S3 (SENSOR_ACTIVE_S3 | SENSOR_ACTIVE_S0)
|
|
#define SENSOR_ACTIVE_S0_S3_S5 (SENSOR_ACTIVE_S0_S3 | SENSOR_ACTIVE_S5)
|
|
|
|
struct motion_sensor_t {
|
|
/* RO fields */
|
|
uint32_t active_mask;
|
|
char *name;
|
|
enum motionsensor_chip chip;
|
|
enum motionsensor_type type;
|
|
enum motionsensor_location location;
|
|
const struct accelgyro_drv *drv;
|
|
struct mutex *mutex;
|
|
void *drv_data;
|
|
uint8_t i2c_addr;
|
|
const matrix_3x3_t *rot_standard_ref;
|
|
|
|
/* Default configuration parameters, RO only */
|
|
int default_odr;
|
|
int default_range;
|
|
|
|
/* Run-Time configuration parameters */
|
|
int odr;
|
|
int range;
|
|
|
|
/* state parameters */
|
|
enum sensor_state state;
|
|
enum chipset_state_mask active;
|
|
vector_3_t raw_xyz;
|
|
vector_3_t xyz;
|
|
};
|
|
|
|
/* Defined at board level. */
|
|
extern struct motion_sensor_t motion_sensors[];
|
|
extern const unsigned int motion_sensor_count;
|
|
|
|
/*
|
|
* Priority of the motion sense resume/suspend hooks, to be sure associated
|
|
* hooks are scheduled properly.
|
|
*/
|
|
#define MOTION_SENSE_HOOK_PRIO (HOOK_PRIO_DEFAULT)
|
|
|
|
#ifdef CONFIG_ACCEL_INTERRUPTS
|
|
/**
|
|
* Interrupt function for lid accelerometer.
|
|
*
|
|
* @param signal GPIO signal that caused interrupt
|
|
*/
|
|
void accel_int_lid(enum gpio_signal signal);
|
|
|
|
/**
|
|
* Interrupt function for base accelerometer.
|
|
*
|
|
* @param signal GPIO signal that caused interrupt
|
|
*/
|
|
void accel_int_base(enum gpio_signal signal);
|
|
#endif
|
|
|
|
#endif /* __CROS_EC_MOTION_SENSE_H */
|