summaryrefslogtreecommitdiffstats
path: root/sys/legacy/dev
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2009-05-13 17:11:25 +0000
committerrwatson <rwatson@FreeBSD.org>2009-05-13 17:11:25 +0000
commitfff91f348d2d3c4e3969d9e0ee3c34b04e88a859 (patch)
tree47c0715c0d99d74d1aaa67e490bd2b87e0a71e65 /sys/legacy/dev
parent67b85176db8a78ccaa20abcd72e8622b28b15654 (diff)
downloadFreeBSD-src-fff91f348d2d3c4e3969d9e0ee3c34b04e88a859.zip
FreeBSD-src-fff91f348d2d3c4e3969d9e0ee3c34b04e88a859.tar.gz
Garbage collect legacy upgt driver now that it is available in the new
USB implementation. Garbage collect legacy USB ethernet framework now that it is unused.
Diffstat (limited to 'sys/legacy/dev')
-rw-r--r--sys/legacy/dev/usb/if_upgt.c2375
-rw-r--r--sys/legacy/dev/usb/if_upgtvar.h462
-rw-r--r--sys/legacy/dev/usb/usb_ethersubr.c283
-rw-r--r--sys/legacy/dev/usb/usb_ethersubr.h91
4 files changed, 0 insertions, 3211 deletions
diff --git a/sys/legacy/dev/usb/if_upgt.c b/sys/legacy/dev/usb/if_upgt.c
deleted file mode 100644
index 9ab226f..0000000
--- a/sys/legacy/dev/usb/if_upgt.c
+++ /dev/null
@@ -1,2375 +0,0 @@
-/* $OpenBSD: if_upgt.c,v 1.35 2008/04/16 18:32:15 damien Exp $ */
-/* $FreeBSD$ */
-
-/*
- * Copyright (c) 2007 Marcus Glocker <mglocker@openbsd.org>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-#include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/kernel.h>
-#include <sys/endian.h>
-#include <sys/firmware.h>
-#include <sys/linker.h>
-#include <sys/mbuf.h>
-#include <sys/malloc.h>
-#include <sys/module.h>
-#include <sys/socket.h>
-#include <sys/sockio.h>
-#include <sys/sysctl.h>
-
-#include <net/if.h>
-#include <net/if_arp.h>
-#include <net/ethernet.h>
-#include <net/if_dl.h>
-#include <net/if_media.h>
-#include <net/if_types.h>
-
-#include <sys/bus.h>
-#include <machine/bus.h>
-
-#include <net80211/ieee80211_var.h>
-#include <net80211/ieee80211_phy.h>
-#include <net80211/ieee80211_radiotap.h>
-#include <net80211/ieee80211_regdomain.h>
-
-#include <net/bpf.h>
-
-#include <dev/usb/usb.h>
-#include <dev/usb/usbdi.h>
-#include <dev/usb/usbdi_util.h>
-#include <dev/usb/usbdivar.h>
-#include "usbdevs.h"
-#include <dev/usb/usb_ethersubr.h>
-
-#include <dev/usb/if_upgtvar.h>
-
-/*
- * Driver for the USB PrismGT devices.
- *
- * For now just USB 2.0 devices with the GW3887 chipset are supported.
- * The driver has been written based on the firmware version 2.13.1.0_LM87.
- *
- * TODO's:
- * - MONITOR mode test.
- * - Add HOSTAP mode.
- * - Add IBSS mode.
- * - Support the USB 1.0 devices (NET2280, ISL3880, ISL3886 chipsets).
- *
- * Parts of this driver has been influenced by reading the p54u driver
- * written by Jean-Baptiste Note <jean-baptiste.note@m4x.org> and
- * Sebastien Bourdeauducq <lekernel@prism54.org>.
- */
-
-SYSCTL_NODE(_hw, OID_AUTO, upgt, CTLFLAG_RD, 0,
- "USB PrismGT GW3887 driver parameters");
-
-/*
- * NB: normally `upgt_txbuf' value can be increased to maximum 6, mininum 1.
- * However, we're using just 2 txbufs to protect packet losses in some cases
- * so the performance was sacrificed that with this value its speed is about
- * 2.1Mb/s.
- *
- * With setting txbuf value as 6, you can get full speed, 3.0Mb/s, of this
- * device but sometimes you'd meet some packet losses then retransmision.
- */
-static int upgt_txbuf = UPGT_TX_COUNT; /* # tx buffers to allocate */
-SYSCTL_INT(_hw_upgt, OID_AUTO, txbuf, CTLFLAG_RW, &upgt_txbuf,
- 0, "tx buffers allocated");
-TUNABLE_INT("hw.upgt.txbuf", &upgt_txbuf);
-
-#ifdef UPGT_DEBUG
-int upgt_debug = 0;
-SYSCTL_INT(_hw_upgt, OID_AUTO, debug, CTLFLAG_RW, &upgt_debug,
- 0, "control debugging printfs");
-TUNABLE_INT("hw.upgt.debug", &upgt_debug);
-enum {
- UPGT_DEBUG_XMIT = 0x00000001, /* basic xmit operation */
- UPGT_DEBUG_RECV = 0x00000002, /* basic recv operation */
- UPGT_DEBUG_RESET = 0x00000004, /* reset processing */
- UPGT_DEBUG_INTR = 0x00000008, /* INTR */
- UPGT_DEBUG_TX_PROC = 0x00000010, /* tx ISR proc */
- UPGT_DEBUG_RX_PROC = 0x00000020, /* rx ISR proc */
- UPGT_DEBUG_STATE = 0x00000040, /* 802.11 state transitions */
- UPGT_DEBUG_STAT = 0x00000080, /* statistic */
- UPGT_DEBUG_FW = 0x00000100, /* firmware */
- UPGT_DEBUG_ANY = 0xffffffff
-};
-#define DPRINTF(sc, m, fmt, ...) do { \
- if (sc->sc_debug & (m)) \
- printf(fmt, __VA_ARGS__); \
-} while (0)
-#else
-#define DPRINTF(sc, m, fmt, ...) do { \
- (void) sc; \
-} while (0)
-#endif
-
-/*
- * Prototypes.
- */
-static device_probe_t upgt_match;
-static device_attach_t upgt_attach;
-static device_detach_t upgt_detach;
-static int upgt_alloc_tx(struct upgt_softc *);
-static int upgt_alloc_rx(struct upgt_softc *);
-static int upgt_alloc_cmd(struct upgt_softc *);
-static int upgt_attach_hook(device_t);
-static int upgt_device_reset(struct upgt_softc *);
-static int upgt_bulk_xmit(struct upgt_softc *, struct upgt_data *,
- usbd_pipe_handle, uint32_t *, int);
-static int upgt_fw_verify(struct upgt_softc *);
-static int upgt_mem_init(struct upgt_softc *);
-static int upgt_fw_load(struct upgt_softc *);
-static int upgt_fw_copy(const uint8_t *, char *, int);
-static uint32_t upgt_crc32_le(const void *, size_t);
-static void upgt_rxeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
-static void upgt_txeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
-static int upgt_eeprom_read(struct upgt_softc *);
-static int upgt_eeprom_parse(struct upgt_softc *);
-static void upgt_eeprom_parse_hwrx(struct upgt_softc *, uint8_t *);
-static void upgt_eeprom_parse_freq3(struct upgt_softc *, uint8_t *, int);
-static void upgt_eeprom_parse_freq4(struct upgt_softc *, uint8_t *, int);
-static void upgt_eeprom_parse_freq6(struct upgt_softc *, uint8_t *, int);
-static uint32_t upgt_chksum_le(const uint32_t *, size_t);
-static void upgt_tx_done(struct upgt_softc *, uint8_t *);
-static void upgt_rx(struct upgt_softc *, uint8_t *, int);
-static void upgt_init(void *);
-static void upgt_init_locked(struct upgt_softc *);
-static int upgt_ioctl(struct ifnet *, u_long, caddr_t);
-static void upgt_start(struct ifnet *);
-static int upgt_raw_xmit(struct ieee80211_node *, struct mbuf *,
- const struct ieee80211_bpf_params *);
-static void upgt_scan_start(struct ieee80211com *);
-static void upgt_scan_end(struct ieee80211com *);
-static void upgt_set_channel(struct ieee80211com *);
-static struct ieee80211vap *upgt_vap_create(struct ieee80211com *,
- const char name[IFNAMSIZ], int unit, int opmode,
- int flags, const uint8_t bssid[IEEE80211_ADDR_LEN],
- const uint8_t mac[IEEE80211_ADDR_LEN]);
-static void upgt_vap_delete(struct ieee80211vap *);
-static void upgt_update_mcast(struct ifnet *);
-static uint8_t upgt_rx_rate(struct upgt_softc *, const int);
-static void upgt_set_multi(void *);
-static void upgt_stop(struct upgt_softc *, int);
-static void upgt_setup_rates(struct ieee80211vap *, struct ieee80211com *);
-static int upgt_set_macfilter(struct upgt_softc *, uint8_t);
-static int upgt_newstate(struct ieee80211vap *, enum ieee80211_state, int);
-static void upgt_task(void *);
-static void upgt_scantask(void *);
-static void upgt_set_chan(struct upgt_softc *, struct ieee80211_channel *);
-static void upgt_set_led(struct upgt_softc *, int);
-static void upgt_set_led_blink(void *);
-static void upgt_tx_task(void *);
-static int upgt_get_stats(struct upgt_softc *);
-static void upgt_mem_free(struct upgt_softc *, uint32_t);
-static uint32_t upgt_mem_alloc(struct upgt_softc *);
-static void upgt_free_tx(struct upgt_softc *);
-static void upgt_free_rx(struct upgt_softc *);
-static void upgt_free_cmd(struct upgt_softc *);
-static void upgt_watchdog(void *);
-
-static const char *upgt_fwname = "upgt-gw3887";
-
-static const struct usb_devno upgt_devs_2[] = {
- /* version 2 devices */
- { USB_VENDOR_ACCTON, USB_PRODUCT_ACCTON_PRISM_GT },
- { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D7050 },
- { USB_VENDOR_CONCEPTRONIC, USB_PRODUCT_CONCEPTRONIC_PRISM_GT },
- { USB_VENDOR_DELL, USB_PRODUCT_DELL_PRISM_GT_1 },
- { USB_VENDOR_DELL, USB_PRODUCT_DELL_PRISM_GT_2 },
- { USB_VENDOR_FSC, USB_PRODUCT_FSC_E5400 },
- { USB_VENDOR_GLOBESPAN, USB_PRODUCT_GLOBESPAN_PRISM_GT_1 },
- { USB_VENDOR_GLOBESPAN, USB_PRODUCT_GLOBESPAN_PRISM_GT_2 },
- { USB_VENDOR_INTERSIL, USB_PRODUCT_INTERSIL_PRISM_GT },
- { USB_VENDOR_SMC, USB_PRODUCT_SMC_2862WG },
- { USB_VENDOR_WISTRONNEWEB, USB_PRODUCT_WISTRONNEWEB_UR045G },
- { USB_VENDOR_XYRATEX, USB_PRODUCT_XYRATEX_PRISM_GT_1 },
- { USB_VENDOR_XYRATEX, USB_PRODUCT_XYRATEX_PRISM_GT_2 },
- { USB_VENDOR_ZCOM, USB_PRODUCT_ZCOM_XG703A }
-};
-
-static int
-upgt_match(device_t dev)
-{
- struct usb_attach_arg *uaa = device_get_ivars(dev);
-
- if (!uaa->iface)
- return UMATCH_NONE;
-
- if (usb_lookup(upgt_devs_2, uaa->vendor, uaa->product) != NULL)
- return (UMATCH_VENDOR_PRODUCT);
-
- return (UMATCH_NONE);
-}
-
-static int
-upgt_attach(device_t dev)
-{
- int i;
- struct upgt_softc *sc = device_get_softc(dev);
- struct usb_attach_arg *uaa = device_get_ivars(dev);
- usb_endpoint_descriptor_t *ed;
- usb_interface_descriptor_t *id;
- usbd_status error;
-
- sc->sc_dev = dev;
- sc->sc_udev = uaa->device;
-#ifdef UPGT_DEBUG
- sc->sc_debug = upgt_debug;
-#endif
-
- /* set configuration number */
- if (usbd_set_config_no(sc->sc_udev, UPGT_CONFIG_NO, 0) != 0) {
- device_printf(dev, "could not set configuration no!\n");
- return ENXIO;
- }
-
- /* get the first interface handle */
- error = usbd_device2interface_handle(sc->sc_udev, UPGT_IFACE_INDEX,
- &sc->sc_iface);
- if (error != 0) {
- device_printf(dev, "could not get interface handle!\n");
- return ENXIO;
- }
-
- /* find endpoints */
- id = usbd_get_interface_descriptor(sc->sc_iface);
- sc->sc_rx_no = sc->sc_tx_no = -1;
- for (i = 0; i < id->bNumEndpoints; i++) {
- ed = usbd_interface2endpoint_descriptor(sc->sc_iface, i);
- if (ed == NULL) {
- device_printf(dev,
- "no endpoint descriptor for iface %d!\n", i);
- return ENXIO;
- }
-
- if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
- UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK)
- sc->sc_tx_no = ed->bEndpointAddress;
- if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
- UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK)
- sc->sc_rx_no = ed->bEndpointAddress;
-
- /*
- * 0x01 TX pipe
- * 0x81 RX pipe
- *
- * Deprecated scheme (not used with fw version >2.5.6.x):
- * 0x02 TX MGMT pipe
- * 0x82 TX MGMT pipe
- */
- if (sc->sc_tx_no != -1 && sc->sc_rx_no != -1)
- break;
- }
- if (sc->sc_rx_no == -1 || sc->sc_tx_no == -1) {
- device_printf(dev, "missing endpoint!\n");
- return ENXIO;
- }
-
- /*
- * Open TX and RX USB bulk pipes.
- */
- error = usbd_open_pipe(sc->sc_iface, sc->sc_tx_no, USBD_EXCLUSIVE_USE,
- &sc->sc_tx_pipeh);
- if (error != 0) {
- device_printf(dev, "could not open TX pipe: %s!\n",
- usbd_errstr(error));
- goto fail;
- }
- error = usbd_open_pipe(sc->sc_iface, sc->sc_rx_no, USBD_EXCLUSIVE_USE,
- &sc->sc_rx_pipeh);
- if (error != 0) {
- device_printf(dev, "could not open RX pipe: %s!\n",
- usbd_errstr(error));
- goto fail;
- }
-
- /* Allocate TX, RX, and CMD xfers. */
- if (upgt_alloc_tx(sc) != 0)
- goto fail;
- if (upgt_alloc_rx(sc) != 0)
- goto fail;
- if (upgt_alloc_cmd(sc) != 0)
- goto fail;
-
- /* We need the firmware loaded to complete the attach. */
- return upgt_attach_hook(dev);
-
-fail:
- device_printf(dev, "%s failed!\n", __func__);
- return ENXIO;
-}
-
-static int
-upgt_attach_hook(device_t dev)
-{
- struct ieee80211com *ic;
- struct ifnet *ifp;
- struct upgt_softc *sc = device_get_softc(dev);
- struct upgt_data *data_rx = &sc->rx_data;
- uint8_t bands;
- usbd_status error;
-
- ifp = sc->sc_ifp = if_alloc(IFT_IEEE80211);
- if (ifp == NULL) {
- device_printf(dev, "can not if_alloc()\n");
- return ENXIO;
- }
-
- mtx_init(&sc->sc_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
- MTX_DEF | MTX_RECURSE);
- usb_init_task(&sc->sc_mcasttask, upgt_set_multi, sc);
- usb_init_task(&sc->sc_scantask, upgt_scantask, sc);
- usb_init_task(&sc->sc_task, upgt_task, sc);
- usb_init_task(&sc->sc_task_tx, upgt_tx_task, sc);
- callout_init(&sc->sc_led_ch, 0);
- callout_init(&sc->sc_watchdog_ch, 0);
-
- /* Initialize the device. */
- if (upgt_device_reset(sc) != 0)
- goto fail;
-
- /* Verify the firmware. */
- if (upgt_fw_verify(sc) != 0)
- goto fail;
-
- /* Calculate device memory space. */
- if (sc->sc_memaddr_frame_start == 0 || sc->sc_memaddr_frame_end == 0) {
- device_printf(dev,
- "could not find memory space addresses on FW!\n");
- goto fail;
- }
- sc->sc_memaddr_frame_end -= UPGT_MEMSIZE_RX + 1;
- sc->sc_memaddr_rx_start = sc->sc_memaddr_frame_end + 1;
-
- DPRINTF(sc, UPGT_DEBUG_FW, "memory address frame start=0x%08x\n",
- sc->sc_memaddr_frame_start);
- DPRINTF(sc, UPGT_DEBUG_FW, "memory address frame end=0x%08x\n",
- sc->sc_memaddr_frame_end);
- DPRINTF(sc, UPGT_DEBUG_FW, "memory address rx start=0x%08x\n",
- sc->sc_memaddr_rx_start);
-
- upgt_mem_init(sc);
-
- /* Load the firmware. */
- if (upgt_fw_load(sc) != 0)
- goto fail;
-
- /* Startup the RX pipe. */
- usbd_setup_xfer(data_rx->xfer, sc->sc_rx_pipeh, data_rx, data_rx->buf,
- MCLBYTES, USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, upgt_rxeof);
- error = usbd_transfer(data_rx->xfer);
- if (error != 0 && error != USBD_IN_PROGRESS) {
- device_printf(dev, "could not queue RX transfer!\n");
- goto fail;
- }
- usbd_delay_ms(sc->sc_udev, 100);
-
- /* Read the whole EEPROM content and parse it. */
- if (upgt_eeprom_read(sc) != 0)
- goto fail;
- if (upgt_eeprom_parse(sc) != 0)
- goto fail;
-
- /* Setup the 802.11 device. */
- ifp->if_softc = sc;
- if_initname(ifp, "upgt", device_get_unit(sc->sc_dev));
- ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST |
- IFF_NEEDSGIANT; /* USB stack is still under Giant lock */
- ifp->if_init = upgt_init;
- ifp->if_ioctl = upgt_ioctl;
- ifp->if_start = upgt_start;
- IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
- IFQ_SET_READY(&ifp->if_snd);
-
- ic = ifp->if_l2com;
- ic->ic_ifp = ifp;
- ic->ic_phytype = IEEE80211_T_OFDM; /* not only, but not used */
- ic->ic_opmode = IEEE80211_M_STA;
- /* set device capabilities */
- ic->ic_caps =
- IEEE80211_C_STA /* station mode */
- | IEEE80211_C_MONITOR /* monitor mode */
- | IEEE80211_C_SHPREAMBLE /* short preamble supported */
- | IEEE80211_C_SHSLOT /* short slot time supported */
- | IEEE80211_C_BGSCAN /* capable of bg scanning */
- | IEEE80211_C_WPA /* 802.11i */
- ;
-
- bands = 0;
- setbit(&bands, IEEE80211_MODE_11B);
- setbit(&bands, IEEE80211_MODE_11G);
- ieee80211_init_channels(ic, NULL, &bands);
-
- ieee80211_ifattach(ic);
- ic->ic_raw_xmit = upgt_raw_xmit;
- ic->ic_scan_start = upgt_scan_start;
- ic->ic_scan_end = upgt_scan_end;
- ic->ic_set_channel = upgt_set_channel;
-
- ic->ic_vap_create = upgt_vap_create;
- ic->ic_vap_delete = upgt_vap_delete;
- ic->ic_update_mcast = upgt_update_mcast;
-
- bpfattach(ifp, DLT_IEEE802_11_RADIO,
- sizeof(struct ieee80211_frame) + sizeof(sc->sc_txtap));
- sc->sc_rxtap_len = sizeof(sc->sc_rxtap);
- sc->sc_rxtap.wr_ihdr.it_len = htole16(sc->sc_rxtap_len);
- sc->sc_rxtap.wr_ihdr.it_present = htole32(UPGT_RX_RADIOTAP_PRESENT);
- sc->sc_txtap_len = sizeof(sc->sc_txtap);
- sc->sc_txtap.wt_ihdr.it_len = htole16(sc->sc_txtap_len);
- sc->sc_txtap.wt_ihdr.it_present = htole32(UPGT_TX_RADIOTAP_PRESENT);
-
- if (bootverbose)
- ieee80211_announce(ic);
-
- usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev, sc->sc_dev);
- return 0;
-fail:
- device_printf(dev, "%s failed!\n", __func__);
- mtx_destroy(&sc->sc_mtx);
- if_free(ifp);
- return ENXIO;
-}
-
-static void
-upgt_tx_task(void *arg)
-{
- struct upgt_softc *sc = arg;
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
- struct ieee80211_frame *wh;
- struct ieee80211_key *k;
- struct upgt_data *data_tx;
- struct upgt_lmac_mem *mem;
- struct upgt_lmac_tx_desc *txdesc;
- struct mbuf *m;
- uint32_t addr;
- int len, i;
- usbd_status error;
-
- upgt_set_led(sc, UPGT_LED_BLINK);
-
- UPGT_LOCK(sc);
- for (i = 0; i < upgt_txbuf; i++) {
- data_tx = &sc->tx_data[i];
- if (data_tx->m == NULL)
- continue;
-
- m = data_tx->m;
- addr = data_tx->addr + UPGT_MEMSIZE_FRAME_HEAD;
-
- /*
- * Software crypto.
- */
- wh = mtod(m, struct ieee80211_frame *);
- if (wh->i_fc[1] & IEEE80211_FC1_WEP) {
- k = ieee80211_crypto_encap(data_tx->ni, m);
- if (k == NULL) {
- device_printf(sc->sc_dev,
- "ieee80211_crypto_encap returns NULL.\n");
- goto done;
- }
-
- /* in case packet header moved, reset pointer */
- wh = mtod(m, struct ieee80211_frame *);
- }
-
- /*
- * Transmit the URB containing the TX data.
- */
- bzero(data_tx->buf, MCLBYTES);
-
- mem = (struct upgt_lmac_mem *)data_tx->buf;
- mem->addr = htole32(addr);
-
- txdesc = (struct upgt_lmac_tx_desc *)(mem + 1);
-
- if ((wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) ==
- IEEE80211_FC0_TYPE_MGT) {
- /* mgmt frames */
- txdesc->header1.flags = UPGT_H1_FLAGS_TX_MGMT;
- /* always send mgmt frames at lowest rate (DS1) */
- memset(txdesc->rates, 0x10, sizeof(txdesc->rates));
- } else {
- /* data frames */
- txdesc->header1.flags = UPGT_H1_FLAGS_TX_DATA;
- bcopy(sc->sc_cur_rateset, txdesc->rates,
- sizeof(txdesc->rates));
- }
- txdesc->header1.type = UPGT_H1_TYPE_TX_DATA;
- txdesc->header1.len = htole16(m->m_pkthdr.len);
- txdesc->header2.reqid = htole32(data_tx->addr);
- txdesc->header2.type = htole16(UPGT_H2_TYPE_TX_ACK_YES);
- txdesc->header2.flags = htole16(UPGT_H2_FLAGS_TX_ACK_YES);
- txdesc->type = htole32(UPGT_TX_DESC_TYPE_DATA);
- txdesc->pad3[0] = UPGT_TX_DESC_PAD3_SIZE;
-
- if (bpf_peers_present(ifp->if_bpf)) {
- struct upgt_tx_radiotap_header *tap = &sc->sc_txtap;
-
- tap->wt_flags = 0;
- tap->wt_rate = 0; /* XXX where to get from? */
- tap->wt_chan_freq = htole16(ic->ic_curchan->ic_freq);
- tap->wt_chan_flags = htole16(ic->ic_curchan->ic_flags);
-
- bpf_mtap2(ifp->if_bpf, tap, sc->sc_txtap_len, m);
- }
-
- /* copy frame below our TX descriptor header */
- m_copydata(m, 0, m->m_pkthdr.len,
- data_tx->buf + (sizeof(*mem) + sizeof(*txdesc)));
- /* calculate frame size */
- len = sizeof(*mem) + sizeof(*txdesc) + m->m_pkthdr.len;
- /* we need to align the frame to a 4 byte boundary */
- len = (len + 3) & ~3;
- /* calculate frame checksum */
- mem->chksum = upgt_chksum_le((uint32_t *)txdesc,
- len - sizeof(*mem));
- /* we do not need the mbuf anymore */
- m_freem(m);
- data_tx->m = NULL;
-
- DPRINTF(sc, UPGT_DEBUG_XMIT, "%s: TX start data sending\n",
- __func__);
- KASSERT(len <= MCLBYTES, ("mbuf is small for saving data"));
-
- usbd_setup_xfer(data_tx->xfer, sc->sc_tx_pipeh, data_tx,
- data_tx->buf, len, USBD_FORCE_SHORT_XFER | USBD_NO_COPY,
- UPGT_USB_TIMEOUT, upgt_txeof);
- UPGT_UNLOCK(sc);
- mtx_lock(&Giant);
- error = usbd_transfer(data_tx->xfer);
- mtx_unlock(&Giant);
- UPGT_LOCK(sc);
- if (error != 0 && error != USBD_IN_PROGRESS) {
- device_printf(sc->sc_dev,
- "could not transmit TX data URB!\n");
- goto done;
- }
-
- DPRINTF(sc, UPGT_DEBUG_XMIT, "TX sent (%d bytes)\n", len);
- }
-done:
- UPGT_UNLOCK(sc);
- /*
- * If we don't regulary read the device statistics, the RX queue
- * will stall. It's strange, but it works, so we keep reading
- * the statistics here. *shrug*
- */
- (void)upgt_get_stats(sc);
-}
-
-static void
-upgt_txeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
-{
- struct upgt_data *data_tx = priv;
- struct upgt_softc *sc = data_tx->sc;
-
- if (status != USBD_NORMAL_COMPLETION) {
- if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
- return;
- if (status == USBD_STALLED) {
- usbd_clear_endpoint_stall_async(sc->sc_rx_pipeh);
- return;
- }
-
- device_printf(sc->sc_dev, "TX warning(%s)\n",
- usbd_errstr(status));
- }
-}
-
-static int
-upgt_get_stats(struct upgt_softc *sc)
-{
- struct upgt_data *data_cmd = &sc->cmd_data;
- struct upgt_lmac_mem *mem;
- struct upgt_lmac_stats *stats;
- int len;
-
- /*
- * Transmit the URB containing the CMD data.
- */
- bzero(data_cmd->buf, MCLBYTES);
-
- mem = (struct upgt_lmac_mem *)data_cmd->buf;
- mem->addr = htole32(sc->sc_memaddr_frame_start +
- UPGT_MEMSIZE_FRAME_HEAD);
-
- stats = (struct upgt_lmac_stats *)(mem + 1);
-
- stats->header1.flags = 0;
- stats->header1.type = UPGT_H1_TYPE_CTRL;
- stats->header1.len = htole16(
- sizeof(struct upgt_lmac_stats) - sizeof(struct upgt_lmac_header));
-
- stats->header2.reqid = htole32(sc->sc_memaddr_frame_start);
- stats->header2.type = htole16(UPGT_H2_TYPE_STATS);
- stats->header2.flags = 0;
-
- len = sizeof(*mem) + sizeof(*stats);
-
- mem->chksum = upgt_chksum_le((uint32_t *)stats,
- len - sizeof(*mem));
-
- if (upgt_bulk_xmit(sc, data_cmd, sc->sc_tx_pipeh, &len, 0) != 0) {
- device_printf(sc->sc_dev,
- "could not transmit statistics CMD data URB!\n");
- return (EIO);
- }
-
- return (0);
-}
-
-static int
-upgt_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
-{
- struct upgt_softc *sc = ifp->if_softc;
- struct ieee80211com *ic = ifp->if_l2com;
- struct ifreq *ifr = (struct ifreq *) data;
- int error = 0, startall = 0;
-
- switch (cmd) {
- case SIOCSIFFLAGS:
- mtx_lock(&Giant);
- if (ifp->if_flags & IFF_UP) {
- if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
- if ((ifp->if_flags ^ sc->sc_if_flags) &
- (IFF_ALLMULTI | IFF_PROMISC))
- upgt_set_multi(sc);
- } else {
- upgt_init(sc);
- startall = 1;
- }
- } else {
- if (ifp->if_drv_flags & IFF_DRV_RUNNING)
- upgt_stop(sc, 1);
- }
- sc->sc_if_flags = ifp->if_flags;
- if (startall)
- ieee80211_start_all(ic);
- mtx_unlock(&Giant);
- break;
- case SIOCGIFMEDIA:
- error = ifmedia_ioctl(ifp, ifr, &ic->ic_media, cmd);
- break;
- case SIOCGIFADDR:
- error = ether_ioctl(ifp, cmd, data);
- break;
- default:
- error = EINVAL;
- break;
- }
- return error;
-}
-
-static void
-upgt_stop(struct upgt_softc *sc, int disable)
-{
- struct ifnet *ifp = sc->sc_ifp;
-
- /* abort and close TX / RX pipes */
- if (sc->sc_tx_pipeh != NULL)
- usbd_abort_pipe(sc->sc_tx_pipeh);
- if (sc->sc_rx_pipeh != NULL)
- usbd_abort_pipe(sc->sc_rx_pipeh);
-
- /* device down */
- sc->sc_tx_timer = 0;
- ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
-}
-
-static void
-upgt_task(void *arg)
-{
- struct upgt_softc *sc = arg;
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
- struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
- struct upgt_vap *uvp = UPGT_VAP(vap);
-
- DPRINTF(sc, UPGT_DEBUG_STATE, "%s: %s -> %s\n", __func__,
- ieee80211_state_name[vap->iv_state],
- ieee80211_state_name[sc->sc_state]);
-
- switch (sc->sc_state) {
- case IEEE80211_S_INIT:
- /* do not accept any frames if the device is down */
- UPGT_LOCK(sc);
- upgt_set_macfilter(sc, sc->sc_state);
- UPGT_UNLOCK(sc);
- upgt_set_led(sc, UPGT_LED_OFF);
- break;
- case IEEE80211_S_SCAN:
- upgt_set_chan(sc, ic->ic_curchan);
- break;
- case IEEE80211_S_AUTH:
- upgt_set_chan(sc, ic->ic_curchan);
- break;
- case IEEE80211_S_ASSOC:
- break;
- case IEEE80211_S_RUN:
- UPGT_LOCK(sc);
- upgt_set_macfilter(sc, sc->sc_state);
- UPGT_UNLOCK(sc);
- upgt_set_led(sc, UPGT_LED_ON);
- break;
- default:
- break;
- }
-
- IEEE80211_LOCK(ic);
- uvp->newstate(vap, sc->sc_state, sc->sc_arg);
- if (vap->iv_newstate_cb != NULL)
- vap->iv_newstate_cb(vap, sc->sc_state, sc->sc_arg);
- IEEE80211_UNLOCK(ic);
-}
-
-static void
-upgt_set_led(struct upgt_softc *sc, int action)
-{
- struct upgt_data *data_cmd = &sc->cmd_data;
- struct upgt_lmac_mem *mem;
- struct upgt_lmac_led *led;
- int len;
-
- /*
- * Transmit the URB containing the CMD data.
- */
- bzero(data_cmd->buf, MCLBYTES);
-
- mem = (struct upgt_lmac_mem *)data_cmd->buf;
- mem->addr = htole32(sc->sc_memaddr_frame_start +
- UPGT_MEMSIZE_FRAME_HEAD);
-
- led = (struct upgt_lmac_led *)(mem + 1);
-
- led->header1.flags = UPGT_H1_FLAGS_TX_NO_CALLBACK;
- led->header1.type = UPGT_H1_TYPE_CTRL;
- led->header1.len = htole16(
- sizeof(struct upgt_lmac_led) -
- sizeof(struct upgt_lmac_header));
-
- led->header2.reqid = htole32(sc->sc_memaddr_frame_start);
- led->header2.type = htole16(UPGT_H2_TYPE_LED);
- led->header2.flags = 0;
-
- switch (action) {
- case UPGT_LED_OFF:
- led->mode = htole16(UPGT_LED_MODE_SET);
- led->action_fix = 0;
- led->action_tmp = htole16(UPGT_LED_ACTION_OFF);
- led->action_tmp_dur = 0;
- break;
- case UPGT_LED_ON:
- led->mode = htole16(UPGT_LED_MODE_SET);
- led->action_fix = 0;
- led->action_tmp = htole16(UPGT_LED_ACTION_ON);
- led->action_tmp_dur = 0;
- break;
- case UPGT_LED_BLINK:
- if (sc->sc_state != IEEE80211_S_RUN)
- return;
- if (sc->sc_led_blink)
- /* previous blink was not finished */
- return;
- led->mode = htole16(UPGT_LED_MODE_SET);
- led->action_fix = htole16(UPGT_LED_ACTION_OFF);
- led->action_tmp = htole16(UPGT_LED_ACTION_ON);
- led->action_tmp_dur = htole16(UPGT_LED_ACTION_TMP_DUR);
- /* lock blink */
- sc->sc_led_blink = 1;
- callout_reset(&sc->sc_led_ch, hz, upgt_set_led_blink, sc);
- break;
- default:
- return;
- }
-
- len = sizeof(*mem) + sizeof(*led);
-
- mem->chksum = upgt_chksum_le((uint32_t *)led,
- len - sizeof(*mem));
-
- if (upgt_bulk_xmit(sc, data_cmd, sc->sc_tx_pipeh, &len, 0) != 0)
- device_printf(sc->sc_dev, "could not transmit led CMD URB!\n");
-}
-
-static void
-upgt_set_led_blink(void *arg)
-{
- struct upgt_softc *sc = arg;
-
- /* blink finished, we are ready for a next one */
- sc->sc_led_blink = 0;
-}
-
-static void
-upgt_init(void *priv)
-{
- struct upgt_softc *sc = priv;
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
-
- UPGT_LOCK(sc);
- upgt_init_locked(sc);
- UPGT_UNLOCK(sc);
-
- if (ifp->if_drv_flags & IFF_DRV_RUNNING)
- ieee80211_start_all(ic); /* start all vap's */
-}
-
-static void
-upgt_init_locked(struct upgt_softc *sc)
-{
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
-
- IEEE80211_ADDR_COPY(ic->ic_myaddr, IF_LLADDR(ifp));
- DPRINTF(sc, UPGT_DEBUG_RESET, "setting MAC address to %s\n",
- ether_sprintf(ic->ic_myaddr));
-
- upgt_set_macfilter(sc, IEEE80211_S_SCAN);
-
- ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
- ifp->if_drv_flags |= IFF_DRV_RUNNING;
-}
-
-static int
-upgt_set_macfilter(struct upgt_softc *sc, uint8_t state)
-{
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
- struct ieee80211vap *vap = TAILQ_FIRST(&ic->ic_vaps);
- struct ieee80211_node *ni = vap->iv_bss;
- struct upgt_data *data_cmd = &sc->cmd_data;
- struct upgt_lmac_mem *mem;
- struct upgt_lmac_filter *filter;
- int len;
- uint8_t broadcast[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
-
- /*
- * Transmit the URB containing the CMD data.
- */
- bzero(data_cmd->buf, MCLBYTES);
-
- mem = (struct upgt_lmac_mem *)data_cmd->buf;
- mem->addr = htole32(sc->sc_memaddr_frame_start +
- UPGT_MEMSIZE_FRAME_HEAD);
-
- filter = (struct upgt_lmac_filter *)(mem + 1);
-
- filter->header1.flags = UPGT_H1_FLAGS_TX_NO_CALLBACK;
- filter->header1.type = UPGT_H1_TYPE_CTRL;
- filter->header1.len = htole16(
- sizeof(struct upgt_lmac_filter) -
- sizeof(struct upgt_lmac_header));
-
- filter->header2.reqid = htole32(sc->sc_memaddr_frame_start);
- filter->header2.type = htole16(UPGT_H2_TYPE_MACFILTER);
- filter->header2.flags = 0;
-
- switch (state) {
- case IEEE80211_S_INIT:
- DPRINTF(sc, UPGT_DEBUG_STATE, "%s: set MAC filter to INIT\n",
- __func__);
- filter->type = htole16(UPGT_FILTER_TYPE_RESET);
- break;
- case IEEE80211_S_SCAN:
- DPRINTF(sc, UPGT_DEBUG_STATE,
- "set MAC filter to SCAN (bssid %s)\n",
- ether_sprintf(broadcast));
- filter->type = htole16(UPGT_FILTER_TYPE_NONE);
- IEEE80211_ADDR_COPY(filter->dst, ic->ic_myaddr);
- IEEE80211_ADDR_COPY(filter->src, broadcast);
- filter->unknown1 = htole16(UPGT_FILTER_UNKNOWN1);
- filter->rxaddr = htole32(sc->sc_memaddr_rx_start);
- filter->unknown2 = htole16(UPGT_FILTER_UNKNOWN2);
- filter->rxhw = htole32(sc->sc_eeprom_hwrx);
- filter->unknown3 = htole16(UPGT_FILTER_UNKNOWN3);
- break;
- case IEEE80211_S_RUN:
- /* XXX monitor mode isn't tested yet. */
- if (vap->iv_opmode == IEEE80211_M_MONITOR) {
- filter->type = htole16(UPGT_FILTER_TYPE_MONITOR);
- IEEE80211_ADDR_COPY(filter->dst, ic->ic_myaddr);
- IEEE80211_ADDR_COPY(filter->src, ni->ni_bssid);
- filter->unknown1 = htole16(UPGT_FILTER_MONITOR_UNKNOWN1);
- filter->rxaddr = htole32(sc->sc_memaddr_rx_start);
- filter->unknown2 = htole16(UPGT_FILTER_MONITOR_UNKNOWN2);
- filter->rxhw = htole32(sc->sc_eeprom_hwrx);
- filter->unknown3 = htole16(UPGT_FILTER_MONITOR_UNKNOWN3);
- } else {
- DPRINTF(sc, UPGT_DEBUG_STATE,
- "set MAC filter to RUN (bssid %s)\n",
- ether_sprintf(ni->ni_bssid));
- filter->type = htole16(UPGT_FILTER_TYPE_STA);
- IEEE80211_ADDR_COPY(filter->dst, ic->ic_myaddr);
- IEEE80211_ADDR_COPY(filter->src, ni->ni_bssid);
- filter->unknown1 = htole16(UPGT_FILTER_UNKNOWN1);
- filter->rxaddr = htole32(sc->sc_memaddr_rx_start);
- filter->unknown2 = htole16(UPGT_FILTER_UNKNOWN2);
- filter->rxhw = htole32(sc->sc_eeprom_hwrx);
- filter->unknown3 = htole16(UPGT_FILTER_UNKNOWN3);
- }
- break;
- default:
- device_printf(sc->sc_dev,
- "MAC filter does not know that state!\n");
- break;
- }
-
- len = sizeof(*mem) + sizeof(*filter);
-
- mem->chksum = upgt_chksum_le((uint32_t *)filter,
- len - sizeof(*mem));
-
- UPGT_UNLOCK(sc);
- if (upgt_bulk_xmit(sc, data_cmd, sc->sc_tx_pipeh, &len, 0) != 0) {
- device_printf(sc->sc_dev,
- "could not transmit macfilter CMD data URB!\n");
- UPGT_LOCK(sc);
- return (EIO);
- }
- UPGT_LOCK(sc);
-
- return (0);
-}
-
-static void
-upgt_setup_rates(struct ieee80211vap *vap, struct ieee80211com *ic)
-{
- struct ifnet *ifp = ic->ic_ifp;
- struct upgt_softc *sc = ifp->if_softc;
- const struct ieee80211_txparam *tp;
-
- /*
- * 0x01 = OFMD6 0x10 = DS1
- * 0x04 = OFDM9 0x11 = DS2
- * 0x06 = OFDM12 0x12 = DS5
- * 0x07 = OFDM18 0x13 = DS11
- * 0x08 = OFDM24
- * 0x09 = OFDM36
- * 0x0a = OFDM48
- * 0x0b = OFDM54
- */
- const uint8_t rateset_auto_11b[] =
- { 0x13, 0x13, 0x12, 0x11, 0x11, 0x10, 0x10, 0x10 };
- const uint8_t rateset_auto_11g[] =
- { 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x04, 0x01 };
- const uint8_t rateset_fix_11bg[] =
- { 0x10, 0x11, 0x12, 0x13, 0x01, 0x04, 0x06, 0x07,
- 0x08, 0x09, 0x0a, 0x0b };
-
- tp = &vap->iv_txparms[ieee80211_chan2mode(ic->ic_curchan)];
-
- /* XXX */
- if (tp->ucastrate == IEEE80211_FIXED_RATE_NONE) {
- /*
- * Automatic rate control is done by the device.
- * We just pass the rateset from which the device
- * will pickup a rate.
- */
- if (ic->ic_curmode == IEEE80211_MODE_11B)
- bcopy(rateset_auto_11b, sc->sc_cur_rateset,
- sizeof(sc->sc_cur_rateset));
- if (ic->ic_curmode == IEEE80211_MODE_11G ||
- ic->ic_curmode == IEEE80211_MODE_AUTO)
- bcopy(rateset_auto_11g, sc->sc_cur_rateset,
- sizeof(sc->sc_cur_rateset));
- } else {
- /* set a fixed rate */
- memset(sc->sc_cur_rateset, rateset_fix_11bg[tp->ucastrate],
- sizeof(sc->sc_cur_rateset));
- }
-}
-
-static void
-upgt_set_multi(void *arg)
-{
- struct upgt_softc *sc = arg;
- struct ifnet *ifp = sc->sc_ifp;
-
- if (!(ifp->if_flags & IFF_UP))
- return;
-
- /*
- * XXX don't know how to set a device. Lack of docs. Just try to set
- * IFF_ALLMULTI flag here.
- */
- IF_ADDR_LOCK(ifp);
- ifp->if_flags |= IFF_ALLMULTI;
- IF_ADDR_UNLOCK(ifp);
-}
-
-static void
-upgt_start(struct ifnet *ifp)
-{
- struct upgt_softc *sc = ifp->if_softc;
- struct upgt_data *data_tx;
- struct ieee80211_node *ni;
- struct mbuf *m;
- int i;
-
- UPGT_LOCK(sc);
- for (i = 0; i < upgt_txbuf; i++) {
- data_tx = &sc->tx_data[i];
- if (data_tx->use == 1)
- continue;
-
- IFQ_DRV_DEQUEUE(&ifp->if_snd, m);
- if (m == NULL)
- break;
-
- ni = (struct ieee80211_node *)m->m_pkthdr.rcvif;
- m = ieee80211_encap(ni, m);
- if (m == NULL) {
- ieee80211_free_node(ni);
- ifp->if_oerrors++;
- continue;
- }
-
- if ((data_tx->addr = upgt_mem_alloc(sc)) == 0) {
- device_printf(sc->sc_dev, "no free prism memory!\n");
- UPGT_UNLOCK(sc);
- return;
- }
- data_tx->ni = ni;
- data_tx->m = m;
- data_tx->use = 1;
- sc->tx_queued++;
- }
-
- if (sc->tx_queued > 0) {
- DPRINTF(sc, UPGT_DEBUG_XMIT, "tx_queued=%d\n", sc->tx_queued);
-
- ifp->if_drv_flags |= IFF_DRV_OACTIVE;
- sc->sc_tx_timer = 5;
- callout_reset(&sc->sc_watchdog_ch, hz, upgt_watchdog, sc);
- /* process the TX queue in process context */
- usb_rem_task(sc->sc_udev, &sc->sc_task_tx);
- usb_add_task(sc->sc_udev, &sc->sc_task_tx, USB_TASKQ_DRIVER);
- }
- UPGT_UNLOCK(sc);
-}
-
-static int
-upgt_raw_xmit(struct ieee80211_node *ni, struct mbuf *m,
- const struct ieee80211_bpf_params *params)
-{
- struct ieee80211com *ic = ni->ni_ic;
- struct ifnet *ifp = ic->ic_ifp;
- struct upgt_softc *sc = ifp->if_softc;
- struct upgt_data *data_tx = NULL;
- int i;
-
- /* prevent management frames from being sent if we're not ready */
- if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
- m_freem(m);
- ieee80211_free_node(ni);
- return ENETDOWN;
- }
-
- UPGT_LOCK(sc);
- if (sc->tx_queued >= upgt_txbuf) {
- ifp->if_drv_flags |= IFF_DRV_OACTIVE;
- m_freem(m);
- ieee80211_free_node(ni);
- UPGT_UNLOCK(sc);
- return ENOBUFS; /* XXX */
- }
-
- ifp->if_opackets++;
-
- /* choose a unused buffer. */
- for (i = 0; i < upgt_txbuf; i++) {
- data_tx = &sc->tx_data[i];
- if (data_tx->use == 0)
- break;
- }
- KASSERT(data_tx != NULL, ("data_tx is NULL"));
- KASSERT(data_tx->use == 0, ("no empty TX queue"));
- if ((data_tx->addr = upgt_mem_alloc(sc)) == 0) {
- device_printf(sc->sc_dev, "no free prism memory!\n");
- UPGT_UNLOCK(sc);
- return ENOBUFS;
- }
-
- if (bpf_peers_present(ifp->if_bpf)) {
- struct upgt_tx_radiotap_header *tap = &sc->sc_txtap;
-
- tap->wt_flags = 0;
- tap->wt_rate = 0; /* TODO: where to get from? */
- tap->wt_chan_freq = htole16(ic->ic_curchan->ic_freq);
- tap->wt_chan_flags = htole16(ic->ic_curchan->ic_flags);
-
- bpf_mtap2(ifp->if_bpf, tap, sc->sc_txtap_len, m);
- }
-
- data_tx->ni = ni;
- data_tx->m = m;
- data_tx->use = 1;
- sc->tx_queued++;
- ifp->if_drv_flags |= IFF_DRV_OACTIVE;
- UPGT_UNLOCK(sc);
-
- sc->sc_tx_timer = 5;
- callout_reset(&sc->sc_watchdog_ch, hz, upgt_watchdog, sc);
- usb_rem_task(sc->sc_udev, &sc->sc_task_tx);
- usb_add_task(sc->sc_udev, &sc->sc_task_tx, USB_TASKQ_DRIVER);
-
- return 0;
-}
-
-static void
-upgt_watchdog(void *arg)
-{
- struct upgt_softc *sc = arg;
- struct ifnet *ifp = sc->sc_ifp;
-
- if (sc->sc_tx_timer > 0) {
- if (--sc->sc_tx_timer == 0) {
- device_printf(sc->sc_dev, "watchdog timeout\n");
- /* upgt_init(ifp); XXX needs a process context ? */
- ifp->if_oerrors++;
- return;
- }
- callout_reset(&sc->sc_watchdog_ch, hz, upgt_watchdog, sc);
- }
-}
-
-static uint32_t
-upgt_mem_alloc(struct upgt_softc *sc)
-{
- int i;
-
- for (i = 0; i < sc->sc_memory.pages; i++) {
- if (sc->sc_memory.page[i].used == 0) {
- sc->sc_memory.page[i].used = 1;
- return (sc->sc_memory.page[i].addr);
- }
- }
-
- return (0);
-}
-
-static void
-upgt_scantask(void *arg)
-{
- struct upgt_softc *sc = arg;
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
-
- switch (sc->sc_scan_action) {
- case UPGT_SET_CHANNEL:
- upgt_set_chan(sc, ic->ic_curchan);
- break;
- default:
- device_printf(sc->sc_dev, "unknown scan action %d\n",
- sc->sc_scan_action);
- break;
- }
-}
-
-static void
-upgt_scan_start(struct ieee80211com *ic)
-{
- /* do nothing. */
-}
-
-static void
-upgt_scan_end(struct ieee80211com *ic)
-{
- /* do nothing. */
-}
-
-static void
-upgt_set_channel(struct ieee80211com *ic)
-{
- struct upgt_softc *sc = ic->ic_ifp->if_softc;
-
- usb_rem_task(sc->sc_udev, &sc->sc_scantask);
-
- /* do it in a process context */
- sc->sc_scan_action = UPGT_SET_CHANNEL;
- usb_add_task(sc->sc_udev, &sc->sc_scantask, USB_TASKQ_DRIVER);
-}
-
-static void
-upgt_set_chan(struct upgt_softc *sc, struct ieee80211_channel *c)
-{
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
- struct upgt_data *data_cmd = &sc->cmd_data;
- struct upgt_lmac_mem *mem;
- struct upgt_lmac_channel *chan;
- int len, channel;
-
- channel = ieee80211_chan2ieee(ic, c);
- if (channel == 0 || channel == IEEE80211_CHAN_ANY) {
- /* XXX should NEVER happen */
- device_printf(sc->sc_dev,
- "%s: invalid channel %x\n", __func__, channel);
- return;
- }
-
- DPRINTF(sc, UPGT_DEBUG_STATE, "%s: channel %d\n", __func__, channel);
-
- /*
- * Transmit the URB containing the CMD data.
- */
- bzero(data_cmd->buf, MCLBYTES);
-
- mem = (struct upgt_lmac_mem *)data_cmd->buf;
- mem->addr = htole32(sc->sc_memaddr_frame_start +
- UPGT_MEMSIZE_FRAME_HEAD);
-
- chan = (struct upgt_lmac_channel *)(mem + 1);
-
- chan->header1.flags = UPGT_H1_FLAGS_TX_NO_CALLBACK;
- chan->header1.type = UPGT_H1_TYPE_CTRL;
- chan->header1.len = htole16(
- sizeof(struct upgt_lmac_channel) - sizeof(struct upgt_lmac_header));
-
- chan->header2.reqid = htole32(sc->sc_memaddr_frame_start);
- chan->header2.type = htole16(UPGT_H2_TYPE_CHANNEL);
- chan->header2.flags = 0;
-
- chan->unknown1 = htole16(UPGT_CHANNEL_UNKNOWN1);
- chan->unknown2 = htole16(UPGT_CHANNEL_UNKNOWN2);
- chan->freq6 = sc->sc_eeprom_freq6[channel];
- chan->settings = sc->sc_eeprom_freq6_settings;
- chan->unknown3 = UPGT_CHANNEL_UNKNOWN3;
-
- bcopy(&sc->sc_eeprom_freq3[channel].data, chan->freq3_1,
- sizeof(chan->freq3_1));
- bcopy(&sc->sc_eeprom_freq4[channel], chan->freq4,
- sizeof(sc->sc_eeprom_freq4[channel]));
- bcopy(&sc->sc_eeprom_freq3[channel].data, chan->freq3_2,
- sizeof(chan->freq3_2));
-
- len = sizeof(*mem) + sizeof(*chan);
-
- mem->chksum = upgt_chksum_le((uint32_t *)chan,
- len - sizeof(*mem));
-
- if (upgt_bulk_xmit(sc, data_cmd, sc->sc_tx_pipeh, &len, 0) != 0)
- device_printf(sc->sc_dev,
- "could not transmit channel CMD data URB!\n");
-}
-
-static struct ieee80211vap *
-upgt_vap_create(struct ieee80211com *ic,
- const char name[IFNAMSIZ], int unit, int opmode, int flags,
- const uint8_t bssid[IEEE80211_ADDR_LEN],
- const uint8_t mac[IEEE80211_ADDR_LEN])
-{
- struct upgt_vap *uvp;
- struct ieee80211vap *vap;
-
- if (!TAILQ_EMPTY(&ic->ic_vaps)) /* only one at a time */
- return NULL;
- uvp = (struct upgt_vap *) malloc(sizeof(struct upgt_vap),
- M_80211_VAP, M_NOWAIT | M_ZERO);
- if (uvp == NULL)
- return NULL;
- vap = &uvp->vap;
- /* enable s/w bmiss handling for sta mode */
- ieee80211_vap_setup(ic, vap, name, unit, opmode,
- flags | IEEE80211_CLONE_NOBEACONS, bssid, mac);
-
- /* override state transition machine */
- uvp->newstate = vap->iv_newstate;
- vap->iv_newstate = upgt_newstate;
-
- /* setup device rates */
- upgt_setup_rates(vap, ic);
-
- /* complete setup */
- ieee80211_vap_attach(vap, ieee80211_media_change,
- ieee80211_media_status);
- ic->ic_opmode = opmode;
- return vap;
-}
-
-static int
-upgt_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
-{
- struct upgt_vap *uvp = UPGT_VAP(vap);
- struct ieee80211com *ic = vap->iv_ic;
- struct upgt_softc *sc = ic->ic_ifp->if_softc;
-
- usb_rem_task(sc->sc_udev, &sc->sc_task);
-
- /* do it in a process context */
- sc->sc_state = nstate;
- sc->sc_arg = arg;
-
- if (nstate == IEEE80211_S_INIT) {
- uvp->newstate(vap, nstate, arg);
- return 0;
- } else {
- usb_add_task(sc->sc_udev, &sc->sc_task, USB_TASKQ_DRIVER);
- return EINPROGRESS;
- }
-}
-
-static void
-upgt_vap_delete(struct ieee80211vap *vap)
-{
- struct upgt_vap *uvp = UPGT_VAP(vap);
-
- ieee80211_vap_detach(vap);
- free(uvp, M_80211_VAP);
-}
-
-static void
-upgt_update_mcast(struct ifnet *ifp)
-{
- struct upgt_softc *sc = ifp->if_softc;
-
- usb_add_task(sc->sc_udev, &sc->sc_mcasttask, USB_TASKQ_DRIVER);
-}
-
-static int
-upgt_eeprom_parse(struct upgt_softc *sc)
-{
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
- struct upgt_eeprom_header *eeprom_header;
- struct upgt_eeprom_option *eeprom_option;
- uint16_t option_len;
- uint16_t option_type;
- uint16_t preamble_len;
- int option_end = 0;
-
- /* calculate eeprom options start offset */
- eeprom_header = (struct upgt_eeprom_header *)sc->sc_eeprom;
- preamble_len = le16toh(eeprom_header->preamble_len);
- eeprom_option = (struct upgt_eeprom_option *)(sc->sc_eeprom +
- (sizeof(struct upgt_eeprom_header) + preamble_len));
-
- while (!option_end) {
- /* the eeprom option length is stored in words */
- option_len =
- (le16toh(eeprom_option->len) - 1) * sizeof(uint16_t);
- option_type =
- le16toh(eeprom_option->type);
-
- switch (option_type) {
- case UPGT_EEPROM_TYPE_NAME:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM name len=%d\n", option_len);
- break;
- case UPGT_EEPROM_TYPE_SERIAL:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM serial len=%d\n", option_len);
- break;
- case UPGT_EEPROM_TYPE_MAC:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM mac len=%d\n", option_len);
-
- IEEE80211_ADDR_COPY(ic->ic_myaddr, eeprom_option->data);
- break;
- case UPGT_EEPROM_TYPE_HWRX:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM hwrx len=%d\n", option_len);
-
- upgt_eeprom_parse_hwrx(sc, eeprom_option->data);
- break;
- case UPGT_EEPROM_TYPE_CHIP:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM chip len=%d\n", option_len);
- break;
- case UPGT_EEPROM_TYPE_FREQ3:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM freq3 len=%d\n", option_len);
-
- upgt_eeprom_parse_freq3(sc, eeprom_option->data,
- option_len);
- break;
- case UPGT_EEPROM_TYPE_FREQ4:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM freq4 len=%d\n", option_len);
-
- upgt_eeprom_parse_freq4(sc, eeprom_option->data,
- option_len);
- break;
- case UPGT_EEPROM_TYPE_FREQ5:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM freq5 len=%d\n", option_len);
- break;
- case UPGT_EEPROM_TYPE_FREQ6:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM freq6 len=%d\n", option_len);
-
- upgt_eeprom_parse_freq6(sc, eeprom_option->data,
- option_len);
- break;
- case UPGT_EEPROM_TYPE_END:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM end len=%d\n", option_len);
- option_end = 1;
- break;
- case UPGT_EEPROM_TYPE_OFF:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "%s: EEPROM off without end option!\n", __func__);
- return (EIO);
- default:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "EEPROM unknown type 0x%04x len=%d\n",
- option_type, option_len);
- break;
- }
-
- /* jump to next EEPROM option */
- eeprom_option = (struct upgt_eeprom_option *)
- (eeprom_option->data + option_len);
- }
-
- return (0);
-}
-
-static void
-upgt_eeprom_parse_freq3(struct upgt_softc *sc, uint8_t *data, int len)
-{
- struct upgt_eeprom_freq3_header *freq3_header;
- struct upgt_lmac_freq3 *freq3;
- int i, elements, flags;
- unsigned channel;
-
- freq3_header = (struct upgt_eeprom_freq3_header *)data;
- freq3 = (struct upgt_lmac_freq3 *)(freq3_header + 1);
-
- flags = freq3_header->flags;
- elements = freq3_header->elements;
-
- DPRINTF(sc, UPGT_DEBUG_FW, "flags=0x%02x elements=%d\n",
- flags, elements);
-
- for (i = 0; i < elements; i++) {
- channel = ieee80211_mhz2ieee(le16toh(freq3[i].freq), 0);
- if (!(channel >= 0 && channel < IEEE80211_CHAN_MAX))
- continue;
-
- sc->sc_eeprom_freq3[channel] = freq3[i];
-
- DPRINTF(sc, UPGT_DEBUG_FW, "frequence=%d, channel=%d\n",
- le16toh(sc->sc_eeprom_freq3[channel].freq), channel);
- }
-}
-
-void
-upgt_eeprom_parse_freq4(struct upgt_softc *sc, uint8_t *data, int len)
-{
- struct upgt_eeprom_freq4_header *freq4_header;
- struct upgt_eeprom_freq4_1 *freq4_1;
- struct upgt_eeprom_freq4_2 *freq4_2;
- int i, j, elements, settings, flags;
- unsigned channel;
-
- freq4_header = (struct upgt_eeprom_freq4_header *)data;
- freq4_1 = (struct upgt_eeprom_freq4_1 *)(freq4_header + 1);
- flags = freq4_header->flags;
- elements = freq4_header->elements;
- settings = freq4_header->settings;
-
- /* we need this value later */
- sc->sc_eeprom_freq6_settings = freq4_header->settings;
-
- DPRINTF(sc, UPGT_DEBUG_FW, "flags=0x%02x elements=%d settings=%d\n",
- flags, elements, settings);
-
- for (i = 0; i < elements; i++) {
- channel = ieee80211_mhz2ieee(le16toh(freq4_1[i].freq), 0);
- if (!(channel >= 0 && channel < IEEE80211_CHAN_MAX))
- continue;
-
- freq4_2 = (struct upgt_eeprom_freq4_2 *)freq4_1[i].data;
- for (j = 0; j < settings; j++) {
- sc->sc_eeprom_freq4[channel][j].cmd = freq4_2[j];
- sc->sc_eeprom_freq4[channel][j].pad = 0;
- }
-
- DPRINTF(sc, UPGT_DEBUG_FW, "frequence=%d, channel=%d\n",
- le16toh(freq4_1[i].freq), channel);
- }
-}
-
-void
-upgt_eeprom_parse_freq6(struct upgt_softc *sc, uint8_t *data, int len)
-{
- struct upgt_lmac_freq6 *freq6;
- int i, elements;
- unsigned channel;
-
- freq6 = (struct upgt_lmac_freq6 *)data;
- elements = len / sizeof(struct upgt_lmac_freq6);
-
- DPRINTF(sc, UPGT_DEBUG_FW, "elements=%d\n", elements);
-
- for (i = 0; i < elements; i++) {
- channel = ieee80211_mhz2ieee(le16toh(freq6[i].freq), 0);
- if (!(channel >= 0 && channel < IEEE80211_CHAN_MAX))
- continue;
-
- sc->sc_eeprom_freq6[channel] = freq6[i];
-
- DPRINTF(sc, UPGT_DEBUG_FW, "frequence=%d, channel=%d\n",
- le16toh(sc->sc_eeprom_freq6[channel].freq), channel);
- }
-}
-
-static void
-upgt_eeprom_parse_hwrx(struct upgt_softc *sc, uint8_t *data)
-{
- struct upgt_eeprom_option_hwrx *option_hwrx;
-
- option_hwrx = (struct upgt_eeprom_option_hwrx *)data;
-
- sc->sc_eeprom_hwrx = option_hwrx->rxfilter - UPGT_EEPROM_RX_CONST;
-
- DPRINTF(sc, UPGT_DEBUG_FW, "hwrx option value=0x%04x\n",
- sc->sc_eeprom_hwrx);
-}
-
-static int
-upgt_eeprom_read(struct upgt_softc *sc)
-{
- struct upgt_data *data_cmd = &sc->cmd_data;
- struct upgt_lmac_mem *mem;
- struct upgt_lmac_eeprom *eeprom;
- int offset, block, len;
-
- offset = 0;
- block = UPGT_EEPROM_BLOCK_SIZE;
- while (offset < UPGT_EEPROM_SIZE) {
- DPRINTF(sc, UPGT_DEBUG_FW,
- "request EEPROM block (offset=%d, len=%d)\n", offset, block);
-
- /*
- * Transmit the URB containing the CMD data.
- */
- bzero(data_cmd->buf, MCLBYTES);
-
- mem = (struct upgt_lmac_mem *)data_cmd->buf;
- mem->addr = htole32(sc->sc_memaddr_frame_start +
- UPGT_MEMSIZE_FRAME_HEAD);
-
- eeprom = (struct upgt_lmac_eeprom *)(mem + 1);
- eeprom->header1.flags = 0;
- eeprom->header1.type = UPGT_H1_TYPE_CTRL;
- eeprom->header1.len = htole16((
- sizeof(struct upgt_lmac_eeprom) -
- sizeof(struct upgt_lmac_header)) + block);
-
- eeprom->header2.reqid = htole32(sc->sc_memaddr_frame_start);
- eeprom->header2.type = htole16(UPGT_H2_TYPE_EEPROM);
- eeprom->header2.flags = 0;
-
- eeprom->offset = htole16(offset);
- eeprom->len = htole16(block);
-
- len = sizeof(*mem) + sizeof(*eeprom) + block;
-
- mem->chksum = upgt_chksum_le((uint32_t *)eeprom,
- len - sizeof(*mem));
-
- if (upgt_bulk_xmit(sc, data_cmd, sc->sc_tx_pipeh, &len,
- USBD_FORCE_SHORT_XFER) != 0) {
- device_printf(sc->sc_dev,
- "could not transmit EEPROM data URB!\n");
- return (EIO);
- }
- if (tsleep(sc, 0, "eeprom_request", UPGT_USB_TIMEOUT)) {
- device_printf(sc->sc_dev,
- "timeout while waiting for EEPROM data!\n");
- return (EIO);
- }
-
- offset += block;
- if (UPGT_EEPROM_SIZE - offset < block)
- block = UPGT_EEPROM_SIZE - offset;
- }
-
- return (0);
-}
-
-/*
- * The firmware awaits a checksum for each frame we send to it.
- * The algorithm used therefor is uncommon but somehow similar to CRC32.
- */
-static uint32_t
-upgt_chksum_le(const uint32_t *buf, size_t size)
-{
- int i;
- uint32_t crc = 0;
-
- for (i = 0; i < size; i += sizeof(uint32_t)) {
- crc = htole32(crc ^ *buf++);
- crc = htole32((crc >> 5) ^ (crc << 3));
- }
-
- return (crc);
-}
-
-static void
-upgt_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
-{
- struct upgt_data *data_rx = priv;
- struct upgt_softc *sc = data_rx->sc;
- int len;
- struct upgt_lmac_header *header;
- struct upgt_lmac_eeprom *eeprom;
- uint8_t h1_type;
- uint16_t h2_type;
-
- if (status != USBD_NORMAL_COMPLETION) {
- if (status == USBD_NOT_STARTED || status == USBD_CANCELLED)
- return;
- if (status == USBD_STALLED)
- usbd_clear_endpoint_stall_async(sc->sc_rx_pipeh);
- goto skip;
- }
- usbd_get_xfer_status(xfer, NULL, NULL, &len, NULL);
-
- /*
- * Check what type of frame came in.
- */
- header = (struct upgt_lmac_header *)(data_rx->buf + 4);
-
- h1_type = header->header1.type;
- h2_type = le16toh(header->header2.type);
-
- if (h1_type == UPGT_H1_TYPE_CTRL && h2_type == UPGT_H2_TYPE_EEPROM) {
- eeprom = (struct upgt_lmac_eeprom *)(data_rx->buf + 4);
- uint16_t eeprom_offset = le16toh(eeprom->offset);
- uint16_t eeprom_len = le16toh(eeprom->len);
-
- DPRINTF(sc, UPGT_DEBUG_FW,
- "received EEPROM block (offset=%d, len=%d)\n",
- eeprom_offset, eeprom_len);
-
- bcopy(data_rx->buf + sizeof(struct upgt_lmac_eeprom) + 4,
- sc->sc_eeprom + eeprom_offset, eeprom_len);
-
- /* EEPROM data has arrived in time, wakeup tsleep() */
- wakeup(sc);
- } else if (h1_type == UPGT_H1_TYPE_CTRL &&
- h2_type == UPGT_H2_TYPE_TX_DONE) {
- DPRINTF(sc, UPGT_DEBUG_XMIT, "%s: received 802.11 TX done\n",
- __func__);
- upgt_tx_done(sc, data_rx->buf + 4);
- } else if (h1_type == UPGT_H1_TYPE_RX_DATA ||
- h1_type == UPGT_H1_TYPE_RX_DATA_MGMT) {
- DPRINTF(sc, UPGT_DEBUG_RECV, "%s: received 802.11 RX data\n",
- __func__);
- upgt_rx(sc, data_rx->buf + 4, le16toh(header->header1.len));
- } else if (h1_type == UPGT_H1_TYPE_CTRL &&
- h2_type == UPGT_H2_TYPE_STATS) {
- DPRINTF(sc, UPGT_DEBUG_STAT, "%s: received statistic data\n",
- __func__);
- /* TODO: what could we do with the statistic data? */
- } else {
- /* ignore unknown frame types */
- DPRINTF(sc, UPGT_DEBUG_INTR,
- "received unknown frame type 0x%02x\n",
- header->header1.type);
- }
-
-skip: /* setup new transfer */
- usbd_setup_xfer(xfer, sc->sc_rx_pipeh, data_rx, data_rx->buf, MCLBYTES,
- USBD_SHORT_XFER_OK, USBD_NO_TIMEOUT, upgt_rxeof);
- (void)usbd_transfer(xfer);
-}
-
-static void
-upgt_rx(struct upgt_softc *sc, uint8_t *data, int pkglen)
-{
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
- struct upgt_lmac_rx_desc *rxdesc;
- struct ieee80211_node *ni;
- struct mbuf *m;
- int nf;
-
- /*
- * don't pass packets to the ieee80211 framework if the driver isn't
- * RUNNING.
- */
- if (!(ifp->if_drv_flags & IFF_DRV_RUNNING))
- return;
-
- /* access RX packet descriptor */
- rxdesc = (struct upgt_lmac_rx_desc *)data;
-
- /* create mbuf which is suitable for strict alignment archs */
- KASSERT((pkglen + ETHER_ALIGN) < MCLBYTES,
- ("A current mbuf storage is small (%d)", pkglen + ETHER_ALIGN));
- m = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
- if (m == NULL) {
- device_printf(sc->sc_dev, "could not create RX mbuf!\n");
- return;
- }
- m_adj(m, ETHER_ALIGN);
- bcopy(rxdesc->data, mtod(m, char *), pkglen);
- /* trim FCS */
- m->m_len = m->m_pkthdr.len = pkglen - IEEE80211_CRC_LEN;
- m->m_pkthdr.rcvif = ifp;
-
- if (bpf_peers_present(ifp->if_bpf)) {
- struct upgt_rx_radiotap_header *tap = &sc->sc_rxtap;
-
- tap->wr_flags = 0;
- tap->wr_rate = upgt_rx_rate(sc, rxdesc->rate);
- tap->wr_chan_freq = htole16(ic->ic_curchan->ic_freq);
- tap->wr_chan_flags = htole16(ic->ic_curchan->ic_flags);
- tap->wr_antsignal = rxdesc->rssi;
-
- bpf_mtap2(ifp->if_bpf, tap, sc->sc_rxtap_len, m);
- }
- ifp->if_ipackets++;
-
- nf = -95; /* XXX */
- ni = ieee80211_find_rxnode(ic, mtod(m, struct ieee80211_frame_min *));
- if (ni != NULL) {
- (void)ieee80211_input(ni, m, rxdesc->rssi, nf, 0);
- ieee80211_free_node(ni);
- } else
- (void)ieee80211_input_all(ic, m, rxdesc->rssi, nf, 0);
-
- DPRINTF(sc, UPGT_DEBUG_RX_PROC, "%s: RX done\n", __func__);
-}
-
-static uint8_t
-upgt_rx_rate(struct upgt_softc *sc, const int rate)
-{
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
- static const uint8_t cck_upgt2rate[4] = { 2, 4, 11, 22 };
- static const uint8_t ofdm_upgt2rate[12] =
- { 2, 4, 11, 22, 12, 18, 24, 36, 48, 72, 96, 108 };
-
- if (ic->ic_curmode == IEEE80211_MODE_11B &&
- !(rate < 0 || rate > 3))
- return cck_upgt2rate[rate & 0xf];
-
- if (ic->ic_curmode == IEEE80211_MODE_11G &&
- !(rate < 0 || rate > 11))
- return ofdm_upgt2rate[rate & 0xf];
-
- return (0);
-}
-
-static void
-upgt_tx_done(struct upgt_softc *sc, uint8_t *data)
-{
- struct ifnet *ifp = sc->sc_ifp;
- struct upgt_lmac_tx_done_desc *desc;
- int i;
-
- desc = (struct upgt_lmac_tx_done_desc *)data;
-
- UPGT_LOCK(sc);
- for (i = 0; i < upgt_txbuf; i++) {
- struct upgt_data *data_tx = &sc->tx_data[i];
-
- if (data_tx->addr == le32toh(desc->header2.reqid)) {
- upgt_mem_free(sc, data_tx->addr);
- ieee80211_free_node(data_tx->ni);
- data_tx->ni = NULL;
- data_tx->addr = 0;
- data_tx->m = NULL;
- data_tx->use = 0;
-
- sc->tx_queued--;
- ifp->if_opackets++;
-
- DPRINTF(sc, UPGT_DEBUG_TX_PROC,
- "TX done: memaddr=0x%08x, status=0x%04x, rssi=%d, ",
- le32toh(desc->header2.reqid),
- le16toh(desc->status), le16toh(desc->rssi));
- DPRINTF(sc, UPGT_DEBUG_TX_PROC, "seq=%d\n",
- le16toh(desc->seq));
- break;
- }
- }
- if (sc->tx_queued == 0) {
- /* TX queued was processed, continue */
- sc->sc_tx_timer = 0;
- ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
- UPGT_UNLOCK(sc);
- upgt_start(ifp);
- return;
- }
- UPGT_UNLOCK(sc);
-}
-
-static void
-upgt_mem_free(struct upgt_softc *sc, uint32_t addr)
-{
- int i;
-
- for (i = 0; i < sc->sc_memory.pages; i++) {
- if (sc->sc_memory.page[i].addr == addr) {
- sc->sc_memory.page[i].used = 0;
- return;
- }
- }
-
- device_printf(sc->sc_dev,
- "could not free memory address 0x%08x!\n", addr);
-}
-
-static int
-upgt_fw_load(struct upgt_softc *sc)
-{
- const struct firmware *fw;
- struct upgt_data *data_cmd = &sc->cmd_data;
- struct upgt_data *data_rx = &sc->rx_data;
- struct upgt_fw_x2_header *x2;
- char start_fwload_cmd[] = { 0x3c, 0x0d };
- int error = 0, offset, bsize, n, i, len;
- uint32_t crc32;
-
- fw = firmware_get(upgt_fwname);
- if (fw == NULL) {
- device_printf(sc->sc_dev, "could not read microcode %s!\n",
- upgt_fwname);
- return EIO;
- }
-
- /* send firmware start load command */
- len = sizeof(start_fwload_cmd);
- bcopy(start_fwload_cmd, data_cmd->buf, len);
- if (upgt_bulk_xmit(sc, data_cmd, sc->sc_tx_pipeh, &len, 0) != 0) {
- device_printf(sc->sc_dev,
- "could not send start_firmware_load command!\n");
- error = EIO;
- goto fail;
- }
-
- /* send X2 header */
- len = sizeof(struct upgt_fw_x2_header);
- x2 = (struct upgt_fw_x2_header *)data_cmd->buf;
- bcopy(UPGT_X2_SIGNATURE, x2->signature, UPGT_X2_SIGNATURE_SIZE);
- x2->startaddr = htole32(UPGT_MEMADDR_FIRMWARE_START);
- x2->len = htole32(fw->datasize);
- x2->crc = upgt_crc32_le((uint8_t *)data_cmd->buf +
- UPGT_X2_SIGNATURE_SIZE,
- sizeof(struct upgt_fw_x2_header) - UPGT_X2_SIGNATURE_SIZE -
- sizeof(uint32_t));
- if (upgt_bulk_xmit(sc, data_cmd, sc->sc_tx_pipeh, &len, 0) != 0) {
- device_printf(sc->sc_dev,
- "could not send firmware X2 header!\n");
- error = EIO;
- goto fail;
- }
-
- /* download firmware */
- for (offset = 0; offset < fw->datasize; offset += bsize) {
- if (fw->datasize - offset > UPGT_FW_BLOCK_SIZE)
- bsize = UPGT_FW_BLOCK_SIZE;
- else
- bsize = fw->datasize - offset;
-
- n = upgt_fw_copy((const uint8_t *)fw->data + offset,
- data_cmd->buf, bsize);
-
- DPRINTF(sc, UPGT_DEBUG_FW, "FW offset=%d, read=%d, sent=%d\n",
- offset, n, bsize);
-
- if (upgt_bulk_xmit(sc, data_cmd, sc->sc_tx_pipeh, &bsize, 0)
- != 0) {
- device_printf(sc->sc_dev,
- "error while downloading firmware block!\n");
- error = EIO;
- goto fail;
- }
-
- bsize = n;
- }
- DPRINTF(sc, UPGT_DEBUG_FW, "%s: firmware downloaded\n", __func__);
-
- /* load firmware */
- crc32 = upgt_crc32_le(fw->data, fw->datasize);
- *((uint32_t *)(data_cmd->buf) ) = crc32;
- *((uint8_t *)(data_cmd->buf) + 4) = 'g';
- *((uint8_t *)(data_cmd->buf) + 5) = '\r';
- len = 6;
- if (upgt_bulk_xmit(sc, data_cmd, sc->sc_tx_pipeh, &len, 0) != 0) {
- device_printf(sc->sc_dev,
- "could not send load_firmware command!\n");
- error = EIO;
- goto fail;
- }
-
- for (i = 0; i < UPGT_FIRMWARE_TIMEOUT; i++) {
- len = UPGT_FW_BLOCK_SIZE;
- bzero(data_rx->buf, MCLBYTES);
- if (upgt_bulk_xmit(sc, data_rx, sc->sc_rx_pipeh, &len,
- USBD_SHORT_XFER_OK) != 0) {
- device_printf(sc->sc_dev,
- "could not read firmware response!\n");
- error = EIO;
- goto fail;
- }
-
- if (memcmp(data_rx->buf, "OK", 2) == 0)
- break; /* firmware load was successful */
- }
- if (i == UPGT_FIRMWARE_TIMEOUT) {
- device_printf(sc->sc_dev, "firmware load failed!\n");
- error = EIO;
- }
-
- DPRINTF(sc, UPGT_DEBUG_FW, "%s: firmware loaded\n", __func__);
-fail:
- firmware_put(fw, FIRMWARE_UNLOAD);
- return (error);
-}
-
-static uint32_t
-upgt_crc32_le(const void *buf, size_t size)
-{
- uint32_t crc;
-
- crc = ether_crc32_le(buf, size);
-
- /* apply final XOR value as common for CRC-32 */
- crc = htole32(crc ^ 0xffffffffU);
-
- return (crc);
-}
-
-/*
- * While copying the version 2 firmware, we need to replace two characters:
- *
- * 0x7e -> 0x7d 0x5e
- * 0x7d -> 0x7d 0x5d
- */
-static int
-upgt_fw_copy(const uint8_t *src, char *dst, int size)
-{
- int i, j;
-
- for (i = 0, j = 0; i < size && j < size; i++) {
- switch (src[i]) {
- case 0x7e:
- dst[j] = 0x7d;
- j++;
- dst[j] = 0x5e;
- j++;
- break;
- case 0x7d:
- dst[j] = 0x7d;
- j++;
- dst[j] = 0x5d;
- j++;
- break;
- default:
- dst[j] = src[i];
- j++;
- break;
- }
- }
-
- return (i);
-}
-
-static int
-upgt_mem_init(struct upgt_softc *sc)
-{
- int i;
-
- for (i = 0; i < UPGT_MEMORY_MAX_PAGES; i++) {
- sc->sc_memory.page[i].used = 0;
-
- if (i == 0) {
- /*
- * The first memory page is always reserved for
- * command data.
- */
- sc->sc_memory.page[i].addr =
- sc->sc_memaddr_frame_start + MCLBYTES;
- } else {
- sc->sc_memory.page[i].addr =
- sc->sc_memory.page[i - 1].addr + MCLBYTES;
- }
-
- if (sc->sc_memory.page[i].addr + MCLBYTES >=
- sc->sc_memaddr_frame_end)
- break;
-
- DPRINTF(sc, UPGT_DEBUG_FW, "memory address page %d=0x%08x\n",
- i, sc->sc_memory.page[i].addr);
- }
-
- sc->sc_memory.pages = i;
- if (upgt_txbuf > sc->sc_memory.pages)
-
- DPRINTF(sc, UPGT_DEBUG_FW, "memory pages=%d\n", sc->sc_memory.pages);
- return (0);
-}
-
-static int
-upgt_fw_verify(struct upgt_softc *sc)
-{
- const struct firmware *fw;
- const struct upgt_fw_bra_option *bra_opt;
- const struct upgt_fw_bra_descr *descr;
- const uint8_t *p;
- const uint32_t *uc;
- uint32_t bra_option_type, bra_option_len;
- int offset, bra_end = 0, error = 0;
-
- fw = firmware_get(upgt_fwname);
- if (fw == NULL) {
- device_printf(sc->sc_dev, "could not read microcode %s!\n",
- upgt_fwname);
- return EIO;
- }
-
- /*
- * Seek to beginning of Boot Record Area (BRA).
- */
- for (offset = 0; offset < fw->datasize; offset += sizeof(*uc)) {
- uc = (const uint32_t *)((const uint8_t *)fw->data + offset);
- if (*uc == 0)
- break;
- }
- for (; offset < fw->datasize; offset += sizeof(*uc)) {
- uc = (const uint32_t *)((const uint8_t *)fw->data + offset);
- if (*uc != 0)
- break;
- }
- if (offset == fw->datasize) {
- device_printf(sc->sc_dev,
- "firmware Boot Record Area not found!\n");
- error = EIO;
- goto fail;
- }
-
- DPRINTF(sc, UPGT_DEBUG_FW,
- "firmware Boot Record Area found at offset %d\n", offset);
-
- /*
- * Parse Boot Record Area (BRA) options.
- */
- while (offset < fw->datasize && bra_end == 0) {
- /* get current BRA option */
- p = (const uint8_t *)fw->data + offset;
- bra_opt = (const struct upgt_fw_bra_option *)p;
- bra_option_type = le32toh(bra_opt->type);
- bra_option_len = le32toh(bra_opt->len) * sizeof(*uc);
-
- switch (bra_option_type) {
- case UPGT_BRA_TYPE_FW:
- DPRINTF(sc, UPGT_DEBUG_FW, "UPGT_BRA_TYPE_FW len=%d\n",
- bra_option_len);
-
- if (bra_option_len != UPGT_BRA_FWTYPE_SIZE) {
- device_printf(sc->sc_dev,
- "wrong UPGT_BRA_TYPE_FW len!\n");
- error = EIO;
- goto fail;
- }
- if (memcmp(UPGT_BRA_FWTYPE_LM86, bra_opt->data,
- bra_option_len) == 0) {
- sc->sc_fw_type = UPGT_FWTYPE_LM86;
- break;
- }
- if (memcmp(UPGT_BRA_FWTYPE_LM87, bra_opt->data,
- bra_option_len) == 0) {
- sc->sc_fw_type = UPGT_FWTYPE_LM87;
- break;
- }
- device_printf(sc->sc_dev,
- "unsupported firmware type!\n");
- error = EIO;
- goto fail;
- case UPGT_BRA_TYPE_VERSION:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "UPGT_BRA_TYPE_VERSION len=%d\n", bra_option_len);
- break;
- case UPGT_BRA_TYPE_DEPIF:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "UPGT_BRA_TYPE_DEPIF len=%d\n", bra_option_len);
- break;
- case UPGT_BRA_TYPE_EXPIF:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "UPGT_BRA_TYPE_EXPIF len=%d\n", bra_option_len);
- break;
- case UPGT_BRA_TYPE_DESCR:
- DPRINTF(sc, UPGT_DEBUG_FW,
- "UPGT_BRA_TYPE_DESCR len=%d\n", bra_option_len);
-
- descr = (const struct upgt_fw_bra_descr *)bra_opt->data;
-
- sc->sc_memaddr_frame_start =
- le32toh(descr->memaddr_space_start);
- sc->sc_memaddr_frame_end =
- le32toh(descr->memaddr_space_end);
-
- DPRINTF(sc, UPGT_DEBUG_FW,
- "memory address space start=0x%08x\n",
- sc->sc_memaddr_frame_start);
- DPRINTF(sc, UPGT_DEBUG_FW,
- "memory address space end=0x%08x\n",
- sc->sc_memaddr_frame_end);
- break;
- case UPGT_BRA_TYPE_END:
- DPRINTF(sc, UPGT_DEBUG_FW, "UPGT_BRA_TYPE_END len=%d\n",
- bra_option_len);
- bra_end = 1;
- break;
- default:
- DPRINTF(sc, UPGT_DEBUG_FW, "unknown BRA option len=%d\n",
- bra_option_len);
- error = EIO;
- goto fail;
- }
-
- /* jump to next BRA option */
- offset += sizeof(struct upgt_fw_bra_option) + bra_option_len;
- }
-
- DPRINTF(sc, UPGT_DEBUG_FW, "%s: firmware verified", __func__);
-fail:
- firmware_put(fw, FIRMWARE_UNLOAD);
- return (error);
-}
-
-static int
-upgt_bulk_xmit(struct upgt_softc *sc, struct upgt_data *data,
- usbd_pipe_handle pipeh, uint32_t *size, int flags)
-{
- usbd_status status;
-
- mtx_lock(&Giant);
- status = usbd_bulk_transfer(data->xfer, pipeh,
- USBD_NO_COPY | flags, UPGT_USB_TIMEOUT, data->buf, size,
- "upgt_bulk_xmit");
- if (status != USBD_NORMAL_COMPLETION) {
- device_printf(sc->sc_dev, "%s: error %s!\n",
- __func__, usbd_errstr(status));
- mtx_unlock(&Giant);
- return (EIO);
- }
- mtx_unlock(&Giant);
-
- return (0);
-}
-
-static int
-upgt_device_reset(struct upgt_softc *sc)
-{
- struct upgt_data *data_cmd = &sc->cmd_data;
- char init_cmd[] = { 0x7e, 0x7e, 0x7e, 0x7e };
- int len;
-
- len = sizeof(init_cmd);
- bcopy(init_cmd, data_cmd->buf, len);
- if (upgt_bulk_xmit(sc, data_cmd, sc->sc_tx_pipeh, &len, 0) != 0) {
- device_printf(sc->sc_dev,
- "could not send device init string!\n");
- return (EIO);
- }
- usbd_delay_ms(sc->sc_udev, 100);
-
- DPRINTF(sc, UPGT_DEBUG_FW, "%s: device initialized\n", __func__);
- return (0);
-}
-
-static int
-upgt_alloc_tx(struct upgt_softc *sc)
-{
- int i;
-
- sc->tx_queued = 0;
-
- for (i = 0; i < upgt_txbuf; i++) {
- struct upgt_data *data_tx = &sc->tx_data[i];
-
- data_tx->sc = sc;
- data_tx->xfer = usbd_alloc_xfer(sc->sc_udev);
- if (data_tx->xfer == NULL) {
- device_printf(sc->sc_dev,
- "could not allocate TX xfer!\n");
- return (ENOMEM);
- }
-
- data_tx->buf = usbd_alloc_buffer(data_tx->xfer, MCLBYTES);
- if (data_tx->buf == NULL) {
- device_printf(sc->sc_dev,
- "could not allocate TX buffer!\n");
- return (ENOMEM);
- }
-
- bzero(data_tx->buf, MCLBYTES);
- }
-
- return (0);
-}
-
-static int
-upgt_alloc_rx(struct upgt_softc *sc)
-{
- struct upgt_data *data_rx = &sc->rx_data;
-
- data_rx->sc = sc;
- data_rx->xfer = usbd_alloc_xfer(sc->sc_udev);
- if (data_rx->xfer == NULL) {
- device_printf(sc->sc_dev, "could not allocate RX xfer!\n");
- return (ENOMEM);
- }
-
- data_rx->buf = usbd_alloc_buffer(data_rx->xfer, MCLBYTES);
- if (data_rx->buf == NULL) {
- device_printf(sc->sc_dev, "could not allocate RX buffer!\n");
- return (ENOMEM);
- }
-
- bzero(data_rx->buf, MCLBYTES);
-
- return (0);
-}
-
-static int
-upgt_alloc_cmd(struct upgt_softc *sc)
-{
- struct upgt_data *data_cmd = &sc->cmd_data;
-
- data_cmd->sc = sc;
- data_cmd->xfer = usbd_alloc_xfer(sc->sc_udev);
- if (data_cmd->xfer == NULL) {
- device_printf(sc->sc_dev, "could not allocate RX xfer!\n");
- return (ENOMEM);
- }
-
- data_cmd->buf = usbd_alloc_buffer(data_cmd->xfer, MCLBYTES);
- if (data_cmd->buf == NULL) {
- device_printf(sc->sc_dev, "could not allocate RX buffer!\n");
- return (ENOMEM);
- }
-
- bzero(data_cmd->buf, MCLBYTES);
-
- return (0);
-}
-
-static int
-upgt_detach(device_t dev)
-{
- struct upgt_softc *sc = device_get_softc(dev);
- struct ifnet *ifp = sc->sc_ifp;
- struct ieee80211com *ic = ifp->if_l2com;
-
- if (!device_is_attached(dev))
- return 0;
-
- upgt_stop(sc, 1);
-
- /* abort and close TX / RX pipes */
- if (sc->sc_tx_pipeh != NULL)
- usbd_close_pipe(sc->sc_tx_pipeh);
- if (sc->sc_rx_pipeh != NULL)
- usbd_close_pipe(sc->sc_rx_pipeh);
-
- mtx_destroy(&sc->sc_mtx);
- usb_rem_task(sc->sc_udev, &sc->sc_mcasttask);
- usb_rem_task(sc->sc_udev, &sc->sc_scantask);
- usb_rem_task(sc->sc_udev, &sc->sc_task);
- usb_rem_task(sc->sc_udev, &sc->sc_task_tx);
- callout_stop(&sc->sc_led_ch);
- callout_stop(&sc->sc_watchdog_ch);
-
- /* free xfers */
- upgt_free_tx(sc);
- upgt_free_rx(sc);
- upgt_free_cmd(sc);
-
- bpfdetach(ifp);
- ieee80211_ifdetach(ic);
- if_free(ifp);
-
- usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev, sc->sc_dev);
-
- return 0;
-}
-
-static void
-upgt_free_rx(struct upgt_softc *sc)
-{
- struct upgt_data *data_rx = &sc->rx_data;
-
- if (data_rx->xfer != NULL) {
- usbd_free_xfer(data_rx->xfer);
- data_rx->xfer = NULL;
- }
-
- data_rx->ni = NULL;
-}
-
-static void
-upgt_free_tx(struct upgt_softc *sc)
-{
- int i;
-
- for (i = 0; i < upgt_txbuf; i++) {
- struct upgt_data *data_tx = &sc->tx_data[i];
-
- if (data_tx->xfer != NULL) {
- usbd_free_xfer(data_tx->xfer);
- data_tx->xfer = NULL;
- }
-
- data_tx->ni = NULL;
- }
-}
-
-static void
-upgt_free_cmd(struct upgt_softc *sc)
-{
- struct upgt_data *data_cmd = &sc->cmd_data;
-
- if (data_cmd->xfer != NULL) {
- usbd_free_xfer(data_cmd->xfer);
- data_cmd->xfer = NULL;
- }
-}
-
-static device_method_t upgt_methods[] = {
- /* Device interface */
- DEVMETHOD(device_probe, upgt_match),
- DEVMETHOD(device_attach, upgt_attach),
- DEVMETHOD(device_detach, upgt_detach),
-
- { 0, 0 }
-};
-
-static driver_t upgt_driver = {
- "upgt",
- upgt_methods,
- sizeof(struct upgt_softc)
-};
-
-static devclass_t upgt_devclass;
-
-DRIVER_MODULE(if_upgt, uhub, upgt_driver, upgt_devclass, usbd_driver_load, 0);
-MODULE_VERSION(if_upgt, 1);
-MODULE_DEPEND(if_upgt, usb, 1, 1, 1);
-MODULE_DEPEND(if_upgt, wlan, 1, 1, 1);
-MODULE_DEPEND(if_upgt, upgtfw_fw, 1, 1, 1);
diff --git a/sys/legacy/dev/usb/if_upgtvar.h b/sys/legacy/dev/usb/if_upgtvar.h
deleted file mode 100644
index 298fb63..0000000
--- a/sys/legacy/dev/usb/if_upgtvar.h
+++ /dev/null
@@ -1,462 +0,0 @@
-/* $OpenBSD: if_upgtvar.h,v 1.14 2008/02/02 13:48:44 mglocker Exp $ */
-/* $FreeBSD$ */
-
-/*
- * Copyright (c) 2007 Marcus Glocker <mglocker@openbsd.org>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-struct upgt_softc;
-
-/*
- * General values.
- */
-#define UPGT_IFACE_INDEX 0
-#define UPGT_CONFIG_NO 1
-#define UPGT_USB_TIMEOUT 1000
-#define UPGT_FIRMWARE_TIMEOUT 10
-
-#define UPGT_MEMADDR_FIRMWARE_START 0x00020000 /* 512 bytes large */
-#define UPGT_MEMSIZE_FRAME_HEAD 0x0070
-#define UPGT_MEMSIZE_RX 0x3500
-
-#define UPGT_TX_COUNT 2
-
-/* device flags */
-#define UPGT_DEVICE_ATTACHED (1 << 0)
-
-/* leds */
-#define UPGT_LED_OFF 0
-#define UPGT_LED_ON 1
-#define UPGT_LED_BLINK 2
-
-/*
- * Firmware.
- */
-#define UPGT_FW_BLOCK_SIZE 512
-
-#define UPGT_BRA_FWTYPE_SIZE 4
-#define UPGT_BRA_FWTYPE_LM86 "LM86"
-#define UPGT_BRA_FWTYPE_LM87 "LM87"
-enum upgt_fw_type {
- UPGT_FWTYPE_LM86,
- UPGT_FWTYPE_LM87
-};
-
-#define UPGT_BRA_TYPE_FW 0x80000001
-#define UPGT_BRA_TYPE_VERSION 0x80000002
-#define UPGT_BRA_TYPE_DEPIF 0x80000003
-#define UPGT_BRA_TYPE_EXPIF 0x80000004
-#define UPGT_BRA_TYPE_DESCR 0x80000101
-#define UPGT_BRA_TYPE_END 0xff0000ff
-struct upgt_fw_bra_option {
- uint32_t type;
- uint32_t len;
- uint8_t data[];
-} __packed;
-
-struct upgt_fw_bra_descr {
- uint32_t unknown1;
- uint32_t memaddr_space_start;
- uint32_t memaddr_space_end;
- uint32_t unknown2;
- uint32_t unknown3;
- uint8_t rates[20];
-} __packed;
-
-#define UPGT_X2_SIGNATURE_SIZE 4
-#define UPGT_X2_SIGNATURE "x2 "
-struct upgt_fw_x2_header {
- uint8_t signature[4];
- uint32_t startaddr;
- uint32_t len;
- uint32_t crc;
-} __packed;
-
-/*
- * EEPROM.
- */
-#define UPGT_EEPROM_SIZE 8192
-#define UPGT_EEPROM_BLOCK_SIZE 1020
-
-struct upgt_eeprom_header {
- /* 14 bytes */
- uint32_t magic;
- uint16_t pad1;
- uint16_t preamble_len;
- uint32_t pad2;
- /* data */
-} __packed;
-
-#define UPGT_EEPROM_TYPE_END 0x0000
-#define UPGT_EEPROM_TYPE_NAME 0x0001
-#define UPGT_EEPROM_TYPE_SERIAL 0x0003
-#define UPGT_EEPROM_TYPE_MAC 0x0101
-#define UPGT_EEPROM_TYPE_HWRX 0x1001
-#define UPGT_EEPROM_TYPE_CHIP 0x1002
-#define UPGT_EEPROM_TYPE_FREQ3 0x1903
-#define UPGT_EEPROM_TYPE_FREQ4 0x1904
-#define UPGT_EEPROM_TYPE_FREQ5 0x1905
-#define UPGT_EEPROM_TYPE_FREQ6 0x1906
-#define UPGT_EEPROM_TYPE_OFF 0xffff
-struct upgt_eeprom_option {
- uint16_t len;
- uint16_t type;
- uint8_t data[];
- /* data */
-} __packed;
-
-#define UPGT_EEPROM_RX_CONST 0x88
-struct upgt_eeprom_option_hwrx {
- uint32_t pad1;
- uint8_t rxfilter;
- uint8_t pad2[15];
-} __packed;
-
-struct upgt_eeprom_freq3_header {
- uint8_t flags;
- uint8_t elements;
-} __packed;
-
-struct upgt_eeprom_freq4_header {
- uint8_t flags;
- uint8_t elements;
- uint8_t settings;
- uint8_t type;
-} __packed;
-
-struct upgt_eeprom_freq4_1 {
- uint16_t freq;
- uint8_t data[50];
-} __packed;
-
-struct upgt_eeprom_freq4_2 {
- uint16_t head;
- uint8_t subtails[4];
- uint8_t tail;
-} __packed;
-
-/*
- * LMAC protocol.
- */
-struct upgt_lmac_mem {
- uint32_t addr;
- uint32_t chksum;
-} __packed;
-
-#define UPGT_H1_FLAGS_TX_MGMT 0x00 /* for TX: mgmt frame */
-#define UPGT_H1_FLAGS_TX_NO_CALLBACK 0x01 /* for TX: no USB callback */
-#define UPGT_H1_FLAGS_TX_DATA 0x10 /* for TX: data frame */
-#define UPGT_H1_TYPE_RX_DATA 0x00 /* 802.11 RX data frame */
-#define UPGT_H1_TYPE_RX_DATA_MGMT 0x04 /* 802.11 RX mgmt frame */
-#define UPGT_H1_TYPE_TX_DATA 0x40 /* 802.11 TX data frame */
-#define UPGT_H1_TYPE_CTRL 0x80 /* control frame */
-struct upgt_lmac_h1 {
- /* 4 bytes */
- uint8_t flags;
- uint8_t type;
- uint16_t len;
-} __packed;
-
-#define UPGT_H2_TYPE_TX_ACK_NO 0x0000
-#define UPGT_H2_TYPE_TX_ACK_YES 0x0001
-#define UPGT_H2_TYPE_MACFILTER 0x0000
-#define UPGT_H2_TYPE_CHANNEL 0x0001
-#define UPGT_H2_TYPE_TX_DONE 0x0008
-#define UPGT_H2_TYPE_STATS 0x000a
-#define UPGT_H2_TYPE_EEPROM 0x000c
-#define UPGT_H2_TYPE_LED 0x000d
-#define UPGT_H2_FLAGS_TX_ACK_NO 0x0101
-#define UPGT_H2_FLAGS_TX_ACK_YES 0x0707
-struct upgt_lmac_h2 {
- /* 8 bytes */
- uint32_t reqid;
- uint16_t type;
- uint16_t flags;
-} __packed;
-
-struct upgt_lmac_header {
- /* 12 bytes */
- struct upgt_lmac_h1 header1;
- struct upgt_lmac_h2 header2;
-} __packed;
-
-struct upgt_lmac_eeprom {
- /* 16 bytes */
- struct upgt_lmac_h1 header1;
- struct upgt_lmac_h2 header2;
- uint16_t offset;
- uint16_t len;
- /* data */
-} __packed;
-
-#define UPGT_FILTER_TYPE_NONE 0x0000
-#define UPGT_FILTER_TYPE_STA 0x0001
-#define UPGT_FILTER_TYPE_IBSS 0x0002
-#define UPGT_FILTER_TYPE_HOSTAP 0x0004
-#define UPGT_FILTER_TYPE_MONITOR 0x0010
-#define UPGT_FILTER_TYPE_RESET 0x0020
-#define UPGT_FILTER_UNKNOWN1 0x0002
-#define UPGT_FILTER_UNKNOWN2 0x0ca8
-#define UPGT_FILTER_UNKNOWN3 0xffff
-#define UPGT_FILTER_MONITOR_UNKNOWN1 0x0000
-#define UPGT_FILTER_MONITOR_UNKNOWN2 0x0000
-#define UPGT_FILTER_MONITOR_UNKNOWN3 0x0000
-struct upgt_lmac_filter {
- struct upgt_lmac_h1 header1;
- struct upgt_lmac_h2 header2;
- /* 32 bytes */
- uint16_t type;
- uint8_t dst[IEEE80211_ADDR_LEN];
- uint8_t src[IEEE80211_ADDR_LEN];
- uint16_t unknown1;
- uint32_t rxaddr;
- uint16_t unknown2;
- uint32_t rxhw;
- uint16_t unknown3;
- uint32_t unknown4;
-} __packed;
-
-/* frequence 3 data */
-struct upgt_lmac_freq3 {
- uint16_t freq;
- uint8_t data[6];
-} __packed;
-
-/* frequence 4 data */
-struct upgt_lmac_freq4 {
- struct upgt_eeprom_freq4_2 cmd;
- uint8_t pad;
-};
-
-/* frequence 6 data */
-struct upgt_lmac_freq6 {
- uint16_t freq;
- uint8_t data[8];
-} __packed;
-
-#define UPGT_CHANNEL_UNKNOWN1 0x0001
-#define UPGT_CHANNEL_UNKNOWN2 0x0000
-#define UPGT_CHANNEL_UNKNOWN3 0x48
-struct upgt_lmac_channel {
- struct upgt_lmac_h1 header1;
- struct upgt_lmac_h2 header2;
- /* 112 bytes */
- uint16_t unknown1;
- uint16_t unknown2;
- uint8_t pad1[20];
- struct upgt_lmac_freq6 freq6;
- uint8_t settings;
- uint8_t unknown3;
- uint8_t freq3_1[4];
- struct upgt_lmac_freq4 freq4[8];
- uint8_t freq3_2[4];
- uint32_t pad2;
-} __packed;
-
-#define UPGT_LED_MODE_SET 0x0003
-#define UPGT_LED_ACTION_OFF 0x0002
-#define UPGT_LED_ACTION_ON 0x0003
-#define UPGT_LED_ACTION_TMP_DUR 100 /* ms */
-struct upgt_lmac_led {
- struct upgt_lmac_h1 header1;
- struct upgt_lmac_h2 header2;
- uint16_t mode;
- uint16_t action_fix;
- uint16_t action_tmp;
- uint16_t action_tmp_dur;
-} __packed;
-
-struct upgt_lmac_stats {
- struct upgt_lmac_h1 header1;
- struct upgt_lmac_h2 header2;
- uint8_t data[76];
-} __packed;
-
-struct upgt_lmac_rx_desc {
- struct upgt_lmac_h1 header1;
- /* 16 bytes */
- uint16_t freq;
- uint8_t unknown1;
- uint8_t rate;
- uint8_t rssi;
- uint8_t pad;
- uint16_t unknown2;
- uint32_t timestamp;
- uint32_t unknown3;
- uint8_t data[];
-} __packed;
-
-#define UPGT_TX_DESC_KEY_EXISTS 0x01
-struct upgt_lmac_tx_desc_wep {
- uint8_t key_exists;
- uint8_t key_len;
- uint8_t key_val[16];
-} __packed;
-
-#define UPGT_TX_DESC_TYPE_BEACON 0x00000000
-#define UPGT_TX_DESC_TYPE_PROBE 0x00000001
-#define UPGT_TX_DESC_TYPE_MGMT 0x00000002
-#define UPGT_TX_DESC_TYPE_DATA 0x00000004
-#define UPGT_TX_DESC_PAD3_SIZE 2
-struct upgt_lmac_tx_desc {
- struct upgt_lmac_h1 header1;
- struct upgt_lmac_h2 header2;
- uint8_t rates[8];
- uint16_t pad1;
- struct upgt_lmac_tx_desc_wep wep_key;
- uint32_t type;
- uint32_t pad2;
- uint32_t unknown1;
- uint32_t unknown2;
- uint8_t pad3[2];
- /* 802.11 frame data */
-} __packed;
-
-#define UPGT_TX_DONE_DESC_STATUS_OK 0x0001
-struct upgt_lmac_tx_done_desc {
- struct upgt_lmac_h1 header1;
- struct upgt_lmac_h2 header2;
- uint16_t status;
- uint16_t rssi;
- uint16_t seq;
- uint16_t unknown;
-} __packed;
-
-/*
- * USB xfers.
- */
-struct upgt_data {
- struct upgt_softc *sc;
- usbd_xfer_handle xfer;
- uint8_t *buf;
- struct ieee80211_node *ni;
- struct mbuf *m;
- uint32_t addr;
- uint8_t use;
-};
-
-/*
- * Prism memory.
- */
-struct upgt_memory_page {
- uint8_t used;
- uint32_t addr;
-} __packed;
-
-#define UPGT_MEMORY_MAX_PAGES 8
-struct upgt_memory {
- uint8_t pages;
- struct upgt_memory_page page[UPGT_MEMORY_MAX_PAGES];
-} __packed;
-
-/*
- * BPF
- */
-struct upgt_rx_radiotap_header {
- struct ieee80211_radiotap_header wr_ihdr;
- uint8_t wr_flags;
- uint8_t wr_rate;
- uint16_t wr_chan_freq;
- uint16_t wr_chan_flags;
- int8_t wr_antsignal;
-} __packed;
-
-#define UPGT_RX_RADIOTAP_PRESENT \
- ((1 << IEEE80211_RADIOTAP_FLAGS) | \
- (1 << IEEE80211_RADIOTAP_RATE) | \
- (1 << IEEE80211_RADIOTAP_CHANNEL) | \
- (1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL))
-
-struct upgt_tx_radiotap_header {
- struct ieee80211_radiotap_header wt_ihdr;
- uint8_t wt_flags;
- uint8_t wt_rate;
- uint16_t wt_chan_freq;
- uint16_t wt_chan_flags;
-} __packed;
-
-#define UPGT_TX_RADIOTAP_PRESENT \
- ((1 << IEEE80211_RADIOTAP_FLAGS) | \
- (1 << IEEE80211_RADIOTAP_RATE) | \
- (1 << IEEE80211_RADIOTAP_CHANNEL))
-
-struct upgt_vap {
- struct ieee80211vap vap;
- int (*newstate)(struct ieee80211vap *,
- enum ieee80211_state, int);
-};
-#define UPGT_VAP(vap) ((struct upgt_vap *)(vap))
-
-struct upgt_softc {
- device_t sc_dev;
- struct ifnet *sc_ifp;
- usbd_device_handle sc_udev;
- usbd_interface_handle sc_iface;
- struct mtx sc_mtx;
- int sc_if_flags;
- int sc_debug;
-
- struct usb_task sc_mcasttask;
- struct usb_task sc_task;
- struct usb_task sc_scantask;
-#define UPGT_SET_CHANNEL 2
- int sc_scan_action;
- enum ieee80211_state sc_state;
- int sc_arg;
- int sc_led_blink;
- struct callout sc_led_ch;
- uint8_t sc_cur_rateset[8];
-
- /* watchdog */
- int sc_tx_timer;
- struct callout sc_watchdog_ch;
-
- /* Firmware. */
- int sc_fw_type;
- /* memory addresses on device */
- uint32_t sc_memaddr_frame_start;
- uint32_t sc_memaddr_frame_end;
- uint32_t sc_memaddr_rx_start;
- struct upgt_memory sc_memory;
-
- /* data which we found in the EEPROM */
- uint8_t sc_eeprom[UPGT_EEPROM_SIZE];
- uint16_t sc_eeprom_hwrx;
- struct upgt_lmac_freq3 sc_eeprom_freq3[IEEE80211_CHAN_MAX];
- struct upgt_lmac_freq4 sc_eeprom_freq4[IEEE80211_CHAN_MAX][8];
- struct upgt_lmac_freq6 sc_eeprom_freq6[IEEE80211_CHAN_MAX];
- uint8_t sc_eeprom_freq6_settings;
-
- /* RX/TX */
- int sc_rx_no;
- int sc_tx_no;
- usbd_pipe_handle sc_rx_pipeh;
- usbd_pipe_handle sc_tx_pipeh;
- struct upgt_data tx_data[UPGT_TX_COUNT];
- struct upgt_data rx_data;
- struct upgt_data cmd_data;
- int tx_queued;
- struct usb_task sc_task_tx;
-
- /* BPF */
- struct upgt_rx_radiotap_header sc_rxtap;
- int sc_rxtap_len;
-
- struct upgt_tx_radiotap_header sc_txtap;
- int sc_txtap_len;
-};
-
-#define UPGT_LOCK(sc) mtx_lock(&(sc)->sc_mtx)
-#define UPGT_UNLOCK(sc) mtx_unlock(&(sc)->sc_mtx)
diff --git a/sys/legacy/dev/usb/usb_ethersubr.c b/sys/legacy/dev/usb/usb_ethersubr.c
deleted file mode 100644
index d0a3b83..0000000
--- a/sys/legacy/dev/usb/usb_ethersubr.c
+++ /dev/null
@@ -1,283 +0,0 @@
-/*-
- * Copyright (c) 1997, 1998, 1999, 2000
- * Bill Paul <wpaul@ee.columbia.edu>. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by Bill Paul.
- * 4. Neither the name of the author nor the names of any co-contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
-/*
- * Callbacks in the USB code operate at splusb() (actually splbio()
- * in FreeBSD). However adding packets to the input queues has to be
- * done at splimp(). It is conceivable that this arrangement could
- * trigger a condition where the splimp() is ignored and the input
- * queues could get trampled in spite of our best effors to prevent
- * it. To work around this, we implement a special input queue for
- * USB ethernet adapter drivers. Rather than passing the frames directly
- * to ether_input(), we pass them here, then schedule a soft interrupt
- * to hand them to ether_input() later, outside of the USB interrupt
- * context.
- *
- * It's questional as to whether this code should be expanded to
- * handle other kinds of devices, or handle USB transfer callbacks
- * in general. Right now, I need USB network interfaces to work
- * properly.
- */
-
-#include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/sockio.h>
-#include <sys/mbuf.h>
-#include <sys/malloc.h>
-#include <sys/socket.h>
-#include <sys/taskqueue.h>
-
-#include <net/if.h>
-#include <net/if_types.h>
-#include <net/if_arp.h>
-#include <net/ethernet.h>
-#include <net/netisr.h>
-#include <net/bpf.h>
-
-#include <dev/usb/usb.h>
-#include <dev/usb/usb_ethersubr.h>
-
-static struct ifqueue usbq_rx;
-static struct ifqueue usbq_tx;
-static int mtx_inited = 0;
-
-static void usbintr (void);
-
-static void
-usbintr(void)
-{
- struct mbuf *m;
- struct usb_qdat *q;
- struct ifnet *ifp;
-
- mtx_lock(&Giant);
-
- /* Check the RX queue */
- while(1) {
- IF_DEQUEUE(&usbq_rx, m);
- if (m == NULL)
- break;
- q = (struct usb_qdat *)m->m_pkthdr.rcvif;
- ifp = q->ifp;
- m->m_pkthdr.rcvif = ifp;
- (*ifp->if_input)(ifp, m);
-
- /* Re-arm the receiver */
- (*q->if_rxstart)(ifp);
- if (ifp->if_snd.ifq_head != NULL)
- (*ifp->if_start)(ifp);
- }
-
- /* Check the TX queue */
- while(1) {
- IF_DEQUEUE(&usbq_tx, m);
- if (m == NULL)
- break;
- ifp = m->m_pkthdr.rcvif;
- m_freem(m);
- if (ifp->if_snd.ifq_head != NULL)
- (*ifp->if_start)(ifp);
- }
-
- mtx_unlock(&Giant);
-
- return;
-}
-
-void
-usb_register_netisr(void)
-{
- if (mtx_inited)
- return;
- netisr_register(NETISR_USB, (netisr_t *)usbintr, NULL,
- NETISR_FORCEQUEUE);
- mtx_init(&usbq_tx.ifq_mtx, "usbq_tx_mtx", NULL, MTX_DEF);
- mtx_init(&usbq_rx.ifq_mtx, "usbq_rx_mtx", NULL, MTX_DEF);
- mtx_inited++;
- return;
-}
-
-/*
- * Must be called at splusb() (actually splbio()). This should be
- * the case when called from a transfer callback routine.
- */
-void
-usb_ether_input(m)
- struct mbuf *m;
-{
- IF_ENQUEUE(&usbq_rx, m);
- schednetisr(NETISR_USB);
-
- return;
-}
-
-void
-usb_tx_done(m)
- struct mbuf *m;
-{
- IF_ENQUEUE(&usbq_tx, m);
- schednetisr(NETISR_USB);
-
- return;
-}
-
-struct mbuf *
-usb_ether_newbuf(void)
-{
- struct mbuf *m_new;
-
- m_new = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
- if (m_new == NULL)
- return (NULL);
- m_new->m_len = m_new->m_pkthdr.len = MCLBYTES;
-
- m_adj(m_new, ETHER_ALIGN);
- return (m_new);
-}
-
-int
-usb_ether_rx_list_init(void *sc, struct ue_cdata *cd,
- usbd_device_handle ue_udev)
-{
- struct ue_chain *c;
- int i;
-
- for (i = 0; i < UE_RX_LIST_CNT; i++) {
- c = &cd->ue_rx_chain[i];
- c->ue_sc = sc;
- c->ue_idx = i;
- c->ue_mbuf = usb_ether_newbuf();
- if (c->ue_mbuf == NULL)
- return (ENOBUFS);
- if (c->ue_xfer == NULL) {
- c->ue_xfer = usbd_alloc_xfer(ue_udev);
- if (c->ue_xfer == NULL)
- return (ENOBUFS);
- c->ue_buf = usbd_alloc_buffer(c->ue_xfer, UE_BUFSZ);
- if (c->ue_buf == NULL)
- return (ENOBUFS);
- }
- }
-
- return (0);
-}
-
-int
-usb_ether_tx_list_init(void *sc, struct ue_cdata *cd,
- usbd_device_handle ue_udev)
-{
- struct ue_chain *c;
- int i;
-
- for (i = 0; i < UE_TX_LIST_CNT; i++) {
- c = &cd->ue_tx_chain[i];
- c->ue_sc = sc;
- c->ue_idx = i;
- c->ue_mbuf = NULL;
- if (c->ue_xfer == NULL) {
- c->ue_xfer = usbd_alloc_xfer(ue_udev);
- if (c->ue_xfer == NULL)
- return (ENOBUFS);
- c->ue_buf = usbd_alloc_buffer(c->ue_xfer, UE_BUFSZ);
- if (c->ue_buf == NULL)
- return (ENOBUFS);
- }
- }
-
- return (0);
-}
-
-void
-usb_ether_rx_list_free(struct ue_cdata *cd)
-{
- int i;
-
- for (i = 0; i < UE_RX_LIST_CNT; i++) {
- if (cd->ue_rx_chain[i].ue_mbuf != NULL) {
- m_freem(cd->ue_rx_chain[i].ue_mbuf);
- cd->ue_rx_chain[i].ue_mbuf = NULL;
- }
- if (cd->ue_rx_chain[i].ue_xfer != NULL) {
- usbd_free_xfer(cd->ue_rx_chain[i].ue_xfer);
- cd->ue_rx_chain[i].ue_xfer = NULL;
- }
- }
-}
-
-void
-usb_ether_tx_list_free(struct ue_cdata *cd)
-{
- int i;
-
- for (i = 0; i < UE_RX_LIST_CNT; i++) {
- if (cd->ue_tx_chain[i].ue_mbuf != NULL) {
- m_freem(cd->ue_tx_chain[i].ue_mbuf);
- cd->ue_tx_chain[i].ue_mbuf = NULL;
- }
- if (cd->ue_tx_chain[i].ue_xfer != NULL) {
- usbd_free_xfer(cd->ue_tx_chain[i].ue_xfer);
- cd->ue_tx_chain[i].ue_xfer = NULL;
- }
- }
-}
-
-void
-usb_ether_task_init(device_t dev, int flags, struct usb_taskqueue *tq)
-{
-
- /* nothing for now. */
-}
-
-void
-usb_ether_task_enqueue(struct usb_taskqueue *tq, struct task *task)
-{
-
- taskqueue_enqueue(taskqueue_thread, task);
-}
-
-void
-usb_ether_task_drain(struct usb_taskqueue *tq, struct task *task)
-{
-
- taskqueue_drain(taskqueue_thread, task);
-}
-
-void
-usb_ether_task_destroy(struct usb_taskqueue *tq)
-{
-
- /* nothing for now */
-
-}
diff --git a/sys/legacy/dev/usb/usb_ethersubr.h b/sys/legacy/dev/usb/usb_ethersubr.h
deleted file mode 100644
index f3d2e34..0000000
--- a/sys/legacy/dev/usb/usb_ethersubr.h
+++ /dev/null
@@ -1,91 +0,0 @@
-/*-
- * Copyright (c) 1997, 1998, 1999, 2000
- * Bill Paul <wpaul@ee.columbia.edu>. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by Bill Paul.
- * 4. Neither the name of the author nor the names of any co-contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- *
- * $FreeBSD$
- */
-
-#ifndef _USB_ETHERSUBR_H_
-#define _USB_ETHERSUBR_H_
-
-#include <sys/bus.h>
-#include <sys/module.h>
-
-#include <dev/usb/usbdi.h>
-
-#define UE_TX_LIST_CNT 1
-#define UE_RX_LIST_CNT 1
-#define UE_BUFSZ 1536
-
-struct usb_qdat {
- struct ifnet *ifp;
- void (*if_rxstart) (struct ifnet *);
-};
-
-struct ue_chain {
- void *ue_sc;
- usbd_xfer_handle ue_xfer;
- char *ue_buf;
- struct mbuf *ue_mbuf;
- int ue_idx;
- usbd_status ue_status;
-};
-
-struct ue_cdata {
- struct ue_chain ue_tx_chain[UE_TX_LIST_CNT];
- struct ue_chain ue_rx_chain[UE_RX_LIST_CNT];
- void *ue_ibuf;
- int ue_tx_prod;
- int ue_tx_cons;
- int ue_tx_cnt;
- int ue_rx_prod;
-};
-
-void usb_register_netisr (void);
-void usb_ether_input (struct mbuf *);
-void usb_tx_done (struct mbuf *);
-struct mbuf *usb_ether_newbuf (void);
-int usb_ether_rx_list_init (void *, struct ue_cdata *,
- usbd_device_handle);
-int usb_ether_tx_list_init (void *, struct ue_cdata *,
- usbd_device_handle);
-void usb_ether_rx_list_free (struct ue_cdata *);
-void usb_ether_tx_list_free (struct ue_cdata *);
-
-struct usb_taskqueue {
- int dummy;
-};
-
-void usb_ether_task_init(device_t, int, struct usb_taskqueue *);
-void usb_ether_task_enqueue(struct usb_taskqueue *, struct task *);
-void usb_ether_task_drain(struct usb_taskqueue *, struct task *);
-void usb_ether_task_destroy(struct usb_taskqueue *);
-
-#endif /* _USB_ETHERSUBR_H_ */
OpenPOWER on IntegriCloud