mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +00:00
Cr50 monitors UART1 RX to sense the state of the AP. This signal can be used to tell if it is in S0. If the signal is pulled up then the AP is on. If it is not pulled up then the AP is not in S0. This change notifies HOOK_CHIPSET_SUSPEND when UART1 RX is not pulled up, and then notifies HOOK_CHIPSET_RESUME when the signal is high again. The AP usb can be disabled during suspend, so this change changes the hook that triggers disabling the AP usb to be attached to HOOK_CHIPSET_SUSPEND instead of HOOK_CHIPSET_RESUME. BUG=chrome-os-partner:55747 BRANCH=none TEST=buildall Change-Id: I47fb38a4bbcd72424ec2535d61e87f820cf1bcd7 Signed-off-by: Mary Ruthven <mruthven@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/383978 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
46 lines
1.1 KiB
C
46 lines
1.1 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 */
|
|
enum device_state last_known_state; /* Either off or on */
|
|
/* 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);
|
|
#endif /* __CROS_DEVICE_STATE_H */
|