staging: iio: isl29018: remove the FSF's mailing address
[linux-2.6-block.git] / drivers / staging / wlan-ng / prism2mgmt.h
CommitLineData
00b3ed16
GKH
1/* prism2mgmt.h
2*
3* Declares the mgmt command handler functions
4*
5* Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
6* --------------------------------------------------------------------
7*
8* linux-wlan
9*
10* The contents of this file are subject to the Mozilla Public
11* License Version 1.1 (the "License"); you may not use this file
12* except in compliance with the License. You may obtain a copy of
13* the License at http://www.mozilla.org/MPL/
14*
15* Software distributed under the License is distributed on an "AS
16* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
17* implied. See the License for the specific language governing
18* rights and limitations under the License.
19*
20* Alternatively, the contents of this file may be used under the
21* terms of the GNU Public License version 2 (the "GPL"), in which
22* case the provisions of the GPL are applicable instead of the
23* above. If you wish to allow the use of your version of this file
24* only under the terms of the GPL and not to allow others to use
25* your version of this file under the MPL, indicate your decision
26* by deleting the provisions above and replace them with the notice
27* and other provisions required by the GPL. If you do not delete
28* the provisions above, a recipient may use your version of this
29* file under either the MPL or the GPL.
30*
31* --------------------------------------------------------------------
32*
33* Inquiries regarding the linux-wlan Open Source project can be
34* made directly to:
35*
36* AbsoluteValue Systems Inc.
37* info@linux-wlan.com
38* http://www.linux-wlan.com
39*
40* --------------------------------------------------------------------
41*
42* Portions of the development of this software were funded by
43* Intersil Corporation as part of PRISM(R) chipset product development.
44*
45* --------------------------------------------------------------------
46*
47* This file contains the constants and data structures for interaction
1a6dfce7 48* with the hfa384x Wireless LAN (WLAN) Media Access Controller (MAC).
00b3ed16
GKH
49* The hfa384x is a portion of the Harris PRISM(tm) WLAN chipset.
50*
51* [Implementation and usage notes]
52*
53* [References]
54* CW10 Programmer's Manual v1.5
55* IEEE 802.11 D10.0
56*
57* --------------------------------------------------------------------
58*/
59
60#ifndef _PRISM2MGMT_H
61#define _PRISM2MGMT_H
62
2407486b
MM
63extern int prism2_reset_holdtime;
64extern int prism2_reset_settletime;
00b3ed16 65
c9573a8d 66u32 prism2sta_ifstate(struct wlandevice *wlandev, u32 ifstate);
00b3ed16 67
c9573a8d 68void prism2sta_ev_info(struct wlandevice *wlandev, hfa384x_InfFrame_t *inf);
69void prism2sta_ev_txexc(struct wlandevice *wlandev, u16 status);
70void prism2sta_ev_tx(struct wlandevice *wlandev, u16 status);
71void prism2sta_ev_alloc(struct wlandevice *wlandev);
00b3ed16 72
c9573a8d 73int prism2mgmt_mibset_mibget(struct wlandevice *wlandev, void *msgp);
74int prism2mgmt_scan(struct wlandevice *wlandev, void *msgp);
75int prism2mgmt_scan_results(struct wlandevice *wlandev, void *msgp);
76int prism2mgmt_start(struct wlandevice *wlandev, void *msgp);
77int prism2mgmt_wlansniff(struct wlandevice *wlandev, void *msgp);
78int prism2mgmt_readpda(struct wlandevice *wlandev, void *msgp);
79int prism2mgmt_ramdl_state(struct wlandevice *wlandev, void *msgp);
80int prism2mgmt_ramdl_write(struct wlandevice *wlandev, void *msgp);
81int prism2mgmt_flashdl_state(struct wlandevice *wlandev, void *msgp);
82int prism2mgmt_flashdl_write(struct wlandevice *wlandev, void *msgp);
83int prism2mgmt_autojoin(struct wlandevice *wlandev, void *msgp);
00b3ed16
GKH
84
85/*---------------------------------------------------------------
86* conversion functions going between wlan message data types and
87* Prism2 data types
88---------------------------------------------------------------*/
89/* byte area conversion functions*/
5dd8acc8 90void prism2mgmt_bytearea2pstr(u8 *bytearea, p80211pstrd_t *pstr, int len);
00b3ed16
GKH
91
92/* byte string conversion functions*/
b2119911
HS
93void prism2mgmt_pstr2bytestr(struct hfa384x_bytestr *bytestr,
94 p80211pstrd_t *pstr);
95void prism2mgmt_bytestr2pstr(struct hfa384x_bytestr *bytestr,
96 p80211pstrd_t *pstr);
00b3ed16 97
00b3ed16 98/* functions to convert Group Addresses */
5dd8acc8 99void prism2mgmt_get_grpaddr(u32 did, p80211pstrd_t *pstr, hfa384x_t *priv);
aaad4303 100int prism2mgmt_set_grpaddr(u32 did,
5dd8acc8
SK
101 u8 *prism2buf, p80211pstrd_t *pstr,
102 hfa384x_t *priv);
2407486b 103int prism2mgmt_get_grpaddr_index(u32 did);
00b3ed16
GKH
104
105void prism2sta_processing_defer(struct work_struct *data);
106
107void prism2sta_commsqual_defer(struct work_struct *data);
108void prism2sta_commsqual_timer(unsigned long data);
109
8cf22fda 110/* Interface callback functions, passing data back up to the cfg80211 layer */
c9573a8d 111void prism2_connect_result(struct wlandevice *wlandev, u8 failed);
112void prism2_disconnected(struct wlandevice *wlandev);
113void prism2_roamed(struct wlandevice *wlandev);
8cf22fda 114
00b3ed16 115#endif