ec/google/wilco: Fix radio control command
This command is working as written, but it is not actually correct as to what the format of the command should be. Fix this and add define the other radios. There is no change in the command send to the EC. Change-Id: Ia551b08561b673d27bec2f900d97b746699b30c4 Signed-off-by: Duncan Laurie <dlaurie@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32973 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lijian Zhao <lijian.zhao@intel.com> Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com>
This commit is contained in:
parent
3dbfb2bef9
commit
35f9507b08
2 changed files with 10 additions and 2 deletions
|
@ -159,7 +159,7 @@ void wilco_ec_power_off(enum ec_power_off_reason reason)
|
|||
|
||||
int wilco_ec_radio_control(enum ec_radio radio, uint8_t state)
|
||||
{
|
||||
uint8_t radio_control[3] = { 0, radio, state };
|
||||
uint8_t radio_control[3] = { radio, RADIO_WRITE, state };
|
||||
|
||||
return wilco_ec_mailbox(WILCO_EC_MSG_DEFAULT, KB_RADIO_CONTROL,
|
||||
radio_control, ARRAY_SIZE(radio_control),
|
||||
|
|
|
@ -80,7 +80,15 @@ enum ec_audio_mute {
|
|||
};
|
||||
|
||||
enum ec_radio {
|
||||
RADIO_WIFI = 0x02,
|
||||
RADIO_WIFI = 0,
|
||||
RADIO_WWAN,
|
||||
RADIO_BT,
|
||||
};
|
||||
|
||||
enum ec_radio_action {
|
||||
RADIO_READ = 1,
|
||||
RADIO_WRITE,
|
||||
RADIO_TOGGLE,
|
||||
};
|
||||
|
||||
enum ec_camera {
|
||||
|
|
Loading…
Reference in a new issue