2015-08-18 19:03:09 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
2019-11-09 10:12:08 +00:00
|
|
|
* Copyright(c) 2007 - 2017 Realtek Corporation.
|
|
|
|
*
|
2015-08-18 19:03:09 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of version 2 of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
2019-11-09 10:12:08 +00:00
|
|
|
*****************************************************************************/
|
2015-08-18 19:03:09 +00:00
|
|
|
#ifndef _RTW_EVENT_H_
|
|
|
|
#define _RTW_EVENT_H_
|
|
|
|
|
|
|
|
#ifdef CONFIG_H2CLBK
|
2019-11-09 10:12:08 +00:00
|
|
|
#include <h2clbk.h>
|
2015-08-18 19:03:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
Used to report a bss has been scanned
|
|
|
|
|
|
|
|
*/
|
|
|
|
struct survey_event {
|
|
|
|
WLAN_BSSID_EX bss;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Used to report that the requested site survey has been done.
|
|
|
|
|
|
|
|
bss_cnt indicates the number of bss that has been reported.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
struct surveydone_event {
|
2019-11-09 10:12:08 +00:00
|
|
|
unsigned int bss_cnt;
|
|
|
|
|
2015-08-18 19:03:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Used to report the link result of joinning the given bss
|
|
|
|
|
|
|
|
|
|
|
|
join_res:
|
|
|
|
-1: authentication fail
|
|
|
|
-2: association fail
|
|
|
|
> 0: TID
|
|
|
|
|
|
|
|
*/
|
|
|
|
struct joinbss_event {
|
|
|
|
struct wlan_network network;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
Used to report a given STA has joinned the created BSS.
|
|
|
|
It is used in AP/Ad-HoC(M) mode.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
struct stassoc_event {
|
|
|
|
unsigned char macaddr[6];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct stadel_event {
|
2019-11-09 10:12:08 +00:00
|
|
|
unsigned char macaddr[6];
|
|
|
|
unsigned char rsvd[2]; /* for reason */
|
|
|
|
unsigned char locally_generated;
|
|
|
|
int mac_id;
|
2015-08-18 19:03:09 +00:00
|
|
|
};
|
|
|
|
|
2019-11-09 10:12:08 +00:00
|
|
|
struct addba_event {
|
|
|
|
unsigned int tid;
|
2015-08-18 19:03:09 +00:00
|
|
|
};
|
|
|
|
|
2019-11-09 10:12:08 +00:00
|
|
|
struct wmm_event {
|
|
|
|
unsigned char wmm;
|
2015-08-18 19:03:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef CONFIG_H2CLBK
|
2019-11-09 10:12:08 +00:00
|
|
|
struct c2hlbk_event {
|
2015-08-18 19:03:09 +00:00
|
|
|
unsigned char mac[6];
|
|
|
|
unsigned short s0;
|
|
|
|
unsigned short s1;
|
|
|
|
unsigned int w0;
|
|
|
|
unsigned char b0;
|
|
|
|
unsigned short s2;
|
|
|
|
unsigned char b1;
|
2019-11-09 10:12:08 +00:00
|
|
|
unsigned int w1;
|
2015-08-18 19:03:09 +00:00
|
|
|
};
|
2019-11-09 10:12:08 +00:00
|
|
|
#endif/* CONFIG_H2CLBK */
|
2015-08-18 19:03:09 +00:00
|
|
|
|
|
|
|
#define GEN_EVT_CODE(event) event ## _EVT_
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct fwevent {
|
|
|
|
u32 parmsize;
|
|
|
|
void (*event_callback)(_adapter *dev, u8 *pbuf);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-11-09 10:12:08 +00:00
|
|
|
#define C2HEVENT_SZ 32
|
2015-08-18 19:03:09 +00:00
|
|
|
|
2019-11-09 10:12:08 +00:00
|
|
|
struct event_node {
|
2015-08-18 19:03:09 +00:00
|
|
|
unsigned char *node;
|
|
|
|
unsigned char evt_code;
|
|
|
|
unsigned short evt_sz;
|
|
|
|
volatile int *caller_ff_tail;
|
|
|
|
int caller_ff_sz;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct c2hevent_queue {
|
|
|
|
volatile int head;
|
|
|
|
volatile int tail;
|
|
|
|
struct event_node nodes[C2HEVENT_SZ];
|
|
|
|
unsigned char seq;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define NETWORK_QUEUE_SZ 4
|
|
|
|
|
|
|
|
struct network_queue {
|
|
|
|
volatile int head;
|
|
|
|
volatile int tail;
|
2019-11-09 10:12:08 +00:00
|
|
|
WLAN_BSSID_EX networks[NETWORK_QUEUE_SZ];
|
2015-08-18 19:03:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-11-09 10:12:08 +00:00
|
|
|
#endif /* _WLANEVENT_H_ */
|