mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
fw-api: CL 3246962 - update fw common interface files
Add WMI_ROAM_REQUEST_HOST_HW_MODE_CHANGE bit in wmi_roam_synch_event_fixed_param Change-Id: Idb1837646dd73578f0402c99bfbab46dcd619c91 CRs-Fixed: 1107600
This commit is contained in:
parent
f7e901e3b1
commit
4a589c3406
@ -9733,6 +9733,20 @@ typedef enum
|
||||
(((roam_reason) & WMI_ROAM_SUBNET_CHANGE_STATUS_MASK) >> \
|
||||
WMI_ROAM_SUBNET_CHANGE_STATUS_SHIFT)
|
||||
|
||||
#define WMI_ROAM_REQUEST_HOST_HW_MODE_CHANGE_MASK 0x40
|
||||
#define WMI_ROAM_REQUEST_HOST_HW_MODE_CHANGE_SHIFT 6
|
||||
|
||||
#define WMI_SET_ROAM_REQUEST_HOST_HW_MODE_CHANGE(roam_reason, status) \
|
||||
do { \
|
||||
(roam_reason) |= \
|
||||
(((status) << WMI_ROAM_REQUEST_HOST_HW_MODE_CHANGE_SHIFT) & \
|
||||
WMI_ROAM_REQUEST_HOST_HW_MODE_CHANGE_MASK); \
|
||||
} while (0)
|
||||
|
||||
#define WMI_GET_ROAM_REQUEST_HOST_HW_MODE_CHANGE(roam_reason) \
|
||||
(((roam_reason) & WMI_ROAM_REQUEST_HOST_HW_MODE_CHANGE_MASK) >> \
|
||||
WMI_ROAM_REQUEST_HOST_HW_MODE_CHANGE_SHIFT)
|
||||
|
||||
/* roaming notification */
|
||||
#define WMI_ROAM_NOTIF_INVALID 0x0 /** invalid notification. Do not interpret notif field */
|
||||
#define WMI_ROAM_NOTIF_ROAM_START 0x1 /** indicate that roaming is started. sent only in non WOW state */
|
||||
@ -14383,6 +14397,8 @@ typedef struct {
|
||||
/** roam_reason:
|
||||
* bits 0-3 for roam reason see WMI_ROAM_REASON_XXX
|
||||
* bits 4-5 for subnet status see WMI_ROAM_SUBNET_CHANGE_STATUS_XXX.
|
||||
* bit 6 for HW mode status, set 1 to indicate host to schedule
|
||||
* HW mode change, see WMI_ROAM_REQUEST_HOST_HW_MODE_CHANGE.
|
||||
*/
|
||||
A_UINT32 roam_reason;
|
||||
/** associated AP's rssi calculated by FW when reason code is WMI_ROAM_REASON_LOW_RSSI. not valid if roam_reason is BMISS */
|
||||
|
@ -36,7 +36,7 @@
|
||||
#define __WMI_VER_MINOR_ 0
|
||||
/** WMI revision number has to be incremented when there is a
|
||||
* change that may or may not break compatibility. */
|
||||
#define __WMI_REVISION_ 413
|
||||
#define __WMI_REVISION_ 414
|
||||
|
||||
/** The Version Namespace should not be normally changed. Only
|
||||
* host and firmware of the same WMI namespace will work
|
||||
|
Loading…
x
Reference in New Issue
Block a user