3 Broadcom BCM43xx wireless driver
7 Copyright (c) 2006 Michael Buesch <mbuesch@freenet.de>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; see the file COPYING. If not, write to
21 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
22 Boston, MA 02110-1301, USA.
26 #include "bcm43xx_sysfs.h"
28 #include "bcm43xx_main.h"
29 #include "bcm43xx_radio.h"
31 #include <linux/capability.h>
34 #define GENERIC_FILESIZE 64
37 static int get_integer(const char *buf, size_t count)
39 char tmp[10 + 1] = { 0 };
44 count = min(count, (size_t)10);
45 memcpy(tmp, buf, count);
46 ret = simple_strtol(tmp, NULL, 10);
51 static int get_boolean(const char *buf, size_t count)
58 if (count >= 4 && memcmp(buf, "true", 4) == 0)
60 if (count >= 5 && memcmp(buf, "false", 5) == 0)
62 if (count >= 3 && memcmp(buf, "yes", 3) == 0)
64 if (count >= 2 && memcmp(buf, "no", 2) == 0)
66 if (count >= 2 && memcmp(buf, "on", 2) == 0)
68 if (count >= 3 && memcmp(buf, "off", 3) == 0)
74 static int sprom2hex(const u16 *sprom, char *buf, size_t buf_len)
78 for (i = 0; i < BCM43xx_SPROM_SIZE; i++) {
79 pos += snprintf(buf + pos, buf_len - pos - 1,
80 "%04X", swab16(sprom[i]) & 0xFFFF);
82 pos += snprintf(buf + pos, buf_len - pos - 1, "\n");
87 static int hex2sprom(u16 *sprom, const char *dump, size_t len)
93 if (len < BCM43xx_SPROM_SIZE * sizeof(u16) * 2)
96 while (cnt < BCM43xx_SPROM_SIZE) {
99 parsed = simple_strtoul(tmp, NULL, 16);
100 sprom[cnt++] = swab16((u16)parsed);
106 static ssize_t bcm43xx_attr_sprom_show(struct device *dev,
107 struct device_attribute *attr,
110 struct bcm43xx_private *bcm = dev_to_bcm(dev);
115 if (!capable(CAP_NET_ADMIN))
118 assert(BCM43xx_SPROM_SIZE * sizeof(u16) <= PAGE_SIZE);
119 sprom = kmalloc(BCM43xx_SPROM_SIZE * sizeof(*sprom),
123 mutex_lock(&bcm->mutex);
124 spin_lock_irqsave(&bcm->irq_lock, flags);
125 err = bcm43xx_sprom_read(bcm, sprom);
127 err = sprom2hex(sprom, buf, PAGE_SIZE);
129 spin_unlock_irqrestore(&bcm->irq_lock, flags);
130 mutex_unlock(&bcm->mutex);
136 static ssize_t bcm43xx_attr_sprom_store(struct device *dev,
137 struct device_attribute *attr,
138 const char *buf, size_t count)
140 struct bcm43xx_private *bcm = dev_to_bcm(dev);
145 if (!capable(CAP_NET_ADMIN))
148 sprom = kmalloc(BCM43xx_SPROM_SIZE * sizeof(*sprom),
152 err = hex2sprom(sprom, buf, count);
155 mutex_lock(&bcm->mutex);
156 spin_lock_irqsave(&bcm->irq_lock, flags);
157 spin_lock(&bcm->leds_lock);
158 err = bcm43xx_sprom_write(bcm, sprom);
160 spin_unlock(&bcm->leds_lock);
161 spin_unlock_irqrestore(&bcm->irq_lock, flags);
162 mutex_unlock(&bcm->mutex);
166 return err ? err : count;
170 static DEVICE_ATTR(sprom, 0600,
171 bcm43xx_attr_sprom_show,
172 bcm43xx_attr_sprom_store);
174 static ssize_t bcm43xx_attr_interfmode_show(struct device *dev,
175 struct device_attribute *attr,
178 struct bcm43xx_private *bcm = dev_to_bcm(dev);
182 if (!capable(CAP_NET_ADMIN))
185 mutex_lock(&bcm->mutex);
187 switch (bcm43xx_current_radio(bcm)->interfmode) {
188 case BCM43xx_RADIO_INTERFMODE_NONE:
189 count = snprintf(buf, PAGE_SIZE, "0 (No Interference Mitigation)\n");
191 case BCM43xx_RADIO_INTERFMODE_NONWLAN:
192 count = snprintf(buf, PAGE_SIZE, "1 (Non-WLAN Interference Mitigation)\n");
194 case BCM43xx_RADIO_INTERFMODE_MANUALWLAN:
195 count = snprintf(buf, PAGE_SIZE, "2 (WLAN Interference Mitigation)\n");
202 mutex_unlock(&bcm->mutex);
204 return err ? err : count;
208 static ssize_t bcm43xx_attr_interfmode_store(struct device *dev,
209 struct device_attribute *attr,
210 const char *buf, size_t count)
212 struct bcm43xx_private *bcm = dev_to_bcm(dev);
217 if (!capable(CAP_NET_ADMIN))
220 mode = get_integer(buf, count);
223 mode = BCM43xx_RADIO_INTERFMODE_NONE;
226 mode = BCM43xx_RADIO_INTERFMODE_NONWLAN;
229 mode = BCM43xx_RADIO_INTERFMODE_MANUALWLAN;
232 mode = BCM43xx_RADIO_INTERFMODE_AUTOWLAN;
238 mutex_lock(&bcm->mutex);
239 spin_lock_irqsave(&bcm->irq_lock, flags);
241 err = bcm43xx_radio_set_interference_mitigation(bcm, mode);
243 printk(KERN_ERR PFX "Interference Mitigation not "
244 "supported by device\n");
247 spin_unlock_irqrestore(&bcm->irq_lock, flags);
248 mutex_unlock(&bcm->mutex);
250 return err ? err : count;
253 static DEVICE_ATTR(interference, 0644,
254 bcm43xx_attr_interfmode_show,
255 bcm43xx_attr_interfmode_store);
257 static ssize_t bcm43xx_attr_preamble_show(struct device *dev,
258 struct device_attribute *attr,
261 struct bcm43xx_private *bcm = dev_to_bcm(dev);
265 if (!capable(CAP_NET_ADMIN))
268 mutex_lock(&bcm->mutex);
270 if (bcm->short_preamble)
271 count = snprintf(buf, PAGE_SIZE, "1 (Short Preamble enabled)\n");
273 count = snprintf(buf, PAGE_SIZE, "0 (Short Preamble disabled)\n");
276 mutex_unlock(&bcm->mutex);
278 return err ? err : count;
281 static ssize_t bcm43xx_attr_preamble_store(struct device *dev,
282 struct device_attribute *attr,
283 const char *buf, size_t count)
285 struct bcm43xx_private *bcm = dev_to_bcm(dev);
290 if (!capable(CAP_NET_ADMIN))
293 value = get_boolean(buf, count);
296 mutex_lock(&bcm->mutex);
297 spin_lock_irqsave(&bcm->irq_lock, flags);
299 bcm->short_preamble = !!value;
302 spin_unlock_irqrestore(&bcm->irq_lock, flags);
303 mutex_unlock(&bcm->mutex);
305 return err ? err : count;
308 static DEVICE_ATTR(shortpreamble, 0644,
309 bcm43xx_attr_preamble_show,
310 bcm43xx_attr_preamble_store);
312 static ssize_t bcm43xx_attr_phymode_store(struct device *dev,
313 struct device_attribute *attr,
314 const char *buf, size_t count)
316 struct bcm43xx_private *bcm = dev_to_bcm(dev);
324 phytype = BCM43xx_PHYTYPE_A;
327 phytype = BCM43xx_PHYTYPE_B;
330 phytype = BCM43xx_PHYTYPE_G;
336 mutex_lock(&(bcm)->mutex);
337 err = bcm43xx_select_wireless_core(bcm, phytype);
338 mutex_unlock(&(bcm)->mutex);
343 return err ? err : count;
346 static ssize_t bcm43xx_attr_phymode_show(struct device *dev,
347 struct device_attribute *attr,
350 struct bcm43xx_private *bcm = dev_to_bcm(dev);
353 mutex_lock(&(bcm)->mutex);
354 switch (bcm43xx_current_phy(bcm)->type) {
355 case BCM43xx_PHYTYPE_A:
356 snprintf(buf, PAGE_SIZE, "A");
358 case BCM43xx_PHYTYPE_B:
359 snprintf(buf, PAGE_SIZE, "B");
361 case BCM43xx_PHYTYPE_G:
362 snprintf(buf, PAGE_SIZE, "G");
367 mutex_unlock(&(bcm)->mutex);
372 static DEVICE_ATTR(phymode, 0644,
373 bcm43xx_attr_phymode_show,
374 bcm43xx_attr_phymode_store);
376 int bcm43xx_sysfs_register(struct bcm43xx_private *bcm)
378 struct device *dev = &bcm->pci_dev->dev;
381 assert(bcm43xx_status(bcm) == BCM43xx_STAT_INITIALIZED);
383 err = device_create_file(dev, &dev_attr_sprom);
386 err = device_create_file(dev, &dev_attr_interference);
388 goto err_remove_sprom;
389 err = device_create_file(dev, &dev_attr_shortpreamble);
391 goto err_remove_interfmode;
392 err = device_create_file(dev, &dev_attr_phymode);
394 goto err_remove_shortpreamble;
398 err_remove_shortpreamble:
399 device_remove_file(dev, &dev_attr_shortpreamble);
400 err_remove_interfmode:
401 device_remove_file(dev, &dev_attr_interference);
403 device_remove_file(dev, &dev_attr_sprom);
407 void bcm43xx_sysfs_unregister(struct bcm43xx_private *bcm)
409 struct device *dev = &bcm->pci_dev->dev;
411 device_remove_file(dev, &dev_attr_phymode);
412 device_remove_file(dev, &dev_attr_shortpreamble);
413 device_remove_file(dev, &dev_attr_interference);
414 device_remove_file(dev, &dev_attr_sprom);