mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +00:00
Previously, the AP could only set the current wireless power state. It couldn't determine what the EC would do in S3, nor could it get the current wireless power state. Extend the wireless command to do so, and add an EC console command to aid in debugging. BUG=chrome-os-partner:25655 BRANCH=rambi TEST=manual; expected numbers are from EC 'wireless' command AP off -> 0x0, 0x9 AP on -> 0xd 0x9 AP suspended -> 0x9 0x9 AP on -> 0xd 0x9 ectool wireless 0x1 -> 0x1 0x9 ectool wireless 0xd -> 0xd 0x9 ectool wireless 0 0 0 0 -> 0xd 0x9 (and prints 0xd 0x9 to root shell) ectool wireless 5 -1 -1 0 -> 0x5 0x9 AP suspended -> 0x1 0x9 (doesn't turn on 0x8, just turns off 0x4) AP on -> 0xd 0x9 ectool wireless 0 0 0 -1 -> 0xd 0x0 AP suspended -> 0x0 0x0 AP on -> 0xd 0x9 Change-Id: I8ead2d4a4423b51ec4f638bf94c62de98726b25c Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/187273
26 lines
553 B
C
26 lines
553 B
C
/* Copyright (c) 2013 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.
|
|
*/
|
|
|
|
/* Wireless API for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_WIRELESS_H
|
|
#define __CROS_EC_WIRELESS_H
|
|
|
|
#include "common.h"
|
|
|
|
/* Wireless power state for wireless_set_state() */
|
|
enum wireless_power_state {
|
|
WIRELESS_OFF,
|
|
WIRELESS_SUSPEND,
|
|
WIRELESS_ON
|
|
};
|
|
|
|
/**
|
|
* Set wireless power state.
|
|
*/
|
|
void wireless_set_state(enum wireless_power_state state);
|
|
|
|
#endif /* __CROS_EC_WIRELESS_H */
|