2 * Copyright (C) 2002 Intersil Americas Inc.
3 * Copyright (C) 2003 Herbert Valerio Riedel <hvr@gnu.org>
4 * Copyright (C) 2003 Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License
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
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/module.h>
23 #include <linux/netdevice.h>
24 #include <linux/ethtool.h>
25 #include <linux/pci.h>
26 #include <linux/etherdevice.h>
27 #include <linux/delay.h>
28 #include <linux/if_arp.h>
32 #include "prismcompat.h"
34 #include "isl_ioctl.h"
35 #include "islpci_dev.h"
36 #include "islpci_mgt.h"
37 #include "islpci_eth.h"
40 #define ISL3877_IMAGE_FILE "isl3877"
41 #define ISL3886_IMAGE_FILE "isl3886"
42 #define ISL3890_IMAGE_FILE "isl3890"
44 static int prism54_bring_down(islpci_private
*);
45 static int islpci_alloc_memory(islpci_private
*);
46 static struct net_device_stats
*islpci_statistics(struct net_device
*);
48 /* Temporary dummy MAC address to use until firmware is loaded.
49 * The idea there is that some tools (such as nameif) may query
50 * the MAC address before the netdev is 'open'. By using a valid
51 * OUI prefix, they can process the netdev properly.
52 * Of course, this is not the final/real MAC address. It doesn't
53 * matter, as you are suppose to be able to change it anytime via
54 * ndev->set_mac_address. Jean II */
55 static const unsigned char dummy_mac
[6] = { 0x00, 0x30, 0xB4, 0x00, 0x00, 0x00 };
58 isl_upload_firmware(islpci_private
*priv
)
61 void __iomem
*device_base
= priv
->device_base
;
63 /* clear the RAMBoot and the Reset bit */
64 reg
= readl(device_base
+ ISL38XX_CTRL_STAT_REG
);
65 reg
&= ~ISL38XX_CTRL_STAT_RESET
;
66 reg
&= ~ISL38XX_CTRL_STAT_RAMBOOT
;
67 writel(reg
, device_base
+ ISL38XX_CTRL_STAT_REG
);
69 udelay(ISL38XX_WRITEIO_DELAY
);
71 /* set the Reset bit without reading the register ! */
72 reg
|= ISL38XX_CTRL_STAT_RESET
;
73 writel(reg
, device_base
+ ISL38XX_CTRL_STAT_REG
);
75 udelay(ISL38XX_WRITEIO_DELAY
);
77 /* clear the Reset bit */
78 reg
&= ~ISL38XX_CTRL_STAT_RESET
;
79 writel(reg
, device_base
+ ISL38XX_CTRL_STAT_REG
);
82 /* wait a while for the device to reboot */
86 const struct firmware
*fw_entry
= NULL
;
90 rc
= request_firmware(&fw_entry
, priv
->firmware
, PRISM_FW_PDEV
);
93 "%s: request_firmware() failed for '%s'\n",
94 "prism54", priv
->firmware
);
97 /* prepare the Direct Memory Base register */
98 reg
= ISL38XX_DEV_FIRMWARE_ADDRES
;
100 fw_ptr
= (u32
*) fw_entry
->data
;
101 fw_len
= fw_entry
->size
;
105 "%s: firmware '%s' size is not multiple of 32bit, aborting!\n",
106 "prism54", priv
->firmware
);
107 release_firmware(fw_entry
);
108 return -EILSEQ
; /* Illegal byte sequence */;
114 ISL38XX_MEMORY_WINDOW_SIZE
) ?
115 ISL38XX_MEMORY_WINDOW_SIZE
: fw_len
;
116 u32 __iomem
*dev_fw_ptr
= device_base
+ ISL38XX_DIRECT_MEM_WIN
;
118 /* set the card's base address for writing the data */
119 isl38xx_w32_flush(device_base
, reg
,
120 ISL38XX_DIR_MEM_BASE_REG
);
121 wmb(); /* be paranoid */
123 /* increment the write address for next iteration */
127 /* write the data to the Direct Memory Window 32bit-wise */
128 /* memcpy_toio() doesn't guarantee 32bit writes :-| */
129 while (_fw_len
> 0) {
130 /* use non-swapping writel() */
131 __raw_writel(*fw_ptr
, dev_fw_ptr
);
132 fw_ptr
++, dev_fw_ptr
++;
136 /* flush PCI posting */
137 (void) readl(device_base
+ ISL38XX_PCI_POSTING_FLUSH
);
138 wmb(); /* be paranoid again */
140 BUG_ON(_fw_len
!= 0);
145 /* Firmware version is at offset 40 (also for "newmac") */
146 printk(KERN_DEBUG
"%s: firmware version: %.8s\n",
147 priv
->ndev
->name
, fw_entry
->data
+ 40);
149 release_firmware(fw_entry
);
152 /* now reset the device
153 * clear the Reset & ClkRun bit, set the RAMBoot bit */
154 reg
= readl(device_base
+ ISL38XX_CTRL_STAT_REG
);
155 reg
&= ~ISL38XX_CTRL_STAT_CLKRUN
;
156 reg
&= ~ISL38XX_CTRL_STAT_RESET
;
157 reg
|= ISL38XX_CTRL_STAT_RAMBOOT
;
158 isl38xx_w32_flush(device_base
, reg
, ISL38XX_CTRL_STAT_REG
);
160 udelay(ISL38XX_WRITEIO_DELAY
);
162 /* set the reset bit latches the host override and RAMBoot bits
163 * into the device for operation when the reset bit is reset */
164 reg
|= ISL38XX_CTRL_STAT_RESET
;
165 writel(reg
, device_base
+ ISL38XX_CTRL_STAT_REG
);
166 /* don't do flush PCI posting here! */
168 udelay(ISL38XX_WRITEIO_DELAY
);
170 /* clear the reset bit should start the whole circus */
171 reg
&= ~ISL38XX_CTRL_STAT_RESET
;
172 writel(reg
, device_base
+ ISL38XX_CTRL_STAT_REG
);
173 /* don't do flush PCI posting here! */
175 udelay(ISL38XX_WRITEIO_DELAY
);
180 /******************************************************************************
181 Device Interrupt Handler
182 ******************************************************************************/
185 islpci_interrupt(int irq
, void *config
)
188 islpci_private
*priv
= config
;
189 struct net_device
*ndev
= priv
->ndev
;
190 void __iomem
*device
= priv
->device_base
;
191 int powerstate
= ISL38XX_PSM_POWERSAVE_STATE
;
193 /* lock the interrupt handler */
194 spin_lock(&priv
->slock
);
196 /* received an interrupt request on a shared IRQ line
197 * first check whether the device is in sleep mode */
198 reg
= readl(device
+ ISL38XX_CTRL_STAT_REG
);
199 if (reg
& ISL38XX_CTRL_STAT_SLEEPMODE
)
200 /* device is in sleep mode, IRQ was generated by someone else */
202 #if VERBOSE > SHOW_ERROR_MESSAGES
203 DEBUG(SHOW_TRACING
, "Assuming someone else called the IRQ\n");
205 spin_unlock(&priv
->slock
);
210 /* check whether there is any source of interrupt on the device */
211 reg
= readl(device
+ ISL38XX_INT_IDENT_REG
);
213 /* also check the contents of the Interrupt Enable Register, because this
214 * will filter out interrupt sources from other devices on the same irq ! */
215 reg
&= readl(device
+ ISL38XX_INT_EN_REG
);
216 reg
&= ISL38XX_INT_SOURCES
;
219 if (islpci_get_state(priv
) != PRV_STATE_SLEEP
)
220 powerstate
= ISL38XX_PSM_ACTIVE_STATE
;
222 /* reset the request bits in the Identification register */
223 isl38xx_w32_flush(device
, reg
, ISL38XX_INT_ACK_REG
);
225 #if VERBOSE > SHOW_ERROR_MESSAGES
226 DEBUG(SHOW_FUNCTION_CALLS
,
227 "IRQ: Identification register 0x%p 0x%x \n", device
, reg
);
230 /* check for each bit in the register separately */
231 if (reg
& ISL38XX_INT_IDENT_UPDATE
) {
232 #if VERBOSE > SHOW_ERROR_MESSAGES
233 /* Queue has been updated */
234 DEBUG(SHOW_TRACING
, "IRQ: Update flag \n");
236 DEBUG(SHOW_QUEUE_INDEXES
,
237 "CB drv Qs: [%i][%i][%i][%i][%i][%i]\n",
238 le32_to_cpu(priv
->control_block
->
239 driver_curr_frag
[0]),
240 le32_to_cpu(priv
->control_block
->
241 driver_curr_frag
[1]),
242 le32_to_cpu(priv
->control_block
->
243 driver_curr_frag
[2]),
244 le32_to_cpu(priv
->control_block
->
245 driver_curr_frag
[3]),
246 le32_to_cpu(priv
->control_block
->
247 driver_curr_frag
[4]),
248 le32_to_cpu(priv
->control_block
->
252 DEBUG(SHOW_QUEUE_INDEXES
,
253 "CB dev Qs: [%i][%i][%i][%i][%i][%i]\n",
254 le32_to_cpu(priv
->control_block
->
255 device_curr_frag
[0]),
256 le32_to_cpu(priv
->control_block
->
257 device_curr_frag
[1]),
258 le32_to_cpu(priv
->control_block
->
259 device_curr_frag
[2]),
260 le32_to_cpu(priv
->control_block
->
261 device_curr_frag
[3]),
262 le32_to_cpu(priv
->control_block
->
263 device_curr_frag
[4]),
264 le32_to_cpu(priv
->control_block
->
269 /* cleanup the data low transmit queue */
270 islpci_eth_cleanup_transmit(priv
, priv
->control_block
);
272 /* device is in active state, update the
273 * powerstate flag if necessary */
274 powerstate
= ISL38XX_PSM_ACTIVE_STATE
;
276 /* check all three queues in priority order
277 * call the PIMFOR receive function until the
279 if (isl38xx_in_queue(priv
->control_block
,
280 ISL38XX_CB_RX_MGMTQ
) != 0) {
281 #if VERBOSE > SHOW_ERROR_MESSAGES
283 "Received frame in Management Queue\n");
285 islpci_mgt_receive(ndev
);
287 islpci_mgt_cleanup_transmit(ndev
);
289 /* Refill slots in receive queue */
290 islpci_mgmt_rx_fill(ndev
);
292 /* no need to trigger the device, next
293 islpci_mgt_transaction does it */
296 while (isl38xx_in_queue(priv
->control_block
,
297 ISL38XX_CB_RX_DATA_LQ
) != 0) {
298 #if VERBOSE > SHOW_ERROR_MESSAGES
300 "Received frame in Data Low Queue \n");
302 islpci_eth_receive(priv
);
305 /* check whether the data transmit queues were full */
306 if (priv
->data_low_tx_full
) {
307 /* check whether the transmit is not full anymore */
308 if (ISL38XX_CB_TX_QSIZE
-
309 isl38xx_in_queue(priv
->control_block
,
310 ISL38XX_CB_TX_DATA_LQ
) >=
311 ISL38XX_MIN_QTHRESHOLD
) {
312 /* nope, the driver is ready for more network frames */
313 netif_wake_queue(priv
->ndev
);
315 /* reset the full flag */
316 priv
->data_low_tx_full
= 0;
321 if (reg
& ISL38XX_INT_IDENT_INIT
) {
322 /* Device has been initialized */
323 #if VERBOSE > SHOW_ERROR_MESSAGES
325 "IRQ: Init flag, device initialized \n");
327 wake_up(&priv
->reset_done
);
330 if (reg
& ISL38XX_INT_IDENT_SLEEP
) {
331 /* Device intends to move to powersave state */
332 #if VERBOSE > SHOW_ERROR_MESSAGES
333 DEBUG(SHOW_TRACING
, "IRQ: Sleep flag \n");
335 isl38xx_handle_sleep_request(priv
->control_block
,
340 if (reg
& ISL38XX_INT_IDENT_WAKEUP
) {
341 /* Device has been woken up to active state */
342 #if VERBOSE > SHOW_ERROR_MESSAGES
343 DEBUG(SHOW_TRACING
, "IRQ: Wakeup flag \n");
346 isl38xx_handle_wakeup(priv
->control_block
,
347 &powerstate
, priv
->device_base
);
350 #if VERBOSE > SHOW_ERROR_MESSAGES
351 DEBUG(SHOW_TRACING
, "Assuming someone else called the IRQ\n");
353 spin_unlock(&priv
->slock
);
358 if (islpci_get_state(priv
) == PRV_STATE_SLEEP
359 && powerstate
== ISL38XX_PSM_ACTIVE_STATE
)
360 islpci_set_state(priv
, PRV_STATE_READY
);
362 /* !sleep -> sleep */
363 if (islpci_get_state(priv
) != PRV_STATE_SLEEP
364 && powerstate
== ISL38XX_PSM_POWERSAVE_STATE
)
365 islpci_set_state(priv
, PRV_STATE_SLEEP
);
367 /* unlock the interrupt handler */
368 spin_unlock(&priv
->slock
);
373 /******************************************************************************
374 Network Interface Control & Statistical functions
375 ******************************************************************************/
377 islpci_open(struct net_device
*ndev
)
380 islpci_private
*priv
= netdev_priv(ndev
);
382 /* reset data structures, upload firmware and reset device */
383 rc
= islpci_reset(priv
,1);
385 prism54_bring_down(priv
);
386 return rc
; /* Returns informative message */
389 netif_start_queue(ndev
);
391 /* Turn off carrier unless we know we have associated */
392 netif_carrier_off(ndev
);
398 islpci_close(struct net_device
*ndev
)
400 islpci_private
*priv
= netdev_priv(ndev
);
402 printk(KERN_DEBUG
"%s: islpci_close ()\n", ndev
->name
);
404 netif_stop_queue(ndev
);
406 return prism54_bring_down(priv
);
410 prism54_bring_down(islpci_private
*priv
)
412 void __iomem
*device_base
= priv
->device_base
;
414 /* we are going to shutdown the device */
415 islpci_set_state(priv
, PRV_STATE_PREBOOT
);
417 /* disable all device interrupts in case they weren't */
418 isl38xx_disable_interrupts(priv
->device_base
);
420 /* For safety reasons, we may want to ensure that no DMA transfer is
421 * currently in progress by emptying the TX and RX queues. */
423 /* wait until interrupts have finished executing on other CPUs */
424 synchronize_irq(priv
->pdev
->irq
);
426 reg
= readl(device_base
+ ISL38XX_CTRL_STAT_REG
);
427 reg
&= ~(ISL38XX_CTRL_STAT_RESET
| ISL38XX_CTRL_STAT_RAMBOOT
);
428 writel(reg
, device_base
+ ISL38XX_CTRL_STAT_REG
);
430 udelay(ISL38XX_WRITEIO_DELAY
);
432 reg
|= ISL38XX_CTRL_STAT_RESET
;
433 writel(reg
, device_base
+ ISL38XX_CTRL_STAT_REG
);
435 udelay(ISL38XX_WRITEIO_DELAY
);
437 /* clear the Reset bit */
438 reg
&= ~ISL38XX_CTRL_STAT_RESET
;
439 writel(reg
, device_base
+ ISL38XX_CTRL_STAT_REG
);
442 /* wait a while for the device to reset */
443 schedule_timeout_uninterruptible(msecs_to_jiffies(50));
449 islpci_upload_fw(islpci_private
*priv
)
451 islpci_state_t old_state
;
454 old_state
= islpci_set_state(priv
, PRV_STATE_BOOT
);
456 printk(KERN_DEBUG
"%s: uploading firmware...\n", priv
->ndev
->name
);
458 rc
= isl_upload_firmware(priv
);
460 /* error uploading the firmware */
461 printk(KERN_ERR
"%s: could not upload firmware ('%s')\n",
462 priv
->ndev
->name
, priv
->firmware
);
464 islpci_set_state(priv
, old_state
);
468 printk(KERN_DEBUG
"%s: firmware upload complete\n",
471 islpci_set_state(priv
, PRV_STATE_POSTBOOT
);
477 islpci_reset_if(islpci_private
*priv
)
484 prepare_to_wait(&priv
->reset_done
, &wait
, TASK_UNINTERRUPTIBLE
);
486 /* now the last step is to reset the interface */
487 isl38xx_interface_reset(priv
->device_base
, priv
->device_host_address
);
488 islpci_set_state(priv
, PRV_STATE_PREINIT
);
490 for(count
= 0; count
< 2 && result
; count
++) {
491 /* The software reset acknowledge needs about 220 msec here.
492 * Be conservative and wait for up to one second. */
494 remaining
= schedule_timeout_uninterruptible(HZ
);
501 /* If we're here it's because our IRQ hasn't yet gone through.
502 * Retry a bit more...
504 printk(KERN_ERR
"%s: no 'reset complete' IRQ seen - retrying\n",
508 finish_wait(&priv
->reset_done
, &wait
);
511 printk(KERN_ERR
"%s: interface reset failure\n", priv
->ndev
->name
);
515 islpci_set_state(priv
, PRV_STATE_INIT
);
517 /* Now that the device is 100% up, let's allow
518 * for the other interrupts --
519 * NOTE: this is not *yet* true since we've only allowed the
520 * INIT interrupt on the IRQ line. We can perhaps poll
521 * the IRQ line until we know for sure the reset went through */
522 isl38xx_enable_common_interrupts(priv
->device_base
);
524 down_write(&priv
->mib_sem
);
525 result
= mgt_commit(priv
);
527 printk(KERN_ERR
"%s: interface reset failure\n", priv
->ndev
->name
);
528 up_write(&priv
->mib_sem
);
531 up_write(&priv
->mib_sem
);
533 islpci_set_state(priv
, PRV_STATE_READY
);
535 printk(KERN_DEBUG
"%s: interface reset complete\n", priv
->ndev
->name
);
540 islpci_reset(islpci_private
*priv
, int reload_firmware
)
542 isl38xx_control_block
*cb
= /* volatile not needed */
543 (isl38xx_control_block
*) priv
->control_block
;
548 islpci_set_state(priv
, PRV_STATE_PREBOOT
);
550 islpci_set_state(priv
, PRV_STATE_POSTBOOT
);
552 printk(KERN_DEBUG
"%s: resetting device...\n", priv
->ndev
->name
);
554 /* disable all device interrupts in case they weren't */
555 isl38xx_disable_interrupts(priv
->device_base
);
557 /* flush all management queues */
558 priv
->index_mgmt_tx
= 0;
559 priv
->index_mgmt_rx
= 0;
561 /* clear the indexes in the frame pointer */
562 for (counter
= 0; counter
< ISL38XX_CB_QCOUNT
; counter
++) {
563 cb
->driver_curr_frag
[counter
] = cpu_to_le32(0);
564 cb
->device_curr_frag
[counter
] = cpu_to_le32(0);
567 /* reset the mgmt receive queue */
568 for (counter
= 0; counter
< ISL38XX_CB_MGMT_QSIZE
; counter
++) {
569 isl38xx_fragment
*frag
= &cb
->rx_data_mgmt
[counter
];
570 frag
->size
= cpu_to_le16(MGMT_FRAME_SIZE
);
572 frag
->address
= cpu_to_le32(priv
->mgmt_rx
[counter
].pci_addr
);
575 for (counter
= 0; counter
< ISL38XX_CB_RX_QSIZE
; counter
++) {
576 cb
->rx_data_low
[counter
].address
=
577 cpu_to_le32((u32
) priv
->pci_map_rx_address
[counter
]);
580 /* since the receive queues are filled with empty fragments, now we can
581 * set the corresponding indexes in the Control Block */
582 priv
->control_block
->driver_curr_frag
[ISL38XX_CB_RX_DATA_LQ
] =
583 cpu_to_le32(ISL38XX_CB_RX_QSIZE
);
584 priv
->control_block
->driver_curr_frag
[ISL38XX_CB_RX_MGMTQ
] =
585 cpu_to_le32(ISL38XX_CB_MGMT_QSIZE
);
587 /* reset the remaining real index registers and full flags */
588 priv
->free_data_rx
= 0;
589 priv
->free_data_tx
= 0;
590 priv
->data_low_tx_full
= 0;
592 if (reload_firmware
) { /* Should we load the firmware ? */
593 /* now that the data structures are cleaned up, upload
594 * firmware and reset interface */
595 rc
= islpci_upload_fw(priv
);
597 printk(KERN_ERR
"%s: islpci_reset: failure\n",
603 /* finally reset interface */
604 rc
= islpci_reset_if(priv
);
606 printk(KERN_ERR
"prism54: Your card/socket may be faulty, or IRQ line too busy :(\n");
610 static struct net_device_stats
*
611 islpci_statistics(struct net_device
*ndev
)
613 islpci_private
*priv
= netdev_priv(ndev
);
615 #if VERBOSE > SHOW_ERROR_MESSAGES
616 DEBUG(SHOW_FUNCTION_CALLS
, "islpci_statistics\n");
619 return &priv
->statistics
;
622 /******************************************************************************
623 Network device configuration functions
624 ******************************************************************************/
626 islpci_alloc_memory(islpci_private
*priv
)
630 #if VERBOSE > SHOW_ERROR_MESSAGES
631 printk(KERN_DEBUG
"islpci_alloc_memory\n");
634 /* remap the PCI device base address to accessable */
635 if (!(priv
->device_base
=
636 ioremap(pci_resource_start(priv
->pdev
, 0),
637 ISL38XX_PCI_MEM_SIZE
))) {
638 /* error in remapping the PCI device memory address range */
639 printk(KERN_ERR
"PCI memory remapping failed \n");
643 /* memory layout for consistent DMA region:
645 * Area 1: Control Block for the device interface
646 * Area 2: Power Save Mode Buffer for temporary frame storage. Be aware that
647 * the number of supported stations in the AP determines the minimal
648 * size of the buffer !
651 /* perform the allocation */
652 priv
->driver_mem_address
= pci_alloc_consistent(priv
->pdev
,
655 device_host_address
);
657 if (!priv
->driver_mem_address
) {
658 /* error allocating the block of PCI memory */
659 printk(KERN_ERR
"%s: could not allocate DMA memory, aborting!",
664 /* assign the Control Block to the first address of the allocated area */
665 priv
->control_block
=
666 (isl38xx_control_block
*) priv
->driver_mem_address
;
668 /* set the Power Save Buffer pointer directly behind the CB */
669 priv
->device_psm_buffer
=
670 priv
->device_host_address
+ CONTROL_BLOCK_SIZE
;
672 /* make sure all buffer pointers are initialized */
673 for (counter
= 0; counter
< ISL38XX_CB_QCOUNT
; counter
++) {
674 priv
->control_block
->driver_curr_frag
[counter
] = cpu_to_le32(0);
675 priv
->control_block
->device_curr_frag
[counter
] = cpu_to_le32(0);
678 priv
->index_mgmt_rx
= 0;
679 memset(priv
->mgmt_rx
, 0, sizeof(priv
->mgmt_rx
));
680 memset(priv
->mgmt_tx
, 0, sizeof(priv
->mgmt_tx
));
682 /* allocate rx queue for management frames */
683 if (islpci_mgmt_rx_fill(priv
->ndev
) < 0)
686 /* now get the data rx skb's */
687 memset(priv
->data_low_rx
, 0, sizeof (priv
->data_low_rx
));
688 memset(priv
->pci_map_rx_address
, 0, sizeof (priv
->pci_map_rx_address
));
690 for (counter
= 0; counter
< ISL38XX_CB_RX_QSIZE
; counter
++) {
693 /* allocate an sk_buff for received data frames storage
694 * each frame on receive size consists of 1 fragment
695 * include any required allignment operations */
696 if (!(skb
= dev_alloc_skb(MAX_FRAGMENT_SIZE_RX
+ 2))) {
697 /* error allocating an sk_buff structure elements */
698 printk(KERN_ERR
"Error allocating skb.\n");
702 skb_reserve(skb
, (4 - (long) skb
->data
) & 0x03);
703 /* add the new allocated sk_buff to the buffer array */
704 priv
->data_low_rx
[counter
] = skb
;
706 /* map the allocated skb data area to pci */
707 priv
->pci_map_rx_address
[counter
] =
708 pci_map_single(priv
->pdev
, (void *) skb
->data
,
709 MAX_FRAGMENT_SIZE_RX
+ 2,
711 if (!priv
->pci_map_rx_address
[counter
]) {
712 /* error mapping the buffer to device
713 accessable memory address */
714 printk(KERN_ERR
"failed to map skb DMA'able\n");
719 prism54_acl_init(&priv
->acl
);
720 prism54_wpa_bss_ie_init(priv
);
726 islpci_free_memory(priv
);
731 islpci_free_memory(islpci_private
*priv
)
735 if (priv
->device_base
)
736 iounmap(priv
->device_base
);
737 priv
->device_base
= NULL
;
739 /* free consistent DMA area... */
740 if (priv
->driver_mem_address
)
741 pci_free_consistent(priv
->pdev
, HOST_MEM_BLOCK
,
742 priv
->driver_mem_address
,
743 priv
->device_host_address
);
745 /* clear some dangling pointers */
746 priv
->driver_mem_address
= NULL
;
747 priv
->device_host_address
= 0;
748 priv
->device_psm_buffer
= 0;
749 priv
->control_block
= NULL
;
751 /* clean up mgmt rx buffers */
752 for (counter
= 0; counter
< ISL38XX_CB_MGMT_QSIZE
; counter
++) {
753 struct islpci_membuf
*buf
= &priv
->mgmt_rx
[counter
];
755 pci_unmap_single(priv
->pdev
, buf
->pci_addr
,
756 buf
->size
, PCI_DMA_FROMDEVICE
);
763 /* clean up data rx buffers */
764 for (counter
= 0; counter
< ISL38XX_CB_RX_QSIZE
; counter
++) {
765 if (priv
->pci_map_rx_address
[counter
])
766 pci_unmap_single(priv
->pdev
,
767 priv
->pci_map_rx_address
[counter
],
768 MAX_FRAGMENT_SIZE_RX
+ 2,
770 priv
->pci_map_rx_address
[counter
] = 0;
772 if (priv
->data_low_rx
[counter
])
773 dev_kfree_skb(priv
->data_low_rx
[counter
]);
774 priv
->data_low_rx
[counter
] = NULL
;
777 /* Free the acces control list and the WPA list */
778 prism54_acl_clean(&priv
->acl
);
779 prism54_wpa_bss_ie_clean(priv
);
787 islpci_set_multicast_list(struct net_device
*dev
)
789 /* put device into promisc mode and let network layer handle it */
793 static void islpci_ethtool_get_drvinfo(struct net_device
*dev
,
794 struct ethtool_drvinfo
*info
)
796 strcpy(info
->driver
, DRV_NAME
);
797 strcpy(info
->version
, DRV_VERSION
);
800 static struct ethtool_ops islpci_ethtool_ops
= {
801 .get_drvinfo
= islpci_ethtool_get_drvinfo
,
805 islpci_setup(struct pci_dev
*pdev
)
807 islpci_private
*priv
;
808 struct net_device
*ndev
= alloc_etherdev(sizeof (islpci_private
));
813 pci_set_drvdata(pdev
, ndev
);
814 #if defined(SET_NETDEV_DEV)
815 SET_NETDEV_DEV(ndev
, &pdev
->dev
);
818 /* setup the structure members */
819 ndev
->base_addr
= pci_resource_start(pdev
, 0);
820 ndev
->irq
= pdev
->irq
;
822 /* initialize the function pointers */
823 ndev
->open
= &islpci_open
;
824 ndev
->stop
= &islpci_close
;
825 ndev
->get_stats
= &islpci_statistics
;
826 ndev
->do_ioctl
= &prism54_ioctl
;
827 ndev
->wireless_handlers
=
828 (struct iw_handler_def
*) &prism54_handler_def
;
829 ndev
->ethtool_ops
= &islpci_ethtool_ops
;
831 ndev
->hard_start_xmit
= &islpci_eth_transmit
;
832 /* ndev->set_multicast_list = &islpci_set_multicast_list; */
833 ndev
->addr_len
= ETH_ALEN
;
834 ndev
->set_mac_address
= &prism54_set_mac_address
;
835 /* Get a non-zero dummy MAC address for nameif. Jean II */
836 memcpy(ndev
->dev_addr
, dummy_mac
, 6);
838 #ifdef HAVE_TX_TIMEOUT
839 ndev
->watchdog_timeo
= ISLPCI_TX_TIMEOUT
;
840 ndev
->tx_timeout
= &islpci_eth_tx_timeout
;
843 /* allocate a private device structure to the network device */
844 priv
= netdev_priv(ndev
);
847 priv
->monitor_type
= ARPHRD_IEEE80211
;
848 priv
->ndev
->type
= (priv
->iw_mode
== IW_MODE_MONITOR
) ?
849 priv
->monitor_type
: ARPHRD_ETHER
;
851 /* Add pointers to enable iwspy support. */
852 priv
->wireless_data
.spy_data
= &priv
->spy_data
;
853 ndev
->wireless_data
= &priv
->wireless_data
;
855 /* save the start and end address of the PCI memory area */
856 ndev
->mem_start
= (unsigned long) priv
->device_base
;
857 ndev
->mem_end
= ndev
->mem_start
+ ISL38XX_PCI_MEM_SIZE
;
859 #if VERBOSE > SHOW_ERROR_MESSAGES
860 DEBUG(SHOW_TRACING
, "PCI Memory remapped to 0x%p\n", priv
->device_base
);
863 init_waitqueue_head(&priv
->reset_done
);
865 /* init the queue read locks, process wait counter */
866 mutex_init(&priv
->mgmt_lock
);
867 priv
->mgmt_received
= NULL
;
868 init_waitqueue_head(&priv
->mgmt_wqueue
);
869 mutex_init(&priv
->stats_lock
);
870 spin_lock_init(&priv
->slock
);
872 /* init state machine with off#1 state */
873 priv
->state
= PRV_STATE_OFF
;
876 /* initialize workqueue's */
877 INIT_WORK(&priv
->stats_work
, prism54_update_stats
);
878 priv
->stats_timestamp
= 0;
880 INIT_WORK(&priv
->reset_task
, islpci_do_reset_and_wake
);
881 priv
->reset_task_pending
= 0;
883 /* allocate various memory areas */
884 if (islpci_alloc_memory(priv
))
887 /* select the firmware file depending on the device id */
888 switch (pdev
->device
) {
890 strcpy(priv
->firmware
, ISL3877_IMAGE_FILE
);
894 strcpy(priv
->firmware
, ISL3886_IMAGE_FILE
);
898 strcpy(priv
->firmware
, ISL3890_IMAGE_FILE
);
902 if (register_netdev(ndev
)) {
903 DEBUG(SHOW_ERROR_MESSAGES
,
904 "ERROR: register_netdev() failed \n");
905 goto do_islpci_free_memory
;
910 do_islpci_free_memory
:
911 islpci_free_memory(priv
);
913 pci_set_drvdata(pdev
, NULL
);
920 islpci_set_state(islpci_private
*priv
, islpci_state_t new_state
)
922 islpci_state_t old_state
;
925 old_state
= priv
->state
;
927 /* this means either a race condition or some serious error in
933 priv
->state
= new_state
;
936 case PRV_STATE_PREBOOT
:
937 /* there are actually many off-states, enumerated by
939 if (old_state
== PRV_STATE_OFF
)
942 /* only if hw_unavailable is zero now it means we either
943 * were in off#1 state, or came here from
945 if (!priv
->state_off
)
946 priv
->state
= new_state
;
950 printk(KERN_DEBUG
"%s: state transition %d -> %d (off#%d)\n",
951 priv
->ndev
->name
, old_state
, new_state
, priv
->state_off
);
955 BUG_ON(priv
->state_off
< 0);
956 BUG_ON(priv
->state_off
&& (priv
->state
!= PRV_STATE_OFF
));
957 BUG_ON(!priv
->state_off
&& (priv
->state
== PRV_STATE_OFF
));