3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * A lot of this code is generic and should be moved into the upper layers
23 #include <linux/errno.h>
24 #include <linux/wireless.h>
25 #include <linux/kernel.h>
26 #include <net/ieee80211.h>
29 #include "zd_ieee80211.h"
32 static const struct channel_range channel_ranges[] = {
34 [ZD_REGDOMAIN_FCC] = { 1, 12},
35 [ZD_REGDOMAIN_IC] = { 1, 12},
36 [ZD_REGDOMAIN_ETSI] = { 1, 14},
37 [ZD_REGDOMAIN_JAPAN] = { 1, 14},
38 [ZD_REGDOMAIN_SPAIN] = { 1, 14},
39 [ZD_REGDOMAIN_FRANCE] = { 1, 14},
41 /* Japan originally only had channel 14 available (see CHNL_ID 0x40 in
42 * 802.11). However, in 2001 the range was extended to include channels
43 * 1-13. The ZyDAS devices still use the old region code but are
44 * designed to allow the extra channel access in Japan. */
45 [ZD_REGDOMAIN_JAPAN_ADD] = { 1, 15},
48 const struct channel_range *zd_channel_range(u8 regdomain)
50 if (regdomain >= ARRAY_SIZE(channel_ranges))
52 return &channel_ranges[regdomain];
55 int zd_regdomain_supports_channel(u8 regdomain, u8 channel)
57 const struct channel_range *range = zd_channel_range(regdomain);
58 return range->start <= channel && channel < range->end;
61 int zd_regdomain_supported(u8 regdomain)
63 const struct channel_range *range = zd_channel_range(regdomain);
64 return range->start != 0;
67 /* Stores channel frequencies in MHz. */
68 static const u16 channel_frequencies[] = {
69 2412, 2417, 2422, 2427, 2432, 2437, 2442, 2447,
70 2452, 2457, 2462, 2467, 2472, 2484,
73 #define NUM_CHANNELS ARRAY_SIZE(channel_frequencies)
75 static int compute_freq(struct iw_freq *freq, u32 mhz, u32 hz)
80 if (mhz >= 1000000000U) {
81 pr_debug("zd1211 mhz %u to large\n", mhz);
87 while (mhz >= factor) {
94 freq->m = mhz * (1000000U/factor) + hz/factor;
99 int zd_channel_to_freq(struct iw_freq *freq, u8 channel)
101 if (channel > NUM_CHANNELS) {
111 return compute_freq(freq, channel_frequencies[channel-1], 0);
114 static int freq_to_mhz(const struct iw_freq *freq)
119 /* Such high frequencies are not supported. */
124 for (e = freq->e; e > 0; --e) {
127 factor = 1000000U / factor;
129 if (freq->m % factor) {
133 return freq->m / factor;
136 int zd_find_channel(u8 *channel, const struct iw_freq *freq)
141 if (freq->m < 1000) {
142 if (freq->m > NUM_CHANNELS || freq->m == 0)
148 r = freq_to_mhz(freq);
153 for (i = 0; i < NUM_CHANNELS; i++) {
154 if (mhz == channel_frequencies[i]) {
163 int zd_geo_init(struct ieee80211_device *ieee, u8 regdomain)
165 struct ieee80211_geo geo;
166 const struct channel_range *range;
170 dev_dbg(zd_mac_dev(zd_netdev_mac(ieee->dev)),
171 "regdomain %#04x\n", regdomain);
173 range = zd_channel_range(regdomain);
174 if (range->start == 0) {
175 dev_err(zd_mac_dev(zd_netdev_mac(ieee->dev)),
176 "zd1211 regdomain %#04x not supported\n",
181 memset(&geo, 0, sizeof(geo));
183 for (i = 0, channel = range->start; channel < range->end; channel++) {
184 struct ieee80211_channel *chan = &geo.bg[i++];
185 chan->freq = channel_frequencies[channel - 1];
186 chan->channel = channel;
190 memcpy(geo.name, "XX ", 4);
191 ieee80211_set_geo(ieee, &geo);