blob: 4417f75684221a09ac4209f817e77f2a970748f9 [file] [log] [blame]
David Sterba099dc4f2008-02-07 10:57:12 +01001/*
2 * IPWireless 3G PCMCIA Network Driver
3 *
4 * Original code
5 * by Stephen Blackheath <stephen@blacksapphire.com>,
6 * Ben Martel <benm@symmetric.co.nz>
7 *
8 * Copyrighted as follows:
9 * Copyright (C) 2004 by Symmetric Systems Ltd (NZ)
10 *
11 * Various driver changes and rewrites, port to new kernels
12 * Copyright (C) 2006-2007 Jiri Kosina
13 *
14 * Misc code cleanups and updates
15 * Copyright (C) 2007 David Sterba
16 */
17
18#include <linux/interrupt.h>
19#include <linux/io.h>
20#include <linux/irq.h>
21#include <linux/kernel.h>
22#include <linux/list.h>
23#include <linux/slab.h>
24
25#include "hardware.h"
26#include "setup_protocol.h"
27#include "network.h"
28#include "main.h"
29
30static void ipw_send_setup_packet(struct ipw_hardware *hw);
31static void handle_received_SETUP_packet(struct ipw_hardware *ipw,
32 unsigned int address,
David Sterbaff3e9902008-07-28 16:53:11 +020033 const unsigned char *data, int len,
David Sterba099dc4f2008-02-07 10:57:12 +010034 int is_last);
35static void ipwireless_setup_timer(unsigned long data);
36static void handle_received_CTRL_packet(struct ipw_hardware *hw,
David Sterbaff3e9902008-07-28 16:53:11 +020037 unsigned int channel_idx, const unsigned char *data, int len);
David Sterba099dc4f2008-02-07 10:57:12 +010038
39/*#define TIMING_DIAGNOSTICS*/
40
41#ifdef TIMING_DIAGNOSTICS
42
43static 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;
50};
51
52static void start_timing(void)
53{
54 timing_stats.start_time = jiffies;
55}
56
57static void end_read_timing(unsigned length)
58{
59 timing_stats.read_time += (jiffies - start_time);
60 timing_stats.read_bytes += length + 2;
61 report_timing();
62}
63
64static void end_write_timing(unsigned length)
65{
66 timing_stats.write_time += (jiffies - start_time);
67 timing_stats.write_bytes += length + 2;
68 report_timing();
69}
70
71static void report_timing(void)
72{
73 unsigned long since = jiffies - timing_stats.last_report_time;
74
75 /* If it's been more than one second... */
76 if (since >= HZ) {
77 int first = (timing_stats.last_report_time == 0);
78
79 timing_stats.last_report_time = jiffies;
80 if (!first)
81 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
David Sterba622e7132008-07-28 16:52:55 +020082 ": %u us elapsed - read %lu bytes in %u us, wrote %lu bytes in %u us\n",
David Sterba099dc4f2008-02-07 10:57:12 +010083 jiffies_to_usecs(since),
84 timing_stats.read_bytes,
85 jiffies_to_usecs(timing_stats.read_time),
86 timing_stats.write_bytes,
87 jiffies_to_usecs(timing_stats.write_time));
88
89 timing_stats.read_time = 0;
90 timing_stats.write_time = 0;
91 timing_stats.read_bytes = 0;
92 timing_stats.write_bytes = 0;
93 }
94}
95#else
96static void start_timing(void) { }
97static void end_read_timing(unsigned length) { }
98static void end_write_timing(unsigned length) { }
99#endif
100
101/* Imported IPW definitions */
102
103#define LL_MTU_V1 318
104#define LL_MTU_V2 250
105#define LL_MTU_MAX (LL_MTU_V1 > LL_MTU_V2 ? LL_MTU_V1 : LL_MTU_V2)
106
107#define PRIO_DATA 2
108#define PRIO_CTRL 1
109#define PRIO_SETUP 0
110
111/* Addresses */
112#define ADDR_SETUP_PROT 0
113
114/* Protocol ids */
115enum {
116 /* Identifier for the Com Data protocol */
117 TL_PROTOCOLID_COM_DATA = 0,
118
119 /* Identifier for the Com Control protocol */
120 TL_PROTOCOLID_COM_CTRL = 1,
121
122 /* Identifier for the Setup protocol */
123 TL_PROTOCOLID_SETUP = 2
124};
125
126/* Number of bytes in NL packet header (cannot do
127 * sizeof(nl_packet_header) since it's a bitfield) */
128#define NL_FIRST_PACKET_HEADER_SIZE 3
129
130/* Number of bytes in NL packet header (cannot do
131 * sizeof(nl_packet_header) since it's a bitfield) */
132#define NL_FOLLOWING_PACKET_HEADER_SIZE 1
133
134struct nl_first_packet_header {
David Sterba099dc4f2008-02-07 10:57:12 +0100135 unsigned char protocol:3;
136 unsigned char address:3;
137 unsigned char packet_rank:2;
David Sterba099dc4f2008-02-07 10:57:12 +0100138 unsigned char length_lsb;
139 unsigned char length_msb;
140};
141
142struct nl_packet_header {
David Sterba099dc4f2008-02-07 10:57:12 +0100143 unsigned char protocol:3;
144 unsigned char address:3;
145 unsigned char packet_rank:2;
David Sterba099dc4f2008-02-07 10:57:12 +0100146};
147
148/* Value of 'packet_rank' above */
149#define NL_INTERMEDIATE_PACKET 0x0
150#define NL_LAST_PACKET 0x1
151#define NL_FIRST_PACKET 0x2
152
153union nl_packet {
154 /* Network packet header of the first packet (a special case) */
155 struct nl_first_packet_header hdr_first;
156 /* Network packet header of the following packets (if any) */
157 struct nl_packet_header hdr;
158 /* Complete network packet (header + data) */
159 unsigned char rawpkt[LL_MTU_MAX];
160} __attribute__ ((__packed__));
161
162#define HW_VERSION_UNKNOWN -1
163#define HW_VERSION_1 1
164#define HW_VERSION_2 2
165
166/* IPW I/O ports */
167#define IOIER 0x00 /* Interrupt Enable Register */
168#define IOIR 0x02 /* Interrupt Source/ACK register */
169#define IODCR 0x04 /* Data Control Register */
170#define IODRR 0x06 /* Data Read Register */
171#define IODWR 0x08 /* Data Write Register */
172#define IOESR 0x0A /* Embedded Driver Status Register */
173#define IORXR 0x0C /* Rx Fifo Register (Host to Embedded) */
174#define IOTXR 0x0E /* Tx Fifo Register (Embedded to Host) */
175
176/* I/O ports and bit definitions for version 1 of the hardware */
177
178/* IER bits*/
179#define IER_RXENABLED 0x1
180#define IER_TXENABLED 0x2
181
182/* ISR bits */
183#define IR_RXINTR 0x1
184#define IR_TXINTR 0x2
185
186/* DCR bits */
187#define DCR_RXDONE 0x1
188#define DCR_TXDONE 0x2
189#define DCR_RXRESET 0x4
190#define DCR_TXRESET 0x8
191
192/* I/O ports and bit definitions for version 2 of the hardware */
193
194struct MEMCCR {
195 unsigned short reg_config_option; /* PCCOR: Configuration Option Register */
196 unsigned short reg_config_and_status; /* PCCSR: Configuration and Status Register */
197 unsigned short reg_pin_replacement; /* PCPRR: Pin Replacemant Register */
198 unsigned short reg_socket_and_copy; /* PCSCR: Socket and Copy Register */
199 unsigned short reg_ext_status; /* PCESR: Extendend Status Register */
200 unsigned short reg_io_base; /* PCIOB: I/O Base Register */
201};
202
203struct MEMINFREG {
204 unsigned short memreg_tx_old; /* TX Register (R/W) */
205 unsigned short pad1;
206 unsigned short memreg_rx_done; /* RXDone Register (R/W) */
207 unsigned short pad2;
208 unsigned short memreg_rx; /* RX Register (R/W) */
209 unsigned short pad3;
210 unsigned short memreg_pc_interrupt_ack; /* PC intr Ack Register (W) */
211 unsigned short pad4;
212 unsigned long memreg_card_present;/* Mask for Host to check (R) for
213 * CARD_PRESENT_VALUE */
214 unsigned short memreg_tx_new; /* TX2 (new) Register (R/W) */
215};
216
David Sterba099dc4f2008-02-07 10:57:12 +0100217#define CARD_PRESENT_VALUE (0xBEEFCAFEUL)
218
219#define MEMTX_TX 0x0001
220#define MEMRX_RX 0x0001
221#define MEMRX_RX_DONE 0x0001
222#define MEMRX_PCINTACKK 0x0001
David Sterba099dc4f2008-02-07 10:57:12 +0100223
224#define NL_NUM_OF_PRIORITIES 3
225#define NL_NUM_OF_PROTOCOLS 3
226#define NL_NUM_OF_ADDRESSES NO_OF_IPW_CHANNELS
227
228struct ipw_hardware {
229 unsigned int base_port;
230 short hw_version;
231 unsigned short ll_mtu;
David Sterba63c4dbd2008-07-28 16:52:44 +0200232 spinlock_t lock;
David Sterba099dc4f2008-02-07 10:57:12 +0100233
234 int initializing;
235 int init_loops;
236 struct timer_list setup_timer;
237
David Sterbaeb4e5452008-06-06 10:56:35 +0200238 /* Flag if hw is ready to send next packet */
David Sterba099dc4f2008-02-07 10:57:12 +0100239 int tx_ready;
David Sterbaeb4e5452008-06-06 10:56:35 +0200240 /* Count of pending packets to be sent */
David Sterba099dc4f2008-02-07 10:57:12 +0100241 int tx_queued;
David Sterbaeb4e5452008-06-06 10:56:35 +0200242 struct list_head tx_queue[NL_NUM_OF_PRIORITIES];
David Sterba099dc4f2008-02-07 10:57:12 +0100243
244 int rx_bytes_queued;
245 struct list_head rx_queue;
246 /* Pool of rx_packet structures that are not currently used. */
247 struct list_head rx_pool;
248 int rx_pool_size;
249 /* True if reception of data is blocked while userspace processes it. */
250 int blocking_rx;
251 /* True if there is RX data ready on the hardware. */
252 int rx_ready;
253 unsigned short last_memtx_serial;
254 /*
255 * Newer versions of the V2 card firmware send serial numbers in the
256 * MemTX register. 'serial_number_detected' is set true when we detect
257 * a non-zero serial number (indicating the new firmware). Thereafter,
258 * the driver can safely ignore the Timer Recovery re-sends to avoid
259 * out-of-sync problems.
260 */
261 int serial_number_detected;
262 struct work_struct work_rx;
263
264 /* True if we are to send the set-up data to the hardware. */
265 int to_setup;
266
267 /* Card has been removed */
268 int removed;
269 /* Saved irq value when we disable the interrupt. */
270 int irq;
271 /* True if this driver is shutting down. */
272 int shutting_down;
273 /* Modem control lines */
274 unsigned int control_lines[NL_NUM_OF_ADDRESSES];
275 struct ipw_rx_packet *packet_assembler[NL_NUM_OF_ADDRESSES];
276
277 struct tasklet_struct tasklet;
278
279 /* The handle for the network layer, for the sending of events to it. */
280 struct ipw_network *network;
281 struct MEMINFREG __iomem *memory_info_regs;
282 struct MEMCCR __iomem *memregs_CCR;
283 void (*reboot_callback) (void *data);
284 void *reboot_callback_data;
285
286 unsigned short __iomem *memreg_tx;
287};
288
289/*
290 * Packet info structure for tx packets.
291 * Note: not all the fields defined here are required for all protocols
292 */
293struct ipw_tx_packet {
294 struct list_head queue;
295 /* channel idx + 1 */
296 unsigned char dest_addr;
297 /* SETUP, CTRL or DATA */
298 unsigned char protocol;
299 /* Length of data block, which starts at the end of this structure */
300 unsigned short length;
301 /* Sending state */
302 /* Offset of where we've sent up to so far */
303 unsigned long offset;
304 /* Count of packet fragments, starting at 0 */
305 int fragment_count;
306
307 /* Called after packet is sent and before is freed */
308 void (*packet_callback) (void *cb_data, unsigned int packet_length);
309 void *callback_data;
310};
311
312/* Signals from DTE */
313#define COMCTRL_RTS 0
314#define COMCTRL_DTR 1
315
316/* Signals from DCE */
317#define COMCTRL_CTS 2
318#define COMCTRL_DCD 3
319#define COMCTRL_DSR 4
320#define COMCTRL_RI 5
321
322struct ipw_control_packet_body {
323 /* DTE signal or DCE signal */
324 unsigned char sig_no;
325 /* 0: set signal, 1: clear signal */
326 unsigned char value;
327} __attribute__ ((__packed__));
328
329struct ipw_control_packet {
330 struct ipw_tx_packet header;
331 struct ipw_control_packet_body body;
332};
333
334struct ipw_rx_packet {
335 struct list_head queue;
336 unsigned int capacity;
337 unsigned int length;
338 unsigned int protocol;
339 unsigned int channel_idx;
340};
341
David Sterba099dc4f2008-02-07 10:57:12 +0100342static char *data_type(const unsigned char *buf, unsigned length)
343{
344 struct nl_packet_header *hdr = (struct nl_packet_header *) buf;
345
346 if (length == 0)
347 return " ";
348
349 if (hdr->packet_rank & NL_FIRST_PACKET) {
350 switch (hdr->protocol) {
351 case TL_PROTOCOLID_COM_DATA: return "DATA ";
352 case TL_PROTOCOLID_COM_CTRL: return "CTRL ";
353 case TL_PROTOCOLID_SETUP: return "SETUP";
354 default: return "???? ";
355 }
356 } else
357 return " ";
358}
359
360#define DUMP_MAX_BYTES 64
361
362static void dump_data_bytes(const char *type, const unsigned char *data,
363 unsigned length)
364{
365 char prefix[56];
366
367 sprintf(prefix, IPWIRELESS_PCCARD_NAME ": %s %s ",
368 type, data_type(data, length));
369 print_hex_dump_bytes(prefix, 0, (void *)data,
370 length < DUMP_MAX_BYTES ? length : DUMP_MAX_BYTES);
371}
372
David Sterbad54c2752008-07-28 16:53:00 +0200373static void swap_packet_bitfield_to_le(unsigned char *data)
374{
375#ifdef __BIG_ENDIAN_BITFIELD
376 unsigned char tmp = *data, ret = 0;
377
378 /*
379 * transform bits from aa.bbb.ccc to ccc.bbb.aa
380 */
Joe Perches7e041ab2014-10-26 22:25:05 -0700381 ret |= (tmp & 0xc0) >> 6;
382 ret |= (tmp & 0x38) >> 1;
383 ret |= (tmp & 0x07) << 5;
David Sterbad54c2752008-07-28 16:53:00 +0200384 *data = ret & 0xff;
385#endif
386}
387
388static void swap_packet_bitfield_from_le(unsigned char *data)
389{
390#ifdef __BIG_ENDIAN_BITFIELD
391 unsigned char tmp = *data, ret = 0;
392
393 /*
394 * transform bits from ccc.bbb.aa to aa.bbb.ccc
395 */
Joe Perches7e041ab2014-10-26 22:25:05 -0700396 ret |= (tmp & 0xe0) >> 5;
397 ret |= (tmp & 0x1c) << 1;
398 ret |= (tmp & 0x03) << 6;
David Sterbad54c2752008-07-28 16:53:00 +0200399 *data = ret & 0xff;
400#endif
401}
402
David Sterba93110f692008-07-28 16:53:05 +0200403static void do_send_fragment(struct ipw_hardware *hw, unsigned char *data,
David Sterba099dc4f2008-02-07 10:57:12 +0100404 unsigned length)
405{
David Sterbad4c0deb2008-07-28 16:52:33 +0200406 unsigned i;
David Sterba099dc4f2008-02-07 10:57:12 +0100407 unsigned long flags;
408
409 start_timing();
David Sterba93110f692008-07-28 16:53:05 +0200410 BUG_ON(length > hw->ll_mtu);
David Sterba099dc4f2008-02-07 10:57:12 +0100411
412 if (ipwireless_debug)
413 dump_data_bytes("send", data, length);
414
David Sterba63c4dbd2008-07-28 16:52:44 +0200415 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100416
David Sterbaeb4e5452008-06-06 10:56:35 +0200417 hw->tx_ready = 0;
David Sterbad54c2752008-07-28 16:53:00 +0200418 swap_packet_bitfield_to_le(data);
David Sterbaeb4e5452008-06-06 10:56:35 +0200419
David Sterba099dc4f2008-02-07 10:57:12 +0100420 if (hw->hw_version == HW_VERSION_1) {
421 outw((unsigned short) length, hw->base_port + IODWR);
422
423 for (i = 0; i < length; i += 2) {
424 unsigned short d = data[i];
425 __le16 raw_data;
426
David Sterbad4c0deb2008-07-28 16:52:33 +0200427 if (i + 1 < length)
David Sterba099dc4f2008-02-07 10:57:12 +0100428 d |= data[i + 1] << 8;
429 raw_data = cpu_to_le16(d);
430 outw(raw_data, hw->base_port + IODWR);
431 }
432
433 outw(DCR_TXDONE, hw->base_port + IODCR);
434 } else if (hw->hw_version == HW_VERSION_2) {
David Sterba2e713162008-07-28 16:52:39 +0200435 outw((unsigned short) length, hw->base_port);
David Sterba099dc4f2008-02-07 10:57:12 +0100436
437 for (i = 0; i < length; i += 2) {
438 unsigned short d = data[i];
439 __le16 raw_data;
440
David Sterbad4c0deb2008-07-28 16:52:33 +0200441 if (i + 1 < length)
David Sterba099dc4f2008-02-07 10:57:12 +0100442 d |= data[i + 1] << 8;
443 raw_data = cpu_to_le16(d);
David Sterba2e713162008-07-28 16:52:39 +0200444 outw(raw_data, hw->base_port);
David Sterba099dc4f2008-02-07 10:57:12 +0100445 }
446 while ((i & 3) != 2) {
David Sterba2e713162008-07-28 16:52:39 +0200447 outw((unsigned short) 0xDEAD, hw->base_port);
David Sterba099dc4f2008-02-07 10:57:12 +0100448 i += 2;
449 }
450 writew(MEMRX_RX, &hw->memory_info_regs->memreg_rx);
451 }
452
David Sterba63c4dbd2008-07-28 16:52:44 +0200453 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100454
455 end_write_timing(length);
David Sterba099dc4f2008-02-07 10:57:12 +0100456}
457
David Sterba93110f692008-07-28 16:53:05 +0200458static void do_send_packet(struct ipw_hardware *hw, struct ipw_tx_packet *packet)
David Sterba099dc4f2008-02-07 10:57:12 +0100459{
460 unsigned short fragment_data_len;
461 unsigned short data_left = packet->length - packet->offset;
462 unsigned short header_size;
463 union nl_packet pkt;
464
465 header_size =
466 (packet->fragment_count == 0)
467 ? NL_FIRST_PACKET_HEADER_SIZE
468 : NL_FOLLOWING_PACKET_HEADER_SIZE;
469 fragment_data_len = hw->ll_mtu - header_size;
470 if (data_left < fragment_data_len)
471 fragment_data_len = data_left;
472
David Sterbad54c2752008-07-28 16:53:00 +0200473 /*
474 * hdr_first is now in machine bitfield order, which will be swapped
475 * to le just before it goes to hw
476 */
David Sterba099dc4f2008-02-07 10:57:12 +0100477 pkt.hdr_first.protocol = packet->protocol;
478 pkt.hdr_first.address = packet->dest_addr;
479 pkt.hdr_first.packet_rank = 0;
480
481 /* First packet? */
482 if (packet->fragment_count == 0) {
483 pkt.hdr_first.packet_rank |= NL_FIRST_PACKET;
484 pkt.hdr_first.length_lsb = (unsigned char) packet->length;
485 pkt.hdr_first.length_msb =
486 (unsigned char) (packet->length >> 8);
487 }
488
489 memcpy(pkt.rawpkt + header_size,
490 ((unsigned char *) packet) + sizeof(struct ipw_tx_packet) +
491 packet->offset, fragment_data_len);
492 packet->offset += fragment_data_len;
493 packet->fragment_count++;
494
495 /* Last packet? (May also be first packet.) */
496 if (packet->offset == packet->length)
497 pkt.hdr_first.packet_rank |= NL_LAST_PACKET;
498 do_send_fragment(hw, pkt.rawpkt, header_size + fragment_data_len);
499
500 /* If this packet has unsent data, then re-queue it. */
501 if (packet->offset < packet->length) {
502 /*
503 * Re-queue it at the head of the highest priority queue so
504 * it goes before all other packets
505 */
506 unsigned long flags;
507
David Sterba63c4dbd2008-07-28 16:52:44 +0200508 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100509 list_add(&packet->queue, &hw->tx_queue[0]);
David Sterbaeb4e5452008-06-06 10:56:35 +0200510 hw->tx_queued++;
David Sterba63c4dbd2008-07-28 16:52:44 +0200511 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100512 } else {
513 if (packet->packet_callback)
514 packet->packet_callback(packet->callback_data,
515 packet->length);
516 kfree(packet);
517 }
David Sterba099dc4f2008-02-07 10:57:12 +0100518}
519
520static void ipw_setup_hardware(struct ipw_hardware *hw)
521{
522 unsigned long flags;
523
David Sterba63c4dbd2008-07-28 16:52:44 +0200524 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100525 if (hw->hw_version == HW_VERSION_1) {
526 /* Reset RX FIFO */
527 outw(DCR_RXRESET, hw->base_port + IODCR);
528 /* SB: Reset TX FIFO */
529 outw(DCR_TXRESET, hw->base_port + IODCR);
530
531 /* Enable TX and RX interrupts. */
532 outw(IER_TXENABLED | IER_RXENABLED, hw->base_port + IOIER);
533 } else {
534 /*
535 * Set INTRACK bit (bit 0), which means we must explicitly
536 * acknowledge interrupts by clearing bit 2 of reg_config_and_status.
537 */
538 unsigned short csr = readw(&hw->memregs_CCR->reg_config_and_status);
539
540 csr |= 1;
541 writew(csr, &hw->memregs_CCR->reg_config_and_status);
542 }
David Sterba63c4dbd2008-07-28 16:52:44 +0200543 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100544}
545
546/*
547 * If 'packet' is NULL, then this function allocates a new packet, setting its
548 * length to 0 and ensuring it has the specified minimum amount of free space.
549 *
550 * If 'packet' is not NULL, then this function enlarges it if it doesn't
551 * have the specified minimum amount of free space.
552 *
553 */
554static struct ipw_rx_packet *pool_allocate(struct ipw_hardware *hw,
555 struct ipw_rx_packet *packet,
556 int minimum_free_space)
557{
558
559 if (!packet) {
560 unsigned long flags;
561
David Sterba63c4dbd2008-07-28 16:52:44 +0200562 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100563 if (!list_empty(&hw->rx_pool)) {
564 packet = list_first_entry(&hw->rx_pool,
565 struct ipw_rx_packet, queue);
David Sterba099dc4f2008-02-07 10:57:12 +0100566 hw->rx_pool_size--;
David Sterba63c4dbd2008-07-28 16:52:44 +0200567 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba0f38c472008-07-28 16:53:27 +0200568 list_del(&packet->queue);
David Sterba099dc4f2008-02-07 10:57:12 +0100569 } else {
David Sterbaa0138692008-07-28 16:53:32 +0200570 const int min_capacity =
James Bottomley3684a602008-07-28 17:11:44 -0500571 ipwireless_ppp_mru(hw->network) + 2;
David Sterba099dc4f2008-02-07 10:57:12 +0100572 int new_capacity;
573
David Sterba63c4dbd2008-07-28 16:52:44 +0200574 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100575 new_capacity =
David Sterbad4c0deb2008-07-28 16:52:33 +0200576 (minimum_free_space > min_capacity
577 ? minimum_free_space
578 : min_capacity);
David Sterba099dc4f2008-02-07 10:57:12 +0100579 packet = kmalloc(sizeof(struct ipw_rx_packet)
580 + new_capacity, GFP_ATOMIC);
581 if (!packet)
582 return NULL;
583 packet->capacity = new_capacity;
584 }
585 packet->length = 0;
586 }
587
David Sterba099dc4f2008-02-07 10:57:12 +0100588 if (packet->length + minimum_free_space > packet->capacity) {
589 struct ipw_rx_packet *old_packet = packet;
590
591 packet = kmalloc(sizeof(struct ipw_rx_packet) +
592 old_packet->length + minimum_free_space,
593 GFP_ATOMIC);
Darren Jenkins43f77e92008-07-12 13:47:49 -0700594 if (!packet) {
595 kfree(old_packet);
David Sterba099dc4f2008-02-07 10:57:12 +0100596 return NULL;
Darren Jenkins43f77e92008-07-12 13:47:49 -0700597 }
David Sterba099dc4f2008-02-07 10:57:12 +0100598 memcpy(packet, old_packet,
599 sizeof(struct ipw_rx_packet)
600 + old_packet->length);
601 packet->capacity = old_packet->length + minimum_free_space;
602 kfree(old_packet);
603 }
604
605 return packet;
606}
607
608static void pool_free(struct ipw_hardware *hw, struct ipw_rx_packet *packet)
609{
610 if (hw->rx_pool_size > 6)
611 kfree(packet);
612 else {
613 hw->rx_pool_size++;
David Sterba0f38c472008-07-28 16:53:27 +0200614 list_add(&packet->queue, &hw->rx_pool);
David Sterba099dc4f2008-02-07 10:57:12 +0100615 }
616}
617
618static void queue_received_packet(struct ipw_hardware *hw,
David Sterbaff3e9902008-07-28 16:53:11 +0200619 unsigned int protocol,
620 unsigned int address,
621 const unsigned char *data, int length,
622 int is_last)
David Sterba099dc4f2008-02-07 10:57:12 +0100623{
624 unsigned int channel_idx = address - 1;
625 struct ipw_rx_packet *packet = NULL;
626 unsigned long flags;
627
628 /* Discard packet if channel index is out of range. */
629 if (channel_idx >= NL_NUM_OF_ADDRESSES) {
630 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
631 ": data packet has bad address %u\n", address);
632 return;
633 }
634
635 /*
636 * ->packet_assembler is safe to touch unlocked, this is the only place
637 */
638 if (protocol == TL_PROTOCOLID_COM_DATA) {
639 struct ipw_rx_packet **assem =
640 &hw->packet_assembler[channel_idx];
641
642 /*
643 * Create a new packet, or assembler already contains one
644 * enlarge it by 'length' bytes.
645 */
646 (*assem) = pool_allocate(hw, *assem, length);
647 if (!(*assem)) {
648 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
Jorrit Schippersd82603c2012-12-27 17:33:02 +0100649 ": no memory for incoming data packet, dropped!\n");
David Sterba099dc4f2008-02-07 10:57:12 +0100650 return;
651 }
652 (*assem)->protocol = protocol;
653 (*assem)->channel_idx = channel_idx;
654
655 /* Append this packet data onto existing data. */
656 memcpy((unsigned char *)(*assem) +
657 sizeof(struct ipw_rx_packet)
658 + (*assem)->length, data, length);
659 (*assem)->length += length;
660 if (is_last) {
661 packet = *assem;
662 *assem = NULL;
663 /* Count queued DATA bytes only */
David Sterba63c4dbd2008-07-28 16:52:44 +0200664 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100665 hw->rx_bytes_queued += packet->length;
David Sterba63c4dbd2008-07-28 16:52:44 +0200666 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100667 }
668 } else {
669 /* If it's a CTRL packet, don't assemble, just queue it. */
670 packet = pool_allocate(hw, NULL, length);
671 if (!packet) {
672 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
Jorrit Schippersd82603c2012-12-27 17:33:02 +0100673 ": no memory for incoming ctrl packet, dropped!\n");
David Sterba099dc4f2008-02-07 10:57:12 +0100674 return;
675 }
676 packet->protocol = protocol;
677 packet->channel_idx = channel_idx;
678 memcpy((unsigned char *)packet + sizeof(struct ipw_rx_packet),
679 data, length);
680 packet->length = length;
681 }
682
683 /*
684 * If this is the last packet, then send the assembled packet on to the
685 * network layer.
686 */
687 if (packet) {
David Sterba63c4dbd2008-07-28 16:52:44 +0200688 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100689 list_add_tail(&packet->queue, &hw->rx_queue);
690 /* Block reception of incoming packets if queue is full. */
691 hw->blocking_rx =
David Sterbad4c0deb2008-07-28 16:52:33 +0200692 (hw->rx_bytes_queued >= IPWIRELESS_RX_QUEUE_SIZE);
David Sterba099dc4f2008-02-07 10:57:12 +0100693
David Sterba63c4dbd2008-07-28 16:52:44 +0200694 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100695 schedule_work(&hw->work_rx);
696 }
697}
698
699/*
700 * Workqueue callback
701 */
702static void ipw_receive_data_work(struct work_struct *work_rx)
703{
704 struct ipw_hardware *hw =
705 container_of(work_rx, struct ipw_hardware, work_rx);
706 unsigned long flags;
707
David Sterba63c4dbd2008-07-28 16:52:44 +0200708 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100709 while (!list_empty(&hw->rx_queue)) {
710 struct ipw_rx_packet *packet =
711 list_first_entry(&hw->rx_queue,
712 struct ipw_rx_packet, queue);
713
714 if (hw->shutting_down)
715 break;
716 list_del(&packet->queue);
717
718 /*
719 * Note: ipwireless_network_packet_received must be called in a
720 * process context (i.e. via schedule_work) because the tty
721 * output code can sleep in the tty_flip_buffer_push call.
722 */
723 if (packet->protocol == TL_PROTOCOLID_COM_DATA) {
724 if (hw->network != NULL) {
725 /* If the network hasn't been disconnected. */
David Sterba63c4dbd2008-07-28 16:52:44 +0200726 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100727 /*
728 * This must run unlocked due to tty processing
729 * and mutex locking
730 */
731 ipwireless_network_packet_received(
732 hw->network,
733 packet->channel_idx,
734 (unsigned char *)packet
735 + sizeof(struct ipw_rx_packet),
736 packet->length);
David Sterba63c4dbd2008-07-28 16:52:44 +0200737 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100738 }
739 /* Count queued DATA bytes only */
740 hw->rx_bytes_queued -= packet->length;
741 } else {
742 /*
743 * This is safe to be called locked, callchain does
744 * not block
745 */
746 handle_received_CTRL_packet(hw, packet->channel_idx,
747 (unsigned char *)packet
748 + sizeof(struct ipw_rx_packet),
749 packet->length);
750 }
751 pool_free(hw, packet);
752 /*
753 * Unblock reception of incoming packets if queue is no longer
754 * full.
755 */
756 hw->blocking_rx =
757 hw->rx_bytes_queued >= IPWIRELESS_RX_QUEUE_SIZE;
758 if (hw->shutting_down)
759 break;
760 }
David Sterba63c4dbd2008-07-28 16:52:44 +0200761 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100762}
763
764static void handle_received_CTRL_packet(struct ipw_hardware *hw,
765 unsigned int channel_idx,
David Sterbaff3e9902008-07-28 16:53:11 +0200766 const unsigned char *data, int len)
David Sterba099dc4f2008-02-07 10:57:12 +0100767{
David Sterbaff3e9902008-07-28 16:53:11 +0200768 const struct ipw_control_packet_body *body =
769 (const struct ipw_control_packet_body *) data;
David Sterba099dc4f2008-02-07 10:57:12 +0100770 unsigned int changed_mask;
771
772 if (len != sizeof(struct ipw_control_packet_body)) {
773 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
774 ": control packet was %d bytes - wrong size!\n",
775 len);
776 return;
777 }
778
779 switch (body->sig_no) {
780 case COMCTRL_CTS:
781 changed_mask = IPW_CONTROL_LINE_CTS;
782 break;
783 case COMCTRL_DCD:
784 changed_mask = IPW_CONTROL_LINE_DCD;
785 break;
786 case COMCTRL_DSR:
787 changed_mask = IPW_CONTROL_LINE_DSR;
788 break;
789 case COMCTRL_RI:
790 changed_mask = IPW_CONTROL_LINE_RI;
791 break;
792 default:
793 changed_mask = 0;
794 }
795
796 if (changed_mask != 0) {
797 if (body->value)
798 hw->control_lines[channel_idx] |= changed_mask;
799 else
800 hw->control_lines[channel_idx] &= ~changed_mask;
801 if (hw->network)
802 ipwireless_network_notify_control_line_change(
803 hw->network,
804 channel_idx,
805 hw->control_lines[channel_idx],
806 changed_mask);
807 }
808}
809
810static void handle_received_packet(struct ipw_hardware *hw,
David Sterbaff3e9902008-07-28 16:53:11 +0200811 const union nl_packet *packet,
David Sterba099dc4f2008-02-07 10:57:12 +0100812 unsigned short len)
813{
814 unsigned int protocol = packet->hdr.protocol;
815 unsigned int address = packet->hdr.address;
816 unsigned int header_length;
David Sterbaff3e9902008-07-28 16:53:11 +0200817 const unsigned char *data;
David Sterba099dc4f2008-02-07 10:57:12 +0100818 unsigned int data_len;
819 int is_last = packet->hdr.packet_rank & NL_LAST_PACKET;
820
821 if (packet->hdr.packet_rank & NL_FIRST_PACKET)
822 header_length = NL_FIRST_PACKET_HEADER_SIZE;
823 else
824 header_length = NL_FOLLOWING_PACKET_HEADER_SIZE;
825
826 data = packet->rawpkt + header_length;
827 data_len = len - header_length;
828 switch (protocol) {
829 case TL_PROTOCOLID_COM_DATA:
830 case TL_PROTOCOLID_COM_CTRL:
831 queue_received_packet(hw, protocol, address, data, data_len,
832 is_last);
833 break;
834 case TL_PROTOCOLID_SETUP:
835 handle_received_SETUP_packet(hw, address, data, data_len,
836 is_last);
837 break;
838 }
839}
840
841static void acknowledge_data_read(struct ipw_hardware *hw)
842{
843 if (hw->hw_version == HW_VERSION_1)
844 outw(DCR_RXDONE, hw->base_port + IODCR);
845 else
846 writew(MEMRX_PCINTACKK,
847 &hw->memory_info_regs->memreg_pc_interrupt_ack);
848}
849
850/*
851 * Retrieve a packet from the IPW hardware.
852 */
853static void do_receive_packet(struct ipw_hardware *hw)
854{
855 unsigned len;
David Sterbad4c0deb2008-07-28 16:52:33 +0200856 unsigned i;
David Sterba099dc4f2008-02-07 10:57:12 +0100857 unsigned char pkt[LL_MTU_MAX];
858
859 start_timing();
860
861 if (hw->hw_version == HW_VERSION_1) {
862 len = inw(hw->base_port + IODRR);
863 if (len > hw->ll_mtu) {
864 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
David Sterba622e7132008-07-28 16:52:55 +0200865 ": received a packet of %u bytes - longer than the MTU!\n", len);
David Sterba099dc4f2008-02-07 10:57:12 +0100866 outw(DCR_RXDONE | DCR_RXRESET, hw->base_port + IODCR);
867 return;
868 }
869
870 for (i = 0; i < len; i += 2) {
871 __le16 raw_data = inw(hw->base_port + IODRR);
872 unsigned short data = le16_to_cpu(raw_data);
873
874 pkt[i] = (unsigned char) data;
875 pkt[i + 1] = (unsigned char) (data >> 8);
876 }
877 } else {
David Sterba2e713162008-07-28 16:52:39 +0200878 len = inw(hw->base_port);
David Sterba099dc4f2008-02-07 10:57:12 +0100879 if (len > hw->ll_mtu) {
880 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
David Sterba622e7132008-07-28 16:52:55 +0200881 ": received a packet of %u bytes - longer than the MTU!\n", len);
David Sterba099dc4f2008-02-07 10:57:12 +0100882 writew(MEMRX_PCINTACKK,
883 &hw->memory_info_regs->memreg_pc_interrupt_ack);
884 return;
885 }
886
887 for (i = 0; i < len; i += 2) {
David Sterba2e713162008-07-28 16:52:39 +0200888 __le16 raw_data = inw(hw->base_port);
David Sterba099dc4f2008-02-07 10:57:12 +0100889 unsigned short data = le16_to_cpu(raw_data);
890
891 pkt[i] = (unsigned char) data;
892 pkt[i + 1] = (unsigned char) (data >> 8);
893 }
894
895 while ((i & 3) != 2) {
David Sterba2e713162008-07-28 16:52:39 +0200896 inw(hw->base_port);
David Sterba099dc4f2008-02-07 10:57:12 +0100897 i += 2;
898 }
899 }
900
901 acknowledge_data_read(hw);
902
David Sterbad54c2752008-07-28 16:53:00 +0200903 swap_packet_bitfield_from_le(pkt);
904
David Sterba099dc4f2008-02-07 10:57:12 +0100905 if (ipwireless_debug)
906 dump_data_bytes("recv", pkt, len);
907
908 handle_received_packet(hw, (union nl_packet *) pkt, len);
909
910 end_read_timing(len);
911}
912
913static int get_current_packet_priority(struct ipw_hardware *hw)
914{
915 /*
916 * If we're initializing, don't send anything of higher priority than
917 * PRIO_SETUP. The network layer therefore need not care about
918 * hardware initialization - any of its stuff will simply be queued
919 * until setup is complete.
920 */
921 return (hw->to_setup || hw->initializing
David Sterbad4c0deb2008-07-28 16:52:33 +0200922 ? PRIO_SETUP + 1 : NL_NUM_OF_PRIORITIES);
David Sterba099dc4f2008-02-07 10:57:12 +0100923}
924
925/*
926 * return 1 if something has been received from hw
927 */
928static int get_packets_from_hw(struct ipw_hardware *hw)
929{
930 int received = 0;
931 unsigned long flags;
932
David Sterba63c4dbd2008-07-28 16:52:44 +0200933 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100934 while (hw->rx_ready && !hw->blocking_rx) {
935 received = 1;
936 hw->rx_ready--;
David Sterba63c4dbd2008-07-28 16:52:44 +0200937 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100938
939 do_receive_packet(hw);
940
David Sterba63c4dbd2008-07-28 16:52:44 +0200941 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100942 }
David Sterba63c4dbd2008-07-28 16:52:44 +0200943 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100944
945 return received;
946}
947
948/*
949 * Send pending packet up to given priority, prioritize SETUP data until
950 * hardware is fully setup.
951 *
952 * return 1 if more packets can be sent
953 */
954static int send_pending_packet(struct ipw_hardware *hw, int priority_limit)
955{
956 int more_to_send = 0;
957 unsigned long flags;
958
David Sterba63c4dbd2008-07-28 16:52:44 +0200959 spin_lock_irqsave(&hw->lock, flags);
David Sterbaeb4e5452008-06-06 10:56:35 +0200960 if (hw->tx_queued && hw->tx_ready) {
David Sterba099dc4f2008-02-07 10:57:12 +0100961 int priority;
962 struct ipw_tx_packet *packet = NULL;
963
David Sterba099dc4f2008-02-07 10:57:12 +0100964 /* Pick a packet */
965 for (priority = 0; priority < priority_limit; priority++) {
966 if (!list_empty(&hw->tx_queue[priority])) {
967 packet = list_first_entry(
968 &hw->tx_queue[priority],
969 struct ipw_tx_packet,
970 queue);
971
David Sterbaeb4e5452008-06-06 10:56:35 +0200972 hw->tx_queued--;
David Sterba099dc4f2008-02-07 10:57:12 +0100973 list_del(&packet->queue);
974
975 break;
976 }
977 }
978 if (!packet) {
979 hw->tx_queued = 0;
David Sterba63c4dbd2008-07-28 16:52:44 +0200980 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100981 return 0;
982 }
David Sterbaeb4e5452008-06-06 10:56:35 +0200983
David Sterba63c4dbd2008-07-28 16:52:44 +0200984 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100985
986 /* Send */
987 do_send_packet(hw, packet);
988
989 /* Check if more to send */
David Sterba63c4dbd2008-07-28 16:52:44 +0200990 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +0100991 for (priority = 0; priority < priority_limit; priority++)
992 if (!list_empty(&hw->tx_queue[priority])) {
993 more_to_send = 1;
994 break;
995 }
996
997 if (!more_to_send)
998 hw->tx_queued = 0;
999 }
David Sterba63c4dbd2008-07-28 16:52:44 +02001000 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001001
1002 return more_to_send;
1003}
1004
1005/*
1006 * Send and receive all queued packets.
1007 */
1008static void ipwireless_do_tasklet(unsigned long hw_)
1009{
1010 struct ipw_hardware *hw = (struct ipw_hardware *) hw_;
1011 unsigned long flags;
1012
David Sterba63c4dbd2008-07-28 16:52:44 +02001013 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001014 if (hw->shutting_down) {
David Sterba63c4dbd2008-07-28 16:52:44 +02001015 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001016 return;
1017 }
1018
1019 if (hw->to_setup == 1) {
1020 /*
1021 * Initial setup data sent to hardware
1022 */
1023 hw->to_setup = 2;
David Sterba63c4dbd2008-07-28 16:52:44 +02001024 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001025
1026 ipw_setup_hardware(hw);
1027 ipw_send_setup_packet(hw);
1028
1029 send_pending_packet(hw, PRIO_SETUP + 1);
1030 get_packets_from_hw(hw);
1031 } else {
1032 int priority_limit = get_current_packet_priority(hw);
1033 int again;
1034
David Sterba63c4dbd2008-07-28 16:52:44 +02001035 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001036
1037 do {
1038 again = send_pending_packet(hw, priority_limit);
1039 again |= get_packets_from_hw(hw);
1040 } while (again);
1041 }
1042}
1043
1044/*
1045 * return true if the card is physically present.
1046 */
1047static int is_card_present(struct ipw_hardware *hw)
1048{
1049 if (hw->hw_version == HW_VERSION_1)
1050 return inw(hw->base_port + IOIR) != 0xFFFF;
1051 else
1052 return readl(&hw->memory_info_regs->memreg_card_present) ==
1053 CARD_PRESENT_VALUE;
1054}
1055
1056static irqreturn_t ipwireless_handle_v1_interrupt(int irq,
1057 struct ipw_hardware *hw)
1058{
1059 unsigned short irqn;
1060
1061 irqn = inw(hw->base_port + IOIR);
1062
1063 /* Check if card is present */
1064 if (irqn == 0xFFFF)
1065 return IRQ_NONE;
1066 else if (irqn != 0) {
1067 unsigned short ack = 0;
1068 unsigned long flags;
1069
1070 /* Transmit complete. */
1071 if (irqn & IR_TXINTR) {
1072 ack |= IR_TXINTR;
David Sterba63c4dbd2008-07-28 16:52:44 +02001073 spin_lock_irqsave(&hw->lock, flags);
David Sterbaeb4e5452008-06-06 10:56:35 +02001074 hw->tx_ready = 1;
David Sterba63c4dbd2008-07-28 16:52:44 +02001075 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001076 }
1077 /* Received data */
1078 if (irqn & IR_RXINTR) {
1079 ack |= IR_RXINTR;
David Sterba63c4dbd2008-07-28 16:52:44 +02001080 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001081 hw->rx_ready++;
David Sterba63c4dbd2008-07-28 16:52:44 +02001082 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001083 }
1084 if (ack != 0) {
1085 outw(ack, hw->base_port + IOIR);
1086 tasklet_schedule(&hw->tasklet);
1087 }
1088 return IRQ_HANDLED;
1089 }
1090 return IRQ_NONE;
1091}
1092
1093static void acknowledge_pcmcia_interrupt(struct ipw_hardware *hw)
1094{
1095 unsigned short csr = readw(&hw->memregs_CCR->reg_config_and_status);
1096
1097 csr &= 0xfffd;
1098 writew(csr, &hw->memregs_CCR->reg_config_and_status);
1099}
1100
1101static irqreturn_t ipwireless_handle_v2_v3_interrupt(int irq,
1102 struct ipw_hardware *hw)
1103{
1104 int tx = 0;
1105 int rx = 0;
1106 int rx_repeat = 0;
1107 int try_mem_tx_old;
1108 unsigned long flags;
1109
1110 do {
1111
1112 unsigned short memtx = readw(hw->memreg_tx);
1113 unsigned short memtx_serial;
1114 unsigned short memrxdone =
1115 readw(&hw->memory_info_regs->memreg_rx_done);
1116
1117 try_mem_tx_old = 0;
1118
1119 /* check whether the interrupt was generated by ipwireless card */
1120 if (!(memtx & MEMTX_TX) && !(memrxdone & MEMRX_RX_DONE)) {
1121
1122 /* check if the card uses memreg_tx_old register */
1123 if (hw->memreg_tx == &hw->memory_info_regs->memreg_tx_new) {
1124 memtx = readw(&hw->memory_info_regs->memreg_tx_old);
1125 if (memtx & MEMTX_TX) {
1126 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1127 ": Using memreg_tx_old\n");
1128 hw->memreg_tx =
1129 &hw->memory_info_regs->memreg_tx_old;
1130 } else {
1131 return IRQ_NONE;
1132 }
David Sterbad4c0deb2008-07-28 16:52:33 +02001133 } else
David Sterba099dc4f2008-02-07 10:57:12 +01001134 return IRQ_NONE;
David Sterba099dc4f2008-02-07 10:57:12 +01001135 }
1136
1137 /*
1138 * See if the card is physically present. Note that while it is
1139 * powering up, it appears not to be present.
1140 */
1141 if (!is_card_present(hw)) {
1142 acknowledge_pcmcia_interrupt(hw);
1143 return IRQ_HANDLED;
1144 }
1145
1146 memtx_serial = memtx & (unsigned short) 0xff00;
1147 if (memtx & MEMTX_TX) {
1148 writew(memtx_serial, hw->memreg_tx);
1149
1150 if (hw->serial_number_detected) {
1151 if (memtx_serial != hw->last_memtx_serial) {
1152 hw->last_memtx_serial = memtx_serial;
David Sterba63c4dbd2008-07-28 16:52:44 +02001153 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001154 hw->rx_ready++;
David Sterba63c4dbd2008-07-28 16:52:44 +02001155 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001156 rx = 1;
1157 } else
1158 /* Ignore 'Timer Recovery' duplicates. */
1159 rx_repeat = 1;
1160 } else {
1161 /*
1162 * If a non-zero serial number is seen, then enable
1163 * serial number checking.
1164 */
1165 if (memtx_serial != 0) {
1166 hw->serial_number_detected = 1;
1167 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
1168 ": memreg_tx serial num detected\n");
1169
David Sterba63c4dbd2008-07-28 16:52:44 +02001170 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001171 hw->rx_ready++;
David Sterba63c4dbd2008-07-28 16:52:44 +02001172 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001173 }
1174 rx = 1;
1175 }
1176 }
1177 if (memrxdone & MEMRX_RX_DONE) {
1178 writew(0, &hw->memory_info_regs->memreg_rx_done);
David Sterba63c4dbd2008-07-28 16:52:44 +02001179 spin_lock_irqsave(&hw->lock, flags);
David Sterbaeb4e5452008-06-06 10:56:35 +02001180 hw->tx_ready = 1;
David Sterba63c4dbd2008-07-28 16:52:44 +02001181 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001182 tx = 1;
1183 }
1184 if (tx)
1185 writew(MEMRX_PCINTACKK,
1186 &hw->memory_info_regs->memreg_pc_interrupt_ack);
1187
1188 acknowledge_pcmcia_interrupt(hw);
1189
1190 if (tx || rx)
1191 tasklet_schedule(&hw->tasklet);
1192 else if (!rx_repeat) {
1193 if (hw->memreg_tx == &hw->memory_info_regs->memreg_tx_new) {
1194 if (hw->serial_number_detected)
1195 printk(KERN_WARNING IPWIRELESS_PCCARD_NAME
1196 ": spurious interrupt - new_tx mode\n");
1197 else {
1198 printk(KERN_WARNING IPWIRELESS_PCCARD_NAME
David Sterba622e7132008-07-28 16:52:55 +02001199 ": no valid memreg_tx value - switching to the old memreg_tx\n");
David Sterba099dc4f2008-02-07 10:57:12 +01001200 hw->memreg_tx =
1201 &hw->memory_info_regs->memreg_tx_old;
1202 try_mem_tx_old = 1;
1203 }
1204 } else
1205 printk(KERN_WARNING IPWIRELESS_PCCARD_NAME
1206 ": spurious interrupt - old_tx mode\n");
1207 }
1208
1209 } while (try_mem_tx_old == 1);
1210
1211 return IRQ_HANDLED;
1212}
1213
David Sterba2fc55772008-07-28 16:52:49 +02001214irqreturn_t ipwireless_interrupt(int irq, void *dev_id)
David Sterba099dc4f2008-02-07 10:57:12 +01001215{
Dominik Brodowski5fa91672009-11-08 17:24:46 +01001216 struct ipw_dev *ipw = dev_id;
David Sterba099dc4f2008-02-07 10:57:12 +01001217
Dominik Brodowski5fa91672009-11-08 17:24:46 +01001218 if (ipw->hardware->hw_version == HW_VERSION_1)
1219 return ipwireless_handle_v1_interrupt(irq, ipw->hardware);
David Sterba099dc4f2008-02-07 10:57:12 +01001220 else
Dominik Brodowski5fa91672009-11-08 17:24:46 +01001221 return ipwireless_handle_v2_v3_interrupt(irq, ipw->hardware);
David Sterba099dc4f2008-02-07 10:57:12 +01001222}
1223
1224static void flush_packets_to_hw(struct ipw_hardware *hw)
1225{
1226 int priority_limit;
1227 unsigned long flags;
1228
David Sterba63c4dbd2008-07-28 16:52:44 +02001229 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001230 priority_limit = get_current_packet_priority(hw);
David Sterba63c4dbd2008-07-28 16:52:44 +02001231 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001232
1233 while (send_pending_packet(hw, priority_limit));
1234}
1235
1236static void send_packet(struct ipw_hardware *hw, int priority,
1237 struct ipw_tx_packet *packet)
1238{
1239 unsigned long flags;
1240
David Sterba63c4dbd2008-07-28 16:52:44 +02001241 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001242 list_add_tail(&packet->queue, &hw->tx_queue[priority]);
David Sterbaeb4e5452008-06-06 10:56:35 +02001243 hw->tx_queued++;
David Sterba63c4dbd2008-07-28 16:52:44 +02001244 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001245
1246 flush_packets_to_hw(hw);
1247}
1248
1249/* Create data packet, non-atomic allocation */
1250static void *alloc_data_packet(int data_size,
1251 unsigned char dest_addr,
1252 unsigned char protocol)
1253{
1254 struct ipw_tx_packet *packet = kzalloc(
1255 sizeof(struct ipw_tx_packet) + data_size,
1256 GFP_ATOMIC);
1257
1258 if (!packet)
1259 return NULL;
1260
1261 INIT_LIST_HEAD(&packet->queue);
1262 packet->dest_addr = dest_addr;
1263 packet->protocol = protocol;
1264 packet->length = data_size;
1265
1266 return packet;
1267}
1268
1269static void *alloc_ctrl_packet(int header_size,
1270 unsigned char dest_addr,
1271 unsigned char protocol,
1272 unsigned char sig_no)
1273{
1274 /*
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
1277 * common struct
1278 */
1279 struct ipw_control_packet *packet = kzalloc(header_size, GFP_ATOMIC);
1280
1281 if (!packet)
1282 return NULL;
1283
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;
1289
1290 return packet;
1291}
1292
1293int ipwireless_send_packet(struct ipw_hardware *hw, unsigned int channel_idx,
David Sterbaff3e9902008-07-28 16:53:11 +02001294 const unsigned char *data, unsigned int length,
David Sterba099dc4f2008-02-07 10:57:12 +01001295 void (*callback) (void *cb, unsigned int length),
1296 void *callback_data)
1297{
1298 struct ipw_tx_packet *packet;
1299
David Sterbad4c0deb2008-07-28 16:52:33 +02001300 packet = alloc_data_packet(length, (channel_idx + 1),
1301 TL_PROTOCOLID_COM_DATA);
David Sterba099dc4f2008-02-07 10:57:12 +01001302 if (!packet)
1303 return -ENOMEM;
1304 packet->packet_callback = callback;
1305 packet->callback_data = callback_data;
David Sterbad4c0deb2008-07-28 16:52:33 +02001306 memcpy((unsigned char *) packet + sizeof(struct ipw_tx_packet), data,
1307 length);
David Sterba099dc4f2008-02-07 10:57:12 +01001308
1309 send_packet(hw, PRIO_DATA, packet);
1310 return 0;
1311}
1312
1313static int set_control_line(struct ipw_hardware *hw, int prio,
1314 unsigned int channel_idx, int line, int state)
1315{
1316 struct ipw_control_packet *packet;
1317 int protocolid = TL_PROTOCOLID_COM_CTRL;
1318
1319 if (prio == PRIO_SETUP)
1320 protocolid = TL_PROTOCOLID_SETUP;
1321
1322 packet = alloc_ctrl_packet(sizeof(struct ipw_control_packet),
David Sterbad4c0deb2008-07-28 16:52:33 +02001323 (channel_idx + 1), protocolid, line);
David Sterba099dc4f2008-02-07 10:57:12 +01001324 if (!packet)
1325 return -ENOMEM;
1326 packet->header.length = sizeof(struct ipw_control_packet_body);
David Sterbad4c0deb2008-07-28 16:52:33 +02001327 packet->body.value = (state == 0 ? 0 : 1);
David Sterba099dc4f2008-02-07 10:57:12 +01001328 send_packet(hw, prio, &packet->header);
1329 return 0;
1330}
1331
1332
1333static int set_DTR(struct ipw_hardware *hw, int priority,
1334 unsigned int channel_idx, int state)
1335{
1336 if (state != 0)
1337 hw->control_lines[channel_idx] |= IPW_CONTROL_LINE_DTR;
1338 else
1339 hw->control_lines[channel_idx] &= ~IPW_CONTROL_LINE_DTR;
1340
1341 return set_control_line(hw, priority, channel_idx, COMCTRL_DTR, state);
1342}
1343
1344static int set_RTS(struct ipw_hardware *hw, int priority,
1345 unsigned int channel_idx, int state)
1346{
1347 if (state != 0)
1348 hw->control_lines[channel_idx] |= IPW_CONTROL_LINE_RTS;
1349 else
1350 hw->control_lines[channel_idx] &= ~IPW_CONTROL_LINE_RTS;
1351
1352 return set_control_line(hw, priority, channel_idx, COMCTRL_RTS, state);
1353}
1354
1355int ipwireless_set_DTR(struct ipw_hardware *hw, unsigned int channel_idx,
1356 int state)
1357{
1358 return set_DTR(hw, PRIO_CTRL, channel_idx, state);
1359}
1360
1361int ipwireless_set_RTS(struct ipw_hardware *hw, unsigned int channel_idx,
1362 int state)
1363{
1364 return set_RTS(hw, PRIO_CTRL, channel_idx, state);
1365}
1366
1367struct ipw_setup_get_version_query_packet {
1368 struct ipw_tx_packet header;
1369 struct tl_setup_get_version_qry body;
1370};
1371
1372struct ipw_setup_config_packet {
1373 struct ipw_tx_packet header;
1374 struct tl_setup_config_msg body;
1375};
1376
1377struct ipw_setup_config_done_packet {
1378 struct ipw_tx_packet header;
1379 struct tl_setup_config_done_msg body;
1380};
1381
1382struct ipw_setup_open_packet {
1383 struct ipw_tx_packet header;
1384 struct tl_setup_open_msg body;
1385};
1386
1387struct ipw_setup_info_packet {
1388 struct ipw_tx_packet header;
1389 struct tl_setup_info_msg body;
1390};
1391
1392struct ipw_setup_reboot_msg_ack {
1393 struct ipw_tx_packet header;
1394 struct TlSetupRebootMsgAck body;
1395};
1396
1397/* This handles the actual initialization of the card */
1398static void __handle_setup_get_version_rsp(struct ipw_hardware *hw)
1399{
1400 struct ipw_setup_config_packet *config_packet;
1401 struct ipw_setup_config_done_packet *config_done_packet;
1402 struct ipw_setup_open_packet *open_packet;
1403 struct ipw_setup_info_packet *info_packet;
1404 int port;
1405 unsigned int channel_idx;
1406
1407 /* generate config packet */
1408 for (port = 1; port <= NL_NUM_OF_ADDRESSES; port++) {
1409 config_packet = alloc_ctrl_packet(
1410 sizeof(struct ipw_setup_config_packet),
1411 ADDR_SETUP_PROT,
1412 TL_PROTOCOLID_SETUP,
1413 TL_SETUP_SIGNO_CONFIG_MSG);
1414 if (!config_packet)
1415 goto exit_nomem;
1416 config_packet->header.length = sizeof(struct tl_setup_config_msg);
1417 config_packet->body.port_no = port;
1418 config_packet->body.prio_data = PRIO_DATA;
1419 config_packet->body.prio_ctrl = PRIO_CTRL;
1420 send_packet(hw, PRIO_SETUP, &config_packet->header);
1421 }
1422 config_done_packet = alloc_ctrl_packet(
1423 sizeof(struct ipw_setup_config_done_packet),
1424 ADDR_SETUP_PROT,
1425 TL_PROTOCOLID_SETUP,
1426 TL_SETUP_SIGNO_CONFIG_DONE_MSG);
1427 if (!config_done_packet)
1428 goto exit_nomem;
1429 config_done_packet->header.length = sizeof(struct tl_setup_config_done_msg);
1430 send_packet(hw, PRIO_SETUP, &config_done_packet->header);
1431
1432 /* generate open packet */
1433 for (port = 1; port <= NL_NUM_OF_ADDRESSES; port++) {
1434 open_packet = alloc_ctrl_packet(
1435 sizeof(struct ipw_setup_open_packet),
1436 ADDR_SETUP_PROT,
1437 TL_PROTOCOLID_SETUP,
1438 TL_SETUP_SIGNO_OPEN_MSG);
1439 if (!open_packet)
1440 goto exit_nomem;
1441 open_packet->header.length = sizeof(struct tl_setup_open_msg);
1442 open_packet->body.port_no = port;
1443 send_packet(hw, PRIO_SETUP, &open_packet->header);
1444 }
1445 for (channel_idx = 0;
1446 channel_idx < NL_NUM_OF_ADDRESSES; channel_idx++) {
1447 int ret;
1448
1449 ret = set_DTR(hw, PRIO_SETUP, channel_idx,
1450 (hw->control_lines[channel_idx] &
1451 IPW_CONTROL_LINE_DTR) != 0);
1452 if (ret) {
1453 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
1454 ": error setting DTR (%d)\n", ret);
1455 return;
1456 }
1457
Alan52df3d52015-02-19 21:43:35 +00001458 ret = set_RTS(hw, PRIO_SETUP, channel_idx,
David Sterba099dc4f2008-02-07 10:57:12 +01001459 (hw->control_lines [channel_idx] &
1460 IPW_CONTROL_LINE_RTS) != 0);
1461 if (ret) {
1462 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
1463 ": error setting RTS (%d)\n", ret);
1464 return;
1465 }
1466 }
1467 /*
1468 * For NDIS we assume that we are using sync PPP frames, for COM async.
1469 * This driver uses NDIS mode too. We don't bother with translation
1470 * from async -> sync PPP.
1471 */
1472 info_packet = alloc_ctrl_packet(sizeof(struct ipw_setup_info_packet),
1473 ADDR_SETUP_PROT,
1474 TL_PROTOCOLID_SETUP,
1475 TL_SETUP_SIGNO_INFO_MSG);
1476 if (!info_packet)
1477 goto exit_nomem;
1478 info_packet->header.length = sizeof(struct tl_setup_info_msg);
1479 info_packet->body.driver_type = NDISWAN_DRIVER;
1480 info_packet->body.major_version = NDISWAN_DRIVER_MAJOR_VERSION;
1481 info_packet->body.minor_version = NDISWAN_DRIVER_MINOR_VERSION;
1482 send_packet(hw, PRIO_SETUP, &info_packet->header);
1483
1484 /* Initialization is now complete, so we clear the 'to_setup' flag */
1485 hw->to_setup = 0;
1486
1487 return;
1488
1489exit_nomem:
1490 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
1491 ": not enough memory to alloc control packet\n");
1492 hw->to_setup = -1;
1493}
1494
1495static void handle_setup_get_version_rsp(struct ipw_hardware *hw,
1496 unsigned char vers_no)
1497{
1498 del_timer(&hw->setup_timer);
1499 hw->initializing = 0;
1500 printk(KERN_INFO IPWIRELESS_PCCARD_NAME ": card is ready.\n");
1501
1502 if (vers_no == TL_SETUP_VERSION)
1503 __handle_setup_get_version_rsp(hw);
1504 else
David Sterba622e7132008-07-28 16:52:55 +02001505 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
David Sterba099dc4f2008-02-07 10:57:12 +01001506 ": invalid hardware version no %u\n",
1507 (unsigned int) vers_no);
1508}
1509
1510static void ipw_send_setup_packet(struct ipw_hardware *hw)
1511{
1512 struct ipw_setup_get_version_query_packet *ver_packet;
1513
1514 ver_packet = alloc_ctrl_packet(
1515 sizeof(struct ipw_setup_get_version_query_packet),
1516 ADDR_SETUP_PROT, TL_PROTOCOLID_SETUP,
1517 TL_SETUP_SIGNO_GET_VERSION_QRY);
YueHaibing33e2aa32019-01-30 18:30:51 +08001518 if (!ver_packet)
1519 return;
David Sterba099dc4f2008-02-07 10:57:12 +01001520 ver_packet->header.length = sizeof(struct tl_setup_get_version_qry);
1521
1522 /*
1523 * Response is handled in handle_received_SETUP_packet
1524 */
1525 send_packet(hw, PRIO_SETUP, &ver_packet->header);
1526}
1527
1528static void handle_received_SETUP_packet(struct ipw_hardware *hw,
1529 unsigned int address,
David Sterbaff3e9902008-07-28 16:53:11 +02001530 const unsigned char *data, int len,
David Sterba099dc4f2008-02-07 10:57:12 +01001531 int is_last)
1532{
David Sterbaff3e9902008-07-28 16:53:11 +02001533 const union ipw_setup_rx_msg *rx_msg = (const union ipw_setup_rx_msg *) data;
David Sterba099dc4f2008-02-07 10:57:12 +01001534
1535 if (address != ADDR_SETUP_PROT) {
1536 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1537 ": setup packet has bad address %d\n", address);
1538 return;
1539 }
1540
1541 switch (rx_msg->sig_no) {
1542 case TL_SETUP_SIGNO_GET_VERSION_RSP:
1543 if (hw->to_setup)
1544 handle_setup_get_version_rsp(hw,
1545 rx_msg->version_rsp_msg.version);
1546 break;
1547
1548 case TL_SETUP_SIGNO_OPEN_MSG:
1549 if (ipwireless_debug) {
1550 unsigned int channel_idx = rx_msg->open_msg.port_no - 1;
1551
1552 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1553 ": OPEN_MSG [channel %u] reply received\n",
1554 channel_idx);
1555 }
1556 break;
1557
1558 case TL_SETUP_SIGNO_INFO_MSG_ACK:
1559 if (ipwireless_debug)
1560 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
1561 ": card successfully configured as NDISWAN\n");
1562 break;
1563
1564 case TL_SETUP_SIGNO_REBOOT_MSG:
1565 if (hw->to_setup)
1566 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
1567 ": Setup not completed - ignoring reboot msg\n");
1568 else {
1569 struct ipw_setup_reboot_msg_ack *packet;
1570
1571 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
1572 ": Acknowledging REBOOT message\n");
1573 packet = alloc_ctrl_packet(
1574 sizeof(struct ipw_setup_reboot_msg_ack),
1575 ADDR_SETUP_PROT, TL_PROTOCOLID_SETUP,
1576 TL_SETUP_SIGNO_REBOOT_MSG_ACK);
Sudip Mukherjee76bbdcb2016-04-06 12:25:39 +01001577 if (!packet) {
1578 pr_err(IPWIRELESS_PCCARD_NAME
1579 ": Not enough memory to send reboot packet");
1580 break;
1581 }
David Sterba099dc4f2008-02-07 10:57:12 +01001582 packet->header.length =
1583 sizeof(struct TlSetupRebootMsgAck);
1584 send_packet(hw, PRIO_SETUP, &packet->header);
1585 if (hw->reboot_callback)
1586 hw->reboot_callback(hw->reboot_callback_data);
1587 }
1588 break;
1589
1590 default:
1591 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1592 ": unknown setup message %u received\n",
1593 (unsigned int) rx_msg->sig_no);
1594 }
1595}
1596
1597static void do_close_hardware(struct ipw_hardware *hw)
1598{
1599 unsigned int irqn;
1600
1601 if (hw->hw_version == HW_VERSION_1) {
1602 /* Disable TX and RX interrupts. */
1603 outw(0, hw->base_port + IOIER);
1604
1605 /* Acknowledge any outstanding interrupt requests */
1606 irqn = inw(hw->base_port + IOIR);
1607 if (irqn & IR_TXINTR)
1608 outw(IR_TXINTR, hw->base_port + IOIR);
1609 if (irqn & IR_RXINTR)
1610 outw(IR_RXINTR, hw->base_port + IOIR);
1611
1612 synchronize_irq(hw->irq);
1613 }
1614}
1615
1616struct ipw_hardware *ipwireless_hardware_create(void)
1617{
1618 int i;
1619 struct ipw_hardware *hw =
1620 kzalloc(sizeof(struct ipw_hardware), GFP_KERNEL);
1621
1622 if (!hw)
1623 return NULL;
1624
1625 hw->irq = -1;
1626 hw->initializing = 1;
1627 hw->tx_ready = 1;
1628 hw->rx_bytes_queued = 0;
1629 hw->rx_pool_size = 0;
1630 hw->last_memtx_serial = (unsigned short) 0xffff;
1631 for (i = 0; i < NL_NUM_OF_PRIORITIES; i++)
1632 INIT_LIST_HEAD(&hw->tx_queue[i]);
1633
1634 INIT_LIST_HEAD(&hw->rx_queue);
1635 INIT_LIST_HEAD(&hw->rx_pool);
David Sterba63c4dbd2008-07-28 16:52:44 +02001636 spin_lock_init(&hw->lock);
David Sterba099dc4f2008-02-07 10:57:12 +01001637 tasklet_init(&hw->tasklet, ipwireless_do_tasklet, (unsigned long) hw);
1638 INIT_WORK(&hw->work_rx, ipw_receive_data_work);
1639 setup_timer(&hw->setup_timer, ipwireless_setup_timer,
1640 (unsigned long) hw);
1641
1642 return hw;
1643}
1644
1645void ipwireless_init_hardware_v1(struct ipw_hardware *hw,
1646 unsigned int base_port,
1647 void __iomem *attr_memory,
1648 void __iomem *common_memory,
1649 int is_v2_card,
1650 void (*reboot_callback) (void *data),
1651 void *reboot_callback_data)
1652{
1653 if (hw->removed) {
1654 hw->removed = 0;
1655 enable_irq(hw->irq);
1656 }
1657 hw->base_port = base_port;
David Sterbad4c0deb2008-07-28 16:52:33 +02001658 hw->hw_version = (is_v2_card ? HW_VERSION_2 : HW_VERSION_1);
1659 hw->ll_mtu = (hw->hw_version == HW_VERSION_1 ? LL_MTU_V1 : LL_MTU_V2);
David Sterba099dc4f2008-02-07 10:57:12 +01001660 hw->memregs_CCR = (struct MEMCCR __iomem *)
1661 ((unsigned short __iomem *) attr_memory + 0x200);
1662 hw->memory_info_regs = (struct MEMINFREG __iomem *) common_memory;
1663 hw->memreg_tx = &hw->memory_info_regs->memreg_tx_new;
1664 hw->reboot_callback = reboot_callback;
1665 hw->reboot_callback_data = reboot_callback_data;
1666}
1667
1668void ipwireless_init_hardware_v2_v3(struct ipw_hardware *hw)
1669{
1670 hw->initializing = 1;
1671 hw->init_loops = 0;
1672 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1673 ": waiting for card to start up...\n");
1674 ipwireless_setup_timer((unsigned long) hw);
1675}
1676
1677static void ipwireless_setup_timer(unsigned long data)
1678{
1679 struct ipw_hardware *hw = (struct ipw_hardware *) data;
1680
1681 hw->init_loops++;
1682
1683 if (hw->init_loops == TL_SETUP_MAX_VERSION_QRY &&
1684 hw->hw_version == HW_VERSION_2 &&
1685 hw->memreg_tx == &hw->memory_info_regs->memreg_tx_new) {
1686 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1687 ": failed to startup using TX2, trying TX\n");
1688
1689 hw->memreg_tx = &hw->memory_info_regs->memreg_tx_old;
1690 hw->init_loops = 0;
1691 }
1692 /* Give up after a certain number of retries */
1693 if (hw->init_loops == TL_SETUP_MAX_VERSION_QRY) {
1694 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
1695 ": card failed to start up!\n");
1696 hw->initializing = 0;
1697 } else {
1698 /* Do not attempt to write to the board if it is not present. */
1699 if (is_card_present(hw)) {
1700 unsigned long flags;
1701
David Sterba63c4dbd2008-07-28 16:52:44 +02001702 spin_lock_irqsave(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001703 hw->to_setup = 1;
1704 hw->tx_ready = 1;
David Sterba63c4dbd2008-07-28 16:52:44 +02001705 spin_unlock_irqrestore(&hw->lock, flags);
David Sterba099dc4f2008-02-07 10:57:12 +01001706 tasklet_schedule(&hw->tasklet);
1707 }
1708
1709 mod_timer(&hw->setup_timer,
1710 jiffies + msecs_to_jiffies(TL_SETUP_VERSION_QRY_TMO));
1711 }
1712}
1713
1714/*
1715 * Stop any interrupts from executing so that, once this function returns,
1716 * other layers of the driver can be sure they won't get any more callbacks.
1717 * Thus must be called on a proper process context.
1718 */
1719void ipwireless_stop_interrupts(struct ipw_hardware *hw)
1720{
1721 if (!hw->shutting_down) {
1722 /* Tell everyone we are going down. */
1723 hw->shutting_down = 1;
1724 del_timer(&hw->setup_timer);
1725
1726 /* Prevent the hardware from sending any more interrupts */
1727 do_close_hardware(hw);
1728 }
1729}
1730
1731void ipwireless_hardware_free(struct ipw_hardware *hw)
1732{
1733 int i;
1734 struct ipw_rx_packet *rp, *rq;
1735 struct ipw_tx_packet *tp, *tq;
1736
1737 ipwireless_stop_interrupts(hw);
1738
Tejun Heo43829732012-08-20 14:51:24 -07001739 flush_work(&hw->work_rx);
David Sterba099dc4f2008-02-07 10:57:12 +01001740
1741 for (i = 0; i < NL_NUM_OF_ADDRESSES; i++)
Syam Sidhardhanf3c82792013-03-06 01:03:22 +05301742 kfree(hw->packet_assembler[i]);
David Sterba099dc4f2008-02-07 10:57:12 +01001743
1744 for (i = 0; i < NL_NUM_OF_PRIORITIES; i++)
1745 list_for_each_entry_safe(tp, tq, &hw->tx_queue[i], queue) {
1746 list_del(&tp->queue);
1747 kfree(tp);
1748 }
1749
1750 list_for_each_entry_safe(rp, rq, &hw->rx_queue, queue) {
1751 list_del(&rp->queue);
1752 kfree(rp);
1753 }
1754
1755 list_for_each_entry_safe(rp, rq, &hw->rx_pool, queue) {
1756 list_del(&rp->queue);
1757 kfree(rp);
1758 }
1759 kfree(hw);
1760}
1761
1762/*
1763 * Associate the specified network with this hardware, so it will receive events
1764 * from it.
1765 */
1766void ipwireless_associate_network(struct ipw_hardware *hw,
1767 struct ipw_network *network)
1768{
1769 hw->network = network;
1770}