Home | History | Annotate | Line # | Download | only in usb
if_atu.c revision 1.55.8.2
      1  1.55.8.2       snj /*	$NetBSD: if_atu.c,v 1.55.8.2 2018/07/26 23:55:30 snj Exp $ */
      2       1.1      joff /*	$OpenBSD: if_atu.c,v 1.48 2004/12/30 01:53:21 dlg Exp $ */
      3       1.1      joff /*
      4       1.1      joff  * Copyright (c) 2003, 2004
      5       1.1      joff  *	Daan Vreeken <Danovitsch (at) Vitsch.net>.  All rights reserved.
      6       1.1      joff  *
      7       1.1      joff  * Redistribution and use in source and binary forms, with or without
      8       1.1      joff  * modification, are permitted provided that the following conditions
      9       1.1      joff  * are met:
     10       1.1      joff  * 1. Redistributions of source code must retain the above copyright
     11       1.1      joff  *    notice, this list of conditions and the following disclaimer.
     12       1.1      joff  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1      joff  *    notice, this list of conditions and the following disclaimer in the
     14       1.1      joff  *    documentation and/or other materials provided with the distribution.
     15       1.1      joff  * 3. All advertising materials mentioning features or use of this software
     16       1.1      joff  *    must display the following acknowledgement:
     17       1.1      joff  *	This product includes software developed by Daan Vreeken.
     18       1.1      joff  * 4. Neither the name of the author nor the names of any co-contributors
     19       1.1      joff  *    may be used to endorse or promote products derived from this software
     20       1.1      joff  *    without specific prior written permission.
     21       1.1      joff  *
     22       1.1      joff  * THIS SOFTWARE IS PROVIDED BY Daan Vreeken AND CONTRIBUTORS ``AS IS'' AND
     23       1.1      joff  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24       1.1      joff  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25       1.1      joff  * ARE DISCLAIMED.  IN NO EVENT SHALL Daan Vreeken OR THE VOICES IN HIS HEAD
     26       1.1      joff  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     27       1.1      joff  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     28       1.1      joff  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     29       1.1      joff  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     30       1.1      joff  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     31       1.1      joff  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     32       1.1      joff  * THE POSSIBILITY OF SUCH DAMAGE.
     33       1.1      joff  */
     34       1.1      joff 
     35       1.1      joff /*
     36       1.1      joff  * Atmel AT76c503 / AT76c503a / AT76c505 / AT76c505a  USB WLAN driver
     37       1.1      joff  * version 0.5 - 2004-08-03
     38       1.1      joff  *
     39       1.1      joff  * Originally written by Daan Vreeken <Danovitsch @ Vitsch . net>
     40       1.1      joff  *  http://vitsch.net/bsd/atuwi
     41       1.1      joff  *
     42       1.1      joff  * Contributed to by :
     43       1.1      joff  *  Chris Whitehouse, Alistair Phillips, Peter Pilka, Martijn van Buul,
     44       1.1      joff  *  Suihong Liang, Arjan van Leeuwen, Stuart Walsh
     45       1.1      joff  *
     46       1.1      joff  * Ported to OpenBSD by Theo de Raadt and David Gwynne.
     47       1.1      joff  * Ported to NetBSD by Jesse Off
     48       1.1      joff  */
     49       1.1      joff 
     50       1.1      joff #include <sys/cdefs.h>
     51  1.55.8.2       snj __KERNEL_RCSID(0, "$NetBSD: if_atu.c,v 1.55.8.2 2018/07/26 23:55:30 snj Exp $");
     52      1.55     skrll 
     53      1.55     skrll #ifdef _KERNEL_OPT
     54      1.55     skrll #include "opt_usb.h"
     55      1.55     skrll #endif
     56       1.1      joff 
     57       1.1      joff #include <sys/param.h>
     58       1.1      joff #include <sys/sockio.h>
     59       1.1      joff #include <sys/mbuf.h>
     60       1.1      joff #include <sys/kernel.h>
     61       1.1      joff #include <sys/socket.h>
     62       1.1      joff #include <sys/systm.h>
     63       1.1      joff #include <sys/kthread.h>
     64       1.1      joff #include <sys/queue.h>
     65       1.1      joff #include <sys/device.h>
     66       1.1      joff 
     67      1.28        ad #include <sys/bus.h>
     68       1.1      joff 
     69       1.1      joff #include <dev/usb/usb.h>
     70       1.1      joff #include <dev/usb/usbdi.h>
     71       1.1      joff #include <dev/usb/usbdi_util.h>
     72       1.1      joff #include <dev/usb/usbdivar.h>
     73       1.1      joff 
     74       1.1      joff #include <dev/usb/usbdevs.h>
     75       1.1      joff 
     76       1.1      joff #include <dev/microcode/atmel/atmel_intersil_fw.h>
     77       1.1      joff #include <dev/microcode/atmel/atmel_rfmd2958-smc_fw.h>
     78       1.1      joff #include <dev/microcode/atmel/atmel_rfmd2958_fw.h>
     79       1.1      joff #include <dev/microcode/atmel/atmel_rfmd_fw.h>
     80       1.1      joff 
     81       1.1      joff #include <net/bpf.h>
     82       1.1      joff #include <net/if.h>
     83       1.1      joff #include <net/if_dl.h>
     84       1.1      joff #include <net/if_media.h>
     85       1.1      joff #include <net/if_ether.h>
     86       1.1      joff 
     87       1.1      joff #ifdef INET
     88       1.1      joff #include <netinet/in.h>
     89       1.1      joff #include <netinet/if_ether.h>
     90       1.1      joff #endif
     91       1.1      joff 
     92       1.1      joff #include <net80211/ieee80211_var.h>
     93       1.1      joff #include <net80211/ieee80211_radiotap.h>
     94       1.1      joff 
     95       1.1      joff #include <dev/usb/if_atureg.h>
     96       1.1      joff 
     97       1.1      joff #ifdef ATU_DEBUG
     98       1.1      joff #define DPRINTF(x)	do { if (atudebug) printf x; } while (0)
     99       1.1      joff #define DPRINTFN(n,x)	do { if (atudebug>(n)) printf x; } while (0)
    100       1.1      joff int atudebug = 1;
    101       1.1      joff #else
    102       1.1      joff #define DPRINTF(x)
    103       1.1      joff #define DPRINTFN(n,x)
    104       1.1      joff #endif
    105       1.1      joff 
    106       1.1      joff /*
    107       1.1      joff  * Various supported device vendors/products/radio type.
    108       1.1      joff  */
    109       1.1      joff struct atu_type atu_devs[] = {
    110      1.44       chs 	{ USB_VENDOR_3COM,	USB_PRODUCT_3COM_3CRSHEW696,
    111       1.1      joff 	  RadioRFMD,		ATU_NO_QUIRK },
    112      1.44       chs 	{ USB_VENDOR_ABOCOM,	USB_PRODUCT_ABOCOM_BWU613,
    113       1.1      joff 	  RadioRFMD,		ATU_NO_QUIRK },
    114      1.44       chs 	{ USB_VENDOR_ACCTON,	USB_PRODUCT_ACCTON_2664W,
    115      1.44       chs 	  AT76C503_rfmd_acc,	ATU_NO_QUIRK },
    116      1.44       chs 	{ USB_VENDOR_ACERP,	USB_PRODUCT_ACERP_AWL300,
    117       1.1      joff 	  RadioIntersil,	ATU_NO_QUIRK },
    118      1.44       chs 	{ USB_VENDOR_ACERP,	USB_PRODUCT_ACERP_AWL400,
    119      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    120      1.44       chs 	{ USB_VENDOR_ACTIONTEC,	USB_PRODUCT_ACTIONTEC_UAT1,
    121       1.1      joff 	  RadioRFMD,		ATU_NO_QUIRK },
    122      1.44       chs 	{ USB_VENDOR_ADDTRON,	USB_PRODUCT_ADDTRON_AWU120,
    123      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    124      1.44       chs 	{ USB_VENDOR_AINCOMM,	USB_PRODUCT_AINCOMM_AWU2000B,
    125      1.44       chs 	  RadioRFMD2958,	ATU_NO_QUIRK },
    126      1.44       chs 	{ USB_VENDOR_ASKEY,	USB_PRODUCT_ASKEY_VOYAGER1010,
    127      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    128      1.44       chs 	{ USB_VENDOR_ASKEY,	USB_PRODUCT_ASKEY_WLL013I,
    129      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    130      1.44       chs 	{ USB_VENDOR_ASKEY,	USB_PRODUCT_ASKEY_WLL013,
    131      1.19   jnemeth 	  RadioRFMD,		ATU_NO_QUIRK },
    132      1.44       chs 	{ USB_VENDOR_ATMEL,	USB_PRODUCT_ATMEL_AT76C503I1,
    133      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    134      1.44       chs 	{ USB_VENDOR_ATMEL,	USB_PRODUCT_ATMEL_AT76C503I2,
    135      1.44       chs 	  AT76C503_i3863,	ATU_NO_QUIRK },
    136      1.44       chs 	{ USB_VENDOR_ATMEL,	USB_PRODUCT_ATMEL_AT76C503RFMD,
    137       1.1      joff 	  RadioRFMD,		ATU_NO_QUIRK },
    138      1.44       chs 	{ USB_VENDOR_ATMEL,	USB_PRODUCT_ATMEL_AT76C505RFMD,
    139      1.44       chs 	  AT76C505_rfmd,	ATU_NO_QUIRK },
    140      1.44       chs 	{ USB_VENDOR_ATMEL,	USB_PRODUCT_ATMEL_AT76C505RFMD2958,
    141       1.1      joff 	  RadioRFMD2958,	ATU_NO_QUIRK },
    142      1.44       chs 	{ USB_VENDOR_ATMEL,	USB_PRODUCT_ATMEL_AT76C505A, /* SMC2662 V.4 */
    143      1.44       chs 	  RadioRFMD2958_SMC,	ATU_QUIRK_NO_REMAP | ATU_QUIRK_FW_DELAY },
    144      1.44       chs 	{ USB_VENDOR_ATMEL,	USB_PRODUCT_ATMEL_AT76C505AS, /* quirk? */
    145      1.44       chs 	  RadioRFMD2958_SMC,	ATU_QUIRK_NO_REMAP | ATU_QUIRK_FW_DELAY },
    146      1.44       chs 	{ USB_VENDOR_ATMEL,	USB_PRODUCT_ATMEL_WN210,
    147      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    148      1.44       chs 	{ USB_VENDOR_BELKIN,	USB_PRODUCT_BELKIN_F5D6050,
    149       1.1      joff 	  RadioRFMD,		ATU_NO_QUIRK },
    150      1.44       chs 	{ USB_VENDOR_CONCEPTRONIC, USB_PRODUCT_CONCEPTRONIC_C11U,
    151      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    152      1.44       chs 	{ USB_VENDOR_CONCEPTRONIC, USB_PRODUCT_CONCEPTRONIC_WL210,
    153      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    154      1.44       chs 	{ USB_VENDOR_COMPAQ,	USB_PRODUCT_COMPAQ_IPAQWLAN,
    155       1.1      joff 	  RadioRFMD,		ATU_NO_QUIRK },
    156      1.44       chs 	{ USB_VENDOR_COREGA,	USB_PRODUCT_COREGA_WLUSB_11_STICK,
    157       1.1      joff 	  RadioRFMD2958,	ATU_NO_QUIRK },
    158      1.44       chs 	{ USB_VENDOR_DICKSMITH,	USB_PRODUCT_DICKSMITH_CHUSB611G,
    159      1.44       chs 	  RadioRFMD2958,	ATU_NO_QUIRK },
    160      1.44       chs 	{ USB_VENDOR_DICKSMITH,	USB_PRODUCT_DICKSMITH_WL200U,
    161      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    162      1.44       chs 	{ USB_VENDOR_DICKSMITH,	USB_PRODUCT_DICKSMITH_WL240U,
    163       1.1      joff 	  RadioRFMD2958,	ATU_NO_QUIRK },
    164      1.44       chs 	{ USB_VENDOR_DICKSMITH,	USB_PRODUCT_DICKSMITH_XH1153,
    165      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    166      1.44       chs 	{ USB_VENDOR_DLINK,	USB_PRODUCT_DLINK_DWL120E,
    167      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    168      1.44       chs 	{ USB_VENDOR_GIGABYTE,	USB_PRODUCT_GIGABYTE_GNWLBM101,
    169      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    170      1.44       chs 	{ USB_VENDOR_GIGASET,	USB_PRODUCT_GIGASET_WLAN, /* quirk? */
    171       1.1      joff 	  RadioRFMD2958_SMC,	ATU_QUIRK_NO_REMAP | ATU_QUIRK_FW_DELAY },
    172      1.44       chs 	{ USB_VENDOR_HP,	USB_PRODUCT_HP_HN210W,
    173      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    174      1.44       chs 	{ USB_VENDOR_INTEL,	USB_PRODUCT_INTEL_AP310,
    175      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    176      1.44       chs 	{ USB_VENDOR_IODATA,	USB_PRODUCT_IODATA_USBWNB11A,
    177      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    178      1.44       chs 	{ USB_VENDOR_LEXAR,	USB_PRODUCT_LEXAR_2662WAR,
    179      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    180      1.44       chs 	{ USB_VENDOR_LINKSYS,	USB_PRODUCT_LINKSYS_WUSB11,
    181      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    182      1.44       chs 	{ USB_VENDOR_LINKSYS2,	USB_PRODUCT_LINKSYS2_WUSB11,
    183      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    184      1.44       chs 	{ USB_VENDOR_LINKSYS2,	USB_PRODUCT_LINKSYS2_NWU11B,
    185      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    186      1.44       chs 	{ USB_VENDOR_LINKSYS3,	USB_PRODUCT_LINKSYS3_WUSB11V28,
    187      1.44       chs 	  RadioRFMD2958,	ATU_NO_QUIRK },
    188      1.44       chs 	{ USB_VENDOR_MSI,	USB_PRODUCT_MSI_WLAN,
    189      1.44       chs 	  RadioRFMD2958,	ATU_NO_QUIRK },
    190      1.44       chs 	{ USB_VENDOR_NETGEAR2,	USB_PRODUCT_NETGEAR2_MA101,
    191       1.1      joff 	  RadioIntersil,	ATU_NO_QUIRK },
    192      1.44       chs 	{ USB_VENDOR_NETGEAR2,	USB_PRODUCT_NETGEAR2_MA101B,
    193      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    194       1.7    itojun 	{ USB_VENDOR_OQO,	USB_PRODUCT_OQO_WIFI01,
    195       1.9    itojun 	  RadioRFMD2958_SMC,	ATU_QUIRK_NO_REMAP | ATU_QUIRK_FW_DELAY },
    196      1.44       chs 	{ USB_VENDOR_PLANEX2,	USB_PRODUCT_PLANEX2_GW_US11S,
    197      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    198      1.44       chs 	{ USB_VENDOR_SAMSUNG,	USB_PRODUCT_SAMSUNG_SWL2100W,
    199      1.44       chs 	  AT76C503_i3863,	ATU_NO_QUIRK },
    200      1.44       chs 	{ USB_VENDOR_SIEMENS2,	USB_PRODUCT_SIEMENS2_WLL013,
    201      1.44       chs 	  RadioRFMD,		ATU_NO_QUIRK },
    202      1.18  christos 	{ USB_VENDOR_SMC3,	USB_PRODUCT_SMC3_2662WV1,
    203      1.18  christos 	  RadioIntersil,	ATU_NO_QUIRK },
    204      1.44       chs 	{ USB_VENDOR_SMC3,	USB_PRODUCT_SMC3_2662WV2,
    205      1.44       chs 	  AT76C503_rfmd_acc,	ATU_NO_QUIRK },
    206      1.44       chs 	{ USB_VENDOR_TEKRAM,	USB_PRODUCT_TEKRAM_U300C,
    207      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    208      1.44       chs 	{ USB_VENDOR_ZCOM,	USB_PRODUCT_ZCOM_M4Y750,
    209      1.44       chs 	  RadioIntersil,	ATU_NO_QUIRK },
    210       1.1      joff };
    211       1.1      joff 
    212       1.1      joff struct atu_radfirm {
    213       1.1      joff 	enum	atu_radio_type atur_type;
    214       1.1      joff 	unsigned char	*atur_internal;
    215       1.1      joff 	size_t		atur_internal_sz;
    216       1.1      joff 	unsigned char	*atur_external;
    217       1.1      joff 	size_t		atur_external_sz;
    218       1.1      joff } atu_radfirm[] = {
    219       1.5     perry 	{ RadioRFMD,
    220       1.1      joff 	  atmel_fw_rfmd_int,		sizeof(atmel_fw_rfmd_int),
    221       1.1      joff 	  atmel_fw_rfmd_ext,		sizeof(atmel_fw_rfmd_ext) },
    222       1.1      joff 	{ RadioRFMD2958,
    223       1.1      joff 	  atmel_fw_rfmd2958_int,	sizeof(atmel_fw_rfmd2958_int),
    224       1.1      joff 	  atmel_fw_rfmd2958_ext,	sizeof(atmel_fw_rfmd2958_ext) },
    225       1.1      joff 	{ RadioRFMD2958_SMC,
    226       1.1      joff 	  atmel_fw_rfmd2958_smc_int,	sizeof(atmel_fw_rfmd2958_smc_int),
    227       1.1      joff 	  atmel_fw_rfmd2958_smc_ext,	sizeof(atmel_fw_rfmd2958_smc_ext) },
    228       1.1      joff 	{ RadioIntersil,
    229       1.1      joff 	  atmel_fw_intersil_int,	sizeof(atmel_fw_intersil_int),
    230       1.1      joff 	  atmel_fw_intersil_ext,	sizeof(atmel_fw_intersil_ext) }
    231       1.1      joff };
    232       1.1      joff 
    233       1.1      joff int	atu_newbuf(struct atu_softc *, struct atu_chain *, struct mbuf *);
    234      1.51     skrll void	atu_rxeof(struct usbd_xfer *, void *, usbd_status);
    235      1.51     skrll void	atu_txeof(struct usbd_xfer *, void *, usbd_status);
    236       1.1      joff void	atu_start(struct ifnet *);
    237      1.25  christos int	atu_ioctl(struct ifnet *, u_long, void *);
    238       1.1      joff int	atu_init(struct ifnet *);
    239       1.1      joff void	atu_stop(struct ifnet *, int);
    240       1.1      joff void	atu_watchdog(struct ifnet *);
    241      1.51     skrll usbd_status atu_usb_request(struct atu_softc *, uint8_t,
    242      1.51     skrll 	    uint8_t, uint16_t, uint16_t,
    243      1.51     skrll 	    uint16_t, uint8_t *);
    244      1.51     skrll int	atu_send_command(struct atu_softc *, uint8_t *, int);
    245      1.51     skrll int	atu_get_cmd_status(struct atu_softc *, uint8_t,
    246      1.51     skrll 	    uint8_t *);
    247      1.51     skrll int	atu_wait_completion(struct atu_softc *, uint8_t,
    248      1.51     skrll 	    uint8_t *);
    249      1.51     skrll int	atu_send_mib(struct atu_softc *, uint8_t,
    250      1.51     skrll 	    uint8_t, uint8_t, void *);
    251      1.51     skrll int	atu_get_mib(struct atu_softc *, uint8_t,
    252      1.51     skrll 	    uint8_t, uint8_t, uint8_t *);
    253       1.1      joff #if 0
    254      1.51     skrll int	atu_start_ibss(struct atu_softc *);
    255       1.1      joff #endif
    256      1.51     skrll int	atu_start_scan(struct atu_softc *);
    257      1.51     skrll int	atu_switch_radio(struct atu_softc *, int);
    258      1.51     skrll int	atu_initial_config(struct atu_softc *);
    259      1.51     skrll int	atu_join(struct atu_softc *, struct ieee80211_node *);
    260      1.51     skrll int8_t	atu_get_dfu_state(struct atu_softc *);
    261      1.51     skrll uint8_t atu_get_opmode(struct atu_softc *, uint8_t *);
    262      1.29      cube void	atu_internal_firmware(device_t);
    263      1.29      cube void	atu_external_firmware(device_t);
    264      1.51     skrll int	atu_get_card_config(struct atu_softc *);
    265      1.51     skrll int	atu_media_change(struct ifnet *);
    266      1.51     skrll void	atu_media_status(struct ifnet *, struct ifmediareq *);
    267       1.1      joff int	atu_tx_list_init(struct atu_softc *);
    268       1.1      joff int	atu_rx_list_init(struct atu_softc *);
    269      1.51     skrll void	atu_xfer_list_free(struct atu_softc *, struct atu_chain *,
    270      1.51     skrll 	    int);
    271       1.1      joff 
    272       1.1      joff #ifdef ATU_DEBUG
    273      1.51     skrll void	atu_debug_print(struct atu_softc *);
    274       1.1      joff #endif
    275       1.1      joff 
    276       1.1      joff void atu_task(void *);
    277       1.1      joff int atu_newstate(struct ieee80211com *, enum ieee80211_state, int);
    278       1.1      joff int atu_tx_start(struct atu_softc *, struct ieee80211_node *,
    279       1.1      joff     struct atu_chain *, struct mbuf *);
    280       1.1      joff void atu_complete_attach(struct atu_softc *);
    281      1.51     skrll uint8_t atu_calculate_padding(int);
    282       1.1      joff 
    283      1.31    dyoung int atu_match(device_t, cfdata_t, void *);
    284      1.31    dyoung void atu_attach(device_t, device_t, void *);
    285      1.31    dyoung int atu_detach(device_t, int);
    286      1.31    dyoung int atu_activate(device_t, enum devact);
    287      1.31    dyoung extern struct cfdriver atu_cd;
    288      1.31    dyoung CFATTACH_DECL_NEW(atu, sizeof(struct atu_softc), atu_match, atu_attach,
    289      1.31    dyoung     atu_detach, atu_activate);
    290       1.1      joff 
    291       1.1      joff usbd_status
    292      1.51     skrll atu_usb_request(struct atu_softc *sc, uint8_t type,
    293      1.51     skrll     uint8_t request, uint16_t value, uint16_t index, uint16_t length,
    294      1.51     skrll     uint8_t *data)
    295       1.1      joff {
    296       1.1      joff 	usb_device_request_t	req;
    297      1.51     skrll 	struct usbd_xfer	*xfer;
    298       1.1      joff 	usbd_status		err;
    299       1.1      joff 	int			total_len = 0, s;
    300       1.1      joff 
    301       1.1      joff 	req.bmRequestType = type;
    302       1.1      joff 	req.bRequest = request;
    303       1.1      joff 	USETW(req.wValue, value);
    304       1.1      joff 	USETW(req.wIndex, index);
    305       1.1      joff 	USETW(req.wLength, length);
    306       1.1      joff 
    307       1.1      joff #ifdef ATU_DEBUG
    308       1.1      joff 	if (atudebug) {
    309       1.1      joff 		DPRINTFN(20, ("%s: req=%02x val=%02x ind=%02x "
    310      1.40    dyoung 		    "len=%02x\n", device_xname(sc->atu_dev), request,
    311       1.1      joff 		    value, index, length));
    312       1.1      joff 	}
    313       1.1      joff #endif /* ATU_DEBUG */
    314       1.1      joff 
    315       1.1      joff 	s = splnet();
    316       1.1      joff 
    317      1.51     skrll 	struct usbd_pipe *pipe0 = usbd_get_pipe0(sc->atu_udev);
    318  1.55.8.1    martin 	int error = usbd_create_xfer(pipe0, length, 0, 0,
    319      1.51     skrll 	    &xfer);
    320      1.51     skrll 	if (error) {
    321      1.51     skrll 		splx(s);
    322      1.51     skrll 		return USBD_IOERROR;
    323      1.51     skrll 	}
    324       1.1      joff 	usbd_setup_default_xfer(xfer, sc->atu_udev, 0, 500000, &req, data,
    325      1.51     skrll 	    length, USBD_SHORT_XFER_OK, NULL);
    326       1.1      joff 
    327       1.1      joff 	err = usbd_sync_transfer(xfer);
    328       1.1      joff 
    329       1.1      joff 	usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
    330       1.1      joff 
    331       1.1      joff #ifdef ATU_DEBUG
    332       1.1      joff 	if (atudebug) {
    333       1.1      joff 		if (type & UT_READ) {
    334       1.1      joff 			DPRINTFN(20, ("%s: transfered 0x%x bytes in\n",
    335      1.40    dyoung 			    device_xname(sc->atu_dev), total_len));
    336       1.1      joff 		} else {
    337       1.1      joff 			if (total_len != length)
    338       1.1      joff 				DPRINTF(("%s: wrote only %x bytes\n",
    339      1.40    dyoung 				    device_xname(sc->atu_dev), total_len));
    340       1.1      joff 		}
    341       1.1      joff 	}
    342       1.1      joff #endif /* ATU_DEBUG */
    343       1.1      joff 
    344      1.51     skrll 	usbd_destroy_xfer(xfer);
    345       1.1      joff 
    346       1.1      joff 	splx(s);
    347       1.1      joff 	return(err);
    348       1.1      joff }
    349       1.1      joff 
    350       1.1      joff int
    351      1.51     skrll atu_send_command(struct atu_softc *sc, uint8_t *command, int size)
    352       1.1      joff {
    353       1.1      joff 	return atu_usb_request(sc, UT_WRITE_VENDOR_DEVICE, 0x0e, 0x0000,
    354       1.1      joff 	    0x0000, size, command);
    355       1.1      joff }
    356       1.1      joff 
    357       1.1      joff int
    358      1.51     skrll atu_get_cmd_status(struct atu_softc *sc, uint8_t cmd, uint8_t *status)
    359       1.1      joff {
    360       1.1      joff 	/*
    361       1.1      joff 	 * all other drivers (including Windoze) request 40 bytes of status
    362       1.1      joff 	 * and get a short-xfer of just 6 bytes. we can save 34 bytes of
    363       1.1      joff 	 * buffer if we just request those 6 bytes in the first place :)
    364       1.1      joff 	 */
    365       1.1      joff 	/*
    366       1.1      joff 	return atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x22, cmd,
    367       1.1      joff 	    0x0000, 40, status);
    368       1.1      joff 	*/
    369       1.1      joff 	return atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x22, cmd,
    370       1.1      joff 	    0x0000, 6, status);
    371       1.1      joff }
    372       1.1      joff 
    373       1.1      joff int
    374      1.51     skrll atu_wait_completion(struct atu_softc *sc, uint8_t cmd, uint8_t *status)
    375       1.1      joff {
    376       1.1      joff 	int			idle_count = 0, err;
    377      1.51     skrll 	uint8_t			statusreq[6];
    378       1.1      joff 
    379       1.1      joff 	DPRINTFN(15, ("%s: wait-completion: cmd=%02x\n",
    380      1.40    dyoung 	    device_xname(sc->atu_dev), cmd));
    381       1.1      joff 
    382       1.1      joff 	while (1) {
    383       1.1      joff 		err = atu_get_cmd_status(sc, cmd, statusreq);
    384       1.1      joff 		if (err)
    385       1.1      joff 			return err;
    386       1.1      joff 
    387       1.1      joff #ifdef ATU_DEBUG
    388       1.1      joff 		if (atudebug) {
    389       1.1      joff 			DPRINTFN(20, ("%s: status=%s cmd=%02x\n",
    390      1.40    dyoung 			    device_xname(sc->atu_dev),
    391       1.1      joff 			ether_sprintf(statusreq), cmd));
    392       1.1      joff 		}
    393       1.1      joff #endif /* ATU_DEBUG */
    394       1.1      joff 
    395       1.1      joff 		/*
    396       1.1      joff 		 * during normal operations waiting on STATUS_IDLE
    397       1.1      joff 		 * will never happen more than once
    398       1.1      joff 		 */
    399       1.1      joff 		if ((statusreq[5] == STATUS_IDLE) && (idle_count++ > 20)) {
    400       1.1      joff 			DPRINTF(("%s: idle_count > 20!\n",
    401      1.40    dyoung 			    device_xname(sc->atu_dev)));
    402       1.1      joff 			return 0;
    403       1.1      joff 		}
    404       1.1      joff 
    405       1.1      joff 		if ((statusreq[5] != STATUS_IN_PROGRESS) &&
    406       1.1      joff 		    (statusreq[5] != STATUS_IDLE)) {
    407       1.1      joff 			if (status != NULL)
    408       1.1      joff 				*status = statusreq[5];
    409       1.1      joff 			return 0;
    410       1.1      joff 		}
    411       1.1      joff 		usbd_delay_ms(sc->atu_udev, 25);
    412       1.1      joff 	}
    413       1.1      joff }
    414       1.1      joff 
    415       1.1      joff int
    416      1.51     skrll atu_send_mib(struct atu_softc *sc, uint8_t type, uint8_t size,
    417      1.51     skrll     uint8_t index, void *data)
    418       1.1      joff {
    419       1.1      joff 	int				err;
    420       1.1      joff 	struct atu_cmd_set_mib		request;
    421       1.1      joff 
    422       1.1      joff 	/*
    423       1.1      joff 	 * We don't construct a MIB packet first and then memcpy it into an
    424       1.1      joff 	 * Atmel-command-packet, we just construct it the right way at once :)
    425       1.1      joff 	 */
    426       1.1      joff 
    427       1.1      joff 	memset(&request, 0, sizeof(request));
    428       1.1      joff 
    429       1.1      joff 	request.AtCmd = CMD_SET_MIB;
    430       1.1      joff 	USETW(request.AtSize, size + 4);
    431       1.1      joff 
    432       1.1      joff 	request.MIBType = type;
    433       1.1      joff 	request.MIBSize = size;
    434       1.1      joff 	request.MIBIndex = index;
    435       1.1      joff 	request.MIBReserved = 0;
    436       1.1      joff 
    437       1.1      joff 	/*
    438       1.1      joff 	 * For 1 and 2 byte requests we assume a direct value,
    439       1.1      joff 	 * everything bigger than 2 bytes we assume a pointer to the data
    440       1.1      joff 	 */
    441       1.1      joff 	switch (size) {
    442       1.1      joff 	case 0:
    443       1.1      joff 		break;
    444       1.1      joff 	case 1:
    445       1.1      joff 		request.data[0]=(long)data & 0x000000ff;
    446       1.1      joff 		break;
    447       1.1      joff 	case 2:
    448       1.1      joff 		request.data[0]=(long)data & 0x000000ff;
    449       1.1      joff 		request.data[1]=(long)data >> 8;
    450       1.1      joff 		break;
    451       1.1      joff 	default:
    452       1.1      joff 		memcpy(request.data, data, size);
    453       1.1      joff 		break;
    454       1.1      joff 	}
    455       1.1      joff 
    456       1.1      joff 	err = atu_usb_request(sc, UT_WRITE_VENDOR_DEVICE, 0x0e, 0x0000,
    457       1.1      joff 	    0x0000, size+8, (uByte *)&request);
    458       1.1      joff 	if (err)
    459      1.51     skrll 		return err;
    460       1.1      joff 
    461       1.1      joff 	DPRINTFN(15, ("%s: sendmib : waitcompletion...\n",
    462      1.40    dyoung 	    device_xname(sc->atu_dev)));
    463       1.1      joff 	return atu_wait_completion(sc, CMD_SET_MIB, NULL);
    464       1.1      joff }
    465       1.1      joff 
    466       1.1      joff int
    467      1.51     skrll atu_get_mib(struct atu_softc *sc, uint8_t type, uint8_t size,
    468      1.51     skrll     uint8_t index, uint8_t *buf)
    469       1.1      joff {
    470       1.1      joff 
    471       1.1      joff 	/* linux/at76c503.c - 478 */
    472       1.1      joff 	return atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x033,
    473       1.1      joff 	    type << 8, index, size, buf);
    474       1.1      joff }
    475       1.1      joff 
    476       1.1      joff #if 0
    477       1.1      joff int
    478       1.1      joff atu_start_ibss(struct atu_softc *sc)
    479       1.1      joff {
    480      1.15    rpaulo 	struct ieee80211com		*ic = &sc->sc_ic;
    481       1.1      joff 	int				err;
    482       1.1      joff 	struct atu_cmd_start_ibss	Request;
    483       1.1      joff 
    484       1.1      joff 	Request.Cmd = CMD_START_IBSS;
    485       1.1      joff 	Request.Reserved = 0;
    486       1.1      joff 	Request.Size = sizeof(Request) - 4;
    487       1.1      joff 
    488       1.1      joff 	memset(Request.BSSID, 0x00, sizeof(Request.BSSID));
    489       1.1      joff 	memset(Request.SSID, 0x00, sizeof(Request.SSID));
    490      1.15    rpaulo 	memcpy(Request.SSID, ic->ic_des_ssid, ic->ic_des_ssidlen);
    491      1.15    rpaulo 	Request.SSIDSize = ic->ic_des_ssidlen;
    492       1.1      joff 	if (sc->atu_desired_channel != IEEE80211_CHAN_ANY)
    493      1.51     skrll 		Request.Channel = (uint8_t)sc->atu_desired_channel;
    494       1.1      joff 	else
    495       1.1      joff 		Request.Channel = ATU_DEFAULT_CHANNEL;
    496       1.1      joff 	Request.BSSType = AD_HOC_MODE;
    497       1.1      joff 	memset(Request.Res, 0x00, sizeof(Request.Res));
    498       1.1      joff 
    499       1.1      joff 	/* Write config to adapter */
    500      1.51     skrll 	err = atu_send_command(sc, (uint8_t *)&Request, sizeof(Request));
    501       1.1      joff 	if (err) {
    502       1.1      joff 		DPRINTF(("%s: start ibss failed!\n",
    503      1.40    dyoung 		    device_xname(sc->atu_dev)));
    504       1.1      joff 		return err;
    505       1.1      joff 	}
    506       1.1      joff 
    507      1.50       snj 	/* Wait for the adapter to do its thing */
    508       1.1      joff 	err = atu_wait_completion(sc, CMD_START_IBSS, NULL);
    509       1.1      joff 	if (err) {
    510       1.1      joff 		DPRINTF(("%s: error waiting for start_ibss\n",
    511      1.40    dyoung 		    device_xname(sc->atu_dev)));
    512       1.1      joff 		return err;
    513       1.1      joff 	}
    514       1.1      joff 
    515       1.1      joff 	/* Get the current BSSID */
    516       1.1      joff 	err = atu_get_mib(sc, MIB_MAC_MGMT__CURRENT_BSSID, sc->atu_bssid);
    517       1.1      joff 	if (err) {
    518       1.1      joff 		DPRINTF(("%s: could not get BSSID!\n",
    519      1.40    dyoung 		    device_xname(sc->atu_dev)));
    520       1.1      joff 		return err;
    521       1.1      joff 	}
    522       1.1      joff 
    523       1.1      joff 	DPRINTF(("%s: started a new IBSS (BSSID=%s)\n",
    524      1.40    dyoung 	    device_xname(sc->atu_dev), ether_sprintf(sc->atu_bssid)));
    525       1.1      joff 	return 0;
    526       1.1      joff }
    527       1.1      joff #endif
    528       1.1      joff 
    529       1.1      joff int
    530       1.1      joff atu_start_scan(struct atu_softc *sc)
    531       1.1      joff {
    532      1.15    rpaulo 	struct ieee80211com		*ic = &sc->sc_ic;
    533       1.1      joff 	struct atu_cmd_do_scan		Scan;
    534       1.1      joff 	usbd_status			err;
    535       1.1      joff 	int				Cnt;
    536       1.1      joff 
    537       1.1      joff 	memset(&Scan, 0, sizeof(Scan));
    538       1.1      joff 
    539       1.1      joff 	Scan.Cmd = CMD_START_SCAN;
    540       1.1      joff 	Scan.Reserved = 0;
    541       1.1      joff 	USETW(Scan.Size, sizeof(Scan) - 4);
    542       1.1      joff 
    543       1.1      joff 	/* use the broadcast BSSID (in active scan) */
    544       1.1      joff 	for (Cnt=0; Cnt<6; Cnt++)
    545       1.1      joff 		Scan.BSSID[Cnt] = 0xff;
    546       1.1      joff 
    547       1.1      joff 	memset(Scan.SSID, 0x00, sizeof(Scan.SSID));
    548      1.15    rpaulo 	memcpy(Scan.SSID, ic->ic_des_essid, ic->ic_des_esslen);
    549      1.15    rpaulo 	Scan.SSID_Len = ic->ic_des_esslen;
    550       1.1      joff 
    551       1.1      joff 	/* default values for scan */
    552       1.1      joff 	Scan.ScanType = ATU_SCAN_ACTIVE;
    553       1.1      joff 	if (sc->atu_desired_channel != IEEE80211_CHAN_ANY)
    554      1.51     skrll 		Scan.Channel = (uint8_t)sc->atu_desired_channel;
    555       1.1      joff 	else
    556       1.1      joff 		Scan.Channel = sc->atu_channel;
    557       1.1      joff 
    558      1.17    rpaulo 	ic->ic_curchan = &ic->ic_channels[Scan.Channel];
    559      1.17    rpaulo 
    560       1.1      joff 	/* we like scans to be quick :) */
    561       1.1      joff 	/* the time we wait before sending probe's */
    562       1.1      joff 	USETW(Scan.ProbeDelay, 0);
    563       1.1      joff 	/* the time we stay on one channel */
    564       1.1      joff 	USETW(Scan.MinChannelTime, 100);
    565       1.1      joff 	USETW(Scan.MaxChannelTime, 200);
    566      1.41   mbalmer 	/* whether or not we scan all channels */
    567       1.1      joff 	Scan.InternationalScan = 0xc1;
    568       1.1      joff 
    569       1.1      joff #ifdef ATU_DEBUG
    570       1.1      joff 	if (atudebug) {
    571      1.27    dyoung 		DPRINTFN(20, ("%s: scan cmd len=%02zx\n",
    572      1.40    dyoung 		    device_xname(sc->atu_dev), sizeof(Scan)));
    573       1.1      joff 	}
    574       1.1      joff #endif /* ATU_DEBUG */
    575       1.1      joff 
    576       1.1      joff 	/* Write config to adapter */
    577      1.51     skrll 	err = atu_send_command(sc, (uint8_t *)&Scan, sizeof(Scan));
    578       1.1      joff 	if (err)
    579       1.1      joff 		return err;
    580       1.1      joff 
    581       1.1      joff 	/*
    582       1.1      joff 	 * We don't wait for the command to finish... the mgmt-thread will do
    583       1.1      joff 	 * that for us
    584       1.1      joff 	 */
    585       1.1      joff 	/*
    586       1.1      joff 	err = atu_wait_completion(sc, CMD_START_SCAN, NULL);
    587       1.1      joff 	if (err)
    588       1.1      joff 		return err;
    589       1.1      joff 	*/
    590       1.1      joff 	return 0;
    591       1.1      joff }
    592       1.1      joff 
    593       1.1      joff int
    594       1.1      joff atu_switch_radio(struct atu_softc *sc, int state)
    595       1.1      joff {
    596       1.1      joff 	usbd_status		err;
    597       1.1      joff 	struct atu_cmd		CmdRadio;
    598       1.1      joff 
    599       1.1      joff 	if (sc->atu_radio == RadioIntersil) {
    600       1.1      joff 		/*
    601       1.1      joff 		 * Intersil doesn't seem to need/support switching the radio
    602       1.1      joff 		 * on/off
    603       1.1      joff 		 */
    604       1.1      joff 		return 0;
    605       1.1      joff 	}
    606       1.1      joff 
    607       1.1      joff 	memset(&CmdRadio, 0, sizeof(CmdRadio));
    608       1.1      joff 	CmdRadio.Cmd = CMD_RADIO_ON;
    609       1.1      joff 
    610       1.1      joff 	if (sc->atu_radio_on != state) {
    611       1.1      joff 		if (state == 0)
    612       1.1      joff 			CmdRadio.Cmd = CMD_RADIO_OFF;
    613       1.1      joff 
    614      1.51     skrll 		err = atu_send_command(sc, (uint8_t *)&CmdRadio,
    615       1.1      joff 		    sizeof(CmdRadio));
    616       1.1      joff 		if (err)
    617       1.1      joff 			return err;
    618       1.1      joff 
    619       1.1      joff 		err = atu_wait_completion(sc, CmdRadio.Cmd, NULL);
    620       1.1      joff 		if (err)
    621       1.1      joff 			return err;
    622       1.1      joff 
    623       1.1      joff 		DPRINTFN(10, ("%s: radio turned %s\n",
    624      1.40    dyoung 		    device_xname(sc->atu_dev), state ? "on" : "off"));
    625       1.1      joff 		sc->atu_radio_on = state;
    626       1.1      joff 	}
    627       1.1      joff 	return 0;
    628       1.1      joff }
    629       1.1      joff 
    630       1.1      joff int
    631       1.1      joff atu_initial_config(struct atu_softc *sc)
    632       1.1      joff {
    633       1.1      joff 	struct ieee80211com		*ic = &sc->sc_ic;
    634      1.51     skrll 	uint32_t			i;
    635       1.1      joff 	usbd_status			err;
    636      1.51     skrll /*	uint8_t				rates[4] = {0x82, 0x84, 0x8B, 0x96};*/
    637      1.51     skrll 	uint8_t				rates[4] = {0x82, 0x04, 0x0B, 0x16};
    638       1.1      joff 	struct atu_cmd_card_config	cmd;
    639      1.51     skrll 	uint8_t				reg_domain;
    640       1.1      joff 
    641      1.40    dyoung 	DPRINTFN(10, ("%s: sending mac-addr\n", device_xname(sc->atu_dev)));
    642       1.1      joff 	err = atu_send_mib(sc, MIB_MAC_ADDR__ADDR, ic->ic_myaddr);
    643       1.1      joff 	if (err) {
    644       1.1      joff 		DPRINTF(("%s: error setting mac-addr\n",
    645      1.40    dyoung 		    device_xname(sc->atu_dev)));
    646       1.1      joff 		return err;
    647       1.1      joff 	}
    648       1.1      joff 
    649       1.1      joff 	/*
    650      1.40    dyoung 	DPRINTF(("%s: sending reg-domain\n", device_xname(sc->atu_dev)));
    651       1.1      joff 	err = atu_send_mib(sc, MIB_PHY__REG_DOMAIN, NR(0x30));
    652       1.1      joff 	if (err) {
    653       1.1      joff 		DPRINTF(("%s: error setting mac-addr\n",
    654      1.40    dyoung 		    device_xname(sc->atu_dev)));
    655       1.1      joff 		return err;
    656       1.1      joff 	}
    657       1.1      joff 	*/
    658       1.1      joff 
    659       1.1      joff 	memset(&cmd, 0, sizeof(cmd));
    660       1.1      joff 	cmd.Cmd = CMD_STARTUP;
    661       1.1      joff 	cmd.Reserved = 0;
    662       1.1      joff 	USETW(cmd.Size, sizeof(cmd) - 4);
    663       1.1      joff 
    664       1.1      joff 	if (sc->atu_desired_channel != IEEE80211_CHAN_ANY)
    665      1.51     skrll 		cmd.Channel = (uint8_t)sc->atu_desired_channel;
    666       1.1      joff 	else
    667       1.1      joff 		cmd.Channel = sc->atu_channel;
    668       1.1      joff 	cmd.AutoRateFallback = 1;
    669       1.1      joff 	memcpy(cmd.BasicRateSet, rates, 4);
    670       1.1      joff 
    671       1.1      joff 	/* ShortRetryLimit should be 7 according to 802.11 spec */
    672       1.1      joff 	cmd.ShortRetryLimit = 7;
    673       1.1      joff 	USETW(cmd.RTS_Threshold, 2347);
    674       1.1      joff 	USETW(cmd.FragThreshold, 2346);
    675       1.1      joff 
    676       1.1      joff 	/* Doesn't seem to work, but we'll set it to 1 anyway */
    677       1.1      joff 	cmd.PromiscuousMode = 1;
    678       1.1      joff 
    679       1.1      joff 	/* this goes into the beacon we transmit */
    680       1.6      joff 	if (ic->ic_flags & IEEE80211_F_PRIVACY)
    681       1.6      joff 		cmd.PrivacyInvoked = 1;
    682       1.6      joff 	else
    683       1.1      joff 		cmd.PrivacyInvoked = 0;
    684       1.1      joff 
    685       1.1      joff 	cmd.ExcludeUnencrypted = 0;
    686       1.6      joff 
    687      1.17    rpaulo 	if (ic->ic_flags & IEEE80211_F_PRIVACY) {
    688      1.17    rpaulo 		switch (ic->ic_nw_keys[ic->ic_def_txkey].wk_keylen) {
    689      1.17    rpaulo 		case 5:
    690      1.17    rpaulo 			cmd.EncryptionType = ATU_WEP_40BITS;
    691      1.17    rpaulo 			break;
    692      1.17    rpaulo 		case 13:
    693      1.17    rpaulo 			cmd.EncryptionType = ATU_WEP_104BITS;
    694      1.17    rpaulo 			break;
    695      1.17    rpaulo 		default:
    696      1.17    rpaulo 			cmd.EncryptionType = ATU_WEP_OFF;
    697      1.17    rpaulo 			break;
    698      1.17    rpaulo 		}
    699       1.6      joff 
    700       1.6      joff 
    701      1.17    rpaulo 		cmd.WEP_DefaultKeyID = ic->ic_def_txkey;
    702      1.17    rpaulo 		for (i = 0; i < IEEE80211_WEP_NKID; i++) {
    703      1.49  christos 			memcpy(cmd.WEP_DefaultKey[i], ic->ic_nw_keys[i].wk_key,
    704      1.49  christos 			    ic->ic_nw_keys[i].wk_keylen);
    705      1.17    rpaulo 		}
    706       1.6      joff 	}
    707       1.1      joff 
    708       1.1      joff 	/* Setting the SSID here doesn't seem to do anything */
    709      1.15    rpaulo 	memset(cmd.SSID, 0x00, sizeof(cmd.SSID));
    710      1.15    rpaulo 	memcpy(cmd.SSID, ic->ic_des_essid, ic->ic_des_esslen);
    711      1.15    rpaulo 	cmd.SSID_Len = ic->ic_des_esslen;
    712       1.1      joff 
    713       1.1      joff 	cmd.ShortPreamble = 0;
    714       1.1      joff 	USETW(cmd.BeaconPeriod, 100);
    715       1.1      joff 	/* cmd.BeaconPeriod = 65535; */
    716       1.1      joff 
    717       1.1      joff 	/*
    718       1.1      joff 	 * TODO:
    719       1.1      joff 	 * read reg domain MIB_PHY @ 0x17 (1 byte), (reply = 0x30)
    720      1.36       snj 	 * we should do something useful with this info. right now it's just
    721       1.1      joff 	 * ignored
    722       1.1      joff 	 */
    723       1.1      joff 	err = atu_get_mib(sc, MIB_PHY__REG_DOMAIN, &reg_domain);
    724       1.1      joff 	if (err) {
    725       1.1      joff 		DPRINTF(("%s: could not get regdomain!\n",
    726      1.40    dyoung 		    device_xname(sc->atu_dev)));
    727       1.1      joff 	} else {
    728       1.1      joff 		DPRINTF(("%s: in reg domain 0x%x according to the "
    729      1.40    dyoung 		    "adapter\n", device_xname(sc->atu_dev), reg_domain));
    730       1.1      joff 	}
    731       1.1      joff 
    732       1.1      joff #ifdef ATU_DEBUG
    733       1.1      joff 	if (atudebug) {
    734      1.40    dyoung 		DPRINTFN(20, ("%s: configlen=%02zx\n", device_xname(sc->atu_dev),
    735      1.27    dyoung 		    sizeof(cmd)));
    736       1.1      joff 	}
    737       1.1      joff #endif /* ATU_DEBUG */
    738       1.1      joff 
    739       1.1      joff 	/* Windoze : driver says exclude-unencrypted=1 & encr-type=1 */
    740       1.1      joff 
    741      1.51     skrll 	err = atu_send_command(sc, (uint8_t *)&cmd, sizeof(cmd));
    742       1.1      joff 	if (err)
    743       1.1      joff 		return err;
    744       1.1      joff 	err = atu_wait_completion(sc, CMD_STARTUP, NULL);
    745       1.1      joff 	if (err)
    746       1.1      joff 		return err;
    747       1.1      joff 
    748       1.1      joff 	/* Turn on radio now */
    749       1.1      joff 	err = atu_switch_radio(sc, 1);
    750       1.1      joff 	if (err)
    751       1.1      joff 		return err;
    752       1.1      joff 
    753       1.1      joff 	/* preamble type = short */
    754       1.1      joff 	err = atu_send_mib(sc, MIB_LOCAL__PREAMBLE, NR(PREAMBLE_SHORT));
    755       1.1      joff 	if (err)
    756       1.1      joff 		return err;
    757       1.1      joff 
    758       1.1      joff 	/* frag = 1536 */
    759       1.1      joff 	err = atu_send_mib(sc, MIB_MAC__FRAG, NR(2346));
    760       1.1      joff 	if (err)
    761       1.1      joff 		return err;
    762       1.1      joff 
    763       1.1      joff 	/* rts = 1536 */
    764       1.1      joff 	err = atu_send_mib(sc, MIB_MAC__RTS, NR(2347));
    765       1.1      joff 	if (err)
    766       1.1      joff 		return err;
    767       1.1      joff 
    768       1.1      joff 	/* auto rate fallback = 1 */
    769       1.1      joff 	err = atu_send_mib(sc, MIB_LOCAL__AUTO_RATE_FALLBACK, NR(1));
    770       1.1      joff 	if (err)
    771       1.1      joff 		return err;
    772       1.1      joff 
    773       1.1      joff 	/* power mode = full on, no power saving */
    774       1.1      joff 	err = atu_send_mib(sc, MIB_MAC_MGMT__POWER_MODE,
    775       1.1      joff 	    NR(POWER_MODE_ACTIVE));
    776       1.1      joff 	if (err)
    777       1.1      joff 		return err;
    778       1.1      joff 
    779       1.1      joff 	DPRINTFN(10, ("%s: completed initial config\n",
    780      1.40    dyoung 	   device_xname(sc->atu_dev)));
    781       1.1      joff 	return 0;
    782       1.1      joff }
    783       1.1      joff 
    784       1.1      joff int
    785       1.1      joff atu_join(struct atu_softc *sc, struct ieee80211_node *node)
    786       1.1      joff {
    787       1.1      joff 	struct atu_cmd_join		join;
    788      1.51     skrll 	uint8_t				status = 0;	/* XXX: GCC */
    789       1.1      joff 	usbd_status			err;
    790       1.1      joff 
    791       1.1      joff 	memset(&join, 0, sizeof(join));
    792       1.1      joff 
    793       1.1      joff 	join.Cmd = CMD_JOIN;
    794       1.1      joff 	join.Reserved = 0x00;
    795       1.1      joff 	USETW(join.Size, sizeof(join) - 4);
    796       1.1      joff 
    797       1.1      joff 	DPRINTFN(15, ("%s: pre-join sc->atu_bssid=%s\n",
    798      1.40    dyoung 	    device_xname(sc->atu_dev), ether_sprintf(sc->atu_bssid)));
    799      1.40    dyoung 	DPRINTFN(15, ("%s: mode=%d\n", device_xname(sc->atu_dev),
    800       1.1      joff 	    sc->atu_mode));
    801       1.1      joff 	memcpy(join.bssid, node->ni_bssid, IEEE80211_ADDR_LEN);
    802       1.1      joff 	memset(join.essid, 0x00, 32);
    803       1.1      joff 	memcpy(join.essid, node->ni_essid, node->ni_esslen);
    804       1.1      joff 	join.essid_size = node->ni_esslen;
    805       1.1      joff 	if (node->ni_capinfo & IEEE80211_CAPINFO_IBSS)
    806       1.1      joff 		join.bss_type = AD_HOC_MODE;
    807       1.1      joff 	else
    808       1.1      joff 		join.bss_type = INFRASTRUCTURE_MODE;
    809       1.1      joff 	join.channel = ieee80211_chan2ieee(&sc->sc_ic, node->ni_chan);
    810       1.1      joff 
    811       1.1      joff 	USETW(join.timeout, ATU_JOIN_TIMEOUT);
    812       1.1      joff 	join.reserved = 0x00;
    813       1.1      joff 
    814       1.1      joff 	DPRINTFN(10, ("%s: trying to join BSSID=%s\n",
    815      1.40    dyoung 	    device_xname(sc->atu_dev), ether_sprintf(join.bssid)));
    816      1.51     skrll 	err = atu_send_command(sc, (uint8_t *)&join, sizeof(join));
    817       1.1      joff 	if (err) {
    818       1.1      joff 		DPRINTF(("%s: ERROR trying to join IBSS\n",
    819      1.40    dyoung 		    device_xname(sc->atu_dev)));
    820       1.1      joff 		return err;
    821       1.1      joff 	}
    822       1.1      joff 	err = atu_wait_completion(sc, CMD_JOIN, &status);
    823       1.1      joff 	if (err) {
    824       1.1      joff 		DPRINTF(("%s: error joining BSS!\n",
    825      1.40    dyoung 		    device_xname(sc->atu_dev)));
    826       1.1      joff 		return err;
    827       1.1      joff 	}
    828       1.1      joff 	if (status != STATUS_COMPLETE) {
    829       1.1      joff 		DPRINTF(("%s: error joining... [status=%02x]\n",
    830      1.40    dyoung 		    device_xname(sc->atu_dev), status));
    831       1.1      joff 		return status;
    832       1.1      joff 	} else {
    833      1.40    dyoung 		DPRINTFN(10, ("%s: joined BSS\n", device_xname(sc->atu_dev)));
    834       1.1      joff 	}
    835       1.1      joff 	return err;
    836       1.1      joff }
    837       1.1      joff 
    838       1.1      joff /*
    839       1.1      joff  * Get the state of the DFU unit
    840       1.1      joff  */
    841       1.1      joff int8_t
    842       1.1      joff atu_get_dfu_state(struct atu_softc *sc)
    843       1.1      joff {
    844      1.51     skrll 	uint8_t	state;
    845       1.1      joff 
    846       1.1      joff 	if (atu_usb_request(sc, DFU_GETSTATE, 0, 0, 1, &state))
    847       1.1      joff 		return -1;
    848       1.1      joff 	return state;
    849       1.1      joff }
    850       1.1      joff 
    851       1.1      joff /*
    852       1.1      joff  * Get MAC opmode
    853       1.1      joff  */
    854      1.51     skrll uint8_t
    855      1.51     skrll atu_get_opmode(struct atu_softc *sc, uint8_t *mode)
    856       1.1      joff {
    857       1.1      joff 
    858       1.1      joff 	return atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x33, 0x0001,
    859       1.1      joff 	    0x0000, 1, mode);
    860       1.1      joff }
    861       1.1      joff 
    862       1.1      joff /*
    863       1.1      joff  * Upload the internal firmware into the device
    864       1.1      joff  */
    865       1.1      joff void
    866      1.29      cube atu_internal_firmware(device_t arg)
    867       1.1      joff {
    868      1.29      cube 	struct atu_softc *sc = device_private(arg);
    869       1.1      joff 	u_char	state, *ptr = NULL, *firm = NULL, status[6];
    870       1.1      joff 	int block_size, block = 0, err, i;
    871       1.1      joff 	size_t	bytes_left = 0;
    872       1.1      joff 
    873       1.1      joff 	/*
    874       1.1      joff 	 * Uploading firmware is done with the DFU (Device Firmware Upgrade)
    875       1.1      joff 	 * interface. See "Universal Serial Bus - Device Class Specification
    876       1.1      joff 	 * for Device Firmware Upgrade" pdf for details of the protocol.
    877      1.24       wiz 	 * Maybe this could be moved to a separate 'firmware driver' once more
    878       1.1      joff 	 * device drivers need it... For now we'll just do it here.
    879       1.1      joff 	 *
    880       1.1      joff 	 * Just for your information, the Atmel's DFU descriptor looks like
    881       1.1      joff 	 * this:
    882       1.1      joff 	 *
    883       1.1      joff 	 * 07		size
    884       1.1      joff 	 * 21		type
    885       1.1      joff 	 * 01		capabilities : only firmware download, need reset
    886       1.1      joff 	 *		  after download
    887       1.1      joff 	 * 13 05	detach timeout : max 1299ms between DFU_DETACH and
    888       1.1      joff 	 *		  reset
    889       1.1      joff 	 * 00 04	max bytes of firmware per transaction : 1024
    890       1.1      joff 	 */
    891       1.1      joff 
    892       1.1      joff 	/* Choose the right firmware for the device */
    893      1.27    dyoung 	for (i = 0; i < __arraycount(atu_radfirm); i++)
    894       1.1      joff 		if (sc->atu_radio == atu_radfirm[i].atur_type) {
    895       1.1      joff 			firm = atu_radfirm[i].atur_internal;
    896       1.1      joff 			bytes_left = atu_radfirm[i].atur_internal_sz;
    897       1.1      joff 		}
    898       1.1      joff 
    899       1.1      joff 	if (firm == NULL) {
    900      1.29      cube 		aprint_error_dev(arg, "no firmware found\n");
    901       1.1      joff 		return;
    902       1.1      joff 	}
    903       1.1      joff 
    904       1.1      joff 	ptr = firm;
    905       1.1      joff 	state = atu_get_dfu_state(sc);
    906       1.1      joff 
    907       1.1      joff 	while (block >= 0 && state > 0) {
    908       1.1      joff 		switch (state) {
    909       1.1      joff 		case DFUState_DnLoadSync:
    910       1.1      joff 			/* get DFU status */
    911       1.1      joff 			err = atu_usb_request(sc, DFU_GETSTATUS, 0, 0 , 6,
    912       1.1      joff 			    status);
    913       1.1      joff 			if (err) {
    914       1.1      joff 				DPRINTF(("%s: dfu_getstatus failed!\n",
    915      1.40    dyoung 				    device_xname(sc->atu_dev)));
    916       1.1      joff 				return;
    917       1.1      joff 			}
    918       1.1      joff 			/* success means state => DnLoadIdle */
    919       1.1      joff 			state = DFUState_DnLoadIdle;
    920       1.1      joff 			continue;
    921       1.1      joff 			break;
    922       1.1      joff 
    923       1.1      joff 		case DFUState_DFUIdle:
    924       1.1      joff 		case DFUState_DnLoadIdle:
    925       1.1      joff 			if (bytes_left>=DFU_MaxBlockSize)
    926       1.1      joff 				block_size = DFU_MaxBlockSize;
    927       1.1      joff 			else
    928       1.1      joff 				block_size = bytes_left;
    929       1.1      joff 			DPRINTFN(15, ("%s: firmware block %d\n",
    930      1.40    dyoung 			    device_xname(sc->atu_dev), block));
    931       1.1      joff 
    932       1.1      joff 			err = atu_usb_request(sc, DFU_DNLOAD, block++, 0,
    933       1.1      joff 			    block_size, ptr);
    934       1.1      joff 			if (err) {
    935       1.1      joff 				DPRINTF(("%s: dfu_dnload failed\n",
    936      1.40    dyoung 				    device_xname(sc->atu_dev)));
    937       1.1      joff 				return;
    938       1.1      joff 			}
    939       1.1      joff 
    940       1.1      joff 			ptr += block_size;
    941       1.1      joff 			bytes_left -= block_size;
    942       1.1      joff 			if (block_size == 0)
    943       1.1      joff 				block = -1;
    944       1.1      joff 			break;
    945       1.1      joff 
    946       1.1      joff 		default:
    947       1.1      joff 			usbd_delay_ms(sc->atu_udev, 100);
    948       1.1      joff 			DPRINTFN(20, ("%s: sleeping for a while\n",
    949      1.40    dyoung 			    device_xname(sc->atu_dev)));
    950       1.1      joff 			break;
    951       1.1      joff 		}
    952       1.1      joff 
    953       1.1      joff 		state = atu_get_dfu_state(sc);
    954       1.1      joff 	}
    955       1.1      joff 
    956       1.1      joff 	if (state != DFUState_ManifestSync) {
    957       1.1      joff 		DPRINTF(("%s: state != manifestsync... eek!\n",
    958      1.40    dyoung 		    device_xname(sc->atu_dev)));
    959       1.1      joff 	}
    960       1.1      joff 
    961       1.1      joff 	err = atu_usb_request(sc, DFU_GETSTATUS, 0, 0, 6, status);
    962       1.1      joff 	if (err) {
    963       1.1      joff 		DPRINTF(("%s: dfu_getstatus failed!\n",
    964      1.40    dyoung 		    device_xname(sc->atu_dev)));
    965       1.1      joff 		return;
    966       1.1      joff 	}
    967       1.1      joff 
    968      1.40    dyoung 	DPRINTFN(15, ("%s: sending remap\n", device_xname(sc->atu_dev)));
    969       1.1      joff 	err = atu_usb_request(sc, DFU_REMAP, 0, 0, 0, NULL);
    970      1.39       jym 	if ((err) && !(sc->atu_quirk & ATU_QUIRK_NO_REMAP)) {
    971      1.40    dyoung 		DPRINTF(("%s: remap failed!\n", device_xname(sc->atu_dev)));
    972       1.1      joff 		return;
    973       1.1      joff 	}
    974       1.1      joff 
    975       1.1      joff 	/* after a lot of trying and measuring I found out the device needs
    976       1.1      joff 	 * about 56 miliseconds after sending the remap command before
    977       1.1      joff 	 * it's ready to communicate again. So we'll wait just a little bit
    978       1.1      joff 	 * longer than that to be sure...
    979       1.1      joff 	 */
    980       1.1      joff 	usbd_delay_ms(sc->atu_udev, 56+100);
    981       1.1      joff 
    982      1.29      cube 	aprint_error_dev(arg, "reattaching after firmware upload\n");
    983       1.1      joff 	usb_needs_reattach(sc->atu_udev);
    984       1.1      joff }
    985       1.1      joff 
    986       1.1      joff void
    987      1.29      cube atu_external_firmware(device_t arg)
    988       1.1      joff {
    989      1.29      cube 	struct atu_softc *sc = device_private(arg);
    990       1.1      joff 	u_char	*ptr = NULL, *firm = NULL;
    991       1.1      joff 	int	block_size, block = 0, err, i;
    992       1.1      joff 	size_t	bytes_left = 0;
    993       1.1      joff 
    994      1.27    dyoung 	for (i = 0; i < __arraycount(atu_radfirm); i++)
    995       1.1      joff 		if (sc->atu_radio == atu_radfirm[i].atur_type) {
    996       1.1      joff 			firm = atu_radfirm[i].atur_external;
    997       1.1      joff 			bytes_left = atu_radfirm[i].atur_external_sz;
    998       1.1      joff 		}
    999       1.1      joff 
   1000       1.1      joff 	if (firm == NULL) {
   1001      1.29      cube 		aprint_error_dev(arg, "no firmware found\n");
   1002       1.1      joff 		return;
   1003       1.1      joff 	}
   1004       1.1      joff 	ptr = firm;
   1005       1.1      joff 
   1006       1.1      joff 	while (bytes_left) {
   1007       1.1      joff 		if (bytes_left > 1024)
   1008       1.1      joff 			block_size = 1024;
   1009       1.1      joff 		else
   1010       1.1      joff 			block_size = bytes_left;
   1011       1.1      joff 
   1012       1.1      joff 		DPRINTFN(15, ("%s: block:%d size:%d\n",
   1013      1.40    dyoung 		    device_xname(sc->atu_dev), block, block_size));
   1014       1.1      joff 		err = atu_usb_request(sc, UT_WRITE_VENDOR_DEVICE, 0x0e,
   1015       1.1      joff 		    0x0802, block, block_size, ptr);
   1016       1.1      joff 		if (err) {
   1017       1.1      joff 			DPRINTF(("%s: could not load external firmware "
   1018      1.40    dyoung 			    "block\n", device_xname(sc->atu_dev)));
   1019       1.1      joff 			return;
   1020       1.1      joff 		}
   1021       1.1      joff 
   1022       1.1      joff 		ptr += block_size;
   1023       1.1      joff 		block++;
   1024       1.1      joff 		bytes_left -= block_size;
   1025       1.1      joff 	}
   1026       1.1      joff 
   1027       1.1      joff 	err = atu_usb_request(sc, UT_WRITE_VENDOR_DEVICE, 0x0e, 0x0802,
   1028       1.1      joff 	    block, 0, NULL);
   1029       1.1      joff 	if (err) {
   1030       1.1      joff 		DPRINTF(("%s: could not load last zero-length firmware "
   1031      1.40    dyoung 		    "block\n", device_xname(sc->atu_dev)));
   1032       1.1      joff 		return;
   1033       1.1      joff 	}
   1034       1.1      joff 
   1035       1.1      joff 	/*
   1036      1.50       snj 	 * The SMC2662w V.4 seems to require some time to do its thing with
   1037       1.1      joff 	 * the external firmware... 20 ms isn't enough, but 21 ms works 100
   1038       1.1      joff 	 * times out of 100 tries. We'll wait a bit longer just to be sure
   1039       1.1      joff 	 */
   1040       1.1      joff 	if (sc->atu_quirk & ATU_QUIRK_FW_DELAY)
   1041       1.1      joff 		usbd_delay_ms(sc->atu_udev, 21 + 100);
   1042       1.1      joff 
   1043       1.1      joff 	DPRINTFN(10, ("%s: external firmware upload done\n",
   1044      1.40    dyoung 	    device_xname(sc->atu_dev)));
   1045       1.1      joff 	/* complete configuration after the firmwares have been uploaded */
   1046       1.1      joff 	atu_complete_attach(sc);
   1047       1.1      joff }
   1048       1.1      joff 
   1049       1.1      joff int
   1050       1.1      joff atu_get_card_config(struct atu_softc *sc)
   1051       1.1      joff {
   1052       1.1      joff 	struct ieee80211com		*ic = &sc->sc_ic;
   1053       1.1      joff 	struct atu_rfmd_conf		rfmd_conf;
   1054       1.1      joff 	struct atu_intersil_conf	intersil_conf;
   1055       1.1      joff 	int				err;
   1056       1.1      joff 
   1057       1.1      joff 	switch (sc->atu_radio) {
   1058       1.1      joff 
   1059       1.1      joff 	case RadioRFMD:
   1060       1.1      joff 	case RadioRFMD2958:
   1061       1.1      joff 	case RadioRFMD2958_SMC:
   1062      1.44       chs 	case AT76C503_rfmd_acc:
   1063      1.44       chs 	case AT76C505_rfmd:
   1064       1.1      joff 		err = atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x33,
   1065       1.1      joff 		    0x0a02, 0x0000, sizeof(rfmd_conf),
   1066      1.51     skrll 		    (uint8_t *)&rfmd_conf);
   1067       1.1      joff 		if (err) {
   1068       1.1      joff 			DPRINTF(("%s: could not get rfmd config!\n",
   1069      1.40    dyoung 			    device_xname(sc->atu_dev)));
   1070       1.1      joff 			return err;
   1071       1.1      joff 		}
   1072       1.1      joff 		memcpy(ic->ic_myaddr, rfmd_conf.MACAddr, IEEE80211_ADDR_LEN);
   1073       1.1      joff 		break;
   1074       1.1      joff 
   1075       1.1      joff 	case RadioIntersil:
   1076      1.44       chs 	case AT76C503_i3863:
   1077       1.1      joff 		err = atu_usb_request(sc, UT_READ_VENDOR_INTERFACE, 0x33,
   1078       1.1      joff 		    0x0902, 0x0000, sizeof(intersil_conf),
   1079      1.51     skrll 		    (uint8_t *)&intersil_conf);
   1080       1.1      joff 		if (err) {
   1081       1.1      joff 			DPRINTF(("%s: could not get intersil config!\n",
   1082      1.40    dyoung 			    device_xname(sc->atu_dev)));
   1083       1.1      joff 			return err;
   1084       1.1      joff 		}
   1085       1.1      joff 		memcpy(ic->ic_myaddr, intersil_conf.MACAddr,
   1086       1.1      joff 		    IEEE80211_ADDR_LEN);
   1087       1.1      joff 		break;
   1088       1.1      joff 	}
   1089       1.1      joff 	return 0;
   1090       1.1      joff }
   1091       1.1      joff 
   1092       1.1      joff /*
   1093       1.1      joff  * Probe for an AT76c503 chip.
   1094       1.1      joff  */
   1095      1.31    dyoung int
   1096      1.31    dyoung atu_match(device_t parent, cfdata_t match, void *aux)
   1097       1.1      joff {
   1098      1.31    dyoung 	struct usb_attach_arg *uaa = aux;
   1099       1.1      joff 	int			i;
   1100       1.1      joff 
   1101      1.27    dyoung 	for (i = 0; i < __arraycount(atu_devs); i++) {
   1102       1.1      joff 		struct atu_type *t = &atu_devs[i];
   1103       1.1      joff 
   1104      1.51     skrll 		if (uaa->uaa_vendor == t->atu_vid &&
   1105      1.51     skrll 		    uaa->uaa_product == t->atu_pid) {
   1106       1.1      joff 			return(UMATCH_VENDOR_PRODUCT);
   1107       1.1      joff 		}
   1108       1.1      joff 	}
   1109       1.1      joff 	return(UMATCH_NONE);
   1110       1.1      joff }
   1111       1.1      joff 
   1112       1.1      joff int
   1113       1.1      joff atu_media_change(struct ifnet *ifp)
   1114       1.1      joff {
   1115       1.1      joff 	struct atu_softc	*sc = ifp->if_softc;
   1116       1.6      joff 	struct ieee80211com	*ic = &sc->sc_ic;
   1117       1.6      joff 	int			err, s;
   1118       1.1      joff 
   1119      1.40    dyoung 	DPRINTFN(10, ("%s: atu_media_change\n", device_xname(sc->atu_dev)));
   1120       1.1      joff 
   1121       1.1      joff 	err = ieee80211_media_change(ifp);
   1122       1.1      joff 	if (err == ENETRESET) {
   1123       1.1      joff 		if ((ifp->if_flags & (IFF_RUNNING|IFF_UP)) ==
   1124       1.6      joff 		    (IFF_RUNNING|IFF_UP)) {
   1125       1.6      joff 			s = splnet();
   1126       1.6      joff 			ieee80211_new_state(ic, IEEE80211_S_INIT, -1);
   1127       1.6      joff 			atu_initial_config(sc);
   1128       1.6      joff 			ieee80211_new_state(ic, IEEE80211_S_SCAN, -1);
   1129       1.6      joff 			splx(s);
   1130       1.6      joff 		}
   1131       1.1      joff 		err = 0;
   1132       1.1      joff 	}
   1133       1.1      joff 
   1134      1.51     skrll 	return err;
   1135       1.1      joff }
   1136       1.1      joff 
   1137       1.1      joff void
   1138       1.1      joff atu_media_status(struct ifnet *ifp, struct ifmediareq *req)
   1139       1.1      joff {
   1140       1.1      joff #ifdef ATU_DEBUG
   1141       1.1      joff 	struct atu_softc	*sc = ifp->if_softc;
   1142       1.1      joff #endif /* ATU_DEBUG */
   1143       1.1      joff 
   1144      1.40    dyoung 	DPRINTFN(10, ("%s: atu_media_status\n", device_xname(sc->atu_dev)));
   1145       1.1      joff 
   1146       1.1      joff 	ieee80211_media_status(ifp, req);
   1147       1.1      joff }
   1148       1.1      joff 
   1149       1.1      joff void
   1150       1.1      joff atu_task(void *arg)
   1151       1.1      joff {
   1152       1.1      joff 	struct atu_softc	*sc = (struct atu_softc *)arg;
   1153       1.1      joff 	struct ieee80211com	*ic = &sc->sc_ic;
   1154       1.1      joff 	usbd_status		err;
   1155       1.1      joff 	int			s;
   1156       1.1      joff 
   1157      1.40    dyoung 	DPRINTFN(10, ("%s: atu_task\n", device_xname(sc->atu_dev)));
   1158       1.1      joff 
   1159       1.1      joff 	if (sc->sc_state != ATU_S_OK)
   1160       1.1      joff 		return;
   1161       1.1      joff 
   1162       1.1      joff 	switch (sc->sc_cmd) {
   1163       1.1      joff 	case ATU_C_SCAN:
   1164       1.1      joff 
   1165       1.1      joff 		err = atu_start_scan(sc);
   1166       1.1      joff 		if (err) {
   1167       1.6      joff 			DPRINTFN(1, ("%s: atu_task: couldn't start scan!\n",
   1168      1.40    dyoung 			    device_xname(sc->atu_dev)));
   1169       1.1      joff 			return;
   1170       1.1      joff 		}
   1171       1.1      joff 
   1172       1.1      joff 		err = atu_wait_completion(sc, CMD_START_SCAN, NULL);
   1173       1.1      joff 		if (err) {
   1174       1.6      joff 			DPRINTF(("%s: atu_task: error waiting for scan\n",
   1175      1.40    dyoung 			    device_xname(sc->atu_dev)));
   1176       1.1      joff 			return;
   1177       1.1      joff 		}
   1178       1.1      joff 
   1179       1.1      joff 		DPRINTF(("%s: ==========================> END OF SCAN!\n",
   1180      1.40    dyoung 		    device_xname(sc->atu_dev)));
   1181       1.1      joff 
   1182       1.1      joff 		s = splnet();
   1183      1.17    rpaulo 		ieee80211_next_scan(ic);
   1184       1.1      joff 		splx(s);
   1185       1.1      joff 
   1186       1.1      joff 		DPRINTF(("%s: ----------------------======> END OF SCAN2!\n",
   1187      1.40    dyoung 		    device_xname(sc->atu_dev)));
   1188       1.1      joff 		break;
   1189       1.1      joff 
   1190       1.1      joff 	case ATU_C_JOIN:
   1191       1.1      joff 		atu_join(sc, ic->ic_bss);
   1192       1.1      joff 	}
   1193       1.1      joff }
   1194       1.1      joff 
   1195       1.1      joff int
   1196       1.1      joff atu_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg)
   1197       1.1      joff {
   1198      1.12    dyoung 	struct ifnet		*ifp = ic->ic_ifp;
   1199       1.1      joff 	struct atu_softc	*sc = ifp->if_softc;
   1200       1.1      joff 	enum ieee80211_state	ostate = ic->ic_state;
   1201       1.1      joff 
   1202      1.40    dyoung 	DPRINTFN(10, ("%s: atu_newstate: %s -> %s\n", device_xname(sc->atu_dev),
   1203       1.1      joff 	    ieee80211_state_name[ostate], ieee80211_state_name[nstate]));
   1204       1.1      joff 
   1205       1.1      joff 	switch (nstate) {
   1206       1.1      joff 	case IEEE80211_S_SCAN:
   1207       1.1      joff 		memcpy(ic->ic_chan_scan, ic->ic_chan_active,
   1208       1.1      joff 		    sizeof(ic->ic_chan_active));
   1209      1.12    dyoung 		ieee80211_node_table_reset(&ic->ic_scan);
   1210       1.1      joff 
   1211       1.1      joff 		/* tell the event thread that we want a scan */
   1212       1.1      joff 		sc->sc_cmd = ATU_C_SCAN;
   1213      1.22     joerg 		usb_add_task(sc->atu_udev, &sc->sc_task, USB_TASKQ_DRIVER);
   1214       1.1      joff 
   1215       1.1      joff 		/* handle this ourselves */
   1216       1.1      joff 		ic->ic_state = nstate;
   1217      1.51     skrll 		return 0;
   1218       1.1      joff 
   1219       1.1      joff 	case IEEE80211_S_AUTH:
   1220       1.1      joff 	case IEEE80211_S_RUN:
   1221       1.1      joff 		if (ostate == IEEE80211_S_SCAN) {
   1222       1.1      joff 			sc->sc_cmd = ATU_C_JOIN;
   1223      1.22     joerg 			usb_add_task(sc->atu_udev, &sc->sc_task,
   1224      1.22     joerg 			    USB_TASKQ_DRIVER);
   1225       1.1      joff 		}
   1226       1.1      joff 		break;
   1227       1.1      joff 	default:
   1228       1.1      joff 		/* nothing to do */
   1229       1.1      joff 		break;
   1230       1.1      joff 	}
   1231       1.1      joff 
   1232       1.1      joff 	return (*sc->sc_newstate)(ic, nstate, arg);
   1233       1.1      joff }
   1234       1.1      joff 
   1235       1.1      joff /*
   1236       1.1      joff  * Attach the interface. Allocate softc structures, do
   1237       1.1      joff  * setup and ethernet/BPF attach.
   1238       1.1      joff  */
   1239      1.31    dyoung void
   1240      1.31    dyoung atu_attach(device_t parent, device_t self, void *aux)
   1241       1.1      joff {
   1242      1.32    dyoung 	struct atu_softc *sc = device_private(self);
   1243      1.31    dyoung 	struct usb_attach_arg *uaa = aux;
   1244      1.11  augustss 	char				*devinfop;
   1245       1.1      joff 	usbd_status			err;
   1246      1.51     skrll 	struct usbd_device		*dev = uaa->uaa_device;
   1247      1.51     skrll 	uint8_t			mode, channel;
   1248       1.1      joff 	int i;
   1249       1.1      joff 
   1250      1.29      cube 	sc->atu_dev = self;
   1251       1.1      joff 	sc->sc_state = ATU_S_UNCONFIG;
   1252       1.1      joff 
   1253      1.31    dyoung 	aprint_naive("\n");
   1254      1.31    dyoung 	aprint_normal("\n");
   1255      1.33    plunky 
   1256      1.33    plunky 	devinfop = usbd_devinfo_alloc(dev, 0);
   1257      1.29      cube 	aprint_normal_dev(self, "%s\n", devinfop);
   1258      1.11  augustss 	usbd_devinfo_free(devinfop);
   1259       1.1      joff 
   1260       1.1      joff 	err = usbd_set_config_no(dev, ATU_CONFIG_NO, 1);
   1261       1.1      joff 	if (err) {
   1262      1.45     skrll 		aprint_error_dev(self, "failed to set configuration"
   1263      1.45     skrll 		    ", err=%s\n", usbd_errstr(err));
   1264      1.32    dyoung 		return;
   1265       1.1      joff 	}
   1266       1.1      joff 
   1267       1.1      joff 	err = usbd_device2interface_handle(dev, ATU_IFACE_IDX, &sc->atu_iface);
   1268       1.1      joff 	if (err) {
   1269      1.29      cube 		aprint_error_dev(self, "getting interface handle failed\n");
   1270      1.32    dyoung 		return;
   1271       1.1      joff 	}
   1272       1.1      joff 
   1273      1.14   thorpej 	sc->atu_unit = device_unit(self);
   1274       1.1      joff 	sc->atu_udev = dev;
   1275       1.1      joff 
   1276       1.1      joff 	/*
   1277       1.1      joff 	 * look up the radio_type for the device
   1278      1.40    dyoung 	 * basically does the same as atu_match
   1279       1.1      joff 	 */
   1280      1.27    dyoung 	for (i = 0; i < __arraycount(atu_devs); i++) {
   1281       1.1      joff 		struct atu_type *t = &atu_devs[i];
   1282       1.1      joff 
   1283      1.51     skrll 		if (uaa->uaa_vendor == t->atu_vid &&
   1284      1.51     skrll 		    uaa->uaa_product == t->atu_pid) {
   1285       1.1      joff 			sc->atu_radio = t->atu_radio;
   1286       1.1      joff 			sc->atu_quirk = t->atu_quirk;
   1287       1.1      joff 		}
   1288       1.1      joff 	}
   1289       1.1      joff 
   1290       1.1      joff 	/*
   1291       1.1      joff 	 * Check in the interface descriptor if we're in DFU mode
   1292       1.1      joff 	 * If we're in DFU mode, we upload the external firmware
   1293       1.1      joff 	 * If we're not, the PC must have rebooted without power-cycling
   1294       1.1      joff 	 * the device.. I've tried this out, a reboot only requeres the
   1295       1.1      joff 	 * external firmware to be reloaded :)
   1296       1.1      joff 	 *
   1297       1.1      joff 	 * Hmm. The at76c505a doesn't report a DFU descriptor when it's
   1298       1.1      joff 	 * in DFU mode... Let's just try to get the opmode
   1299       1.1      joff 	 */
   1300       1.1      joff 	err = atu_get_opmode(sc, &mode);
   1301      1.40    dyoung 	DPRINTFN(20, ("%s: opmode: %d\n", device_xname(sc->atu_dev), mode));
   1302       1.1      joff 	if (err || (mode != MODE_NETCARD && mode != MODE_NOFLASHNETCARD)) {
   1303       1.1      joff 		DPRINTF(("%s: starting internal firmware download\n",
   1304      1.40    dyoung 		    device_xname(sc->atu_dev)));
   1305       1.1      joff 
   1306      1.29      cube 		atu_internal_firmware(sc->atu_dev);
   1307       1.1      joff 		/*
   1308       1.1      joff 		 * atu_internal_firmware will cause a reset of the device
   1309       1.1      joff 		 * so we don't want to do any more configuration after this
   1310       1.1      joff 		 * point.
   1311       1.1      joff 		 */
   1312      1.32    dyoung 		return;
   1313       1.1      joff 	}
   1314       1.1      joff 
   1315       1.1      joff 	if (mode != MODE_NETCARD) {
   1316       1.1      joff 		DPRINTFN(15, ("%s: device needs external firmware\n",
   1317      1.40    dyoung 		    device_xname(sc->atu_dev)));
   1318       1.1      joff 
   1319       1.1      joff 		if (mode != MODE_NOFLASHNETCARD) {
   1320       1.1      joff 			DPRINTF(("%s: unexpected opmode=%d\n",
   1321      1.40    dyoung 			    device_xname(sc->atu_dev), mode));
   1322       1.1      joff 		}
   1323       1.1      joff 
   1324       1.1      joff 		/*
   1325       1.1      joff 		 * There is no difference in opmode before and after external
   1326       1.1      joff 		 * firmware upload with the SMC2662 V.4 . So instead we'll try
   1327       1.1      joff 		 * to read the channel number. If we succeed, external
   1328       1.1      joff 		 * firmwaremust have been already uploaded...
   1329       1.1      joff 		 */
   1330       1.1      joff 		if (sc->atu_radio != RadioIntersil) {
   1331       1.1      joff 			err = atu_get_mib(sc, MIB_PHY__CHANNEL, &channel);
   1332       1.1      joff 			if (!err) {
   1333       1.1      joff 				DPRINTF(("%s: external firmware has already"
   1334       1.1      joff 				    " been downloaded\n",
   1335      1.40    dyoung 				    device_xname(sc->atu_dev)));
   1336       1.1      joff 				atu_complete_attach(sc);
   1337      1.32    dyoung 				return;
   1338       1.1      joff 			}
   1339       1.1      joff 		}
   1340       1.1      joff 
   1341      1.29      cube 		atu_external_firmware(sc->atu_dev);
   1342       1.1      joff 
   1343       1.1      joff 		/*
   1344       1.1      joff 		 * atu_external_firmware will call atu_complete_attach after
   1345       1.1      joff 		 * it's finished so we can just return.
   1346       1.1      joff 		 */
   1347       1.1      joff 	} else {
   1348       1.1      joff 		/* all the firmwares are in place, so complete the attach */
   1349       1.1      joff 		atu_complete_attach(sc);
   1350       1.1      joff 	}
   1351       1.1      joff 
   1352      1.32    dyoung 	return;
   1353       1.1      joff }
   1354       1.1      joff 
   1355       1.1      joff void
   1356       1.1      joff atu_complete_attach(struct atu_softc *sc)
   1357       1.1      joff {
   1358       1.1      joff 	struct ieee80211com		*ic = &sc->sc_ic;
   1359      1.12    dyoung 	struct ifnet			*ifp = &sc->sc_if;
   1360       1.1      joff 	usb_interface_descriptor_t	*id;
   1361       1.1      joff 	usb_endpoint_descriptor_t	*ed;
   1362       1.1      joff 	usbd_status			err;
   1363       1.1      joff 	int				i;
   1364       1.1      joff #ifdef ATU_DEBUG
   1365       1.1      joff 	struct atu_fw			fw;
   1366       1.1      joff #endif
   1367       1.1      joff 
   1368       1.1      joff 	id = usbd_get_interface_descriptor(sc->atu_iface);
   1369       1.1      joff 
   1370       1.1      joff 	/* Find endpoints. */
   1371       1.1      joff 	for (i = 0; i < id->bNumEndpoints; i++) {
   1372       1.1      joff 		ed = usbd_interface2endpoint_descriptor(sc->atu_iface, i);
   1373       1.1      joff 		if (!ed) {
   1374      1.40    dyoung 			DPRINTF(("%s: num_endp:%d\n", device_xname(sc->atu_dev),
   1375      1.51     skrll 			    sc->atu_iface->ui_idesc->bNumEndpoints));
   1376       1.1      joff 			DPRINTF(("%s: couldn't get ep %d\n",
   1377      1.40    dyoung 			    device_xname(sc->atu_dev), i));
   1378       1.1      joff 			return;
   1379       1.1      joff 		}
   1380       1.1      joff 		if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
   1381       1.1      joff 		    UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
   1382       1.1      joff 			sc->atu_ed[ATU_ENDPT_RX] = ed->bEndpointAddress;
   1383       1.1      joff 		} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
   1384       1.1      joff 			   UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
   1385       1.1      joff 			sc->atu_ed[ATU_ENDPT_TX] = ed->bEndpointAddress;
   1386       1.1      joff 		}
   1387       1.1      joff 	}
   1388       1.1      joff 
   1389       1.1      joff 	/* read device config & get MAC address */
   1390       1.1      joff 	err = atu_get_card_config(sc);
   1391       1.1      joff 	if (err) {
   1392      1.29      cube 		aprint_error("\n%s: could not get card cfg!\n",
   1393      1.32    dyoung 		    device_xname(sc->atu_dev));
   1394       1.1      joff 		return;
   1395       1.1      joff 	}
   1396       1.1      joff 
   1397       1.1      joff #ifdef ATU_DEBUG
   1398       1.1      joff 	/* DEBUG : try to get firmware version */
   1399      1.51     skrll 	err = atu_get_mib(sc, MIB_FW_VERSION, sizeof(fw), 0, (uint8_t *)&fw);
   1400       1.1      joff 	if (!err) {
   1401       1.1      joff 		DPRINTFN(15, ("%s: firmware: maj:%d min:%d patch:%d "
   1402      1.40    dyoung 		    "build:%d\n", device_xname(sc->atu_dev), fw.major, fw.minor,
   1403       1.1      joff 		    fw.patch, fw.build));
   1404       1.1      joff 	} else {
   1405       1.1      joff 		DPRINTF(("%s: get firmware version failed\n",
   1406      1.40    dyoung 		    device_xname(sc->atu_dev)));
   1407       1.1      joff 	}
   1408       1.1      joff #endif /* ATU_DEBUG */
   1409       1.1      joff 
   1410       1.1      joff 	/* Show the world our MAC address */
   1411      1.29      cube 	aprint_normal_dev(sc->atu_dev, "MAC address %s\n",
   1412       1.1      joff 	    ether_sprintf(ic->ic_myaddr));
   1413       1.1      joff 
   1414       1.1      joff 	sc->atu_cdata.atu_tx_inuse = 0;
   1415       1.1      joff 	sc->atu_encrypt = ATU_WEP_OFF;
   1416       1.1      joff 	sc->atu_wepkeylen = ATU_WEP_104BITS;
   1417       1.1      joff 	sc->atu_wepkey = 0;
   1418       1.1      joff 
   1419      1.30    cegger 	memset(sc->atu_bssid, 0, ETHER_ADDR_LEN);
   1420       1.1      joff 	sc->atu_channel = ATU_DEFAULT_CHANNEL;
   1421       1.1      joff 	sc->atu_desired_channel = IEEE80211_CHAN_ANY;
   1422       1.1      joff 	sc->atu_mode = INFRASTRUCTURE_MODE;
   1423       1.1      joff 
   1424      1.12    dyoung 	ic->ic_ifp = ifp;
   1425       1.1      joff 	ic->ic_phytype = IEEE80211_T_DS;
   1426       1.1      joff 	ic->ic_opmode = IEEE80211_M_STA;
   1427       1.1      joff 	ic->ic_state = IEEE80211_S_INIT;
   1428       1.1      joff #ifdef FIXME
   1429       1.1      joff 	ic->ic_caps = IEEE80211_C_IBSS | IEEE80211_C_WEP | IEEE80211_C_SCANALL;
   1430       1.1      joff #else
   1431       1.1      joff 	ic->ic_caps = IEEE80211_C_IBSS | IEEE80211_C_WEP;
   1432       1.1      joff #endif
   1433       1.1      joff 
   1434       1.1      joff 	i = 0;
   1435       1.1      joff 	ic->ic_sup_rates[IEEE80211_MODE_11B].rs_rates[i++] = 2;
   1436       1.1      joff 	ic->ic_sup_rates[IEEE80211_MODE_11B].rs_rates[i++] = 4;
   1437       1.1      joff 	ic->ic_sup_rates[IEEE80211_MODE_11B].rs_rates[i++] = 11;
   1438       1.1      joff 	ic->ic_sup_rates[IEEE80211_MODE_11B].rs_rates[i++] = 22;
   1439       1.1      joff 	ic->ic_sup_rates[IEEE80211_MODE_11B].rs_nrates = i;
   1440       1.1      joff 
   1441       1.1      joff 	for (i = 1; i <= 14; i++) {
   1442       1.1      joff 		ic->ic_channels[i].ic_flags = IEEE80211_CHAN_B |
   1443       1.1      joff 		    IEEE80211_CHAN_PASSIVE;
   1444       1.1      joff 		ic->ic_channels[i].ic_freq = ieee80211_ieee2mhz(i,
   1445       1.1      joff 		    ic->ic_channels[i].ic_flags);
   1446       1.1      joff 	}
   1447       1.1      joff 
   1448       1.1      joff 	ic->ic_ibss_chan = &ic->ic_channels[0];
   1449       1.1      joff 
   1450       1.1      joff 	ifp->if_softc = sc;
   1451      1.31    dyoung 	memcpy(ifp->if_xname, device_xname(sc->atu_dev), IFNAMSIZ);
   1452       1.1      joff 	ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
   1453       1.1      joff 	ifp->if_init = atu_init;
   1454       1.1      joff 	ifp->if_stop = atu_stop;
   1455       1.1      joff 	ifp->if_start = atu_start;
   1456       1.1      joff 	ifp->if_ioctl = atu_ioctl;
   1457       1.1      joff 	ifp->if_watchdog = atu_watchdog;
   1458       1.1      joff 	ifp->if_mtu = ATU_DEFAULT_MTU;
   1459       1.1      joff 	IFQ_SET_READY(&ifp->if_snd);
   1460       1.1      joff 
   1461       1.1      joff 	/* Call MI attach routine. */
   1462       1.1      joff 	if_attach(ifp);
   1463      1.12    dyoung 	ieee80211_ifattach(ic);
   1464       1.1      joff 
   1465       1.1      joff 	sc->sc_newstate = ic->ic_newstate;
   1466       1.1      joff 	ic->ic_newstate = atu_newstate;
   1467       1.1      joff 
   1468       1.1      joff 	/* setup ifmedia interface */
   1469      1.12    dyoung 	ieee80211_media_init(ic, atu_media_change, atu_media_status);
   1470       1.1      joff 
   1471      1.48  jmcneill 	usb_init_task(&sc->sc_task, atu_task, sc, 0);
   1472       1.1      joff 
   1473       1.1      joff 	sc->sc_state = ATU_S_OK;
   1474       1.1      joff }
   1475       1.1      joff 
   1476      1.31    dyoung int
   1477      1.31    dyoung atu_detach(device_t self, int flags)
   1478       1.1      joff {
   1479      1.32    dyoung 	struct atu_softc *sc = device_private(self);
   1480      1.12    dyoung 	struct ifnet		*ifp = &sc->sc_if;
   1481       1.1      joff 
   1482      1.40    dyoung 	DPRINTFN(10, ("%s: atu_detach state=%d\n", device_xname(sc->atu_dev),
   1483       1.1      joff 	    sc->sc_state));
   1484       1.1      joff 
   1485       1.1      joff 	if (sc->sc_state != ATU_S_UNCONFIG) {
   1486       1.1      joff 		atu_stop(ifp, 1);
   1487       1.1      joff 
   1488      1.12    dyoung 		ieee80211_ifdetach(&sc->sc_ic);
   1489       1.1      joff 		if_detach(ifp);
   1490       1.1      joff 	}
   1491       1.1      joff 
   1492       1.1      joff 	return(0);
   1493       1.1      joff }
   1494       1.1      joff 
   1495       1.1      joff int
   1496      1.31    dyoung atu_activate(device_t self, enum devact act)
   1497       1.1      joff {
   1498      1.29      cube 	struct atu_softc *sc = device_private(self);
   1499       1.1      joff 
   1500       1.1      joff 	switch (act) {
   1501       1.1      joff 	case DVACT_DEACTIVATE:
   1502       1.1      joff 		if (sc->sc_state != ATU_S_UNCONFIG) {
   1503       1.1      joff 			if_deactivate(&sc->atu_ec.ec_if);
   1504       1.1      joff 			sc->sc_state = ATU_S_DEAD;
   1505       1.1      joff 		}
   1506      1.34    dyoung 		return 0;
   1507      1.34    dyoung 	default:
   1508      1.34    dyoung 		return EOPNOTSUPP;
   1509       1.1      joff 	}
   1510       1.1      joff }
   1511       1.1      joff 
   1512       1.1      joff /*
   1513       1.1      joff  * Initialize an RX descriptor and attach an MBUF cluster.
   1514       1.1      joff  */
   1515       1.1      joff int
   1516      1.23  christos atu_newbuf(struct atu_softc *sc, struct atu_chain *c, struct mbuf *m)
   1517       1.1      joff {
   1518       1.1      joff 	struct mbuf		*m_new = NULL;
   1519       1.1      joff 
   1520       1.1      joff 	if (m == NULL) {
   1521       1.1      joff 		MGETHDR(m_new, M_DONTWAIT, MT_DATA);
   1522       1.1      joff 		if (m_new == NULL) {
   1523       1.1      joff 			DPRINTF(("%s: no memory for rx list\n",
   1524      1.40    dyoung 			    device_xname(sc->atu_dev)));
   1525       1.1      joff 			return(ENOBUFS);
   1526       1.1      joff 		}
   1527       1.1      joff 
   1528       1.1      joff 		MCLGET(m_new, M_DONTWAIT);
   1529       1.1      joff 		if (!(m_new->m_flags & M_EXT)) {
   1530       1.1      joff 			DPRINTF(("%s: no memory for rx list\n",
   1531      1.40    dyoung 			    device_xname(sc->atu_dev)));
   1532       1.1      joff 			m_freem(m_new);
   1533       1.1      joff 			return(ENOBUFS);
   1534       1.1      joff 		}
   1535       1.1      joff 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
   1536       1.1      joff 	} else {
   1537       1.1      joff 		m_new = m;
   1538       1.1      joff 		m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
   1539       1.1      joff 		m_new->m_data = m_new->m_ext.ext_buf;
   1540       1.1      joff 	}
   1541       1.1      joff 	c->atu_mbuf = m_new;
   1542       1.1      joff 	return(0);
   1543       1.1      joff }
   1544       1.1      joff 
   1545       1.1      joff int
   1546       1.1      joff atu_rx_list_init(struct atu_softc *sc)
   1547       1.1      joff {
   1548       1.1      joff 	struct atu_cdata	*cd = &sc->atu_cdata;
   1549       1.1      joff 	struct atu_chain	*c;
   1550       1.1      joff 	int			i;
   1551       1.1      joff 
   1552       1.1      joff 	DPRINTFN(15, ("%s: atu_rx_list_init: enter\n",
   1553      1.40    dyoung 	    device_xname(sc->atu_dev)));
   1554       1.1      joff 
   1555       1.1      joff 	for (i = 0; i < ATU_RX_LIST_CNT; i++) {
   1556       1.1      joff 		c = &cd->atu_rx_chain[i];
   1557       1.1      joff 		c->atu_sc = sc;
   1558       1.1      joff 		c->atu_idx = i;
   1559       1.1      joff 		if (c->atu_xfer == NULL) {
   1560      1.51     skrll 			int err = usbd_create_xfer(sc->atu_ep[ATU_ENDPT_RX],
   1561  1.55.8.1    martin 			    ATU_RX_BUFSZ, 0, 0, &c->atu_xfer);
   1562      1.51     skrll 			if (err)
   1563      1.51     skrll 				return err;
   1564      1.51     skrll 			c->atu_buf = usbd_get_buffer(c->atu_xfer);
   1565       1.1      joff 			if (atu_newbuf(sc, c, NULL) == ENOBUFS) /* XXX free? */
   1566       1.1      joff 				return(ENOBUFS);
   1567       1.1      joff 		}
   1568       1.1      joff 	}
   1569      1.51     skrll 	return 0;
   1570       1.1      joff }
   1571       1.1      joff 
   1572       1.1      joff int
   1573       1.1      joff atu_tx_list_init(struct atu_softc *sc)
   1574       1.1      joff {
   1575       1.1      joff 	struct atu_cdata	*cd = &sc->atu_cdata;
   1576       1.1      joff 	struct atu_chain	*c;
   1577       1.1      joff 	int			i;
   1578       1.1      joff 
   1579       1.1      joff 	DPRINTFN(15, ("%s: atu_tx_list_init\n",
   1580      1.40    dyoung 	    device_xname(sc->atu_dev)));
   1581       1.1      joff 
   1582       1.1      joff 	SLIST_INIT(&cd->atu_tx_free);
   1583       1.1      joff 	sc->atu_cdata.atu_tx_inuse = 0;
   1584       1.1      joff 
   1585       1.1      joff 	for (i = 0; i < ATU_TX_LIST_CNT; i++) {
   1586       1.1      joff 		c = &cd->atu_tx_chain[i];
   1587       1.1      joff 		c->atu_sc = sc;
   1588       1.1      joff 		c->atu_idx = i;
   1589       1.1      joff 		if (c->atu_xfer == NULL) {
   1590      1.51     skrll 			int err = usbd_create_xfer(sc->atu_ep[ATU_ENDPT_TX],
   1591      1.51     skrll 			    ATU_TX_BUFSZ, 0, 0, &c->atu_xfer);
   1592      1.51     skrll 			if (err) {
   1593      1.51     skrll 				return err;
   1594      1.51     skrll 			}
   1595      1.51     skrll 			c->atu_buf = usbd_get_buffer(c->atu_xfer);
   1596       1.1      joff 			SLIST_INSERT_HEAD(&cd->atu_tx_free, c, atu_list);
   1597       1.1      joff 		}
   1598       1.1      joff 	}
   1599       1.1      joff 	return(0);
   1600       1.1      joff }
   1601       1.1      joff 
   1602       1.1      joff void
   1603      1.23  christos atu_xfer_list_free(struct atu_softc *sc, struct atu_chain *ch,
   1604       1.1      joff     int listlen)
   1605       1.1      joff {
   1606       1.1      joff 	int			i;
   1607       1.1      joff 
   1608       1.1      joff 	/* Free resources. */
   1609       1.1      joff 	for (i = 0; i < listlen; i++) {
   1610       1.1      joff 		if (ch[i].atu_buf != NULL)
   1611       1.1      joff 			ch[i].atu_buf = NULL;
   1612       1.1      joff 		if (ch[i].atu_mbuf != NULL) {
   1613       1.1      joff 			m_freem(ch[i].atu_mbuf);
   1614       1.1      joff 			ch[i].atu_mbuf = NULL;
   1615       1.1      joff 		}
   1616       1.1      joff 		if (ch[i].atu_xfer != NULL) {
   1617      1.51     skrll 			usbd_destroy_xfer(ch[i].atu_xfer);
   1618       1.1      joff 			ch[i].atu_xfer = NULL;
   1619       1.1      joff 		}
   1620       1.1      joff 	}
   1621       1.1      joff }
   1622       1.1      joff 
   1623       1.1      joff /*
   1624       1.1      joff  * A frame has been uploaded: pass the resulting mbuf chain up to
   1625       1.1      joff  * the higher level protocols.
   1626       1.1      joff  */
   1627       1.1      joff void
   1628      1.51     skrll atu_rxeof(struct usbd_xfer *xfer, void *priv, usbd_status status)
   1629       1.1      joff {
   1630       1.1      joff 	struct atu_chain	*c = (struct atu_chain *)priv;
   1631       1.1      joff 	struct atu_softc	*sc = c->atu_sc;
   1632       1.1      joff 	struct ieee80211com	*ic = &sc->sc_ic;
   1633      1.12    dyoung 	struct ifnet		*ifp = &sc->sc_if;
   1634       1.1      joff 	struct atu_rx_hdr	*h;
   1635      1.12    dyoung 	struct ieee80211_frame_min	*wh;
   1636       1.1      joff 	struct ieee80211_node	*ni;
   1637       1.1      joff 	struct mbuf		*m;
   1638      1.51     skrll 	uint32_t		len;
   1639       1.1      joff 	int			s;
   1640       1.1      joff 
   1641      1.40    dyoung 	DPRINTFN(25, ("%s: atu_rxeof\n", device_xname(sc->atu_dev)));
   1642       1.1      joff 
   1643       1.1      joff 	if (sc->sc_state != ATU_S_OK)
   1644       1.1      joff 		return;
   1645       1.1      joff 
   1646       1.1      joff 	if ((ifp->if_flags & (IFF_RUNNING|IFF_UP)) != (IFF_RUNNING|IFF_UP))
   1647       1.1      joff 		goto done;
   1648       1.1      joff 
   1649       1.1      joff 	if (status != USBD_NORMAL_COMPLETION) {
   1650       1.1      joff 		DPRINTF(("%s: status != USBD_NORMAL_COMPLETION\n",
   1651      1.40    dyoung 		    device_xname(sc->atu_dev)));
   1652       1.1      joff 		if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
   1653       1.1      joff 			return;
   1654       1.1      joff 		}
   1655       1.1      joff #if 0
   1656       1.1      joff 		if (status == USBD_IOERROR) {
   1657       1.1      joff 			DPRINTF(("%s: rx: EEK! lost device?\n",
   1658      1.40    dyoung 			    device_xname(sc->atu_dev)));
   1659       1.1      joff 
   1660       1.1      joff 			/*
   1661       1.1      joff 			 * My experience with USBD_IOERROR is that trying to
   1662       1.1      joff 			 * restart the transfer will always fail and we'll
   1663       1.1      joff 			 * keep on looping restarting transfers untill someone
   1664       1.1      joff 			 * pulls the plug of the device.
   1665       1.1      joff 			 * So we don't restart the transfer, but just let it
   1666       1.1      joff 			 * die... If someone knows of a situation where we can
   1667       1.1      joff 			 * recover from USBD_IOERROR, let me know.
   1668       1.1      joff 			 */
   1669       1.1      joff 			splx(s);
   1670       1.1      joff 			return;
   1671       1.1      joff 		}
   1672       1.1      joff #endif /* 0 */
   1673       1.1      joff 
   1674       1.1      joff 		if (usbd_ratecheck(&sc->atu_rx_notice)) {
   1675       1.1      joff 			DPRINTF(("%s: usb error on rx: %s\n",
   1676      1.40    dyoung 			    device_xname(sc->atu_dev), usbd_errstr(status)));
   1677       1.1      joff 		}
   1678       1.1      joff 		if (status == USBD_STALLED)
   1679      1.13  augustss 			usbd_clear_endpoint_stall_async(
   1680       1.1      joff 			    sc->atu_ep[ATU_ENDPT_RX]);
   1681       1.1      joff 		goto done;
   1682       1.1      joff 	}
   1683       1.1      joff 
   1684       1.1      joff 	usbd_get_xfer_status(xfer, NULL, NULL, &len, NULL);
   1685       1.1      joff 
   1686       1.1      joff 	if (len <= 1) {
   1687       1.1      joff 		DPRINTF(("%s: atu_rxeof: too short\n",
   1688      1.40    dyoung 		    device_xname(sc->atu_dev)));
   1689       1.1      joff 		goto done;
   1690       1.1      joff 	}
   1691       1.1      joff 
   1692       1.1      joff 	h = (struct atu_rx_hdr *)c->atu_buf;
   1693       1.1      joff 	len = UGETW(h->length) - 4; /* XXX magic number */
   1694       1.1      joff 
   1695       1.1      joff 	m = c->atu_mbuf;
   1696       1.1      joff 	memcpy(mtod(m, char *), c->atu_buf + ATU_RX_HDRLEN, len);
   1697      1.54     ozaki 	m_set_rcvif(m, ifp);
   1698       1.1      joff 	m->m_pkthdr.len = m->m_len = len;
   1699       1.1      joff 
   1700      1.12    dyoung 	wh = mtod(m, struct ieee80211_frame_min *);
   1701       1.1      joff 	ni = ieee80211_find_rxnode(ic, wh);
   1702       1.1      joff 
   1703       1.1      joff 	ifp->if_ipackets++;
   1704       1.1      joff 
   1705       1.1      joff 	s = splnet();
   1706       1.1      joff 
   1707       1.1      joff 	if (atu_newbuf(sc, c, NULL) == ENOBUFS) {
   1708       1.1      joff 		ifp->if_ierrors++;
   1709       1.1      joff 		goto done1; /* XXX if we can't allocate, why restart it? */
   1710       1.1      joff 	}
   1711       1.1      joff 
   1712       1.6      joff 	if (wh->i_fc[1] & IEEE80211_FC1_WEP) {
   1713       1.6      joff 		/*
   1714       1.6      joff 		 * WEP is decrypted by hardware. Clear WEP bit
   1715       1.6      joff 		 * header for ieee80211_input().
   1716       1.6      joff 		 */
   1717       1.6      joff 		wh->i_fc[1] &= ~IEEE80211_FC1_WEP;
   1718       1.6      joff 	}
   1719       1.1      joff 
   1720      1.12    dyoung 	ieee80211_input(ic, m, ni, h->rssi, UGETDW(h->rx_time));
   1721       1.1      joff 
   1722      1.12    dyoung 	ieee80211_free_node(ni);
   1723       1.1      joff done1:
   1724       1.1      joff 	splx(s);
   1725       1.1      joff done:
   1726       1.1      joff 	/* Setup new transfer. */
   1727      1.51     skrll 	usbd_setup_xfer(c->atu_xfer, c, c->atu_buf, ATU_RX_BUFSZ,
   1728      1.51     skrll 	    USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, atu_rxeof);
   1729       1.1      joff 	usbd_transfer(c->atu_xfer);
   1730       1.1      joff }
   1731       1.1      joff 
   1732       1.1      joff /*
   1733       1.1      joff  * A frame was downloaded to the chip. It's safe for us to clean up
   1734       1.1      joff  * the list buffers.
   1735       1.1      joff  */
   1736       1.1      joff void
   1737      1.51     skrll atu_txeof(struct usbd_xfer *xfer, void *priv,
   1738      1.21  christos     usbd_status status)
   1739       1.1      joff {
   1740       1.1      joff 	struct atu_chain	*c = (struct atu_chain *)priv;
   1741       1.1      joff 	struct atu_softc	*sc = c->atu_sc;
   1742      1.12    dyoung 	struct ifnet		*ifp = &sc->sc_if;
   1743       1.1      joff 	usbd_status		err;
   1744       1.1      joff 	int			s;
   1745       1.1      joff 
   1746      1.40    dyoung 	DPRINTFN(25, ("%s: atu_txeof status=%d\n", device_xname(sc->atu_dev),
   1747       1.1      joff 	    status));
   1748       1.1      joff 
   1749       1.6      joff 	if (c->atu_mbuf) {
   1750       1.6      joff 		m_freem(c->atu_mbuf);
   1751       1.6      joff 		c->atu_mbuf = NULL;
   1752       1.6      joff 	}
   1753       1.6      joff 
   1754       1.1      joff 	if (status != USBD_NORMAL_COMPLETION) {
   1755       1.1      joff 		if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
   1756       1.1      joff 			return;
   1757       1.1      joff 
   1758      1.40    dyoung 		DPRINTF(("%s: usb error on tx: %s\n", device_xname(sc->atu_dev),
   1759       1.1      joff 		    usbd_errstr(status)));
   1760       1.1      joff 		if (status == USBD_STALLED)
   1761      1.13  augustss 			usbd_clear_endpoint_stall_async(sc->atu_ep[ATU_ENDPT_TX]);
   1762       1.1      joff 		return;
   1763       1.1      joff 	}
   1764       1.1      joff 
   1765       1.1      joff 	usbd_get_xfer_status(c->atu_xfer, NULL, NULL, NULL, &err);
   1766       1.1      joff 
   1767       1.1      joff 	if (err)
   1768       1.1      joff 		ifp->if_oerrors++;
   1769       1.1      joff 	else
   1770       1.1      joff 		ifp->if_opackets++;
   1771       1.1      joff 
   1772       1.1      joff 	s = splnet();
   1773       1.1      joff 	SLIST_INSERT_HEAD(&sc->atu_cdata.atu_tx_free, c, atu_list);
   1774       1.1      joff 	sc->atu_cdata.atu_tx_inuse--;
   1775       1.1      joff 	if (sc->atu_cdata.atu_tx_inuse == 0)
   1776       1.1      joff 		ifp->if_timer = 0;
   1777       1.1      joff 	ifp->if_flags &= ~IFF_OACTIVE;
   1778       1.1      joff 	splx(s);
   1779       1.1      joff 
   1780       1.1      joff 	atu_start(ifp);
   1781       1.1      joff }
   1782       1.1      joff 
   1783      1.51     skrll uint8_t
   1784       1.1      joff atu_calculate_padding(int size)
   1785       1.1      joff {
   1786       1.1      joff 	size %= 64;
   1787       1.1      joff 
   1788       1.1      joff 	if (size < 50)
   1789      1.51     skrll 		return 50 - size;
   1790       1.1      joff 	if (size >=61)
   1791      1.51     skrll 		return 64 + 50 - size;
   1792      1.51     skrll 	return 0;
   1793       1.1      joff }
   1794       1.1      joff 
   1795       1.1      joff int
   1796      1.23  christos atu_tx_start(struct atu_softc *sc, struct ieee80211_node *ni,
   1797       1.1      joff     struct atu_chain *c, struct mbuf *m)
   1798       1.1      joff {
   1799       1.1      joff 	int			len;
   1800       1.1      joff 	struct atu_tx_hdr	*h;
   1801       1.1      joff 	usbd_status		err;
   1802      1.51     skrll 	uint8_t			pad;
   1803       1.1      joff 
   1804      1.40    dyoung 	DPRINTFN(25, ("%s: atu_tx_start\n", device_xname(sc->atu_dev)));
   1805       1.1      joff 
   1806       1.1      joff 	/* Don't try to send when we're shutting down the driver */
   1807       1.6      joff 	if (sc->sc_state != ATU_S_OK) {
   1808       1.6      joff 		m_freem(m);
   1809       1.1      joff 		return(EIO);
   1810       1.6      joff 	}
   1811       1.1      joff 
   1812       1.1      joff 	/*
   1813       1.1      joff 	 * Copy the mbuf data into a contiguous buffer, leaving
   1814       1.1      joff 	 * enough room for the atmel headers
   1815       1.1      joff 	 */
   1816       1.1      joff 	len = m->m_pkthdr.len;
   1817       1.1      joff 
   1818       1.1      joff 	m_copydata(m, 0, m->m_pkthdr.len, c->atu_buf + ATU_TX_HDRLEN);
   1819       1.1      joff 
   1820       1.1      joff 	h = (struct atu_tx_hdr *)c->atu_buf;
   1821       1.1      joff 	memset(h, 0, ATU_TX_HDRLEN);
   1822       1.1      joff 	USETW(h->length, len);
   1823       1.1      joff 	h->tx_rate = 4; /* XXX rate = auto */
   1824       1.1      joff 	len += ATU_TX_HDRLEN;
   1825       1.1      joff 
   1826       1.1      joff 	pad = atu_calculate_padding(len);
   1827       1.1      joff 	len += pad;
   1828       1.1      joff 	h->padding = pad;
   1829       1.1      joff 
   1830       1.1      joff 	c->atu_length = len;
   1831       1.1      joff 	c->atu_mbuf = m;
   1832       1.1      joff 
   1833      1.51     skrll 	usbd_setup_xfer(c->atu_xfer, c, c->atu_buf, c->atu_length, 0,
   1834      1.51     skrll 	    ATU_TX_TIMEOUT, atu_txeof);
   1835       1.1      joff 
   1836       1.1      joff 	/* Let's get this thing into the air! */
   1837       1.1      joff 	c->atu_in_xfer = 1;
   1838       1.1      joff 	err = usbd_transfer(c->atu_xfer);
   1839       1.1      joff 	if (err != USBD_IN_PROGRESS) {
   1840       1.6      joff 		DPRINTFN(25, ("%s: atu_tx_start, err=%d",
   1841      1.40    dyoung 		    device_xname(sc->atu_dev), err));
   1842       1.6      joff 		c->atu_mbuf = NULL;
   1843       1.6      joff 		m_freem(m);
   1844       1.1      joff 		return(EIO);
   1845       1.1      joff 	}
   1846       1.1      joff 
   1847      1.51     skrll 	return 0;
   1848       1.1      joff }
   1849       1.1      joff 
   1850       1.1      joff void
   1851       1.1      joff atu_start(struct ifnet *ifp)
   1852       1.1      joff {
   1853       1.1      joff 	struct atu_softc	*sc = ifp->if_softc;
   1854       1.1      joff 	struct ieee80211com	*ic = &sc->sc_ic;
   1855       1.1      joff 	struct atu_cdata	*cd = &sc->atu_cdata;
   1856       1.1      joff 	struct ieee80211_node	*ni;
   1857       1.1      joff 	struct atu_chain	*c;
   1858       1.1      joff 	struct mbuf		*m = NULL;
   1859       1.1      joff 	int			s;
   1860       1.1      joff 
   1861      1.40    dyoung 	DPRINTFN(25, ("%s: atu_start: enter\n", device_xname(sc->atu_dev)));
   1862       1.1      joff 
   1863       1.3      joff 	if ((ifp->if_flags & IFF_RUNNING) == 0) {
   1864       1.3      joff 		return;
   1865       1.3      joff 	}
   1866       1.1      joff 	if (ifp->if_flags & IFF_OACTIVE) {
   1867       1.1      joff 		DPRINTFN(30, ("%s: atu_start: IFF_OACTIVE\n",
   1868      1.40    dyoung 		    device_xname(sc->atu_dev)));
   1869       1.1      joff 		return;
   1870       1.1      joff 	}
   1871       1.1      joff 
   1872       1.1      joff 	for (;;) {
   1873       1.1      joff 		/* grab a TX buffer */
   1874       1.1      joff 		s = splnet();
   1875       1.1      joff 		c = SLIST_FIRST(&cd->atu_tx_free);
   1876       1.1      joff 		if (c != NULL) {
   1877       1.1      joff 			SLIST_REMOVE_HEAD(&cd->atu_tx_free, atu_list);
   1878       1.1      joff 			cd->atu_tx_inuse++;
   1879       1.1      joff 			if (cd->atu_tx_inuse == ATU_TX_LIST_CNT)
   1880       1.1      joff 				ifp->if_flags |= IFF_OACTIVE;
   1881       1.1      joff 		}
   1882       1.1      joff 		splx(s);
   1883       1.1      joff 		if (c == NULL) {
   1884       1.1      joff 			DPRINTFN(10, ("%s: out of tx xfers\n",
   1885      1.40    dyoung 			    device_xname(sc->atu_dev)));
   1886       1.1      joff 			ifp->if_flags |= IFF_OACTIVE;
   1887       1.1      joff 			break;
   1888       1.1      joff 		}
   1889       1.1      joff 
   1890       1.1      joff 		/*
   1891       1.1      joff 		 * Poll the management queue for frames, it has priority over
   1892       1.1      joff 		 * normal data frames.
   1893       1.1      joff 		 */
   1894       1.1      joff 		IF_DEQUEUE(&ic->ic_mgtq, m);
   1895       1.1      joff 		if (m == NULL) {
   1896       1.1      joff 			DPRINTFN(10, ("%s: atu_start: data packet\n",
   1897      1.40    dyoung 			    device_xname(sc->atu_dev)));
   1898       1.1      joff 			if (ic->ic_state != IEEE80211_S_RUN) {
   1899       1.1      joff 				DPRINTFN(25, ("%s: no data till running\n",
   1900      1.40    dyoung 				    device_xname(sc->atu_dev)));
   1901       1.1      joff 				/* put the xfer back on the list */
   1902       1.1      joff 				s = splnet();
   1903       1.1      joff 				SLIST_INSERT_HEAD(&cd->atu_tx_free, c,
   1904       1.1      joff 				    atu_list);
   1905       1.1      joff 				cd->atu_tx_inuse--;
   1906       1.1      joff 				splx(s);
   1907       1.1      joff 				break;
   1908       1.1      joff 			}
   1909       1.1      joff 
   1910       1.3      joff 			IFQ_DEQUEUE(&ifp->if_snd, m);
   1911       1.1      joff 			if (m == NULL) {
   1912       1.1      joff 				DPRINTFN(25, ("%s: nothing to send\n",
   1913      1.40    dyoung 				    device_xname(sc->atu_dev)));
   1914       1.1      joff 				s = splnet();
   1915       1.1      joff 				SLIST_INSERT_HEAD(&cd->atu_tx_free, c,
   1916       1.1      joff 				    atu_list);
   1917       1.1      joff 				cd->atu_tx_inuse--;
   1918       1.1      joff 				splx(s);
   1919       1.1      joff 				break;
   1920       1.1      joff 			}
   1921      1.38     joerg 			bpf_mtap(ifp, m);
   1922      1.12    dyoung 			ni = ieee80211_find_txnode(ic,
   1923      1.12    dyoung 			    mtod(m, struct ether_header *)->ether_dhost);
   1924      1.12    dyoung 			if (ni == NULL) {
   1925      1.12    dyoung 				m_freem(m);
   1926      1.12    dyoung 				goto bad;
   1927      1.12    dyoung 			}
   1928      1.12    dyoung 			m = ieee80211_encap(ic, m, ni);
   1929       1.1      joff 			if (m == NULL)
   1930       1.1      joff 				goto bad;
   1931       1.1      joff 		} else {
   1932       1.1      joff 			DPRINTFN(25, ("%s: atu_start: mgmt packet\n",
   1933      1.40    dyoung 			    device_xname(sc->atu_dev)));
   1934       1.1      joff 
   1935       1.1      joff 			/*
   1936       1.1      joff 			 * Hack!  The referenced node pointer is in the
   1937       1.1      joff 			 * rcvif field of the packet header.  This is
   1938       1.1      joff 			 * placed there by ieee80211_mgmt_output because
   1939       1.1      joff 			 * we need to hold the reference with the frame
   1940       1.1      joff 			 * and there's no other way (other than packet
   1941       1.1      joff 			 * tags which we consider too expensive to use)
   1942       1.1      joff 			 * to pass it along.
   1943       1.1      joff 			 */
   1944      1.52     ozaki 			ni = M_GETCTX(m, struct ieee80211_node *);
   1945      1.53     ozaki 			M_CLEARCTX(m);
   1946       1.1      joff 
   1947       1.1      joff 			/* sc->sc_stats.ast_tx_mgmt++; */
   1948       1.1      joff 		}
   1949       1.1      joff 
   1950      1.38     joerg 		bpf_mtap3(ic->ic_rawbpf, m);
   1951       1.6      joff 
   1952       1.1      joff 		if (atu_tx_start(sc, ni, c, m)) {
   1953       1.1      joff bad:
   1954       1.1      joff 			s = splnet();
   1955       1.1      joff 			SLIST_INSERT_HEAD(&cd->atu_tx_free, c,
   1956       1.1      joff 			    atu_list);
   1957       1.1      joff 			cd->atu_tx_inuse--;
   1958       1.1      joff 			splx(s);
   1959       1.1      joff 			/* ifp_if_oerrors++; */
   1960       1.3      joff 			if (ni != NULL)
   1961      1.12    dyoung 				ieee80211_free_node(ni);
   1962       1.1      joff 			continue;
   1963       1.1      joff 		}
   1964       1.1      joff 		ifp->if_timer = 5;
   1965       1.1      joff 	}
   1966       1.1      joff }
   1967       1.1      joff 
   1968       1.1      joff int
   1969       1.1      joff atu_init(struct ifnet *ifp)
   1970       1.1      joff {
   1971       1.1      joff 	struct atu_softc	*sc = ifp->if_softc;
   1972       1.1      joff 	struct ieee80211com	*ic = &sc->sc_ic;
   1973       1.1      joff 	struct atu_chain	*c;
   1974       1.1      joff 	usbd_status		err;
   1975       1.1      joff 	int			i, s;
   1976       1.1      joff 
   1977       1.1      joff 	s = splnet();
   1978       1.1      joff 
   1979      1.40    dyoung 	DPRINTFN(10, ("%s: atu_init\n", device_xname(sc->atu_dev)));
   1980       1.1      joff 
   1981       1.1      joff 	if (ifp->if_flags & IFF_RUNNING) {
   1982       1.1      joff 		splx(s);
   1983       1.1      joff 		return(0);
   1984       1.1      joff 	}
   1985       1.1      joff 
   1986       1.1      joff 	/* Load the multicast filter. */
   1987       1.1      joff 	/*atu_setmulti(sc); */
   1988       1.1      joff 
   1989       1.1      joff 	/* Open RX and TX pipes. */
   1990       1.1      joff 	err = usbd_open_pipe(sc->atu_iface, sc->atu_ed[ATU_ENDPT_RX],
   1991       1.1      joff 	    USBD_EXCLUSIVE_USE, &sc->atu_ep[ATU_ENDPT_RX]);
   1992       1.1      joff 	if (err) {
   1993       1.1      joff 		DPRINTF(("%s: open rx pipe failed: %s\n",
   1994      1.40    dyoung 		    device_xname(sc->atu_dev), usbd_errstr(err)));
   1995       1.1      joff 		splx(s);
   1996       1.1      joff 		return(EIO);
   1997       1.1      joff 	}
   1998       1.1      joff 
   1999       1.1      joff 	err = usbd_open_pipe(sc->atu_iface, sc->atu_ed[ATU_ENDPT_TX],
   2000       1.1      joff 	    USBD_EXCLUSIVE_USE, &sc->atu_ep[ATU_ENDPT_TX]);
   2001       1.1      joff 	if (err) {
   2002       1.1      joff 		DPRINTF(("%s: open tx pipe failed: %s\n",
   2003      1.40    dyoung 		    device_xname(sc->atu_dev), usbd_errstr(err)));
   2004       1.1      joff 		splx(s);
   2005       1.1      joff 		return(EIO);
   2006       1.1      joff 	}
   2007       1.1      joff 
   2008      1.51     skrll 	/* Init TX ring */
   2009      1.51     skrll 	if (atu_tx_list_init(sc))
   2010      1.51     skrll 		printf("%s: tx list init failed\n", device_xname(sc->atu_dev));
   2011      1.51     skrll 
   2012      1.51     skrll 	/* Init RX ring */
   2013      1.51     skrll 	if (atu_rx_list_init(sc))
   2014      1.51     skrll 		printf("%s: rx list init failed\n", device_xname(sc->atu_dev));
   2015      1.51     skrll 
   2016       1.1      joff 	/* Start up the receive pipe. */
   2017       1.1      joff 	for (i = 0; i < ATU_RX_LIST_CNT; i++) {
   2018       1.1      joff 		c = &sc->atu_cdata.atu_rx_chain[i];
   2019       1.1      joff 
   2020      1.51     skrll 		usbd_setup_xfer(c->atu_xfer, c, c->atu_buf, ATU_RX_BUFSZ,
   2021      1.51     skrll 		    USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, atu_rxeof);
   2022       1.1      joff 		usbd_transfer(c->atu_xfer);
   2023       1.1      joff 	}
   2024       1.1      joff 
   2025       1.1      joff 	DPRINTFN(10, ("%s: starting up using MAC=%s\n",
   2026      1.40    dyoung 	    device_xname(sc->atu_dev), ether_sprintf(ic->ic_myaddr)));
   2027       1.1      joff 
   2028       1.1      joff 	/* Do initial setup */
   2029       1.1      joff 	err = atu_initial_config(sc);
   2030       1.1      joff 	if (err) {
   2031       1.1      joff 		DPRINTF(("%s: initial config failed!\n",
   2032      1.40    dyoung 		    device_xname(sc->atu_dev)));
   2033       1.1      joff 		splx(s);
   2034       1.1      joff 		return(EIO);
   2035       1.1      joff 	}
   2036       1.1      joff 	DPRINTFN(10, ("%s: initialised transceiver\n",
   2037      1.40    dyoung 	    device_xname(sc->atu_dev)));
   2038       1.1      joff 
   2039       1.1      joff 	/* sc->atu_rxfilt = ATU_RXFILT_UNICAST|ATU_RXFILT_BROADCAST; */
   2040       1.1      joff 
   2041       1.1      joff 	/* If we want promiscuous mode, set the allframes bit. */
   2042       1.1      joff 	/*
   2043       1.1      joff 	if (ifp->if_flags & IFF_PROMISC)
   2044       1.1      joff 		sc->atu_rxfilt |= ATU_RXFILT_PROMISC;
   2045       1.1      joff 	*/
   2046       1.1      joff 
   2047       1.1      joff 	ifp->if_flags |= IFF_RUNNING;
   2048       1.1      joff 	ifp->if_flags &= ~IFF_OACTIVE;
   2049       1.1      joff 	splx(s);
   2050       1.1      joff 
   2051       1.1      joff 	/* XXX the following HAS to be replaced */
   2052       1.1      joff 	s = splnet();
   2053       1.1      joff 	err = ieee80211_new_state(ic, IEEE80211_S_SCAN, -1);
   2054      1.20  christos 	if (err) {
   2055       1.1      joff 		DPRINTFN(1, ("%s: atu_init: error calling "
   2056      1.40    dyoung 		    "ieee80211_net_state", device_xname(sc->atu_dev)));
   2057      1.20  christos 	}
   2058       1.1      joff 	splx(s);
   2059       1.1      joff 
   2060       1.1      joff 	return 0;
   2061       1.1      joff }
   2062       1.1      joff 
   2063       1.1      joff #ifdef ATU_DEBUG
   2064       1.1      joff void
   2065       1.1      joff atu_debug_print(struct atu_softc *sc)
   2066       1.1      joff {
   2067       1.1      joff 	usbd_status		err;
   2068      1.51     skrll 	uint8_t			tmp[32];
   2069       1.1      joff 
   2070       1.1      joff 	/* DEBUG */
   2071       1.1      joff 	if ((err = atu_get_mib(sc, MIB_MAC_MGMT__CURRENT_BSSID, tmp)))
   2072       1.1      joff 		return;
   2073      1.40    dyoung 	DPRINTF(("%s: DEBUG: current BSSID=%s\n", device_xname(sc->atu_dev),
   2074       1.1      joff 	    ether_sprintf(tmp)));
   2075       1.1      joff 
   2076       1.1      joff 	if ((err = atu_get_mib(sc, MIB_MAC_MGMT__BEACON_PERIOD, tmp)))
   2077       1.1      joff 		return;
   2078      1.40    dyoung 	DPRINTF(("%s: DEBUG: beacon period=%d\n", device_xname(sc->atu_dev),
   2079       1.1      joff 	    tmp[0]));
   2080       1.1      joff 
   2081       1.1      joff 	if ((err = atu_get_mib(sc, MIB_MAC_WEP__PRIVACY_INVOKED, tmp)))
   2082       1.1      joff 		return;
   2083      1.40    dyoung 	DPRINTF(("%s: DEBUG: privacy invoked=%d\n", device_xname(sc->atu_dev),
   2084       1.1      joff 	    tmp[0]));
   2085       1.1      joff 
   2086       1.1      joff 	if ((err = atu_get_mib(sc, MIB_MAC_WEP__ENCR_LEVEL, tmp)))
   2087       1.1      joff 		return;
   2088      1.40    dyoung 	DPRINTF(("%s: DEBUG: encr_level=%d\n", device_xname(sc->atu_dev),
   2089       1.1      joff 	    tmp[0]));
   2090       1.1      joff 
   2091       1.1      joff 	if ((err = atu_get_mib(sc, MIB_MAC_WEP__ICV_ERROR_COUNT, tmp)))
   2092       1.1      joff 		return;
   2093      1.40    dyoung 	DPRINTF(("%s: DEBUG: icv error count=%d\n", device_xname(sc->atu_dev),
   2094       1.1      joff 	    *(short *)tmp));
   2095       1.1      joff 
   2096       1.1      joff 	if ((err = atu_get_mib(sc, MIB_MAC_WEP__EXCLUDED_COUNT, tmp)))
   2097       1.1      joff 		return;
   2098       1.1      joff 	DPRINTF(("%s: DEBUG: wep excluded count=%d\n",
   2099      1.40    dyoung 	    device_xname(sc->atu_dev), *(short *)tmp));
   2100       1.1      joff 
   2101       1.1      joff 	if ((err = atu_get_mib(sc, MIB_MAC_MGMT__POWER_MODE, tmp)))
   2102       1.1      joff 		return;
   2103      1.40    dyoung 	DPRINTF(("%s: DEBUG: power mode=%d\n", device_xname(sc->atu_dev),
   2104       1.1      joff 	    tmp[0]));
   2105       1.1      joff 
   2106       1.1      joff 	if ((err = atu_get_mib(sc, MIB_PHY__CHANNEL, tmp)))
   2107       1.1      joff 		return;
   2108      1.40    dyoung 	DPRINTF(("%s: DEBUG: channel=%d\n", device_xname(sc->atu_dev), tmp[0]));
   2109       1.1      joff 
   2110       1.1      joff 	if ((err = atu_get_mib(sc, MIB_PHY__REG_DOMAIN, tmp)))
   2111       1.1      joff 		return;
   2112      1.40    dyoung 	DPRINTF(("%s: DEBUG: reg domain=%d\n", device_xname(sc->atu_dev),
   2113       1.1      joff 	    tmp[0]));
   2114       1.1      joff 
   2115       1.1      joff 	if ((err = atu_get_mib(sc, MIB_LOCAL__SSID_SIZE, tmp)))
   2116       1.1      joff 		return;
   2117      1.40    dyoung 	DPRINTF(("%s: DEBUG: ssid size=%d\n", device_xname(sc->atu_dev),
   2118       1.1      joff 	    tmp[0]));
   2119       1.1      joff 
   2120       1.1      joff 	if ((err = atu_get_mib(sc, MIB_LOCAL__BEACON_ENABLE, tmp)))
   2121       1.1      joff 		return;
   2122      1.40    dyoung 	DPRINTF(("%s: DEBUG: beacon enable=%d\n", device_xname(sc->atu_dev),
   2123       1.1      joff 	    tmp[0]));
   2124       1.1      joff 
   2125       1.1      joff 	if ((err = atu_get_mib(sc, MIB_LOCAL__AUTO_RATE_FALLBACK, tmp)))
   2126       1.1      joff 		return;
   2127       1.1      joff 	DPRINTF(("%s: DEBUG: auto rate fallback=%d\n",
   2128      1.40    dyoung 	    device_xname(sc->atu_dev), tmp[0]));
   2129       1.1      joff 
   2130       1.1      joff 	if ((err = atu_get_mib(sc, MIB_MAC_ADDR__ADDR, tmp)))
   2131       1.1      joff 		return;
   2132      1.40    dyoung 	DPRINTF(("%s: DEBUG: mac addr=%s\n", device_xname(sc->atu_dev),
   2133       1.1      joff 	    ether_sprintf(tmp)));
   2134       1.1      joff 
   2135       1.1      joff 	if ((err = atu_get_mib(sc, MIB_MAC__DESIRED_SSID, tmp)))
   2136       1.1      joff 		return;
   2137      1.40    dyoung 	DPRINTF(("%s: DEBUG: desired ssid=%s\n", device_xname(sc->atu_dev),
   2138       1.1      joff 	    tmp));
   2139       1.1      joff 
   2140       1.1      joff 	if ((err = atu_get_mib(sc, MIB_MAC_MGMT__CURRENT_ESSID, tmp)))
   2141       1.1      joff 		return;
   2142      1.40    dyoung 	DPRINTF(("%s: DEBUG: current ESSID=%s\n", device_xname(sc->atu_dev),
   2143       1.1      joff 	    tmp));
   2144       1.1      joff }
   2145       1.1      joff #endif /* ATU_DEBUG */
   2146       1.1      joff 
   2147       1.1      joff int
   2148      1.25  christos atu_ioctl(struct ifnet *ifp, u_long command, void *data)
   2149       1.1      joff {
   2150       1.1      joff 	struct atu_softc	*sc = ifp->if_softc;
   2151       1.1      joff 	struct ifreq		*ifr = (struct ifreq *)data;
   2152       1.1      joff 	struct ieee80211com	*ic = &sc->sc_ic;
   2153       1.1      joff 	int			err = 0, s;
   2154       1.1      joff 
   2155       1.1      joff 	s = splnet();
   2156       1.1      joff 	switch (command) {
   2157       1.1      joff 	case SIOCSIFMEDIA:
   2158       1.1      joff 	case SIOCGIFMEDIA:
   2159       1.1      joff 		err = ifmedia_ioctl(ifp, ifr, &ic->ic_media, command);
   2160       1.1      joff 		break;
   2161       1.1      joff 
   2162       1.1      joff 	default:
   2163       1.1      joff 		DPRINTFN(15, ("%s: ieee80211_ioctl (%lu)\n",
   2164      1.40    dyoung 		    device_xname(sc->atu_dev), command));
   2165      1.12    dyoung 		err = ieee80211_ioctl(ic, command, data);
   2166       1.1      joff 		break;
   2167       1.1      joff 	}
   2168       1.1      joff 
   2169       1.1      joff 	if (err == ENETRESET) {
   2170       1.1      joff 		if ((ifp->if_flags & (IFF_RUNNING|IFF_UP)) ==
   2171       1.1      joff 		    (IFF_RUNNING|IFF_UP)) {
   2172       1.6      joff 			DPRINTF(("%s: atu_ioctl(): netreset %lu\n",
   2173      1.40    dyoung 			    device_xname(sc->atu_dev), command));
   2174       1.6      joff 			ieee80211_new_state(ic, IEEE80211_S_INIT, -1);
   2175       1.6      joff 			atu_initial_config(sc);
   2176       1.6      joff 			ieee80211_new_state(ic, IEEE80211_S_SCAN, -1);
   2177       1.1      joff 		}
   2178       1.1      joff 		err = 0;
   2179       1.1      joff 	}
   2180       1.1      joff 
   2181       1.1      joff 	splx(s);
   2182      1.51     skrll 	return err;
   2183       1.1      joff }
   2184       1.1      joff 
   2185       1.1      joff void
   2186       1.1      joff atu_watchdog(struct ifnet *ifp)
   2187       1.1      joff {
   2188       1.1      joff 	struct atu_softc	*sc = ifp->if_softc;
   2189       1.1      joff 	struct atu_chain	*c;
   2190       1.1      joff 	usbd_status		stat;
   2191       1.1      joff 	int			cnt, s;
   2192       1.1      joff 
   2193      1.40    dyoung 	DPRINTF(("%s: atu_watchdog\n", device_xname(sc->atu_dev)));
   2194       1.1      joff 
   2195       1.1      joff 	ifp->if_timer = 0;
   2196       1.1      joff 
   2197       1.3      joff 	if (sc->sc_state != ATU_S_OK || (ifp->if_flags & IFF_RUNNING) == 0)
   2198       1.1      joff 		return;
   2199       1.1      joff 
   2200       1.1      joff 	sc = ifp->if_softc;
   2201       1.1      joff 	s = splnet();
   2202       1.1      joff 	ifp->if_oerrors++;
   2203      1.40    dyoung 	DPRINTF(("%s: watchdog timeout\n", device_xname(sc->atu_dev)));
   2204       1.1      joff 
   2205       1.1      joff 	/*
   2206       1.1      joff 	 * TODO:
   2207       1.1      joff 	 * we should change this since we have multiple TX tranfers...
   2208       1.1      joff 	 */
   2209       1.1      joff 	for (cnt = 0; cnt < ATU_TX_LIST_CNT; cnt++) {
   2210       1.1      joff 		c = &sc->atu_cdata.atu_tx_chain[cnt];
   2211       1.1      joff 		if (c->atu_in_xfer) {
   2212       1.1      joff 			usbd_get_xfer_status(c->atu_xfer, NULL, NULL, NULL,
   2213       1.1      joff 			    &stat);
   2214       1.1      joff 			atu_txeof(c->atu_xfer, c, stat);
   2215       1.1      joff 		}
   2216       1.1      joff 	}
   2217       1.1      joff 
   2218       1.6      joff 	if (!IFQ_IS_EMPTY(&ifp->if_snd))
   2219       1.1      joff 		atu_start(ifp);
   2220       1.1      joff 	splx(s);
   2221       1.1      joff 
   2222      1.12    dyoung 	ieee80211_watchdog(&sc->sc_ic);
   2223       1.1      joff }
   2224       1.1      joff 
   2225       1.1      joff /*
   2226       1.1      joff  * Stop the adapter and free any mbufs allocated to the
   2227       1.1      joff  * RX and TX lists.
   2228       1.1      joff  */
   2229       1.1      joff void
   2230      1.23  christos atu_stop(struct ifnet *ifp, int disable)
   2231       1.1      joff {
   2232       1.1      joff 	struct atu_softc	*sc = ifp->if_softc;
   2233       1.6      joff 	struct ieee80211com	*ic = &sc->sc_ic;
   2234       1.1      joff 	struct atu_cdata	*cd;
   2235       1.1      joff 	usbd_status		err;
   2236       1.1      joff 	int s;
   2237       1.1      joff 
   2238       1.1      joff 	s = splnet();
   2239       1.4      joff 	ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
   2240       1.1      joff 	ifp->if_timer = 0;
   2241       1.1      joff 
   2242       1.6      joff 	usb_rem_task(sc->atu_udev, &sc->sc_task);
   2243       1.6      joff 	ieee80211_new_state(ic, IEEE80211_S_INIT, -1);
   2244       1.6      joff 
   2245       1.1      joff 	/* Stop transfers. */
   2246       1.1      joff 	if (sc->atu_ep[ATU_ENDPT_RX] != NULL) {
   2247       1.1      joff 		err = usbd_abort_pipe(sc->atu_ep[ATU_ENDPT_RX]);
   2248       1.1      joff 		if (err) {
   2249       1.1      joff 			DPRINTF(("%s: abort rx pipe failed: %s\n",
   2250      1.40    dyoung 			    device_xname(sc->atu_dev), usbd_errstr(err)));
   2251       1.1      joff 		}
   2252      1.51     skrll 	}
   2253      1.51     skrll 
   2254      1.51     skrll 	if (sc->atu_ep[ATU_ENDPT_TX] != NULL) {
   2255      1.51     skrll 		err = usbd_abort_pipe(sc->atu_ep[ATU_ENDPT_TX]);
   2256      1.51     skrll 		if (err) {
   2257      1.51     skrll 			DPRINTF(("%s: abort tx pipe failed: %s\n",
   2258      1.51     skrll 			    device_xname(sc->atu_dev), usbd_errstr(err)));
   2259      1.51     skrll 		}
   2260      1.51     skrll 	}
   2261      1.51     skrll 
   2262      1.51     skrll 	/* Free RX/TX/MGMT list resources. */
   2263      1.51     skrll 	cd = &sc->atu_cdata;
   2264      1.51     skrll 	atu_xfer_list_free(sc, cd->atu_rx_chain, ATU_RX_LIST_CNT);
   2265      1.51     skrll 	atu_xfer_list_free(sc, cd->atu_tx_chain, ATU_TX_LIST_CNT);
   2266      1.51     skrll 
   2267      1.51     skrll 	/* Close pipes */
   2268      1.51     skrll 	if (sc->atu_ep[ATU_ENDPT_RX] != NULL) {
   2269       1.1      joff 		err = usbd_close_pipe(sc->atu_ep[ATU_ENDPT_RX]);
   2270       1.1      joff 		if (err) {
   2271       1.1      joff 			DPRINTF(("%s: close rx pipe failed: %s\n",
   2272      1.40    dyoung 			    device_xname(sc->atu_dev), usbd_errstr(err)));
   2273       1.1      joff 		}
   2274       1.1      joff 		sc->atu_ep[ATU_ENDPT_RX] = NULL;
   2275       1.1      joff 	}
   2276       1.1      joff 
   2277       1.1      joff 	if (sc->atu_ep[ATU_ENDPT_TX] != NULL) {
   2278       1.1      joff 		err = usbd_close_pipe(sc->atu_ep[ATU_ENDPT_TX]);
   2279       1.1      joff 		if (err) {
   2280       1.1      joff 			DPRINTF(("%s: close tx pipe failed: %s\n",
   2281      1.40    dyoung 			    device_xname(sc->atu_dev), usbd_errstr(err)));
   2282       1.1      joff 		}
   2283       1.1      joff 		sc->atu_ep[ATU_ENDPT_TX] = NULL;
   2284       1.1      joff 	}
   2285       1.1      joff 
   2286       1.1      joff 	/* Let's be nice and turn off the radio before we leave */
   2287       1.1      joff 	atu_switch_radio(sc, 0);
   2288       1.1      joff 
   2289       1.1      joff 	splx(s);
   2290       1.1      joff }
   2291