mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-10 09:31:51 +00:00
The interrupts to detect when the falling edge on the UART signals are currently disabled and never reenabled. Power off is detected by polling and not through interrupts. This change removes all of those falling edge interrupts. BUG=none BRANCH=none TEST=cr50 can detect when the EC, AP, and Servo are off or on Change-Id: I0fd8a0d970f3235b26af6b90dd395ea7c75e0c17 Signed-off-by: Mary Ruthven <mruthven@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/385192 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
/* Copyright 2016 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.
|
|
*/
|
|
|
|
#include "gpio.h"
|
|
|
|
#ifndef __CROS_DEVICE_STATE_H
|
|
#define __CROS_DEVICE_STATE_H
|
|
|
|
/* Device state indexes */
|
|
enum device_state {
|
|
DEVICE_STATE_UNKNOWN = 0,
|
|
DEVICE_STATE_OFF,
|
|
DEVICE_STATE_ON,
|
|
DEVICE_STATE_COUNT,
|
|
};
|
|
|
|
struct device_config {
|
|
const char *name; /* Device name */
|
|
enum device_state state; /* Device status */
|
|
/* Deferred handler to detect power off */
|
|
const struct deferred_data *deferred;
|
|
enum gpio_signal detect; /* GPIO detecting power on */
|
|
};
|
|
|
|
enum device_type;
|
|
|
|
extern struct device_config device_states[];
|
|
|
|
/* Return the device state */
|
|
int device_get_state(enum device_type device);
|
|
|
|
/**
|
|
* Sets the device state
|
|
*
|
|
* @param device the device to update
|
|
* @param state the new device state
|
|
*/
|
|
void device_set_state(enum device_type device, enum device_state state);
|
|
|
|
/* Update the device state based on the device gpios */
|
|
void board_update_device_state(enum device_type device);
|
|
|
|
/**
|
|
* Enables or disables all device gpio interrupts
|
|
*
|
|
* @param enable enable or disable detection
|
|
*/
|
|
void device_detect_state_enable(int enable);
|
|
#endif /* __CROS_DEVICE_STATE_H */
|