RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / staging / vt6655 / wcmd.h
blob69d4fc55b843e14b8774d7ee0789e7f0ee206c7a
1 /*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 * File: wcmd.h
21 * Purpose: Handles the management command interface functions
23 * Author: Lyndon Chen
25 * Date: May 8, 2002
29 #ifndef __WCMD_H__
30 #define __WCMD_H__
32 #include "ttype.h"
33 #include "80211hdr.h"
34 #include "80211mgr.h"
36 /*--------------------- Export Definitions -------------------------*/
40 #define AUTHENTICATE_TIMEOUT 1000 //ms
41 #define ASSOCIATE_TIMEOUT 1000 //ms
44 // Command code
45 typedef enum tagCMD_CODE {
46 WLAN_CMD_BSSID_SCAN,
47 WLAN_CMD_SSID,
48 WLAN_CMD_DISASSOCIATE,
49 WLAN_CMD_DEAUTH,
50 WLAN_CMD_RX_PSPOLL,
51 WLAN_CMD_RADIO,
52 WLAN_CMD_CHANGE_BBSENSITIVITY,
53 WLAN_CMD_SETPOWER,
54 WLAN_CMD_TBTT_WAKEUP,
55 WLAN_CMD_BECON_SEND,
56 WLAN_CMD_CHANGE_ANTENNA,
57 WLAN_CMD_REMOVE_ALLKEY,
58 WLAN_CMD_MAC_DISPOWERSAVING,
59 WLAN_CMD_11H_CHSW,
60 WLAN_CMD_RUN_AP
61 } CMD_CODE, *PCMD_CODE;
63 #define CMD_Q_SIZE 32
65 typedef enum tagCMD_STATUS {
67 CMD_STATUS_SUCCESS = 0,
68 CMD_STATUS_FAILURE,
69 CMD_STATUS_RESOURCES,
70 CMD_STATUS_TIMEOUT,
71 CMD_STATUS_PENDING
73 } CMD_STATUS, *PCMD_STATUS;
76 typedef struct tagCMD_ITEM {
77 CMD_CODE eCmd;
78 unsigned char abyCmdDesireSSID[WLAN_IEHDR_LEN + WLAN_SSID_MAXLEN + 1];
79 bool bNeedRadioOFF;
80 unsigned short wDeAuthenReason;
81 bool bRadioCmd;
82 bool bForceSCAN;
83 } CMD_ITEM, *PCMD_ITEM;
85 // Command state
86 typedef enum tagCMD_STATE {
87 WLAN_CMD_SCAN_START,
88 WLAN_CMD_SCAN_END,
89 WLAN_CMD_DISASSOCIATE_START,
90 WLAN_CMD_SSID_START,
91 WLAN_AUTHENTICATE_WAIT,
92 WLAN_ASSOCIATE_WAIT,
93 WLAN_DISASSOCIATE_WAIT,
94 WLAN_CMD_TX_PSPACKET_START,
95 WLAN_CMD_AP_MODE_START,
96 WLAN_CMD_RADIO_START,
97 WLAN_CMD_CHECK_BBSENSITIVITY_CHANGE,
98 WLAN_CMD_IDLE
99 } CMD_STATE, *PCMD_STATE;
103 /*--------------------- Export Classes ----------------------------*/
105 /*--------------------- Export Variables --------------------------*/
108 /*--------------------- Export Types ------------------------------*/
111 /*--------------------- Export Functions --------------------------*/
112 void
113 vResetCommandTimer(
114 void *hDeviceContext
117 void
118 vCommandTimer (
119 void *hDeviceContext
122 bool bClearBSSID_SCAN(
123 void *hDeviceContext
126 bool
127 bScheduleCommand(
128 void *hDeviceContext,
129 CMD_CODE eCommand,
130 unsigned char *pbyItem0
133 void
134 vCommandTimerWait(
135 void *hDeviceContext,
136 unsigned int MSecond
138 #ifdef TxInSleep
139 void
140 BSSvSecondTxData(
141 void *hDeviceContext
143 #endif
145 #endif //__WCMD_H__