[PATCH] mac80211: revamp interface and filter configuration
[safe/jmp/linux-2.6] / drivers / net / wireless / rt2x00 / rt2x00config.c
1 /*
2         Copyright (C) 2004 - 2007 rt2x00 SourceForge Project
3         <http://rt2x00.serialmonkey.com>
4
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.
9
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.
14
15         You should have received a copy of the GNU General Public License
16         along with this program; if not, write to the
17         Free Software Foundation, Inc.,
18         59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 /*
22         Module: rt2x00lib
23         Abstract: rt2x00 generic configuration routines.
24  */
25
26 /*
27  * Set enviroment defines for rt2x00.h
28  */
29 #define DRV_NAME "rt2x00lib"
30
31 #include <linux/kernel.h>
32 #include <linux/module.h>
33
34 #include "rt2x00.h"
35 #include "rt2x00lib.h"
36
37 void rt2x00lib_config_mac_addr(struct rt2x00_dev *rt2x00dev, u8 *mac)
38 {
39         if (mac)
40                 rt2x00dev->ops->lib->config_mac_addr(rt2x00dev, mac);
41 }
42
43 void rt2x00lib_config_bssid(struct rt2x00_dev *rt2x00dev, u8 *bssid)
44 {
45         if (bssid)
46                 rt2x00dev->ops->lib->config_bssid(rt2x00dev, bssid);
47 }
48
49 void rt2x00lib_config_type(struct rt2x00_dev *rt2x00dev, int type)
50 {
51         struct interface *intf = &rt2x00dev->interface;
52
53         if (!test_bit(INTERFACE_RESUME, &rt2x00dev->flags) &&
54             (!!test_bit(INTERFACE_ENABLED, &rt2x00dev->flags) ==
55              !!is_interface_present(intf)))
56                 return;
57
58         rt2x00dev->ops->lib->config_type(rt2x00dev, type);
59
60         /*
61          * Update the configuration flags.
62          */
63         if (is_interface_present(intf))
64                 __set_bit(INTERFACE_ENABLED, &rt2x00dev->flags);
65         else
66                 __clear_bit(INTERFACE_ENABLED, &rt2x00dev->flags);
67 }
68
69 void rt2x00lib_config(struct rt2x00_dev *rt2x00dev, struct ieee80211_conf *conf)
70 {
71         int flags = 0;
72
73         /*
74          * If we are in RESUME state we should
75          * force all configuration options.
76          */
77         if (test_bit(INTERFACE_RESUME, &rt2x00dev->flags)) {
78                 flags = CONFIG_UPDATE_ALL;
79                 goto config;
80         }
81
82         /*
83          * Check which configuration options have been
84          * updated and should be send to the device.
85          */
86         if (rt2x00dev->rx_status.phymode != conf->phymode)
87                 flags |= CONFIG_UPDATE_PHYMODE;
88         if (rt2x00dev->rx_status.channel != conf->channel)
89                 flags |= CONFIG_UPDATE_CHANNEL;
90         if (rt2x00dev->tx_power != conf->power_level)
91                 flags |= CONFIG_UPDATE_TXPOWER;
92         if (rt2x00dev->rx_status.antenna == conf->antenna_sel_rx)
93                 flags |= CONFIG_UPDATE_ANTENNA;
94
95         /*
96          * The following configuration options are never
97          * stored anywhere and will always be updated.
98          */
99         flags |= CONFIG_UPDATE_SLOT_TIME;
100         flags |= CONFIG_UPDATE_BEACON_INT;
101
102 config:
103         rt2x00dev->ops->lib->config(rt2x00dev, flags, conf);
104
105         /*
106          * Some configuration changes affect the link quality
107          * which means we need to reset the link tuner.
108          */
109         if (flags & (CONFIG_UPDATE_CHANNEL | CONFIG_UPDATE_ANTENNA))
110                 rt2x00lib_reset_link_tuner(rt2x00dev);
111
112         rt2x00dev->rx_status.phymode = conf->phymode;
113         rt2x00dev->rx_status.freq = conf->freq;
114         rt2x00dev->rx_status.channel = conf->channel;
115         rt2x00dev->tx_power = conf->power_level;
116         rt2x00dev->rx_status.antenna = conf->antenna_sel_rx;
117 }