2 * IPWireless 3G PCMCIA Network Driver
5 * by Stephen Blackheath <stephen@blacksapphire.com>,
6 * Ben Martel <benm@symmetric.co.nz>
8 * Copyrighted as follows:
9 * Copyright (C) 2004 by Symmetric Systems Ltd (NZ)
11 * Various driver changes and rewrites, port to new kernels
12 * Copyright (C) 2006-2007 Jiri Kosina
14 * Misc code cleanups and updates
15 * Copyright (C) 2007 David Sterba
18 #include <linux/interrupt.h>
20 #include <linux/irq.h>
21 #include <linux/kernel.h>
22 #include <linux/list.h>
23 #include <linux/slab.h>
26 #include "setup_protocol.h"
30 static void ipw_send_setup_packet(struct ipw_hardware *hw);
31 static void handle_received_SETUP_packet(struct ipw_hardware *ipw,
33 unsigned char *data, int len,
35 static void ipwireless_setup_timer(unsigned long data);
36 static void handle_received_CTRL_packet(struct ipw_hardware *hw,
37 unsigned int channel_idx, unsigned char *data, int len);
39 /*#define TIMING_DIAGNOSTICS*/
41 #ifdef TIMING_DIAGNOSTICS
43 static struct timing_stats {
44 unsigned long last_report_time;
45 unsigned long read_time;
46 unsigned long write_time;
47 unsigned long read_bytes;
48 unsigned long write_bytes;
49 unsigned long start_time;
52 static void start_timing(void)
54 timing_stats.start_time = jiffies;
57 static void end_read_timing(unsigned length)
59 timing_stats.read_time += (jiffies - start_time);
60 timing_stats.read_bytes += length + 2;
64 static void end_write_timing(unsigned length)
66 timing_stats.write_time += (jiffies - start_time);
67 timing_stats.write_bytes += length + 2;
71 static void report_timing(void)
73 unsigned long since = jiffies - timing_stats.last_report_time;
75 /* If it's been more than one second... */
77 int first = (timing_stats.last_report_time == 0);
79 timing_stats.last_report_time = jiffies;
81 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
82 ": %u us elapsed - read %lu bytes in %u us, "
83 "wrote %lu bytes in %u us\n",
84 jiffies_to_usecs(since),
85 timing_stats.read_bytes,
86 jiffies_to_usecs(timing_stats.read_time),
87 timing_stats.write_bytes,
88 jiffies_to_usecs(timing_stats.write_time));
90 timing_stats.read_time = 0;
91 timing_stats.write_time = 0;
92 timing_stats.read_bytes = 0;
93 timing_stats.write_bytes = 0;
97 static void start_timing(void) { }
98 static void end_read_timing(unsigned length) { }
99 static void end_write_timing(unsigned length) { }
102 /* Imported IPW definitions */
104 #define LL_MTU_V1 318
105 #define LL_MTU_V2 250
106 #define LL_MTU_MAX (LL_MTU_V1 > LL_MTU_V2 ? LL_MTU_V1 : LL_MTU_V2)
113 #define ADDR_SETUP_PROT 0
117 /* Identifier for the Com Data protocol */
118 TL_PROTOCOLID_COM_DATA = 0,
120 /* Identifier for the Com Control protocol */
121 TL_PROTOCOLID_COM_CTRL = 1,
123 /* Identifier for the Setup protocol */
124 TL_PROTOCOLID_SETUP = 2
127 /* Number of bytes in NL packet header (cannot do
128 * sizeof(nl_packet_header) since it's a bitfield) */
129 #define NL_FIRST_PACKET_HEADER_SIZE 3
131 /* Number of bytes in NL packet header (cannot do
132 * sizeof(nl_packet_header) since it's a bitfield) */
133 #define NL_FOLLOWING_PACKET_HEADER_SIZE 1
135 struct nl_first_packet_header {
136 #if defined(__BIG_ENDIAN_BITFIELD)
137 unsigned char packet_rank:2;
138 unsigned char address:3;
139 unsigned char protocol:3;
141 unsigned char protocol:3;
142 unsigned char address:3;
143 unsigned char packet_rank:2;
145 unsigned char length_lsb;
146 unsigned char length_msb;
149 struct nl_packet_header {
150 #if defined(__BIG_ENDIAN_BITFIELD)
151 unsigned char packet_rank:2;
152 unsigned char address:3;
153 unsigned char protocol:3;
155 unsigned char protocol:3;
156 unsigned char address:3;
157 unsigned char packet_rank:2;
161 /* Value of 'packet_rank' above */
162 #define NL_INTERMEDIATE_PACKET 0x0
163 #define NL_LAST_PACKET 0x1
164 #define NL_FIRST_PACKET 0x2
167 /* Network packet header of the first packet (a special case) */
168 struct nl_first_packet_header hdr_first;
169 /* Network packet header of the following packets (if any) */
170 struct nl_packet_header hdr;
171 /* Complete network packet (header + data) */
172 unsigned char rawpkt[LL_MTU_MAX];
173 } __attribute__ ((__packed__));
175 #define HW_VERSION_UNKNOWN -1
176 #define HW_VERSION_1 1
177 #define HW_VERSION_2 2
180 #define IOIER 0x00 /* Interrupt Enable Register */
181 #define IOIR 0x02 /* Interrupt Source/ACK register */
182 #define IODCR 0x04 /* Data Control Register */
183 #define IODRR 0x06 /* Data Read Register */
184 #define IODWR 0x08 /* Data Write Register */
185 #define IOESR 0x0A /* Embedded Driver Status Register */
186 #define IORXR 0x0C /* Rx Fifo Register (Host to Embedded) */
187 #define IOTXR 0x0E /* Tx Fifo Register (Embedded to Host) */
189 /* I/O ports and bit definitions for version 1 of the hardware */
192 #define IER_RXENABLED 0x1
193 #define IER_TXENABLED 0x2
196 #define IR_RXINTR 0x1
197 #define IR_TXINTR 0x2
200 #define DCR_RXDONE 0x1
201 #define DCR_TXDONE 0x2
202 #define DCR_RXRESET 0x4
203 #define DCR_TXRESET 0x8
205 /* I/O ports and bit definitions for version 2 of the hardware */
208 unsigned short reg_config_option; /* PCCOR: Configuration Option Register */
209 unsigned short reg_config_and_status; /* PCCSR: Configuration and Status Register */
210 unsigned short reg_pin_replacement; /* PCPRR: Pin Replacemant Register */
211 unsigned short reg_socket_and_copy; /* PCSCR: Socket and Copy Register */
212 unsigned short reg_ext_status; /* PCESR: Extendend Status Register */
213 unsigned short reg_io_base; /* PCIOB: I/O Base Register */
217 unsigned short memreg_tx_old; /* TX Register (R/W) */
219 unsigned short memreg_rx_done; /* RXDone Register (R/W) */
221 unsigned short memreg_rx; /* RX Register (R/W) */
223 unsigned short memreg_pc_interrupt_ack; /* PC intr Ack Register (W) */
225 unsigned long memreg_card_present;/* Mask for Host to check (R) for
226 * CARD_PRESENT_VALUE */
227 unsigned short memreg_tx_new; /* TX2 (new) Register (R/W) */
230 #define IODMADPR 0x00 /* DMA Data Port Register (R/W) */
232 #define CARD_PRESENT_VALUE (0xBEEFCAFEUL)
234 #define MEMTX_TX 0x0001
235 #define MEMRX_RX 0x0001
236 #define MEMRX_RX_DONE 0x0001
237 #define MEMRX_PCINTACKK 0x0001
238 #define MEMRX_MEMSPURIOUSINT 0x0001
240 #define NL_NUM_OF_PRIORITIES 3
241 #define NL_NUM_OF_PROTOCOLS 3
242 #define NL_NUM_OF_ADDRESSES NO_OF_IPW_CHANNELS
244 struct ipw_hardware {
245 unsigned int base_port;
247 unsigned short ll_mtu;
252 struct timer_list setup_timer;
254 /* Flag if hw is ready to send next packet */
256 /* Count of pending packets to be sent */
258 struct list_head tx_queue[NL_NUM_OF_PRIORITIES];
261 struct list_head rx_queue;
262 /* Pool of rx_packet structures that are not currently used. */
263 struct list_head rx_pool;
265 /* True if reception of data is blocked while userspace processes it. */
267 /* True if there is RX data ready on the hardware. */
269 unsigned short last_memtx_serial;
271 * Newer versions of the V2 card firmware send serial numbers in the
272 * MemTX register. 'serial_number_detected' is set true when we detect
273 * a non-zero serial number (indicating the new firmware). Thereafter,
274 * the driver can safely ignore the Timer Recovery re-sends to avoid
275 * out-of-sync problems.
277 int serial_number_detected;
278 struct work_struct work_rx;
280 /* True if we are to send the set-up data to the hardware. */
283 /* Card has been removed */
285 /* Saved irq value when we disable the interrupt. */
287 /* True if this driver is shutting down. */
289 /* Modem control lines */
290 unsigned int control_lines[NL_NUM_OF_ADDRESSES];
291 struct ipw_rx_packet *packet_assembler[NL_NUM_OF_ADDRESSES];
293 struct tasklet_struct tasklet;
295 /* The handle for the network layer, for the sending of events to it. */
296 struct ipw_network *network;
297 struct MEMINFREG __iomem *memory_info_regs;
298 struct MEMCCR __iomem *memregs_CCR;
299 void (*reboot_callback) (void *data);
300 void *reboot_callback_data;
302 unsigned short __iomem *memreg_tx;
306 * Packet info structure for tx packets.
307 * Note: not all the fields defined here are required for all protocols
309 struct ipw_tx_packet {
310 struct list_head queue;
311 /* channel idx + 1 */
312 unsigned char dest_addr;
313 /* SETUP, CTRL or DATA */
314 unsigned char protocol;
315 /* Length of data block, which starts at the end of this structure */
316 unsigned short length;
318 /* Offset of where we've sent up to so far */
319 unsigned long offset;
320 /* Count of packet fragments, starting at 0 */
323 /* Called after packet is sent and before is freed */
324 void (*packet_callback) (void *cb_data, unsigned int packet_length);
328 /* Signals from DTE */
329 #define COMCTRL_RTS 0
330 #define COMCTRL_DTR 1
332 /* Signals from DCE */
333 #define COMCTRL_CTS 2
334 #define COMCTRL_DCD 3
335 #define COMCTRL_DSR 4
338 struct ipw_control_packet_body {
339 /* DTE signal or DCE signal */
340 unsigned char sig_no;
341 /* 0: set signal, 1: clear signal */
343 } __attribute__ ((__packed__));
345 struct ipw_control_packet {
346 struct ipw_tx_packet header;
347 struct ipw_control_packet_body body;
350 struct ipw_rx_packet {
351 struct list_head queue;
352 unsigned int capacity;
354 unsigned int protocol;
355 unsigned int channel_idx;
358 static char *data_type(const unsigned char *buf, unsigned length)
360 struct nl_packet_header *hdr = (struct nl_packet_header *) buf;
365 if (hdr->packet_rank & NL_FIRST_PACKET) {
366 switch (hdr->protocol) {
367 case TL_PROTOCOLID_COM_DATA: return "DATA ";
368 case TL_PROTOCOLID_COM_CTRL: return "CTRL ";
369 case TL_PROTOCOLID_SETUP: return "SETUP";
370 default: return "???? ";
376 #define DUMP_MAX_BYTES 64
378 static void dump_data_bytes(const char *type, const unsigned char *data,
383 sprintf(prefix, IPWIRELESS_PCCARD_NAME ": %s %s ",
384 type, data_type(data, length));
385 print_hex_dump_bytes(prefix, 0, (void *)data,
386 length < DUMP_MAX_BYTES ? length : DUMP_MAX_BYTES);
389 static int do_send_fragment(struct ipw_hardware *hw, const unsigned char *data,
400 if (length > hw->ll_mtu)
403 if (ipwireless_debug)
404 dump_data_bytes("send", data, length);
406 spin_lock_irqsave(&hw->spinlock, flags);
410 if (hw->hw_version == HW_VERSION_1) {
411 outw((unsigned short) length, hw->base_port + IODWR);
413 for (i = 0; i < length; i += 2) {
414 unsigned short d = data[i];
417 if (likely(i + 1 < length))
418 d |= data[i + 1] << 8;
419 raw_data = cpu_to_le16(d);
420 outw(raw_data, hw->base_port + IODWR);
423 outw(DCR_TXDONE, hw->base_port + IODCR);
424 } else if (hw->hw_version == HW_VERSION_2) {
425 outw((unsigned short) length, hw->base_port + IODMADPR);
427 for (i = 0; i < length; i += 2) {
428 unsigned short d = data[i];
431 if ((i + 1 < length))
432 d |= data[i + 1] << 8;
433 raw_data = cpu_to_le16(d);
434 outw(raw_data, hw->base_port + IODMADPR);
436 while ((i & 3) != 2) {
437 outw((unsigned short) 0xDEAD, hw->base_port + IODMADPR);
440 writew(MEMRX_RX, &hw->memory_info_regs->memreg_rx);
443 spin_unlock_irqrestore(&hw->spinlock, flags);
445 end_write_timing(length);
450 static int do_send_packet(struct ipw_hardware *hw, struct ipw_tx_packet *packet)
452 unsigned short fragment_data_len;
453 unsigned short data_left = packet->length - packet->offset;
454 unsigned short header_size;
458 (packet->fragment_count == 0)
459 ? NL_FIRST_PACKET_HEADER_SIZE
460 : NL_FOLLOWING_PACKET_HEADER_SIZE;
461 fragment_data_len = hw->ll_mtu - header_size;
462 if (data_left < fragment_data_len)
463 fragment_data_len = data_left;
465 pkt.hdr_first.protocol = packet->protocol;
466 pkt.hdr_first.address = packet->dest_addr;
467 pkt.hdr_first.packet_rank = 0;
470 if (packet->fragment_count == 0) {
471 pkt.hdr_first.packet_rank |= NL_FIRST_PACKET;
472 pkt.hdr_first.length_lsb = (unsigned char) packet->length;
473 pkt.hdr_first.length_msb =
474 (unsigned char) (packet->length >> 8);
477 memcpy(pkt.rawpkt + header_size,
478 ((unsigned char *) packet) + sizeof(struct ipw_tx_packet) +
479 packet->offset, fragment_data_len);
480 packet->offset += fragment_data_len;
481 packet->fragment_count++;
483 /* Last packet? (May also be first packet.) */
484 if (packet->offset == packet->length)
485 pkt.hdr_first.packet_rank |= NL_LAST_PACKET;
486 do_send_fragment(hw, pkt.rawpkt, header_size + fragment_data_len);
488 /* If this packet has unsent data, then re-queue it. */
489 if (packet->offset < packet->length) {
491 * Re-queue it at the head of the highest priority queue so
492 * it goes before all other packets
496 spin_lock_irqsave(&hw->spinlock, flags);
497 list_add(&packet->queue, &hw->tx_queue[0]);
499 spin_unlock_irqrestore(&hw->spinlock, flags);
501 if (packet->packet_callback)
502 packet->packet_callback(packet->callback_data,
510 static void ipw_setup_hardware(struct ipw_hardware *hw)
514 spin_lock_irqsave(&hw->spinlock, flags);
515 if (hw->hw_version == HW_VERSION_1) {
517 outw(DCR_RXRESET, hw->base_port + IODCR);
518 /* SB: Reset TX FIFO */
519 outw(DCR_TXRESET, hw->base_port + IODCR);
521 /* Enable TX and RX interrupts. */
522 outw(IER_TXENABLED | IER_RXENABLED, hw->base_port + IOIER);
525 * Set INTRACK bit (bit 0), which means we must explicitly
526 * acknowledge interrupts by clearing bit 2 of reg_config_and_status.
528 unsigned short csr = readw(&hw->memregs_CCR->reg_config_and_status);
531 writew(csr, &hw->memregs_CCR->reg_config_and_status);
533 spin_unlock_irqrestore(&hw->spinlock, flags);
537 * If 'packet' is NULL, then this function allocates a new packet, setting its
538 * length to 0 and ensuring it has the specified minimum amount of free space.
540 * If 'packet' is not NULL, then this function enlarges it if it doesn't
541 * have the specified minimum amount of free space.
544 static struct ipw_rx_packet *pool_allocate(struct ipw_hardware *hw,
545 struct ipw_rx_packet *packet,
546 int minimum_free_space)
553 * If this is the first fragment, then we will need to fetch a
554 * packet to put it in.
556 spin_lock_irqsave(&hw->spinlock, flags);
557 /* If we have one in our pool, then pull it out. */
558 if (!list_empty(&hw->rx_pool)) {
559 packet = list_first_entry(&hw->rx_pool,
560 struct ipw_rx_packet, queue);
561 list_del(&packet->queue);
563 spin_unlock_irqrestore(&hw->spinlock, flags);
565 /* Otherwise allocate a new one. */
566 static int min_capacity = 256;
569 spin_unlock_irqrestore(&hw->spinlock, flags);
571 minimum_free_space > min_capacity
574 packet = kmalloc(sizeof(struct ipw_rx_packet)
575 + new_capacity, GFP_ATOMIC);
578 packet->capacity = new_capacity;
584 * If this packet does not have sufficient capacity for the data we
585 * want to add, then make it bigger.
587 if (packet->length + minimum_free_space > packet->capacity) {
588 struct ipw_rx_packet *old_packet = packet;
590 packet = kmalloc(sizeof(struct ipw_rx_packet) +
591 old_packet->length + minimum_free_space,
597 memcpy(packet, old_packet,
598 sizeof(struct ipw_rx_packet)
599 + old_packet->length);
600 packet->capacity = old_packet->length + minimum_free_space;
607 static void pool_free(struct ipw_hardware *hw, struct ipw_rx_packet *packet)
609 if (hw->rx_pool_size > 6)
613 list_add_tail(&packet->queue, &hw->rx_pool);
617 static void queue_received_packet(struct ipw_hardware *hw,
618 unsigned int protocol, unsigned int address,
619 unsigned char *data, int length, int is_last)
621 unsigned int channel_idx = address - 1;
622 struct ipw_rx_packet *packet = NULL;
625 /* Discard packet if channel index is out of range. */
626 if (channel_idx >= NL_NUM_OF_ADDRESSES) {
627 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
628 ": data packet has bad address %u\n", address);
633 * ->packet_assembler is safe to touch unlocked, this is the only place
635 if (protocol == TL_PROTOCOLID_COM_DATA) {
636 struct ipw_rx_packet **assem =
637 &hw->packet_assembler[channel_idx];
640 * Create a new packet, or assembler already contains one
641 * enlarge it by 'length' bytes.
643 (*assem) = pool_allocate(hw, *assem, length);
645 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
646 ": no memory for incomming data packet, dropped!\n");
649 (*assem)->protocol = protocol;
650 (*assem)->channel_idx = channel_idx;
652 /* Append this packet data onto existing data. */
653 memcpy((unsigned char *)(*assem) +
654 sizeof(struct ipw_rx_packet)
655 + (*assem)->length, data, length);
656 (*assem)->length += length;
660 /* Count queued DATA bytes only */
661 spin_lock_irqsave(&hw->spinlock, flags);
662 hw->rx_bytes_queued += packet->length;
663 spin_unlock_irqrestore(&hw->spinlock, flags);
666 /* If it's a CTRL packet, don't assemble, just queue it. */
667 packet = pool_allocate(hw, NULL, length);
669 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
670 ": no memory for incomming ctrl packet, dropped!\n");
673 packet->protocol = protocol;
674 packet->channel_idx = channel_idx;
675 memcpy((unsigned char *)packet + sizeof(struct ipw_rx_packet),
677 packet->length = length;
681 * If this is the last packet, then send the assembled packet on to the
685 spin_lock_irqsave(&hw->spinlock, flags);
686 list_add_tail(&packet->queue, &hw->rx_queue);
687 /* Block reception of incoming packets if queue is full. */
689 hw->rx_bytes_queued >= IPWIRELESS_RX_QUEUE_SIZE;
691 spin_unlock_irqrestore(&hw->spinlock, flags);
692 schedule_work(&hw->work_rx);
699 static void ipw_receive_data_work(struct work_struct *work_rx)
701 struct ipw_hardware *hw =
702 container_of(work_rx, struct ipw_hardware, work_rx);
705 spin_lock_irqsave(&hw->spinlock, flags);
706 while (!list_empty(&hw->rx_queue)) {
707 struct ipw_rx_packet *packet =
708 list_first_entry(&hw->rx_queue,
709 struct ipw_rx_packet, queue);
711 if (hw->shutting_down)
713 list_del(&packet->queue);
716 * Note: ipwireless_network_packet_received must be called in a
717 * process context (i.e. via schedule_work) because the tty
718 * output code can sleep in the tty_flip_buffer_push call.
720 if (packet->protocol == TL_PROTOCOLID_COM_DATA) {
721 if (hw->network != NULL) {
722 /* If the network hasn't been disconnected. */
723 spin_unlock_irqrestore(&hw->spinlock, flags);
725 * This must run unlocked due to tty processing
728 ipwireless_network_packet_received(
731 (unsigned char *)packet
732 + sizeof(struct ipw_rx_packet),
734 spin_lock_irqsave(&hw->spinlock, flags);
736 /* Count queued DATA bytes only */
737 hw->rx_bytes_queued -= packet->length;
740 * This is safe to be called locked, callchain does
743 handle_received_CTRL_packet(hw, packet->channel_idx,
744 (unsigned char *)packet
745 + sizeof(struct ipw_rx_packet),
748 pool_free(hw, packet);
750 * Unblock reception of incoming packets if queue is no longer
754 hw->rx_bytes_queued >= IPWIRELESS_RX_QUEUE_SIZE;
755 if (hw->shutting_down)
758 spin_unlock_irqrestore(&hw->spinlock, flags);
761 static void handle_received_CTRL_packet(struct ipw_hardware *hw,
762 unsigned int channel_idx,
763 unsigned char *data, int len)
765 struct ipw_control_packet_body *body =
766 (struct ipw_control_packet_body *) data;
767 unsigned int changed_mask;
769 if (len != sizeof(struct ipw_control_packet_body)) {
770 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
771 ": control packet was %d bytes - wrong size!\n",
776 switch (body->sig_no) {
778 changed_mask = IPW_CONTROL_LINE_CTS;
781 changed_mask = IPW_CONTROL_LINE_DCD;
784 changed_mask = IPW_CONTROL_LINE_DSR;
787 changed_mask = IPW_CONTROL_LINE_RI;
793 if (changed_mask != 0) {
795 hw->control_lines[channel_idx] |= changed_mask;
797 hw->control_lines[channel_idx] &= ~changed_mask;
799 ipwireless_network_notify_control_line_change(
802 hw->control_lines[channel_idx],
807 static void handle_received_packet(struct ipw_hardware *hw,
808 union nl_packet *packet,
811 unsigned int protocol = packet->hdr.protocol;
812 unsigned int address = packet->hdr.address;
813 unsigned int header_length;
815 unsigned int data_len;
816 int is_last = packet->hdr.packet_rank & NL_LAST_PACKET;
818 if (packet->hdr.packet_rank & NL_FIRST_PACKET)
819 header_length = NL_FIRST_PACKET_HEADER_SIZE;
821 header_length = NL_FOLLOWING_PACKET_HEADER_SIZE;
823 data = packet->rawpkt + header_length;
824 data_len = len - header_length;
826 case TL_PROTOCOLID_COM_DATA:
827 case TL_PROTOCOLID_COM_CTRL:
828 queue_received_packet(hw, protocol, address, data, data_len,
831 case TL_PROTOCOLID_SETUP:
832 handle_received_SETUP_packet(hw, address, data, data_len,
838 static void acknowledge_data_read(struct ipw_hardware *hw)
840 if (hw->hw_version == HW_VERSION_1)
841 outw(DCR_RXDONE, hw->base_port + IODCR);
843 writew(MEMRX_PCINTACKK,
844 &hw->memory_info_regs->memreg_pc_interrupt_ack);
848 * Retrieve a packet from the IPW hardware.
850 static void do_receive_packet(struct ipw_hardware *hw)
854 unsigned char pkt[LL_MTU_MAX];
858 if (hw->hw_version == HW_VERSION_1) {
859 len = inw(hw->base_port + IODRR);
860 if (len > hw->ll_mtu) {
861 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
862 ": received a packet of %u bytes - "
863 "longer than the MTU!\n", len);
864 outw(DCR_RXDONE | DCR_RXRESET, hw->base_port + IODCR);
868 for (i = 0; i < len; i += 2) {
869 __le16 raw_data = inw(hw->base_port + IODRR);
870 unsigned short data = le16_to_cpu(raw_data);
872 pkt[i] = (unsigned char) data;
873 pkt[i + 1] = (unsigned char) (data >> 8);
876 len = inw(hw->base_port + IODMADPR);
877 if (len > hw->ll_mtu) {
878 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
879 ": received a packet of %u bytes - "
880 "longer than the MTU!\n", len);
881 writew(MEMRX_PCINTACKK,
882 &hw->memory_info_regs->memreg_pc_interrupt_ack);
886 for (i = 0; i < len; i += 2) {
887 __le16 raw_data = inw(hw->base_port + IODMADPR);
888 unsigned short data = le16_to_cpu(raw_data);
890 pkt[i] = (unsigned char) data;
891 pkt[i + 1] = (unsigned char) (data >> 8);
894 while ((i & 3) != 2) {
895 inw(hw->base_port + IODMADPR);
900 acknowledge_data_read(hw);
902 if (ipwireless_debug)
903 dump_data_bytes("recv", pkt, len);
905 handle_received_packet(hw, (union nl_packet *) pkt, len);
907 end_read_timing(len);
910 static int get_current_packet_priority(struct ipw_hardware *hw)
913 * If we're initializing, don't send anything of higher priority than
914 * PRIO_SETUP. The network layer therefore need not care about
915 * hardware initialization - any of its stuff will simply be queued
916 * until setup is complete.
918 return (hw->to_setup || hw->initializing
920 NL_NUM_OF_PRIORITIES);
924 * return 1 if something has been received from hw
926 static int get_packets_from_hw(struct ipw_hardware *hw)
931 spin_lock_irqsave(&hw->spinlock, flags);
932 while (hw->rx_ready && !hw->blocking_rx) {
935 spin_unlock_irqrestore(&hw->spinlock, flags);
937 do_receive_packet(hw);
939 spin_lock_irqsave(&hw->spinlock, flags);
941 spin_unlock_irqrestore(&hw->spinlock, flags);
947 * Send pending packet up to given priority, prioritize SETUP data until
948 * hardware is fully setup.
950 * return 1 if more packets can be sent
952 static int send_pending_packet(struct ipw_hardware *hw, int priority_limit)
954 int more_to_send = 0;
957 spin_lock_irqsave(&hw->spinlock, flags);
958 if (hw->tx_queued && hw->tx_ready) {
960 struct ipw_tx_packet *packet = NULL;
963 for (priority = 0; priority < priority_limit; priority++) {
964 if (!list_empty(&hw->tx_queue[priority])) {
965 packet = list_first_entry(
966 &hw->tx_queue[priority],
967 struct ipw_tx_packet,
971 list_del(&packet->queue);
978 spin_unlock_irqrestore(&hw->spinlock, flags);
982 spin_unlock_irqrestore(&hw->spinlock, flags);
985 do_send_packet(hw, packet);
987 /* Check if more to send */
988 spin_lock_irqsave(&hw->spinlock, flags);
989 for (priority = 0; priority < priority_limit; priority++)
990 if (!list_empty(&hw->tx_queue[priority])) {
998 spin_unlock_irqrestore(&hw->spinlock, flags);
1000 return more_to_send;
1004 * Send and receive all queued packets.
1006 static void ipwireless_do_tasklet(unsigned long hw_)
1008 struct ipw_hardware *hw = (struct ipw_hardware *) hw_;
1009 unsigned long flags;
1011 spin_lock_irqsave(&hw->spinlock, flags);
1012 if (hw->shutting_down) {
1013 spin_unlock_irqrestore(&hw->spinlock, flags);
1017 if (hw->to_setup == 1) {
1019 * Initial setup data sent to hardware
1022 spin_unlock_irqrestore(&hw->spinlock, flags);
1024 ipw_setup_hardware(hw);
1025 ipw_send_setup_packet(hw);
1027 send_pending_packet(hw, PRIO_SETUP + 1);
1028 get_packets_from_hw(hw);
1030 int priority_limit = get_current_packet_priority(hw);
1033 spin_unlock_irqrestore(&hw->spinlock, flags);
1036 again = send_pending_packet(hw, priority_limit);
1037 again |= get_packets_from_hw(hw);
1043 * return true if the card is physically present.
1045 static int is_card_present(struct ipw_hardware *hw)
1047 if (hw->hw_version == HW_VERSION_1)
1048 return inw(hw->base_port + IOIR) != 0xFFFF;
1050 return readl(&hw->memory_info_regs->memreg_card_present) ==
1054 static irqreturn_t ipwireless_handle_v1_interrupt(int irq,
1055 struct ipw_hardware *hw)
1057 unsigned short irqn;
1059 irqn = inw(hw->base_port + IOIR);
1061 /* Check if card is present */
1064 else if (irqn != 0) {
1065 unsigned short ack = 0;
1066 unsigned long flags;
1068 /* Transmit complete. */
1069 if (irqn & IR_TXINTR) {
1071 spin_lock_irqsave(&hw->spinlock, flags);
1073 spin_unlock_irqrestore(&hw->spinlock, flags);
1076 if (irqn & IR_RXINTR) {
1078 spin_lock_irqsave(&hw->spinlock, flags);
1080 spin_unlock_irqrestore(&hw->spinlock, flags);
1083 outw(ack, hw->base_port + IOIR);
1084 tasklet_schedule(&hw->tasklet);
1091 static void acknowledge_pcmcia_interrupt(struct ipw_hardware *hw)
1093 unsigned short csr = readw(&hw->memregs_CCR->reg_config_and_status);
1096 writew(csr, &hw->memregs_CCR->reg_config_and_status);
1099 static irqreturn_t ipwireless_handle_v2_v3_interrupt(int irq,
1100 struct ipw_hardware *hw)
1106 unsigned long flags;
1110 unsigned short memtx = readw(hw->memreg_tx);
1111 unsigned short memtx_serial;
1112 unsigned short memrxdone =
1113 readw(&hw->memory_info_regs->memreg_rx_done);
1117 /* check whether the interrupt was generated by ipwireless card */
1118 if (!(memtx & MEMTX_TX) && !(memrxdone & MEMRX_RX_DONE)) {
1120 /* check if the card uses memreg_tx_old register */
1121 if (hw->memreg_tx == &hw->memory_info_regs->memreg_tx_new) {
1122 memtx = readw(&hw->memory_info_regs->memreg_tx_old);
1123 if (memtx & MEMTX_TX) {
1124 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1125 ": Using memreg_tx_old\n");
1127 &hw->memory_info_regs->memreg_tx_old;
1137 * See if the card is physically present. Note that while it is
1138 * powering up, it appears not to be present.
1140 if (!is_card_present(hw)) {
1141 acknowledge_pcmcia_interrupt(hw);
1145 memtx_serial = memtx & (unsigned short) 0xff00;
1146 if (memtx & MEMTX_TX) {
1147 writew(memtx_serial, hw->memreg_tx);
1149 if (hw->serial_number_detected) {
1150 if (memtx_serial != hw->last_memtx_serial) {
1151 hw->last_memtx_serial = memtx_serial;
1152 spin_lock_irqsave(&hw->spinlock, flags);
1154 spin_unlock_irqrestore(&hw->spinlock, flags);
1157 /* Ignore 'Timer Recovery' duplicates. */
1161 * If a non-zero serial number is seen, then enable
1162 * serial number checking.
1164 if (memtx_serial != 0) {
1165 hw->serial_number_detected = 1;
1166 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
1167 ": memreg_tx serial num detected\n");
1169 spin_lock_irqsave(&hw->spinlock, flags);
1171 spin_unlock_irqrestore(&hw->spinlock, flags);
1176 if (memrxdone & MEMRX_RX_DONE) {
1177 writew(0, &hw->memory_info_regs->memreg_rx_done);
1178 spin_lock_irqsave(&hw->spinlock, flags);
1180 spin_unlock_irqrestore(&hw->spinlock, flags);
1184 writew(MEMRX_PCINTACKK,
1185 &hw->memory_info_regs->memreg_pc_interrupt_ack);
1187 acknowledge_pcmcia_interrupt(hw);
1190 tasklet_schedule(&hw->tasklet);
1191 else if (!rx_repeat) {
1192 if (hw->memreg_tx == &hw->memory_info_regs->memreg_tx_new) {
1193 if (hw->serial_number_detected)
1194 printk(KERN_WARNING IPWIRELESS_PCCARD_NAME
1195 ": spurious interrupt - new_tx mode\n");
1197 printk(KERN_WARNING IPWIRELESS_PCCARD_NAME
1198 ": no valid memreg_tx value - "
1199 "switching to the old memreg_tx\n");
1201 &hw->memory_info_regs->memreg_tx_old;
1205 printk(KERN_WARNING IPWIRELESS_PCCARD_NAME
1206 ": spurious interrupt - old_tx mode\n");
1209 } while (try_mem_tx_old == 1);
1214 irqreturn_t ipwireless_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1216 struct ipw_hardware *hw = dev_id;
1218 if (hw->hw_version == HW_VERSION_1)
1219 return ipwireless_handle_v1_interrupt(irq, hw);
1221 return ipwireless_handle_v2_v3_interrupt(irq, hw);
1224 static void flush_packets_to_hw(struct ipw_hardware *hw)
1227 unsigned long flags;
1229 spin_lock_irqsave(&hw->spinlock, flags);
1230 priority_limit = get_current_packet_priority(hw);
1231 spin_unlock_irqrestore(&hw->spinlock, flags);
1233 while (send_pending_packet(hw, priority_limit));
1236 static void send_packet(struct ipw_hardware *hw, int priority,
1237 struct ipw_tx_packet *packet)
1239 unsigned long flags;
1241 spin_lock_irqsave(&hw->spinlock, flags);
1242 list_add_tail(&packet->queue, &hw->tx_queue[priority]);
1244 spin_unlock_irqrestore(&hw->spinlock, flags);
1246 flush_packets_to_hw(hw);
1249 /* Create data packet, non-atomic allocation */
1250 static void *alloc_data_packet(int data_size,
1251 unsigned char dest_addr,
1252 unsigned char protocol)
1254 struct ipw_tx_packet *packet = kzalloc(
1255 sizeof(struct ipw_tx_packet) + data_size,
1261 INIT_LIST_HEAD(&packet->queue);
1262 packet->dest_addr = dest_addr;
1263 packet->protocol = protocol;
1264 packet->length = data_size;
1269 static void *alloc_ctrl_packet(int header_size,
1270 unsigned char dest_addr,
1271 unsigned char protocol,
1272 unsigned char sig_no)
1275 * sig_no is located right after ipw_tx_packet struct in every
1276 * CTRL or SETUP packets, we can use ipw_control_packet as a
1279 struct ipw_control_packet *packet = kzalloc(header_size, GFP_ATOMIC);
1284 INIT_LIST_HEAD(&packet->header.queue);
1285 packet->header.dest_addr = dest_addr;
1286 packet->header.protocol = protocol;
1287 packet->header.length = header_size - sizeof(struct ipw_tx_packet);
1288 packet->body.sig_no = sig_no;
1293 int ipwireless_send_packet(struct ipw_hardware *hw, unsigned int channel_idx,
1294 unsigned char *data, unsigned int length,
1295 void (*callback) (void *cb, unsigned int length),
1296 void *callback_data)
1298 struct ipw_tx_packet *packet;
1300 packet = alloc_data_packet(length,
1301 (unsigned char) (channel_idx + 1),
1302 TL_PROTOCOLID_COM_DATA);
1305 packet->packet_callback = callback;
1306 packet->callback_data = callback_data;
1307 memcpy((unsigned char *) packet +
1308 sizeof(struct ipw_tx_packet), data, length);
1310 send_packet(hw, PRIO_DATA, packet);
1314 static int set_control_line(struct ipw_hardware *hw, int prio,
1315 unsigned int channel_idx, int line, int state)
1317 struct ipw_control_packet *packet;
1318 int protocolid = TL_PROTOCOLID_COM_CTRL;
1320 if (prio == PRIO_SETUP)
1321 protocolid = TL_PROTOCOLID_SETUP;
1323 packet = alloc_ctrl_packet(sizeof(struct ipw_control_packet),
1324 (unsigned char) (channel_idx + 1),
1328 packet->header.length = sizeof(struct ipw_control_packet_body);
1329 packet->body.value = (unsigned char) (state == 0 ? 0 : 1);
1330 send_packet(hw, prio, &packet->header);
1335 static int set_DTR(struct ipw_hardware *hw, int priority,
1336 unsigned int channel_idx, int state)
1339 hw->control_lines[channel_idx] |= IPW_CONTROL_LINE_DTR;
1341 hw->control_lines[channel_idx] &= ~IPW_CONTROL_LINE_DTR;
1343 return set_control_line(hw, priority, channel_idx, COMCTRL_DTR, state);
1346 static int set_RTS(struct ipw_hardware *hw, int priority,
1347 unsigned int channel_idx, int state)
1350 hw->control_lines[channel_idx] |= IPW_CONTROL_LINE_RTS;
1352 hw->control_lines[channel_idx] &= ~IPW_CONTROL_LINE_RTS;
1354 return set_control_line(hw, priority, channel_idx, COMCTRL_RTS, state);
1357 int ipwireless_set_DTR(struct ipw_hardware *hw, unsigned int channel_idx,
1360 return set_DTR(hw, PRIO_CTRL, channel_idx, state);
1363 int ipwireless_set_RTS(struct ipw_hardware *hw, unsigned int channel_idx,
1366 return set_RTS(hw, PRIO_CTRL, channel_idx, state);
1369 struct ipw_setup_get_version_query_packet {
1370 struct ipw_tx_packet header;
1371 struct tl_setup_get_version_qry body;
1374 struct ipw_setup_config_packet {
1375 struct ipw_tx_packet header;
1376 struct tl_setup_config_msg body;
1379 struct ipw_setup_config_done_packet {
1380 struct ipw_tx_packet header;
1381 struct tl_setup_config_done_msg body;
1384 struct ipw_setup_open_packet {
1385 struct ipw_tx_packet header;
1386 struct tl_setup_open_msg body;
1389 struct ipw_setup_info_packet {
1390 struct ipw_tx_packet header;
1391 struct tl_setup_info_msg body;
1394 struct ipw_setup_reboot_msg_ack {
1395 struct ipw_tx_packet header;
1396 struct TlSetupRebootMsgAck body;
1399 /* This handles the actual initialization of the card */
1400 static void __handle_setup_get_version_rsp(struct ipw_hardware *hw)
1402 struct ipw_setup_config_packet *config_packet;
1403 struct ipw_setup_config_done_packet *config_done_packet;
1404 struct ipw_setup_open_packet *open_packet;
1405 struct ipw_setup_info_packet *info_packet;
1407 unsigned int channel_idx;
1409 /* generate config packet */
1410 for (port = 1; port <= NL_NUM_OF_ADDRESSES; port++) {
1411 config_packet = alloc_ctrl_packet(
1412 sizeof(struct ipw_setup_config_packet),
1414 TL_PROTOCOLID_SETUP,
1415 TL_SETUP_SIGNO_CONFIG_MSG);
1418 config_packet->header.length = sizeof(struct tl_setup_config_msg);
1419 config_packet->body.port_no = port;
1420 config_packet->body.prio_data = PRIO_DATA;
1421 config_packet->body.prio_ctrl = PRIO_CTRL;
1422 send_packet(hw, PRIO_SETUP, &config_packet->header);
1424 config_done_packet = alloc_ctrl_packet(
1425 sizeof(struct ipw_setup_config_done_packet),
1427 TL_PROTOCOLID_SETUP,
1428 TL_SETUP_SIGNO_CONFIG_DONE_MSG);
1429 if (!config_done_packet)
1431 config_done_packet->header.length = sizeof(struct tl_setup_config_done_msg);
1432 send_packet(hw, PRIO_SETUP, &config_done_packet->header);
1434 /* generate open packet */
1435 for (port = 1; port <= NL_NUM_OF_ADDRESSES; port++) {
1436 open_packet = alloc_ctrl_packet(
1437 sizeof(struct ipw_setup_open_packet),
1439 TL_PROTOCOLID_SETUP,
1440 TL_SETUP_SIGNO_OPEN_MSG);
1443 open_packet->header.length = sizeof(struct tl_setup_open_msg);
1444 open_packet->body.port_no = port;
1445 send_packet(hw, PRIO_SETUP, &open_packet->header);
1447 for (channel_idx = 0;
1448 channel_idx < NL_NUM_OF_ADDRESSES; channel_idx++) {
1451 ret = set_DTR(hw, PRIO_SETUP, channel_idx,
1452 (hw->control_lines[channel_idx] &
1453 IPW_CONTROL_LINE_DTR) != 0);
1455 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
1456 ": error setting DTR (%d)\n", ret);
1460 set_RTS(hw, PRIO_SETUP, channel_idx,
1461 (hw->control_lines [channel_idx] &
1462 IPW_CONTROL_LINE_RTS) != 0);
1464 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
1465 ": error setting RTS (%d)\n", ret);
1470 * For NDIS we assume that we are using sync PPP frames, for COM async.
1471 * This driver uses NDIS mode too. We don't bother with translation
1472 * from async -> sync PPP.
1474 info_packet = alloc_ctrl_packet(sizeof(struct ipw_setup_info_packet),
1476 TL_PROTOCOLID_SETUP,
1477 TL_SETUP_SIGNO_INFO_MSG);
1480 info_packet->header.length = sizeof(struct tl_setup_info_msg);
1481 info_packet->body.driver_type = NDISWAN_DRIVER;
1482 info_packet->body.major_version = NDISWAN_DRIVER_MAJOR_VERSION;
1483 info_packet->body.minor_version = NDISWAN_DRIVER_MINOR_VERSION;
1484 send_packet(hw, PRIO_SETUP, &info_packet->header);
1486 /* Initialization is now complete, so we clear the 'to_setup' flag */
1492 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
1493 ": not enough memory to alloc control packet\n");
1497 static void handle_setup_get_version_rsp(struct ipw_hardware *hw,
1498 unsigned char vers_no)
1500 del_timer(&hw->setup_timer);
1501 hw->initializing = 0;
1502 printk(KERN_INFO IPWIRELESS_PCCARD_NAME ": card is ready.\n");
1504 if (vers_no == TL_SETUP_VERSION)
1505 __handle_setup_get_version_rsp(hw);
1508 IPWIRELESS_PCCARD_NAME
1509 ": invalid hardware version no %u\n",
1510 (unsigned int) vers_no);
1513 static void ipw_send_setup_packet(struct ipw_hardware *hw)
1515 struct ipw_setup_get_version_query_packet *ver_packet;
1517 ver_packet = alloc_ctrl_packet(
1518 sizeof(struct ipw_setup_get_version_query_packet),
1519 ADDR_SETUP_PROT, TL_PROTOCOLID_SETUP,
1520 TL_SETUP_SIGNO_GET_VERSION_QRY);
1521 ver_packet->header.length = sizeof(struct tl_setup_get_version_qry);
1524 * Response is handled in handle_received_SETUP_packet
1526 send_packet(hw, PRIO_SETUP, &ver_packet->header);
1529 static void handle_received_SETUP_packet(struct ipw_hardware *hw,
1530 unsigned int address,
1531 unsigned char *data, int len,
1534 union ipw_setup_rx_msg *rx_msg = (union ipw_setup_rx_msg *) data;
1536 if (address != ADDR_SETUP_PROT) {
1537 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1538 ": setup packet has bad address %d\n", address);
1542 switch (rx_msg->sig_no) {
1543 case TL_SETUP_SIGNO_GET_VERSION_RSP:
1545 handle_setup_get_version_rsp(hw,
1546 rx_msg->version_rsp_msg.version);
1549 case TL_SETUP_SIGNO_OPEN_MSG:
1550 if (ipwireless_debug) {
1551 unsigned int channel_idx = rx_msg->open_msg.port_no - 1;
1553 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1554 ": OPEN_MSG [channel %u] reply received\n",
1559 case TL_SETUP_SIGNO_INFO_MSG_ACK:
1560 if (ipwireless_debug)
1561 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
1562 ": card successfully configured as NDISWAN\n");
1565 case TL_SETUP_SIGNO_REBOOT_MSG:
1567 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
1568 ": Setup not completed - ignoring reboot msg\n");
1570 struct ipw_setup_reboot_msg_ack *packet;
1572 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
1573 ": Acknowledging REBOOT message\n");
1574 packet = alloc_ctrl_packet(
1575 sizeof(struct ipw_setup_reboot_msg_ack),
1576 ADDR_SETUP_PROT, TL_PROTOCOLID_SETUP,
1577 TL_SETUP_SIGNO_REBOOT_MSG_ACK);
1578 packet->header.length =
1579 sizeof(struct TlSetupRebootMsgAck);
1580 send_packet(hw, PRIO_SETUP, &packet->header);
1581 if (hw->reboot_callback)
1582 hw->reboot_callback(hw->reboot_callback_data);
1587 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1588 ": unknown setup message %u received\n",
1589 (unsigned int) rx_msg->sig_no);
1593 static void do_close_hardware(struct ipw_hardware *hw)
1597 if (hw->hw_version == HW_VERSION_1) {
1598 /* Disable TX and RX interrupts. */
1599 outw(0, hw->base_port + IOIER);
1601 /* Acknowledge any outstanding interrupt requests */
1602 irqn = inw(hw->base_port + IOIR);
1603 if (irqn & IR_TXINTR)
1604 outw(IR_TXINTR, hw->base_port + IOIR);
1605 if (irqn & IR_RXINTR)
1606 outw(IR_RXINTR, hw->base_port + IOIR);
1608 synchronize_irq(hw->irq);
1612 struct ipw_hardware *ipwireless_hardware_create(void)
1615 struct ipw_hardware *hw =
1616 kzalloc(sizeof(struct ipw_hardware), GFP_KERNEL);
1622 hw->initializing = 1;
1624 hw->rx_bytes_queued = 0;
1625 hw->rx_pool_size = 0;
1626 hw->last_memtx_serial = (unsigned short) 0xffff;
1627 for (i = 0; i < NL_NUM_OF_PRIORITIES; i++)
1628 INIT_LIST_HEAD(&hw->tx_queue[i]);
1630 INIT_LIST_HEAD(&hw->rx_queue);
1631 INIT_LIST_HEAD(&hw->rx_pool);
1632 spin_lock_init(&hw->spinlock);
1633 tasklet_init(&hw->tasklet, ipwireless_do_tasklet, (unsigned long) hw);
1634 INIT_WORK(&hw->work_rx, ipw_receive_data_work);
1635 setup_timer(&hw->setup_timer, ipwireless_setup_timer,
1636 (unsigned long) hw);
1641 void ipwireless_init_hardware_v1(struct ipw_hardware *hw,
1642 unsigned int base_port,
1643 void __iomem *attr_memory,
1644 void __iomem *common_memory,
1646 void (*reboot_callback) (void *data),
1647 void *reboot_callback_data)
1651 enable_irq(hw->irq);
1653 hw->base_port = base_port;
1654 hw->hw_version = is_v2_card ? HW_VERSION_2 : HW_VERSION_1;
1655 hw->ll_mtu = hw->hw_version == HW_VERSION_1 ? LL_MTU_V1 : LL_MTU_V2;
1656 hw->memregs_CCR = (struct MEMCCR __iomem *)
1657 ((unsigned short __iomem *) attr_memory + 0x200);
1658 hw->memory_info_regs = (struct MEMINFREG __iomem *) common_memory;
1659 hw->memreg_tx = &hw->memory_info_regs->memreg_tx_new;
1660 hw->reboot_callback = reboot_callback;
1661 hw->reboot_callback_data = reboot_callback_data;
1664 void ipwireless_init_hardware_v2_v3(struct ipw_hardware *hw)
1666 hw->initializing = 1;
1668 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1669 ": waiting for card to start up...\n");
1670 ipwireless_setup_timer((unsigned long) hw);
1673 static void ipwireless_setup_timer(unsigned long data)
1675 struct ipw_hardware *hw = (struct ipw_hardware *) data;
1679 if (hw->init_loops == TL_SETUP_MAX_VERSION_QRY &&
1680 hw->hw_version == HW_VERSION_2 &&
1681 hw->memreg_tx == &hw->memory_info_regs->memreg_tx_new) {
1682 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1683 ": failed to startup using TX2, trying TX\n");
1685 hw->memreg_tx = &hw->memory_info_regs->memreg_tx_old;
1688 /* Give up after a certain number of retries */
1689 if (hw->init_loops == TL_SETUP_MAX_VERSION_QRY) {
1690 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1691 ": card failed to start up!\n");
1692 hw->initializing = 0;
1694 /* Do not attempt to write to the board if it is not present. */
1695 if (is_card_present(hw)) {
1696 unsigned long flags;
1698 spin_lock_irqsave(&hw->spinlock, flags);
1701 spin_unlock_irqrestore(&hw->spinlock, flags);
1702 tasklet_schedule(&hw->tasklet);
1705 mod_timer(&hw->setup_timer,
1706 jiffies + msecs_to_jiffies(TL_SETUP_VERSION_QRY_TMO));
1711 * Stop any interrupts from executing so that, once this function returns,
1712 * other layers of the driver can be sure they won't get any more callbacks.
1713 * Thus must be called on a proper process context.
1715 void ipwireless_stop_interrupts(struct ipw_hardware *hw)
1717 if (!hw->shutting_down) {
1718 /* Tell everyone we are going down. */
1719 hw->shutting_down = 1;
1720 del_timer(&hw->setup_timer);
1722 /* Prevent the hardware from sending any more interrupts */
1723 do_close_hardware(hw);
1727 void ipwireless_hardware_free(struct ipw_hardware *hw)
1730 struct ipw_rx_packet *rp, *rq;
1731 struct ipw_tx_packet *tp, *tq;
1733 ipwireless_stop_interrupts(hw);
1735 flush_scheduled_work();
1737 for (i = 0; i < NL_NUM_OF_ADDRESSES; i++)
1738 if (hw->packet_assembler[i] != NULL)
1739 kfree(hw->packet_assembler[i]);
1741 for (i = 0; i < NL_NUM_OF_PRIORITIES; i++)
1742 list_for_each_entry_safe(tp, tq, &hw->tx_queue[i], queue) {
1743 list_del(&tp->queue);
1747 list_for_each_entry_safe(rp, rq, &hw->rx_queue, queue) {
1748 list_del(&rp->queue);
1752 list_for_each_entry_safe(rp, rq, &hw->rx_pool, queue) {
1753 list_del(&rp->queue);
1760 * Associate the specified network with this hardware, so it will receive events
1763 void ipwireless_associate_network(struct ipw_hardware *hw,
1764 struct ipw_network *network)
1766 hw->network = network;