|
@@ -102,36 +102,38 @@ enum wlan_vdev_state {
|
|
|
* @WLAN_VDEV_SM_EV_CSA_COMPLETE: Notifiction of CSA process complete
|
|
|
* @WLAN_VDEV_SM_EV_MLME_DOWN_REQ: Invoke DOWN command operation
|
|
|
* @WLAN_VDEV_SM_EV_DOWN_COMPLETE: Notification of DOWN complete
|
|
|
+ * @WLAN_VDEV_SM_EV_ROAM: Notifiction on ROAMING
|
|
|
*/
|
|
|
enum wlan_vdev_sm_evt {
|
|
|
WLAN_VDEV_SM_EV_START = 0,
|
|
|
- WLAN_VDEV_SM_EV_START_REQ,
|
|
|
- WLAN_VDEV_SM_EV_RESTART_REQ,
|
|
|
- WLAN_VDEV_SM_EV_START_RESP,
|
|
|
- WLAN_VDEV_SM_EV_RESTART_RESP,
|
|
|
- WLAN_VDEV_SM_EV_START_REQ_FAIL,
|
|
|
- WLAN_VDEV_SM_EV_RESTART_REQ_FAIL,
|
|
|
- WLAN_VDEV_SM_EV_START_SUCCESS,
|
|
|
- WLAN_VDEV_SM_EV_CONN_PROGRESS,
|
|
|
- WLAN_VDEV_SM_EV_STA_CONN_START,
|
|
|
+ WLAN_VDEV_SM_EV_START_REQ = 1,
|
|
|
+ WLAN_VDEV_SM_EV_RESTART_REQ = 2,
|
|
|
+ WLAN_VDEV_SM_EV_START_RESP = 3,
|
|
|
+ WLAN_VDEV_SM_EV_RESTART_RESP = 4,
|
|
|
+ WLAN_VDEV_SM_EV_START_REQ_FAIL = 5,
|
|
|
+ WLAN_VDEV_SM_EV_RESTART_REQ_FAIL = 6,
|
|
|
+ WLAN_VDEV_SM_EV_START_SUCCESS = 7,
|
|
|
+ WLAN_VDEV_SM_EV_CONN_PROGRESS = 8,
|
|
|
+ WLAN_VDEV_SM_EV_STA_CONN_START = 9,
|
|
|
WLAN_VDEV_SM_EV_DFS_CAC_WAIT = 10,
|
|
|
- WLAN_VDEV_SM_EV_DFS_CAC_COMPLETED,
|
|
|
- WLAN_VDEV_SM_EV_DOWN,
|
|
|
- WLAN_VDEV_SM_EV_CONNECTION_FAIL,
|
|
|
- WLAN_VDEV_SM_EV_STOP_RESP,
|
|
|
- WLAN_VDEV_SM_EV_STOP_FAIL,
|
|
|
- WLAN_VDEV_SM_EV_DOWN_FAIL,
|
|
|
- WLAN_VDEV_SM_EV_DISCONNECT_COMPLETE,
|
|
|
- WLAN_VDEV_SM_EV_SUPSEND_RESTART,
|
|
|
- WLAN_VDEV_SM_EV_HOST_RESTART,
|
|
|
+ WLAN_VDEV_SM_EV_DFS_CAC_COMPLETED = 11,
|
|
|
+ WLAN_VDEV_SM_EV_DOWN = 12,
|
|
|
+ WLAN_VDEV_SM_EV_CONNECTION_FAIL = 13,
|
|
|
+ WLAN_VDEV_SM_EV_STOP_RESP = 14,
|
|
|
+ WLAN_VDEV_SM_EV_STOP_FAIL = 15,
|
|
|
+ WLAN_VDEV_SM_EV_DOWN_FAIL = 16,
|
|
|
+ WLAN_VDEV_SM_EV_DISCONNECT_COMPLETE = 17,
|
|
|
+ WLAN_VDEV_SM_EV_SUPSEND_RESTART = 18,
|
|
|
+ WLAN_VDEV_SM_EV_HOST_RESTART = 19,
|
|
|
WLAN_VDEV_SM_EV_UP_HOST_RESTART = 20,
|
|
|
- WLAN_VDEV_SM_EV_FW_VDEV_RESTART,
|
|
|
- WLAN_VDEV_SM_EV_UP_FAIL,
|
|
|
- WLAN_VDEV_SM_EV_RADAR_DETECTED,
|
|
|
- WLAN_VDEV_SM_EV_CSA_RESTART,
|
|
|
- WLAN_VDEV_SM_EV_CSA_COMPLETE,
|
|
|
- WLAN_VDEV_SM_EV_MLME_DOWN_REQ,
|
|
|
- WLAN_VDEV_SM_EV_DOWN_COMPLETE,
|
|
|
+ WLAN_VDEV_SM_EV_FW_VDEV_RESTART = 21,
|
|
|
+ WLAN_VDEV_SM_EV_UP_FAIL = 22,
|
|
|
+ WLAN_VDEV_SM_EV_RADAR_DETECTED = 23,
|
|
|
+ WLAN_VDEV_SM_EV_CSA_RESTART = 24,
|
|
|
+ WLAN_VDEV_SM_EV_CSA_COMPLETE = 25,
|
|
|
+ WLAN_VDEV_SM_EV_MLME_DOWN_REQ = 26,
|
|
|
+ WLAN_VDEV_SM_EV_DOWN_COMPLETE = 27,
|
|
|
+ WLAN_VDEV_SM_EV_ROAM = 28,
|
|
|
};
|
|
|
|
|
|
/**
|