1 /**************************************************************************
2 Etherboot - BOOTP/TFTP Bootstrap Program
3 Prism2 NIC driver for Etherboot
5 Written by Michael Brown of Fen Systems Ltd
7 ***************************************************************************/
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2, or (at
13 * your option) any later version.
16 #include "etherboot.h"
19 #include <gpxe/ethernet.h>
23 * Leave blank in order to connect to any available SSID
26 static const char hardcoded_ssid
[] = "";
29 * Maximum number of info packets to wait for on a join attempt.
30 * Some APs (including the Linksys WAP11) will send a "you are disconnected" packet
31 * before sending the "you are connected" packet, if the card has previously been
34 * 2 is probably a sensible value, but YMMV.
37 #define MAX_JOIN_INFO_COUNT 2
40 * Type of Prism2 interface to support
41 * If not already defined, select PLX
44 #define WLAN_HOSTIF WLAN_PLX
48 * Include wlan_compat, p80211 and hfa384x header files from Linux Prism2 driver
49 * We need to hack some defines in order to avoid compiling kernel-specific routines
52 #define __LINUX_WLAN__
55 #include "wlan_compat.h"
56 #include "p80211hdr.h"
58 #define BAP_TIMEOUT ( 5000 )
61 * A few hacks to make the coding environment more Linux-like. This makes it somewhat
62 * quicker to convert code from the Linux Prism2 driver.
66 #define __le16_to_cpu(x) (x)
67 #define __le32_to_cpu(x) (x)
68 #define __cpu_to_le16(x) (x)
69 #define __cpu_to_le32(x) (x)
72 * PLX9052 PCI register offsets
73 * Taken from PLX9052 datasheet available from http://www.plxtech.com/download/9052/databook/9052db-20.pdf
76 #define PLX_LOCAL_CONFIG_REGISTER_BASE ( PCI_BASE_ADDRESS_1 )
77 #define PLX_LOCAL_ADDRESS_SPACE_0_BASE ( PCI_BASE_ADDRESS_2 )
78 #define PLX_LOCAL_ADDRESS_SPACE_1_BASE ( PCI_BASE_ADDRESS_3 )
79 #define PLX_LOCAL_ADDRESS_SPACE_2_BASE ( PCI_BASE_ADDRESS_4 )
80 #define PLX_LOCAL_ADDRESS_SPACE_3_BASE ( PCI_BASE_ADDRESS_5 )
82 #define PRISM2_PLX_ATTR_MEM_BASE ( PLX_LOCAL_ADDRESS_SPACE_0_BASE )
83 #define PRISM2_PLX_IO_BASE ( PLX_LOCAL_ADDRESS_SPACE_1_BASE )
85 #define PRISM2_PCI_MEM_BASE ( PCI_BASE_ADDRESS_0 )
89 * Taken from cistpl.h in pcmcia-cs
92 #define CISTPL_VERS_1 ( 0x15 )
93 #define CISTPL_END ( 0xff )
95 #define CIS_STEP ( 2 )
96 #define CISTPL_HEADER_LEN ( 2 * CIS_STEP )
97 #define CISTPL_LEN_OFF ( 1 * CIS_STEP )
98 #define CISTPL_VERS_1_STR_OFF ( 4 * CIS_STEP )
102 * Taken from prism2sta.c in linux-wlan-ng
105 #define COR_OFFSET ( 0x3e0 ) /* COR attribute offset of Prism2 PC card */
106 #define COR_VALUE ( 0x41 ) /* Enable PC card with irq in level trigger (but interrupts disabled) */
108 /* NIC specific static variables */
110 /* The hfa384x_t structure is used extensively in the Linux driver but is ifdef'd out in our include since __KERNEL__ is not defined.
111 * This is a dummy version that contains only the fields we are interested in.
114 typedef struct hfa384x
119 UINT16 status
; /* in host order */
120 UINT16 resp0
; /* in host order */
121 UINT16 resp1
; /* in host order */
122 UINT16 resp2
; /* in host order */
123 UINT8 bssid
[WLAN_BSSID_LEN
];
126 /* The global instance of the hardware (i.e. where we store iobase and membase, in the absence of anywhere better to put them */
127 static hfa384x_t hw_global
= {
128 0, 0, 0, 0, 0, 0, 0, {0,0,0,0,0,0}
132 * 802.11 headers in addition to those in hfa384x_tx_frame_t (LLC and SNAP)
133 * Taken from p80211conv.h
136 typedef struct wlan_llc
138 UINT8 dsap __WLAN_ATTRIB_PACK__
;
139 UINT8 ssap __WLAN_ATTRIB_PACK__
;
140 UINT8 ctl __WLAN_ATTRIB_PACK__
;
141 } __WLAN_ATTRIB_PACK__ wlan_llc_t
;
143 static const wlan_llc_t wlan_llc_snap
= { 0xaa, 0xaa, 0x03 }; /* LLC header indicating SNAP (?) */
145 #define WLAN_IEEE_OUI_LEN 3
146 typedef struct wlan_snap
148 UINT8 oui
[WLAN_IEEE_OUI_LEN
] __WLAN_ATTRIB_PACK__
;
149 UINT16 type __WLAN_ATTRIB_PACK__
;
150 } __WLAN_ATTRIB_PACK__ wlan_snap_t
;
152 typedef struct wlan_80211hdr
159 * Function prototypes
163 * Hardware-level hfa384x functions
164 * These are based on the ones in hfa384x.h (which are ifdef'd out since __KERNEL__ is not defined).
165 * Basically, these functions are the result of hand-evaluating all the ifdefs and defines in the hfa384x.h versions.
168 /* Retrieve the value of one of the MAC registers. */
169 static inline UINT16
hfa384x_getreg( hfa384x_t
*hw
, UINT reg
)
171 #if (WLAN_HOSTIF == WLAN_PLX)
172 return inw ( hw
->iobase
+ reg
);
173 #elif (WLAN_HOSTIF == WLAN_PCI)
174 return readw ( hw
->membase
+ reg
);
178 /* Set the value of one of the MAC registers. */
179 static inline void hfa384x_setreg( hfa384x_t
*hw
, UINT16 val
, UINT reg
)
181 #if (WLAN_HOSTIF == WLAN_PLX)
182 outw ( val
, hw
->iobase
+ reg
);
183 #elif (WLAN_HOSTIF == WLAN_PCI)
184 writew ( val
, hw
->membase
+ reg
);
191 * Etherboot is i386 only, so swap and noswap are the same...
193 static inline UINT16
hfa384x_getreg_noswap( hfa384x_t
*hw
, UINT reg
)
195 return hfa384x_getreg ( hw
, reg
);
197 static inline void hfa384x_setreg_noswap( hfa384x_t
*hw
, UINT16 val
, UINT reg
)
199 hfa384x_setreg ( hw
, val
, reg
);
203 * Low-level hfa384x functions
204 * These are based on the ones in hfa384x.c, modified to work in the Etherboot environment.
210 * Waits for availability of the Command register, then
211 * issues the given command. Then polls the Evstat register
212 * waiting for command completion.
214 * hw device structure
215 * cmd Command in host order
216 * parm0 Parameter0 in host order
217 * parm1 Parameter1 in host order
218 * parm2 Parameter2 in host order
221 * >0 command indicated error, Status and Resp0-2 are
224 static int hfa384x_docmd_wait( hfa384x_t
*hw
, UINT16 cmd
, UINT16 parm0
, UINT16 parm1
, UINT16 parm2
)
229 /* wait for the busy bit to clear */
231 reg
= hfa384x_getreg(hw
, HFA384x_CMD
);
232 while ( HFA384x_CMD_ISBUSY(reg
) && (counter
< 10) ) {
233 reg
= hfa384x_getreg(hw
, HFA384x_CMD
);
237 if (HFA384x_CMD_ISBUSY(reg
)) {
238 printf("hfa384x_cmd timeout(1), reg=0x%0hx.\n", reg
);
242 /* busy bit clear, write command */
243 hfa384x_setreg(hw
, parm0
, HFA384x_PARAM0
);
244 hfa384x_setreg(hw
, parm1
, HFA384x_PARAM1
);
245 hfa384x_setreg(hw
, parm2
, HFA384x_PARAM2
);
247 hfa384x_setreg(hw
, cmd
, HFA384x_CMD
);
249 /* Now wait for completion */
251 reg
= hfa384x_getreg(hw
, HFA384x_EVSTAT
);
252 /* Initialization is the problem. It takes about
253 100ms. "normal" commands are typically is about
254 200-400 us (I've never seen less than 200). Longer
255 is better so that we're not hammering the bus. */
256 while ( !HFA384x_EVSTAT_ISCMD(reg
) && (counter
< 5000)) {
257 reg
= hfa384x_getreg(hw
, HFA384x_EVSTAT
);
261 if ( ! HFA384x_EVSTAT_ISCMD(reg
) ) {
262 printf("hfa384x_cmd timeout(2), reg=0x%0hx.\n", reg
);
266 /* Read status and response */
267 hw
->status
= hfa384x_getreg(hw
, HFA384x_STATUS
);
268 hw
->resp0
= hfa384x_getreg(hw
, HFA384x_RESP0
);
269 hw
->resp1
= hfa384x_getreg(hw
, HFA384x_RESP1
);
270 hw
->resp2
= hfa384x_getreg(hw
, HFA384x_RESP2
);
271 hfa384x_setreg(hw
, HFA384x_EVACK_CMD
, HFA384x_EVACK
);
272 return HFA384x_STATUS_RESULT_GET(hw
->status
);
276 * Prepare BAP for access. Assigns FID and RID, sets offset register
277 * and waits for BAP to become available.
280 * hw device structure
281 * id FID or RID, destined for the select register (host order)
282 * offset An _even_ offset into the buffer for the given FID/RID.
286 static int hfa384x_prepare_bap(hfa384x_t
*hw
, UINT16 id
, UINT16 offset
)
292 /* Validate offset, buf, and len */
293 if ( (offset
> HFA384x_BAP_OFFSET_MAX
) || (offset
% 2) ) {
296 /* Write fid/rid and offset */
297 hfa384x_setreg(hw
, id
, HFA384x_SELECT0
);
299 hfa384x_setreg(hw
, offset
, HFA384x_OFFSET0
);
300 /* Wait for offset[busy] to clear (see BAP_TIMEOUT) */
303 reg
= hfa384x_getreg(hw
, HFA384x_OFFSET0
);
304 if ( i
> 0 ) udelay(2);
306 } while ( i
< BAP_TIMEOUT
&& HFA384x_OFFSET_ISBUSY(reg
));
307 if ( i
>= BAP_TIMEOUT
) {
310 } else if ( HFA384x_OFFSET_ISERR(reg
) ){
319 * Copy data from BAP to memory.
322 * hw device structure
323 * id FID or RID, destined for the select register (host order)
324 * offset An _even_ offset into the buffer for the given FID/RID.
325 * buf ptr to array of bytes
326 * len length of data to transfer in bytes
330 static int hfa384x_copy_from_bap(hfa384x_t
*hw
, UINT16 id
, UINT16 offset
,
334 UINT8
*d
= (UINT8
*)buf
;
339 result
= hfa384x_prepare_bap ( hw
, id
, offset
);
341 /* Read even(len) buf contents from data reg */
342 for ( i
= 0; i
< (len
& 0xfffe); i
+=2 ) {
343 *(UINT16
*)(&(d
[i
])) = hfa384x_getreg_noswap(hw
, HFA384x_DATA0
);
345 /* If len odd, handle last byte */
347 reg
= hfa384x_getreg_noswap(hw
, HFA384x_DATA0
);
348 d
[len
-1] = ((UINT8
*)(®
))[0];
352 printf ( "copy_from_bap(%#hx, %#hx, %d) failed, result=%#hx\n", id
, offset
, len
, result
);
358 * Copy data from memory to BAP.
361 * hw device structure
362 * id FID or RID, destined for the select register (host order)
363 * offset An _even_ offset into the buffer for the given FID/RID.
364 * buf ptr to array of bytes
365 * len length of data to transfer in bytes
369 static int hfa384x_copy_to_bap(hfa384x_t
*hw
, UINT16 id
, UINT16 offset
,
373 UINT8
*d
= (UINT8
*)buf
;
378 result
= hfa384x_prepare_bap ( hw
, id
, offset
);
380 /* Write even(len) buf contents to data reg */
381 for ( i
= 0; i
< (len
& 0xfffe); i
+=2 ) {
382 hfa384x_setreg_noswap(hw
, *(UINT16
*)(&(d
[i
])), HFA384x_DATA0
);
384 /* If len odd, handle last byte */
386 savereg
= hfa384x_getreg_noswap(hw
, HFA384x_DATA0
);
387 result
= hfa384x_prepare_bap ( hw
, id
, offset
+ (len
& 0xfffe) );
389 ((UINT8
*)(&savereg
))[0] = d
[len
-1];
390 hfa384x_setreg_noswap(hw
, savereg
, HFA384x_DATA0
);
395 printf ( "copy_to_bap(%#hx, %#hx, %d) failed, result=%#hx\n", id
, offset
, len
, result
);
401 * Request a given record to be copied to/from the record buffer.
404 * hw device structure
405 * write [0|1] copy the record buffer to the given
406 * configuration record. (host order)
407 * rid RID of the record to read/write. (host order)
412 static inline int hfa384x_cmd_access(hfa384x_t
*hw
, UINT16 write
, UINT16 rid
)
414 return hfa384x_docmd_wait(hw
, HFA384x_CMD_CMDCODE_SET(HFA384x_CMDCODE_ACCESS
) | HFA384x_CMD_WRITE_SET(write
), rid
, 0, 0);
418 * Performs the sequence necessary to read a config/info item.
421 * hw device structure
422 * rid config/info record id (host order)
423 * buf host side record buffer. Upon return it will
424 * contain the body portion of the record (minus the
426 * len buffer length (in bytes, should match record length)
431 static int hfa384x_drvr_getconfig(hfa384x_t
*hw
, UINT16 rid
, void *buf
, UINT16 len
)
436 /* Request read of RID */
437 result
= hfa384x_cmd_access( hw
, 0, rid
);
439 printf("Call to hfa384x_cmd_access failed\n");
442 /* Copy out record length */
443 result
= hfa384x_copy_from_bap( hw
, rid
, 0, &rec
, sizeof(rec
));
447 /* Validate the record length */
448 if ( ((hfa384x2host_16(rec
.reclen
)-1)*2) != len
) { /* note body len calculation in bytes */
449 printf ( "RID len mismatch, rid=%#hx hlen=%d fwlen=%d\n", rid
, len
, (hfa384x2host_16(rec
.reclen
)-1)*2);
452 /* Copy out record data */
453 result
= hfa384x_copy_from_bap( hw
, rid
, sizeof(rec
), buf
, len
);
458 * Performs the sequence necessary to read a 16/32 bit config/info item
459 * and convert it to host order.
462 * hw device structure
463 * rid config/info record id (in host order)
464 * val ptr to 16/32 bit buffer to receive value (in host order)
469 #if 0 /* Not actually used anywhere */
470 static int hfa384x_drvr_getconfig16(hfa384x_t
*hw
, UINT16 rid
, void *val
)
473 result
= hfa384x_drvr_getconfig(hw
, rid
, val
, sizeof(UINT16
));
475 *((UINT16
*)val
) = hfa384x2host_16(*((UINT16
*)val
));
480 #if 0 /* Not actually used anywhere */
481 static int hfa384x_drvr_getconfig32(hfa384x_t
*hw
, UINT16 rid
, void *val
)
484 result
= hfa384x_drvr_getconfig(hw
, rid
, val
, sizeof(UINT32
));
486 *((UINT32
*)val
) = hfa384x2host_32(*((UINT32
*)val
));
493 * Performs the sequence necessary to write a config/info item.
496 * hw device structure
497 * rid config/info record id (in host order)
498 * buf host side record buffer
499 * len buffer length (in bytes)
504 static int hfa384x_drvr_setconfig(hfa384x_t
*hw
, UINT16 rid
, void *buf
, UINT16 len
)
509 rec
.rid
= host2hfa384x_16(rid
);
510 rec
.reclen
= host2hfa384x_16((len
/2) + 1); /* note conversion to words, +1 for rid field */
511 /* write the record header */
512 result
= hfa384x_copy_to_bap( hw
, rid
, 0, &rec
, sizeof(rec
));
514 printf("Failure writing record header\n");
517 /* write the record data (if there is any) */
519 result
= hfa384x_copy_to_bap( hw
, rid
, sizeof(rec
), buf
, len
);
521 printf("Failure writing record data\n");
525 /* Trigger setting of record */
526 result
= hfa384x_cmd_access( hw
, 1, rid
);
531 * Performs the sequence necessary to write a 16/32 bit config/info item.
534 * hw device structure
535 * rid config/info record id (in host order)
536 * val 16/32 bit value to store (in host order)
541 static int hfa384x_drvr_setconfig16(hfa384x_t
*hw
, UINT16 rid
, UINT16
*val
)
544 value
= host2hfa384x_16(*val
);
545 return hfa384x_drvr_setconfig(hw
, rid
, &value
, sizeof(UINT16
));
547 #if 0 /* Not actually used anywhere */
548 static int hfa384x_drvr_setconfig32(hfa384x_t
*hw
, UINT16 rid
, UINT32
*val
)
551 value
= host2hfa384x_32(*val
);
552 return hfa384x_drvr_setconfig(hw
, rid
, &value
, sizeof(UINT32
));
557 * Wait for an event, with specified checking interval and timeout.
558 * Automatically acknolwedges events.
561 * hw device structure
562 * event_mask EVSTAT register mask of events to wait for
563 * event_ack EVACK register set of events to be acknowledged if they happen (can be
564 * used to acknowledge "ignorable" events in addition to the "main" event)
565 * wait Time (in us) to wait between each poll of the register
566 * timeout Maximum number of polls before timing out
567 * descr Descriptive text string of what is being waited for
568 * (will be printed out if a timeout happens)
571 * value of EVSTAT register, or 0 on failure
573 static int hfa384x_wait_for_event(hfa384x_t
*hw
, UINT16 event_mask
, UINT16 event_ack
, int wait
, int timeout
, const char *descr
)
579 reg
= hfa384x_getreg(hw
, HFA384x_EVSTAT
);
580 if ( count
> 0 ) udelay(wait
);
582 } while ( !(reg
& event_mask
) && count
< timeout
);
583 if ( count
>= timeout
) {
584 printf("hfa384x: Timed out waiting for %s\n", descr
);
585 return 0; /* Return failure */
587 /* Acknowledge all events that we were waiting on */
588 hfa384x_setreg(hw
, reg
& ( event_mask
| event_ack
), HFA384x_EVACK
);
592 /**************************************************************************
593 POLL - Wait for a frame
594 ***************************************************************************/
595 static int prism2_poll(struct nic
*nic
, int retrieve
)
600 hfa384x_rx_frame_t rxdesc
;
601 hfa384x_t
*hw
= &hw_global
;
603 /* Check for received packet */
604 reg
= hfa384x_getreg(hw
, HFA384x_EVSTAT
);
605 if ( ! HFA384x_EVSTAT_ISRX(reg
) ) {
606 /* No packet received - return 0 */
610 if ( ! retrieve
) return 1;
612 /* Acknowledge RX event */
613 hfa384x_setreg(hw
, HFA384x_EVACK_RX_SET(1), HFA384x_EVACK
);
615 rxfid
= hfa384x_getreg(hw
, HFA384x_RXFID
);
616 /* Get the descriptor (including headers) */
617 result
= hfa384x_copy_from_bap(hw
, rxfid
, 0, &rxdesc
, sizeof(rxdesc
));
621 /* Byte order convert once up front. */
622 rxdesc
.status
= hfa384x2host_16(rxdesc
.status
);
623 rxdesc
.time
= hfa384x2host_32(rxdesc
.time
);
624 rxdesc
.data_len
= hfa384x2host_16(rxdesc
.data_len
);
626 /* Fill in nic->packetlen */
627 nic
->packetlen
= rxdesc
.data_len
;
628 if ( nic
->packetlen
> 0 ) {
629 /* Fill in nic->packet */
631 * NOTE: Packets as received have an 8-byte header (LLC+SNAP(?)) terminating with the packet type.
632 * Etherboot expects a 14-byte header terminating with the packet type (it ignores the rest of the
633 * header), so we use a quick hack to achieve this.
635 result
= hfa384x_copy_from_bap(hw
, rxfid
, HFA384x_RX_DATA_OFF
,
636 nic
->packet
+ ETH_HLEN
- sizeof(wlan_80211hdr_t
), nic
->packetlen
);
641 return 1; /* Packet successfully received */
644 /**************************************************************************
645 TRANSMIT - Transmit a frame
646 ***************************************************************************/
647 static void prism2_transmit(
649 const char *d
, /* Destination */
650 unsigned int t
, /* Type */
651 unsigned int s
, /* size */
652 const char *p
) /* Packet */
654 hfa384x_t
*hw
= &hw_global
;
655 hfa384x_tx_frame_t txdesc
;
656 wlan_80211hdr_t p80211hdr
= { wlan_llc_snap
, {{0,0,0},0} };
661 // Request FID allocation
662 result
= hfa384x_docmd_wait(hw
, HFA384x_CMD_CMDCODE_SET(HFA384x_CMDCODE_ALLOC
), HFA384x_DRVR_TXBUF_MAX
, 0, 0);
664 printf("hfa384x: Tx FID allocate command failed: Aborting transmit..\n");
667 if ( !hfa384x_wait_for_event(hw
, HFA384x_EVSTAT_ALLOC
, HFA384x_EVACK_INFO
, 10, 50, "Tx FID to be allocated\n" ) ) return;
668 fid
= hfa384x_getreg(hw
, HFA384x_ALLOCFID
);
670 /* Build Tx frame structure */
671 memset(&txdesc
, 0, sizeof(txdesc
));
672 txdesc
.tx_control
= host2hfa384x_16( HFA384x_TX_MACPORT_SET(0) | HFA384x_TX_STRUCTYPE_SET(1) |
673 HFA384x_TX_TXEX_SET(1) | HFA384x_TX_TXOK_SET(1) );
674 txdesc
.frame_control
= host2ieee16( WLAN_SET_FC_FTYPE(WLAN_FTYPE_DATA
) |
675 WLAN_SET_FC_FSTYPE(WLAN_FSTYPE_DATAONLY
) |
676 WLAN_SET_FC_TODS(1) );
677 memcpy(txdesc
.address1
, hw
->bssid
, WLAN_ADDR_LEN
);
678 memcpy(txdesc
.address2
, nic
->node_addr
, WLAN_ADDR_LEN
);
679 memcpy(txdesc
.address3
, d
, WLAN_ADDR_LEN
);
680 txdesc
.data_len
= host2hfa384x_16( sizeof(txdesc
) + sizeof(p80211hdr
) + s
);
681 /* Set up SNAP header */
682 /* Let OUI default to RFC1042 (0x000000) */
683 p80211hdr
.snap
.type
= htons(t
);
685 /* Copy txdesc, p80211hdr and payload parts to FID */
686 result
= hfa384x_copy_to_bap(hw
, fid
, 0, &txdesc
, sizeof(txdesc
));
687 if ( result
) return; /* fail */
688 result
= hfa384x_copy_to_bap( hw
, fid
, sizeof(txdesc
), &p80211hdr
, sizeof(p80211hdr
) );
689 if ( result
) return; /* fail */
690 result
= hfa384x_copy_to_bap( hw
, fid
, sizeof(txdesc
) + sizeof(p80211hdr
), (UINT8
*)p
, s
);
691 if ( result
) return; /* fail */
693 /* Issue Tx command */
694 result
= hfa384x_docmd_wait(hw
, HFA384x_CMD_CMDCODE_SET(HFA384x_CMDCODE_TX
), fid
, 0, 0);
696 printf("hfa384x: Transmit failed with result %#hx.\n", result
);
700 /* Wait for transmit completion (or exception) */
701 result
= hfa384x_wait_for_event(hw
, HFA384x_EVSTAT_TXEXC
| HFA384x_EVSTAT_TX
, HFA384x_EVACK_INFO
,
702 200, 500, "Tx to complete\n" );
703 if ( !result
) return; /* timeout failure */
704 if ( HFA384x_EVSTAT_ISTXEXC(result
) ) {
705 fid
= hfa384x_getreg(hw
, HFA384x_TXCOMPLFID
);
706 printf ( "Tx exception occurred with fid %#hx\n", fid
);
707 result
= hfa384x_copy_from_bap(hw
, fid
, 0, &status
, sizeof(status
));
708 if ( result
) return; /* fail */
709 printf("hfa384x: Tx error occurred (status %#hx):\n", status
);
710 if ( HFA384x_TXSTATUS_ISACKERR(status
) ) { printf(" ...acknowledgement error\n"); }
711 if ( HFA384x_TXSTATUS_ISFORMERR(status
) ) { printf(" ...format error\n"); }
712 if ( HFA384x_TXSTATUS_ISDISCON(status
) ) { printf(" ...disconnected error\n"); }
713 if ( HFA384x_TXSTATUS_ISAGEDERR(status
) ) { printf(" ...AGED error\n"); }
714 if ( HFA384x_TXSTATUS_ISRETRYERR(status
) ) { printf(" ...retry error\n"); }
719 /**************************************************************************
720 DISABLE - Turn off ethernet interface
721 ***************************************************************************/
722 static void prism2_disable ( struct nic
*nic __unused
) {
723 /* put the card in its initial state */
726 /**************************************************************************
727 IRQ - Enable, Disable, or Force interrupts
728 ***************************************************************************/
729 static void prism2_irq(struct nic
*nic __unused
, irq_action_t action __unused
)
741 /**************************************************************************
743 ***************************************************************************/
744 static struct nic_operations prism2_operations
= {
745 .connect
= dummy_connect
,
747 .transmit
= prism2_transmit
,
751 /**************************************************************************
752 PROBE - Look for an adapter, this routine's visible to the outside
753 You should omit the last argument struct pci_device * for a non-PCI NIC
754 ***************************************************************************/
755 static int prism2_probe ( struct nic
*nic
, hfa384x_t
*hw
) {
759 hfa384x_InfFrame_t inf
;
760 char ssid
[HFA384x_RID_CNFDESIREDSSID_LEN
];
765 /* Initialize card */
766 result
= hfa384x_docmd_wait(hw
, HFA384x_CMDCODE_INIT
, 0,0,0); /* Send initialize command */
767 if ( result
) printf ( "Initialize command returned %#hx\n", result
);
768 hfa384x_setreg(hw
, 0, HFA384x_INTEN
); /* Disable interrupts */
769 hfa384x_setreg(hw
, 0xffff, HFA384x_EVACK
); /* Acknowledge any spurious events */
771 DBG ( "MAC address %s\n", eth_ntoa ( nic
->node_addr
) );
773 /* Retrieve MAC address (and fill out nic->node_addr) */
774 hfa384x_drvr_getconfig ( hw
, HFA384x_RID_CNFOWNMACADDR
, nic
->node_addr
, HFA384x_RID_CNFOWNMACADDR_LEN
);
776 /* Prepare card for autojoin */
777 /* This procedure is reverse-engineered from a register-level trace of the Linux driver's join process */
778 tmp16
= WLAN_DATA_MAXLEN
; /* Set maximum data length */
779 result
= hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFMAXDATALEN
, &tmp16
);
780 if ( result
) printf ( "Set Max Data Length command returned %#hx\n", result
);
781 tmp16
= 0x000f; /* Set transmit rate(?) */
782 result
= hfa384x_drvr_setconfig16(hw
, HFA384x_RID_TXRATECNTL
, &tmp16
);
783 if ( result
) printf ( "Set Transmit Rate command returned %#hx\n", result
);
784 tmp16
= HFA384x_CNFAUTHENTICATION_OPENSYSTEM
; /* Set authentication type to OpenSystem */
785 result
= hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFAUTHENTICATION
, &tmp16
);
786 if ( result
) printf ( "Set Authentication Type command returned %#hx\n", result
);
788 memset(ssid
, 0, HFA384x_RID_CNFDESIREDSSID_LEN
);
789 for ( tmp16
=0; tmp16
<sizeof(hardcoded_ssid
); tmp16
++ ) { ssid
[2+tmp16
] = hardcoded_ssid
[tmp16
]; }
790 ssid
[0] = sizeof(hardcoded_ssid
) - 1; /* Ignore terminating zero */
791 result
= hfa384x_drvr_setconfig(hw
, HFA384x_RID_CNFDESIREDSSID
, ssid
, HFA384x_RID_CNFDESIREDSSID_LEN
); /* Set the SSID */
792 if ( result
) printf ( "Set SSID command returned %#hx\n", result
);
793 tmp16
= 1; /* Set port type to ESS port */
794 result
= hfa384x_drvr_setconfig16(hw
, HFA384x_RID_CNFPORTTYPE
, &tmp16
);
795 if ( result
) printf ( "Set port type command returned %#hx\n", result
);
797 result
= hfa384x_docmd_wait(hw
, HFA384x_CMD_CMDCODE_SET(HFA384x_CMDCODE_ENABLE
) | HFA384x_CMD_MACPORT_SET(0), 0,0,0);
798 if ( result
) printf ( "Enable command returned %#hx\n", result
);
801 /* Increment info_count, abort if too many attempts.
802 * See comment next to definition of MAX_JOIN_INFO_COUNT for explanation.
805 if ( info_count
> MAX_JOIN_INFO_COUNT
) {
806 printf ( "Too many failed attempts - aborting\n" );
810 /* Wait for info frame to indicate link status */
811 if ( sizeof(hardcoded_ssid
) == 1 ) {
812 /* Empty SSID => join to any SSID */
813 printf ( "Attempting to autojoin to any available access point (attempt %d)...", info_count
);
815 printf ( "Attempting to autojoin to SSID %s (attempt %d)...", &ssid
[2], info_count
);
818 if ( !hfa384x_wait_for_event(hw
, HFA384x_EVSTAT_INFO
, 0, 1000, 2000, "Info event" ) ) return 0;
820 infofid
= hfa384x_getreg(hw
, HFA384x_INFOFID
);
821 /* Retrieve the length */
822 result
= hfa384x_copy_from_bap( hw
, infofid
, 0, &inf
.framelen
, sizeof(UINT16
));
823 if ( result
) return 0; /* fail */
824 inf
.framelen
= hfa384x2host_16(inf
.framelen
);
825 /* Retrieve the rest */
826 result
= hfa384x_copy_from_bap( hw
, infofid
, sizeof(UINT16
),
827 &(inf
.infotype
), inf
.framelen
* sizeof(UINT16
));
828 if ( result
) return 0; /* fail */
829 if ( inf
.infotype
!= HFA384x_IT_LINKSTATUS
) {
830 /* Not a Link Status info frame: die */
831 printf ( "Unexpected info frame type %#hx (not LinkStatus type)\n", inf
.infotype
);
834 inf
.info
.linkstatus
.linkstatus
= hfa384x2host_16(inf
.info
.linkstatus
.linkstatus
);
835 if ( inf
.info
.linkstatus
.linkstatus
!= HFA384x_LINK_CONNECTED
) {
836 /* Link not connected - retry */
837 printf ( "Link not connected (status %#hx)\n", inf
.info
.linkstatus
.linkstatus
);
839 } while ( inf
.info
.linkstatus
.linkstatus
!= HFA384x_LINK_CONNECTED
);
841 /* Retrieve BSSID and print Connected message */
842 result
= hfa384x_drvr_getconfig(hw
, HFA384x_RID_CURRENTBSSID
, hw
->bssid
, WLAN_BSSID_LEN
);
844 DBG ( "Link connected (BSSID %s - ", eth_ntoa ( hw
->bssid
) );
845 DBG ( " MAC address %s)\n", eth_ntoa (nic
->node_addr
) );
847 /* point to NIC specific routines */
848 nic
->nic_op
= &prism2_operations
;