2005-09-25 10:49:54 +04:00
|
|
|
/* $NetBSD: if_iwi.c,v 1.25 2005/09/25 06:49:54 skrll Exp $ */
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2004, 2005
|
|
|
|
* Damien Bergamini <damien.bergamini@free.fr>. 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 unmodified, 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 THE AUTHOR OR CONTRIBUTORS 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>
|
2005-09-25 10:49:54 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: if_iwi.c,v 1.25 2005/09/25 06:49:54 skrll Exp $");
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/*-
|
2005-08-01 19:14:54 +04:00
|
|
|
* Intel(R) PRO/Wireless 2200BG/2225BG/2915ABG driver
|
2005-01-11 21:24:24 +03:00
|
|
|
* http://www.intel.com/network/connectivity/products/wireless/prowireless_mobile.htm
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bpfilter.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/sockio.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <machine/endian.h>
|
|
|
|
#include <machine/intr.h>
|
|
|
|
|
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <dev/pci/pcidevs.h>
|
|
|
|
|
|
|
|
#if NBPFILTER > 0
|
|
|
|
#include <net/bpf.h>
|
|
|
|
#endif
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_arp.h>
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <net/if_ether.h>
|
|
|
|
#include <net/if_media.h>
|
|
|
|
#include <net/if_types.h>
|
|
|
|
|
|
|
|
#include <net80211/ieee80211_var.h>
|
|
|
|
#include <net80211/ieee80211_radiotap.h>
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/in_var.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
|
|
|
|
#include <crypto/arc4/arc4.h>
|
|
|
|
|
|
|
|
#include <dev/pci/if_iwireg.h>
|
|
|
|
#include <dev/pci/if_iwivar.h>
|
|
|
|
|
2005-09-04 10:58:20 +04:00
|
|
|
#ifdef IWI_DEBUG
|
|
|
|
#define DPRINTF(x) if (iwi_debug > 0) printf x
|
|
|
|
#define DPRINTFN(n, x) if (iwi_debug >= (n)) printf x
|
|
|
|
int iwi_debug = 4;
|
|
|
|
#else
|
|
|
|
#define DPRINTF(x)
|
|
|
|
#define DPRINTFN(n, x)
|
|
|
|
#endif
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-09-25 10:49:54 +04:00
|
|
|
static int iwi_match(struct device *, struct cfdata *, void *);
|
|
|
|
static void iwi_attach(struct device *, struct device *, void *);
|
|
|
|
static int iwi_detach(struct device *, int);
|
2005-08-19 12:50:06 +04:00
|
|
|
|
2005-09-25 10:49:54 +04:00
|
|
|
static void iwi_shutdown(void *);
|
|
|
|
static int iwi_suspend(struct iwi_softc *);
|
|
|
|
static int iwi_resume(struct iwi_softc *);
|
|
|
|
static void iwi_powerhook(int, void *);
|
2005-08-19 18:26:38 +04:00
|
|
|
|
2005-09-25 10:49:54 +04:00
|
|
|
static int iwi_alloc_cmd_ring(struct iwi_softc *, struct iwi_cmd_ring *,
|
2005-08-19 12:50:06 +04:00
|
|
|
int);
|
2005-09-25 10:49:54 +04:00
|
|
|
static void iwi_reset_cmd_ring(struct iwi_softc *, struct iwi_cmd_ring *);
|
|
|
|
static void iwi_free_cmd_ring(struct iwi_softc *, struct iwi_cmd_ring *);
|
|
|
|
static int iwi_alloc_tx_ring(struct iwi_softc *, struct iwi_tx_ring *,
|
2005-08-19 12:50:06 +04:00
|
|
|
int);
|
2005-09-25 10:49:54 +04:00
|
|
|
static void iwi_reset_tx_ring(struct iwi_softc *, struct iwi_tx_ring *);
|
|
|
|
static void iwi_free_tx_ring(struct iwi_softc *, struct iwi_tx_ring *);
|
|
|
|
static int iwi_alloc_rx_ring(struct iwi_softc *, struct iwi_rx_ring *,
|
2005-08-19 12:50:06 +04:00
|
|
|
int);
|
2005-09-25 10:49:54 +04:00
|
|
|
static void iwi_reset_rx_ring(struct iwi_softc *, struct iwi_rx_ring *);
|
|
|
|
static void iwi_free_rx_ring(struct iwi_softc *, struct iwi_rx_ring *);
|
|
|
|
|
|
|
|
static int iwi_media_change(struct ifnet *);
|
|
|
|
static void iwi_media_status(struct ifnet *, struct ifmediareq *);
|
|
|
|
static uint16_t iwi_read_prom_word(struct iwi_softc *, uint8_t);
|
|
|
|
static int iwi_newstate(struct ieee80211com *, enum ieee80211_state, int);
|
|
|
|
static void iwi_fix_channel(struct ieee80211com *, struct mbuf *);
|
|
|
|
static void iwi_frame_intr(struct iwi_softc *, struct iwi_rx_data *, int,
|
2005-01-11 21:24:24 +03:00
|
|
|
struct iwi_frame *);
|
2005-09-25 10:49:54 +04:00
|
|
|
static void iwi_notification_intr(struct iwi_softc *, struct iwi_notif *);
|
|
|
|
static void iwi_rx_intr(struct iwi_softc *);
|
|
|
|
static void iwi_tx_intr(struct iwi_softc *);
|
|
|
|
static int iwi_intr(void *);
|
|
|
|
static int iwi_cmd(struct iwi_softc *, uint8_t, void *, uint8_t, int);
|
|
|
|
static int iwi_tx_start(struct ifnet *, struct mbuf *, struct ieee80211_node *);
|
|
|
|
static void iwi_start(struct ifnet *);
|
|
|
|
static void iwi_watchdog(struct ifnet *);
|
|
|
|
static int iwi_get_table0(struct iwi_softc *, uint32_t *);
|
|
|
|
static int iwi_get_radio(struct iwi_softc *, int *);
|
|
|
|
static int iwi_ioctl(struct ifnet *, u_long, caddr_t);
|
|
|
|
static void iwi_stop_master(struct iwi_softc *);
|
|
|
|
static int iwi_reset(struct iwi_softc *);
|
|
|
|
static int iwi_load_ucode(struct iwi_softc *, void *, int);
|
|
|
|
static int iwi_load_firmware(struct iwi_softc *, void *, int);
|
|
|
|
static int iwi_cache_firmware(struct iwi_softc *, void *);
|
|
|
|
static void iwi_free_firmware(struct iwi_softc *);
|
|
|
|
static int iwi_config(struct iwi_softc *);
|
|
|
|
static int iwi_set_chan(struct iwi_softc *, struct ieee80211_channel *);
|
|
|
|
static int iwi_scan(struct iwi_softc *);
|
|
|
|
static int iwi_auth_and_assoc(struct iwi_softc *);
|
|
|
|
static int iwi_init(struct ifnet *);
|
|
|
|
static void iwi_stop(struct ifnet *, int);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-09-04 10:58:20 +04:00
|
|
|
/*
|
|
|
|
* Supported rates for 802.11a/b/g modes (in 500Kbps unit).
|
|
|
|
*/
|
|
|
|
static const struct ieee80211_rateset iwi_rateset_11a =
|
|
|
|
{ 8, { 12, 18, 24, 36, 48, 72, 96, 108 } };
|
|
|
|
|
|
|
|
static const struct ieee80211_rateset iwi_rateset_11b =
|
|
|
|
{ 4, { 2, 4, 11, 22 } };
|
|
|
|
|
|
|
|
static const struct ieee80211_rateset iwi_rateset_11g =
|
|
|
|
{ 12, { 2, 4, 11, 22, 12, 18, 24, 36, 48, 72, 96, 108 } };
|
|
|
|
|
2005-09-17 16:40:27 +04:00
|
|
|
static __inline uint8_t
|
|
|
|
MEM_READ_1(struct iwi_softc *sc, uint32_t addr)
|
2005-01-11 21:24:24 +03:00
|
|
|
{
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_INDIRECT_ADDR, addr);
|
|
|
|
return CSR_READ_1(sc, IWI_CSR_INDIRECT_DATA);
|
|
|
|
}
|
|
|
|
|
2005-09-17 16:40:27 +04:00
|
|
|
static __inline uint32_t
|
|
|
|
MEM_READ_4(struct iwi_softc *sc, uint32_t addr)
|
2005-01-11 21:24:24 +03:00
|
|
|
{
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_INDIRECT_ADDR, addr);
|
|
|
|
return CSR_READ_4(sc, IWI_CSR_INDIRECT_DATA);
|
|
|
|
}
|
|
|
|
|
|
|
|
CFATTACH_DECL(iwi, sizeof (struct iwi_softc), iwi_match, iwi_attach,
|
|
|
|
iwi_detach, NULL);
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_match(struct device *parent, struct cfdata *match, void *aux)
|
|
|
|
{
|
|
|
|
struct pci_attach_args *pa = aux;
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
if (PCI_VENDOR(pa->pa_id) != PCI_VENDOR_INTEL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PRO_WL_2200BG ||
|
2005-08-01 19:14:54 +04:00
|
|
|
PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PRO_WL_2225BG ||
|
|
|
|
PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PRO_WL_2915ABG_1 ||
|
|
|
|
PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PRO_WL_2915ABG_2)
|
2005-01-11 21:24:24 +03:00
|
|
|
return 1;
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Base Address Register */
|
|
|
|
#define IWI_PCI_BAR0 0x10
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_attach(struct device *parent, struct device *self, void *aux)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = (struct iwi_softc *)self;
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
2005-06-22 10:14:51 +04:00
|
|
|
struct ifnet *ifp = &sc->sc_if;
|
2005-01-11 21:24:24 +03:00
|
|
|
struct pci_attach_args *pa = aux;
|
|
|
|
const char *intrstr;
|
|
|
|
char devinfo[256];
|
|
|
|
bus_space_tag_t memt;
|
|
|
|
bus_space_handle_t memh;
|
|
|
|
bus_addr_t base;
|
|
|
|
pci_intr_handle_t ih;
|
|
|
|
pcireg_t data;
|
2005-09-17 16:40:27 +04:00
|
|
|
uint16_t val;
|
2005-01-11 21:24:24 +03:00
|
|
|
int error, revision, i;
|
|
|
|
|
|
|
|
sc->sc_pct = pa->pa_pc;
|
|
|
|
sc->sc_pcitag = pa->pa_tag;
|
|
|
|
|
|
|
|
pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof devinfo);
|
|
|
|
revision = PCI_REVISION(pa->pa_class);
|
|
|
|
aprint_normal(": %s (rev. 0x%02x)\n", devinfo, revision);
|
|
|
|
|
|
|
|
/* clear device specific PCI configuration register 0x41 */
|
|
|
|
data = pci_conf_read(sc->sc_pct, sc->sc_pcitag, 0x40);
|
|
|
|
data &= ~0x0000ff00;
|
|
|
|
pci_conf_write(sc->sc_pct, sc->sc_pcitag, 0x40, data);
|
|
|
|
|
|
|
|
/* enable bus-mastering */
|
|
|
|
data = pci_conf_read(sc->sc_pct, sc->sc_pcitag, PCI_COMMAND_STATUS_REG);
|
|
|
|
data |= PCI_COMMAND_MASTER_ENABLE;
|
|
|
|
pci_conf_write(sc->sc_pct, sc->sc_pcitag, PCI_COMMAND_STATUS_REG, data);
|
|
|
|
|
|
|
|
/* map the register window */
|
|
|
|
error = pci_mapreg_map(pa, IWI_PCI_BAR0, PCI_MAPREG_TYPE_MEM |
|
|
|
|
PCI_MAPREG_MEM_TYPE_32BIT, 0, &memt, &memh, &base, &sc->sc_sz);
|
|
|
|
if (error != 0) {
|
|
|
|
aprint_error("%s: could not map memory space\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->sc_st = memt;
|
|
|
|
sc->sc_sh = memh;
|
|
|
|
sc->sc_dmat = pa->pa_dmat;
|
|
|
|
|
|
|
|
/* disable interrupts */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_INTR_MASK, 0);
|
|
|
|
|
|
|
|
if (pci_intr_map(pa, &ih) != 0) {
|
|
|
|
aprint_error("%s: could not map interrupt\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
intrstr = pci_intr_string(sc->sc_pct, ih);
|
|
|
|
sc->sc_ih = pci_intr_establish(sc->sc_pct, ih, IPL_NET, iwi_intr, sc);
|
|
|
|
if (sc->sc_ih == NULL) {
|
|
|
|
aprint_error("%s: could not establish interrupt",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
if (intrstr != NULL)
|
|
|
|
aprint_error(" at %s", intrstr);
|
|
|
|
aprint_error("\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
aprint_normal("%s: interrupting at %s\n", sc->sc_dev.dv_xname, intrstr);
|
|
|
|
|
|
|
|
if (iwi_reset(sc) != 0) {
|
|
|
|
aprint_error("%s: could not reset adapter\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
/*
|
|
|
|
* Allocate rings.
|
|
|
|
*/
|
|
|
|
if (iwi_alloc_cmd_ring(sc, &sc->cmdq, IWI_CMD_RING_COUNT) != 0) {
|
|
|
|
aprint_error("%s: could not allocate command ring\n",
|
2005-01-11 21:24:24 +03:00
|
|
|
sc->sc_dev.dv_xname);
|
2005-08-19 12:50:06 +04:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iwi_alloc_tx_ring(sc, &sc->txq, IWI_TX_RING_COUNT) != 0) {
|
|
|
|
aprint_error("%s: could not allocate Tx ring\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iwi_alloc_rx_ring(sc, &sc->rxq, IWI_RX_RING_COUNT) != 0) {
|
|
|
|
aprint_error("%s: could not allocate Rx ring\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
2005-06-22 10:14:51 +04:00
|
|
|
ic->ic_ifp = ifp;
|
2005-07-31 01:15:51 +04:00
|
|
|
ic->ic_phytype = IEEE80211_T_OFDM; /* not only, but not used */
|
|
|
|
ic->ic_opmode = IEEE80211_M_STA; /* default to BSS mode */
|
2005-08-01 19:14:54 +04:00
|
|
|
ic->ic_state = IEEE80211_S_INIT;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/* set device capabilities */
|
2005-07-31 01:15:51 +04:00
|
|
|
ic->ic_caps = IEEE80211_C_WPA | IEEE80211_C_PMGT | IEEE80211_C_TXPMGT |
|
|
|
|
IEEE80211_C_SHPREAMBLE | IEEE80211_C_MONITOR;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/* read MAC address from EEPROM */
|
|
|
|
val = iwi_read_prom_word(sc, IWI_EEPROM_MAC + 0);
|
|
|
|
ic->ic_myaddr[0] = val >> 8;
|
|
|
|
ic->ic_myaddr[1] = val & 0xff;
|
|
|
|
val = iwi_read_prom_word(sc, IWI_EEPROM_MAC + 1);
|
|
|
|
ic->ic_myaddr[2] = val >> 8;
|
|
|
|
ic->ic_myaddr[3] = val & 0xff;
|
|
|
|
val = iwi_read_prom_word(sc, IWI_EEPROM_MAC + 2);
|
|
|
|
ic->ic_myaddr[4] = val >> 8;
|
|
|
|
ic->ic_myaddr[5] = val & 0xff;
|
|
|
|
|
|
|
|
aprint_normal("%s: 802.11 address %s\n", sc->sc_dev.dv_xname,
|
|
|
|
ether_sprintf(ic->ic_myaddr));
|
|
|
|
|
2005-08-01 19:14:54 +04:00
|
|
|
|
2005-08-27 11:26:47 +04:00
|
|
|
if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PRO_WL_2915ABG_1 ||
|
|
|
|
PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_INTEL_PRO_WL_2915ABG_2) {
|
2005-08-01 19:14:54 +04:00
|
|
|
/* set supported .11a rates (2915ABG only) */
|
2005-01-11 21:24:24 +03:00
|
|
|
ic->ic_sup_rates[IEEE80211_MODE_11A] = iwi_rateset_11a;
|
|
|
|
|
|
|
|
/* set supported .11a channels */
|
|
|
|
for (i = 36; i <= 64; i += 4) {
|
|
|
|
ic->ic_channels[i].ic_freq =
|
|
|
|
ieee80211_ieee2mhz(i, IEEE80211_CHAN_5GHZ);
|
|
|
|
ic->ic_channels[i].ic_flags = IEEE80211_CHAN_A;
|
|
|
|
}
|
2005-07-31 01:15:51 +04:00
|
|
|
for (i = 149; i <= 165; i += 4) {
|
2005-01-11 21:24:24 +03:00
|
|
|
ic->ic_channels[i].ic_freq =
|
|
|
|
ieee80211_ieee2mhz(i, IEEE80211_CHAN_5GHZ);
|
|
|
|
ic->ic_channels[i].ic_flags = IEEE80211_CHAN_A;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set supported .11b and .11g rates */
|
|
|
|
ic->ic_sup_rates[IEEE80211_MODE_11B] = iwi_rateset_11b;
|
|
|
|
ic->ic_sup_rates[IEEE80211_MODE_11G] = iwi_rateset_11g;
|
|
|
|
|
|
|
|
/* set supported .11b and .11g channels (1 through 14) */
|
|
|
|
for (i = 1; i <= 14; i++) {
|
|
|
|
ic->ic_channels[i].ic_freq =
|
|
|
|
ieee80211_ieee2mhz(i, IEEE80211_CHAN_2GHZ);
|
|
|
|
ic->ic_channels[i].ic_flags =
|
|
|
|
IEEE80211_CHAN_CCK | IEEE80211_CHAN_OFDM |
|
|
|
|
IEEE80211_CHAN_DYN | IEEE80211_CHAN_2GHZ;
|
|
|
|
}
|
|
|
|
|
|
|
|
ifp->if_softc = sc;
|
|
|
|
ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
|
|
|
|
ifp->if_init = iwi_init;
|
|
|
|
ifp->if_stop = iwi_stop;
|
|
|
|
ifp->if_ioctl = iwi_ioctl;
|
|
|
|
ifp->if_start = iwi_start;
|
|
|
|
ifp->if_watchdog = iwi_watchdog;
|
|
|
|
IFQ_SET_READY(&ifp->if_snd);
|
|
|
|
memcpy(ifp->if_xname, sc->sc_dev.dv_xname, IFNAMSIZ);
|
|
|
|
|
|
|
|
if_attach(ifp);
|
2005-06-22 10:14:51 +04:00
|
|
|
ieee80211_ifattach(ic);
|
2005-01-11 21:24:24 +03:00
|
|
|
/* override state transition machine */
|
|
|
|
sc->sc_newstate = ic->ic_newstate;
|
|
|
|
ic->ic_newstate = iwi_newstate;
|
2005-06-22 10:14:51 +04:00
|
|
|
ieee80211_media_init(ic, iwi_media_change, iwi_media_status);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
#if NBPFILTER > 0
|
|
|
|
bpfattach2(ifp, DLT_IEEE802_11_RADIO,
|
|
|
|
sizeof (struct ieee80211_frame) + 64, &sc->sc_drvbpf);
|
|
|
|
|
|
|
|
sc->sc_rxtap_len = sizeof sc->sc_rxtapu;
|
|
|
|
sc->sc_rxtap.wr_ihdr.it_len = htole16(sc->sc_rxtap_len);
|
|
|
|
sc->sc_rxtap.wr_ihdr.it_present = htole32(IWI_RX_RADIOTAP_PRESENT);
|
|
|
|
|
|
|
|
sc->sc_txtap_len = sizeof sc->sc_txtapu;
|
|
|
|
sc->sc_txtap.wt_ihdr.it_len = htole16(sc->sc_txtap_len);
|
|
|
|
sc->sc_txtap.wt_ihdr.it_present = htole32(IWI_TX_RADIOTAP_PRESENT);
|
|
|
|
#endif
|
2005-08-19 18:26:38 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure the interface is shutdown during reboot.
|
|
|
|
*/
|
|
|
|
sc->sc_sdhook = shutdownhook_establish(iwi_shutdown, sc);
|
|
|
|
if (sc->sc_sdhook == NULL)
|
|
|
|
aprint_error("%s: WARNING: unable to establish shutdown hook\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
sc->sc_powerhook = powerhook_establish(iwi_powerhook, sc);
|
|
|
|
if (sc->sc_powerhook == NULL)
|
|
|
|
printf("%s: WARNING: unable to establish power hook\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
|
2005-08-01 19:14:54 +04:00
|
|
|
ieee80211_announce(ic);
|
2005-07-31 01:15:51 +04:00
|
|
|
/*
|
|
|
|
* Add a few sysctl knobs.
|
|
|
|
* XXX: Not yet.
|
|
|
|
*/
|
|
|
|
sc->dwelltime = 100;
|
|
|
|
sc->bluetooth = 1;
|
|
|
|
sc->antenna = 0;
|
2005-08-19 12:50:06 +04:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
fail: iwi_detach(self, 0);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_detach(struct device* self, int flags)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = (struct iwi_softc *)self;
|
2005-06-22 10:14:51 +04:00
|
|
|
struct ifnet *ifp = &sc->sc_if;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
iwi_stop(ifp, 1);
|
|
|
|
iwi_free_firmware(sc);
|
|
|
|
|
|
|
|
#if NBPFILTER > 0
|
2005-09-25 10:49:54 +04:00
|
|
|
if (ifp != NULL)
|
|
|
|
bpfdetach(ifp);
|
2005-01-11 21:24:24 +03:00
|
|
|
#endif
|
2005-06-22 10:14:51 +04:00
|
|
|
ieee80211_ifdetach(&sc->sc_ic);
|
2005-09-25 10:49:54 +04:00
|
|
|
if (ifp != NULL)
|
|
|
|
if_detach(ifp);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
iwi_free_cmd_ring(sc, &sc->cmdq);
|
|
|
|
iwi_free_tx_ring(sc, &sc->txq);
|
|
|
|
iwi_free_rx_ring(sc, &sc->rxq);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
if (sc->sc_ih != NULL) {
|
|
|
|
pci_intr_disestablish(sc->sc_pct, sc->sc_ih);
|
|
|
|
sc->sc_ih = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bus_space_unmap(sc->sc_st, sc->sc_sh, sc->sc_sz);
|
|
|
|
|
2005-08-31 01:14:29 +04:00
|
|
|
powerhook_disestablish(sc->sc_powerhook);
|
|
|
|
shutdownhook_disestablish(sc->sc_sdhook);
|
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2005-08-19 12:50:06 +04:00
|
|
|
iwi_alloc_cmd_ring(struct iwi_softc *sc, struct iwi_cmd_ring *ring,
|
|
|
|
int count)
|
2005-01-11 21:24:24 +03:00
|
|
|
{
|
2005-08-19 12:50:06 +04:00
|
|
|
int error, nsegs;
|
|
|
|
|
|
|
|
ring->count = count;
|
|
|
|
ring->queued = 0;
|
|
|
|
ring->cur = ring->next = 0;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/*
|
2005-08-19 12:50:06 +04:00
|
|
|
* Allocate and map command ring
|
2005-01-11 21:24:24 +03:00
|
|
|
*/
|
|
|
|
error = bus_dmamap_create(sc->sc_dmat,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_CMD_DESC_SIZE * count, 1,
|
|
|
|
IWI_CMD_DESC_SIZE * count, 0,
|
2005-08-19 12:50:06 +04:00
|
|
|
BUS_DMA_NOWAIT, &ring->desc_map);
|
2005-01-11 21:24:24 +03:00
|
|
|
if (error != 0) {
|
2005-08-19 12:50:06 +04:00
|
|
|
aprint_error("%s: could not create command ring DMA map\n",
|
2005-01-11 21:24:24 +03:00
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = bus_dmamem_alloc(sc->sc_dmat,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_CMD_DESC_SIZE * count, PAGE_SIZE, 0,
|
2005-08-19 12:50:06 +04:00
|
|
|
&sc->cmdq.desc_seg, 1, &nsegs, BUS_DMA_NOWAIT);
|
2005-01-11 21:24:24 +03:00
|
|
|
if (error != 0) {
|
2005-08-19 12:50:06 +04:00
|
|
|
aprint_error("%s: could not allocate command ring DMA memory\n",
|
2005-01-11 21:24:24 +03:00
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
error = bus_dmamem_map(sc->sc_dmat, &sc->cmdq.desc_seg, nsegs,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_CMD_DESC_SIZE * count,
|
2005-08-19 12:50:06 +04:00
|
|
|
(caddr_t *)&sc->cmdq.desc, BUS_DMA_NOWAIT);
|
2005-01-11 21:24:24 +03:00
|
|
|
if (error != 0) {
|
2005-08-19 12:50:06 +04:00
|
|
|
aprint_error("%s: could not map command ring DMA memory\n",
|
2005-01-11 21:24:24 +03:00
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
error = bus_dmamap_load(sc->sc_dmat, sc->cmdq.desc_map, sc->cmdq.desc,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_CMD_DESC_SIZE * count, NULL,
|
2005-01-11 21:24:24 +03:00
|
|
|
BUS_DMA_NOWAIT);
|
|
|
|
if (error != 0) {
|
2005-08-19 12:50:06 +04:00
|
|
|
aprint_error("%s: could not load command ring DMA map\n",
|
2005-01-11 21:24:24 +03:00
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
memset(sc->cmdq.desc, 0,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_CMD_DESC_SIZE * count);
|
2005-08-19 12:50:06 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail: iwi_free_cmd_ring(sc, ring);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_reset_cmd_ring(struct iwi_softc *sc, struct iwi_cmd_ring *ring)
|
|
|
|
{
|
|
|
|
ring->queued = 0;
|
|
|
|
ring->cur = ring->next = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_free_cmd_ring(struct iwi_softc *sc, struct iwi_cmd_ring *ring)
|
|
|
|
{
|
|
|
|
if (ring->desc_map != NULL) {
|
|
|
|
if (ring->desc != NULL) {
|
|
|
|
bus_dmamap_unload(sc->sc_dmat, ring->desc_map);
|
|
|
|
bus_dmamem_unmap(sc->sc_dmat, (caddr_t)ring->desc,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_CMD_DESC_SIZE * ring->count);
|
2005-08-19 12:50:06 +04:00
|
|
|
bus_dmamem_free(sc->sc_dmat, &ring->desc_seg, 1);
|
|
|
|
}
|
|
|
|
bus_dmamap_destroy(sc->sc_dmat, ring->desc_map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_alloc_tx_ring(struct iwi_softc *sc, struct iwi_tx_ring *ring,
|
|
|
|
int count)
|
|
|
|
{
|
|
|
|
int i, error, nsegs;
|
|
|
|
|
|
|
|
ring->count = count;
|
|
|
|
ring->queued = 0;
|
|
|
|
ring->cur = ring->next = 0;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/*
|
2005-08-19 12:50:06 +04:00
|
|
|
* Allocate and map Tx ring
|
2005-01-11 21:24:24 +03:00
|
|
|
*/
|
|
|
|
error = bus_dmamap_create(sc->sc_dmat,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_TX_DESC_SIZE * count, 1,
|
|
|
|
IWI_TX_DESC_SIZE * count, 0, BUS_DMA_NOWAIT,
|
2005-08-19 12:50:06 +04:00
|
|
|
&ring->desc_map);
|
2005-01-11 21:24:24 +03:00
|
|
|
if (error != 0) {
|
2005-08-19 12:50:06 +04:00
|
|
|
aprint_error("%s: could not create tx ring DMA map\n",
|
2005-01-11 21:24:24 +03:00
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = bus_dmamem_alloc(sc->sc_dmat,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_TX_DESC_SIZE * count, PAGE_SIZE, 0,
|
2005-08-19 12:50:06 +04:00
|
|
|
&ring->desc_seg, 1, &nsegs, BUS_DMA_NOWAIT);
|
2005-01-11 21:24:24 +03:00
|
|
|
if (error != 0) {
|
2005-08-19 12:50:06 +04:00
|
|
|
aprint_error("%s: could not allocate tx ring DMA memory\n",
|
2005-01-11 21:24:24 +03:00
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
error = bus_dmamem_map(sc->sc_dmat, &ring->desc_seg, nsegs,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_TX_DESC_SIZE * count,
|
2005-08-19 12:50:06 +04:00
|
|
|
(caddr_t *)&ring->desc, BUS_DMA_NOWAIT);
|
2005-01-11 21:24:24 +03:00
|
|
|
if (error != 0) {
|
2005-08-19 12:50:06 +04:00
|
|
|
aprint_error("%s: could not map tx ring DMA memory\n",
|
2005-01-11 21:24:24 +03:00
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
error = bus_dmamap_load(sc->sc_dmat, ring->desc_map, ring->desc,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_TX_DESC_SIZE * count, NULL,
|
2005-01-11 21:24:24 +03:00
|
|
|
BUS_DMA_NOWAIT);
|
|
|
|
if (error != 0) {
|
2005-08-19 12:50:06 +04:00
|
|
|
aprint_error("%s: could not load tx ring DMA map\n",
|
2005-01-11 21:24:24 +03:00
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-09-25 10:49:54 +04:00
|
|
|
memset(ring->desc, 0, IWI_TX_DESC_SIZE * count);
|
2005-08-19 12:50:06 +04:00
|
|
|
|
|
|
|
ring->data = malloc(count * sizeof (struct iwi_tx_data), M_DEVBUF,
|
|
|
|
M_NOWAIT | M_ZERO);
|
|
|
|
if (ring->data == NULL) {
|
|
|
|
aprint_error("%s: could not allocate soft data\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
error = ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate Tx buffers DMA maps
|
|
|
|
*/
|
2005-08-19 12:50:06 +04:00
|
|
|
for (i = 0; i < count; i++) {
|
2005-01-11 21:24:24 +03:00
|
|
|
error = bus_dmamap_create(sc->sc_dmat, MCLBYTES, IWI_MAX_NSEG,
|
2005-08-19 12:50:06 +04:00
|
|
|
MCLBYTES, 0, BUS_DMA_NOWAIT, &ring->data[i].map);
|
2005-01-11 21:24:24 +03:00
|
|
|
if (error != 0) {
|
|
|
|
aprint_error("%s: could not create tx buf DMA map",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
2005-08-19 12:50:06 +04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail: iwi_free_tx_ring(sc, ring);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_reset_tx_ring(struct iwi_softc *sc, struct iwi_tx_ring *ring)
|
|
|
|
{
|
|
|
|
struct iwi_tx_data *data;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ring->count; i++) {
|
|
|
|
data = &ring->data[i];
|
|
|
|
|
|
|
|
if (data->m != NULL) {
|
|
|
|
bus_dmamap_sync(sc->sc_dmat, data->map, 0,
|
|
|
|
MCLBYTES, BUS_DMASYNC_POSTWRITE);
|
|
|
|
bus_dmamap_unload(sc->sc_dmat, data->map);
|
|
|
|
m_freem(data->m);
|
|
|
|
data->m = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data->ni != NULL) {
|
|
|
|
ieee80211_free_node(data->ni);
|
|
|
|
data->ni = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ring->queued = 0;
|
|
|
|
ring->cur = ring->next = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_free_tx_ring(struct iwi_softc *sc, struct iwi_tx_ring *ring)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (ring->desc_map != NULL) {
|
|
|
|
if (ring->desc != NULL) {
|
|
|
|
bus_dmamap_unload(sc->sc_dmat, ring->desc_map);
|
|
|
|
bus_dmamem_unmap(sc->sc_dmat, (caddr_t)ring->desc,
|
2005-09-25 10:49:54 +04:00
|
|
|
IWI_TX_DESC_SIZE * ring->count);
|
2005-08-19 12:50:06 +04:00
|
|
|
bus_dmamem_free(sc->sc_dmat, &ring->desc_seg, 1);
|
|
|
|
}
|
|
|
|
bus_dmamap_destroy(sc->sc_dmat, ring->desc_map);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ring->count; i++) {
|
|
|
|
if (ring->data[i].m != NULL) {
|
|
|
|
bus_dmamap_unload(sc->sc_dmat, ring->data[i].map);
|
|
|
|
m_freem(ring->data[i].m);
|
|
|
|
}
|
|
|
|
bus_dmamap_destroy(sc->sc_dmat, ring->data[i].map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_alloc_rx_ring(struct iwi_softc *sc, struct iwi_rx_ring *ring,
|
|
|
|
int count)
|
|
|
|
{
|
|
|
|
int i, error;
|
|
|
|
|
|
|
|
ring->count = count;
|
|
|
|
ring->cur = 0;
|
|
|
|
|
|
|
|
ring->data = malloc(count * sizeof (struct iwi_rx_data), M_DEVBUF,
|
|
|
|
M_NOWAIT | M_ZERO);
|
|
|
|
if (ring->data == NULL) {
|
|
|
|
aprint_error("%s: could not allocate soft data\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
error = ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate and map Rx buffers
|
|
|
|
*/
|
2005-08-19 12:50:06 +04:00
|
|
|
for (i = 0; i < count; i++) {
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
error = bus_dmamap_create(sc->sc_dmat, MCLBYTES, 1, MCLBYTES,
|
2005-08-19 12:50:06 +04:00
|
|
|
0, BUS_DMA_NOWAIT, &ring->data[i].map);
|
2005-01-11 21:24:24 +03:00
|
|
|
if (error != 0) {
|
|
|
|
aprint_error("%s: could not create rx buf DMA map",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
MGETHDR(ring->data[i].m, M_DONTWAIT, MT_DATA);
|
|
|
|
if (ring->data[i].m == NULL) {
|
2005-01-11 21:24:24 +03:00
|
|
|
aprint_error("%s: could not allocate rx mbuf\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
error = ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
MCLGET(ring->data[i].m, M_DONTWAIT);
|
|
|
|
if (!(ring->data[i].m->m_flags & M_EXT)) {
|
|
|
|
m_freem(ring->data[i].m);
|
2005-01-11 21:24:24 +03:00
|
|
|
aprint_error("%s: could not allocate rx mbuf cluster\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
error = ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
error = bus_dmamap_load(sc->sc_dmat, ring->data[i].map,
|
|
|
|
mtod(ring->data[i].m, void *), MCLBYTES, NULL,
|
2005-01-11 21:24:24 +03:00
|
|
|
BUS_DMA_NOWAIT);
|
|
|
|
if (error != 0) {
|
|
|
|
aprint_error("%s: could not load rx buffer DMA map\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
fail: iwi_free_rx_ring(sc, ring);
|
2005-01-11 21:24:24 +03:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-08-19 12:50:06 +04:00
|
|
|
iwi_reset_rx_ring(struct iwi_softc *sc, struct iwi_rx_ring *ring)
|
2005-01-11 21:24:24 +03:00
|
|
|
{
|
2005-08-19 12:50:06 +04:00
|
|
|
ring->cur = 0;
|
|
|
|
}
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
static void
|
|
|
|
iwi_free_rx_ring(struct iwi_softc *sc, struct iwi_rx_ring *ring)
|
|
|
|
{
|
|
|
|
int i;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
for (i = 0; i < ring->count; i++) {
|
|
|
|
if (ring->data[i].m != NULL) {
|
|
|
|
bus_dmamap_unload(sc->sc_dmat, ring->data[i].map);
|
|
|
|
m_freem(ring->data[i].m);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
2005-08-19 12:50:06 +04:00
|
|
|
bus_dmamap_destroy(sc->sc_dmat, ring->data[i].map);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-19 18:26:38 +04:00
|
|
|
static void
|
|
|
|
iwi_shutdown(void *arg)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = (struct iwi_softc *)arg;
|
|
|
|
struct ifnet *ifp = sc->sc_ic.ic_ifp;
|
|
|
|
|
|
|
|
iwi_stop(ifp, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_suspend(struct iwi_softc *sc)
|
|
|
|
{
|
|
|
|
struct ifnet *ifp = sc->sc_ic.ic_ifp;
|
|
|
|
|
|
|
|
iwi_stop(ifp, 1);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_resume(struct iwi_softc *sc)
|
|
|
|
{
|
|
|
|
struct ifnet *ifp = sc->sc_ic.ic_ifp;
|
|
|
|
pcireg_t data;
|
|
|
|
|
|
|
|
/* clear device specific PCI configuration register 0x41 */
|
|
|
|
data = pci_conf_read(sc->sc_pct, sc->sc_pcitag, 0x40);
|
|
|
|
data &= ~0x0000ff00;
|
|
|
|
pci_conf_write(sc->sc_pct, sc->sc_pcitag, 0x40, data);
|
|
|
|
|
|
|
|
if (ifp->if_flags & IFF_UP) {
|
|
|
|
iwi_init(ifp);
|
|
|
|
if (ifp->if_flags & IFF_RUNNING)
|
|
|
|
iwi_start(ifp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_powerhook(int why, void *arg)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = arg;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
s = splnet();
|
|
|
|
switch (why) {
|
|
|
|
case PWR_SUSPEND:
|
|
|
|
case PWR_STANDBY:
|
|
|
|
iwi_suspend(sc);
|
|
|
|
break;
|
|
|
|
case PWR_RESUME:
|
|
|
|
iwi_resume(sc);
|
|
|
|
break;
|
|
|
|
case PWR_SOFTSUSPEND:
|
|
|
|
case PWR_SOFTSTANDBY:
|
|
|
|
case PWR_SOFTRESUME:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
static int
|
|
|
|
iwi_media_change(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
error = ieee80211_media_change(ifp);
|
|
|
|
if (error != ENETRESET)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
if ((ifp->if_flags & (IFF_UP | IFF_RUNNING)) == (IFF_UP | IFF_RUNNING))
|
|
|
|
iwi_init(ifp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-04 10:58:20 +04:00
|
|
|
/*
|
|
|
|
* The firmware automaticly adapt the transmit speed. We report the current
|
|
|
|
* transmit speed here.
|
|
|
|
*/
|
2005-01-11 21:24:24 +03:00
|
|
|
static void
|
|
|
|
iwi_media_status(struct ifnet *ifp, struct ifmediareq *imr)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = ifp->if_softc;
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
|
|
|
#define N(a) (sizeof (a) / sizeof (a[0]))
|
|
|
|
static const struct {
|
2005-09-17 16:40:27 +04:00
|
|
|
uint32_t val;
|
2005-01-11 21:24:24 +03:00
|
|
|
int rate;
|
|
|
|
} rates[] = {
|
|
|
|
{ IWI_RATE_DS1, 2 },
|
|
|
|
{ IWI_RATE_DS2, 4 },
|
|
|
|
{ IWI_RATE_DS5, 11 },
|
|
|
|
{ IWI_RATE_DS11, 22 },
|
|
|
|
{ IWI_RATE_OFDM6, 12 },
|
|
|
|
{ IWI_RATE_OFDM9, 18 },
|
|
|
|
{ IWI_RATE_OFDM12, 24 },
|
|
|
|
{ IWI_RATE_OFDM18, 36 },
|
|
|
|
{ IWI_RATE_OFDM24, 48 },
|
|
|
|
{ IWI_RATE_OFDM36, 72 },
|
|
|
|
{ IWI_RATE_OFDM48, 96 },
|
|
|
|
{ IWI_RATE_OFDM54, 108 },
|
|
|
|
};
|
2005-09-17 16:40:27 +04:00
|
|
|
uint32_t val;
|
2005-01-11 21:24:24 +03:00
|
|
|
int rate, i;
|
|
|
|
|
|
|
|
imr->ifm_status = IFM_AVALID;
|
|
|
|
imr->ifm_active = IFM_IEEE80211;
|
|
|
|
if (ic->ic_state == IEEE80211_S_RUN)
|
|
|
|
imr->ifm_status |= IFM_ACTIVE;
|
|
|
|
|
|
|
|
/* read current transmission rate from adapter */
|
|
|
|
val = CSR_READ_4(sc, IWI_CSR_CURRENT_TX_RATE);
|
|
|
|
|
|
|
|
/* convert rate to 802.11 rate */
|
|
|
|
for (i = 0; i < N(rates) && rates[i].val != val; i++);
|
|
|
|
rate = (i < N(rates)) ? rates[i].rate : 0;
|
|
|
|
|
|
|
|
imr->ifm_active |= ieee80211_rate2media(ic, rate, ic->ic_curmode);
|
|
|
|
switch (ic->ic_opmode) {
|
|
|
|
case IEEE80211_M_STA:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IEEE80211_M_IBSS:
|
|
|
|
imr->ifm_active |= IFM_IEEE80211_ADHOC;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IEEE80211_M_MONITOR:
|
|
|
|
imr->ifm_active |= IFM_IEEE80211_MONITOR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IEEE80211_M_AHDEMO:
|
|
|
|
case IEEE80211_M_HOSTAP:
|
|
|
|
/* should not get there */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#undef N
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg)
|
|
|
|
{
|
2005-06-22 10:14:51 +04:00
|
|
|
struct iwi_softc *sc = ic->ic_ifp->if_softc;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
switch (nstate) {
|
|
|
|
case IEEE80211_S_SCAN:
|
2005-07-31 01:15:51 +04:00
|
|
|
if (sc->flags & IWI_FLAG_SCANNING)
|
|
|
|
break;
|
|
|
|
|
|
|
|
ieee80211_node_table_reset(&ic->ic_scan);
|
|
|
|
ic->ic_flags |= IEEE80211_F_SCAN | IEEE80211_F_ASCAN;
|
|
|
|
sc->flags |= IWI_FLAG_SCANNING;
|
2005-01-11 21:24:24 +03:00
|
|
|
iwi_scan(sc);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IEEE80211_S_AUTH:
|
|
|
|
iwi_auth_and_assoc(sc);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IEEE80211_S_RUN:
|
|
|
|
if (ic->ic_opmode == IEEE80211_M_IBSS)
|
|
|
|
ieee80211_new_state(ic, IEEE80211_S_AUTH, -1);
|
2005-06-20 13:03:44 +04:00
|
|
|
else if (ic->ic_opmode == IEEE80211_M_MONITOR)
|
|
|
|
iwi_set_chan(sc, ic->ic_ibss_chan);
|
2005-07-31 01:15:51 +04:00
|
|
|
|
|
|
|
return (*sc->sc_newstate)(ic, nstate,
|
|
|
|
IEEE80211_FC0_SUBTYPE_ASSOC_RESP);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
case IEEE80211_S_ASSOC:
|
2005-07-31 01:15:51 +04:00
|
|
|
break;
|
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
case IEEE80211_S_INIT:
|
2005-07-31 01:15:51 +04:00
|
|
|
sc->flags &= ~IWI_FLAG_SCANNING;
|
2005-08-31 01:18:47 +04:00
|
|
|
return (*sc->sc_newstate)(ic, nstate, arg);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ic->ic_state = nstate;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read 16 bits at address 'addr' from the serial EEPROM.
|
|
|
|
*/
|
2005-09-17 16:40:27 +04:00
|
|
|
static uint16_t
|
|
|
|
iwi_read_prom_word(struct iwi_softc *sc, uint8_t addr)
|
2005-01-11 21:24:24 +03:00
|
|
|
{
|
2005-09-17 16:40:27 +04:00
|
|
|
uint32_t tmp;
|
|
|
|
uint16_t val;
|
2005-01-11 21:24:24 +03:00
|
|
|
int n;
|
|
|
|
|
|
|
|
/* Clock C once before the first command */
|
|
|
|
IWI_EEPROM_CTL(sc, 0);
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S);
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S | IWI_EEPROM_C);
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S);
|
|
|
|
|
|
|
|
/* Write start bit (1) */
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S | IWI_EEPROM_D);
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S | IWI_EEPROM_D | IWI_EEPROM_C);
|
|
|
|
|
|
|
|
/* Write READ opcode (10) */
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S | IWI_EEPROM_D);
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S | IWI_EEPROM_D | IWI_EEPROM_C);
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S);
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S | IWI_EEPROM_C);
|
|
|
|
|
|
|
|
/* Write address A7-A0 */
|
|
|
|
for (n = 7; n >= 0; n--) {
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S |
|
|
|
|
(((addr >> n) & 1) << IWI_EEPROM_SHIFT_D));
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S |
|
|
|
|
(((addr >> n) & 1) << IWI_EEPROM_SHIFT_D) | IWI_EEPROM_C);
|
|
|
|
}
|
|
|
|
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S);
|
|
|
|
|
|
|
|
/* Read data Q15-Q0 */
|
|
|
|
val = 0;
|
|
|
|
for (n = 15; n >= 0; n--) {
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S | IWI_EEPROM_C);
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S);
|
|
|
|
tmp = MEM_READ_4(sc, IWI_MEM_EEPROM_CTL);
|
|
|
|
val |= ((tmp & IWI_EEPROM_Q) >> IWI_EEPROM_SHIFT_Q) << n;
|
|
|
|
}
|
|
|
|
|
|
|
|
IWI_EEPROM_CTL(sc, 0);
|
|
|
|
|
|
|
|
/* Clear Chip Select and clock C */
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_S);
|
|
|
|
IWI_EEPROM_CTL(sc, 0);
|
|
|
|
IWI_EEPROM_CTL(sc, IWI_EEPROM_C);
|
|
|
|
|
|
|
|
return be16toh(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX: Hack to set the current channel to the value advertised in beacons or
|
|
|
|
* probe responses. Only used during AP detection.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
iwi_fix_channel(struct ieee80211com *ic, struct mbuf *m)
|
|
|
|
{
|
|
|
|
struct ieee80211_frame *wh;
|
2005-09-17 16:40:27 +04:00
|
|
|
uint8_t subtype;
|
|
|
|
uint8_t *frm, *efrm;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
wh = mtod(m, struct ieee80211_frame *);
|
|
|
|
|
|
|
|
if ((wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) != IEEE80211_FC0_TYPE_MGT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK;
|
|
|
|
|
|
|
|
if (subtype != IEEE80211_FC0_SUBTYPE_BEACON &&
|
|
|
|
subtype != IEEE80211_FC0_SUBTYPE_PROBE_RESP)
|
|
|
|
return;
|
|
|
|
|
2005-09-17 16:40:27 +04:00
|
|
|
frm = (uint8_t *)(wh + 1);
|
|
|
|
efrm = mtod(m, uint8_t *) + m->m_len;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
frm += 12; /* skip tstamp, bintval and capinfo fields */
|
|
|
|
while (frm < efrm) {
|
|
|
|
if (*frm == IEEE80211_ELEMID_DSPARMS)
|
|
|
|
#if IEEE80211_CHAN_MAX < 255
|
|
|
|
if (frm[2] <= IEEE80211_CHAN_MAX)
|
|
|
|
#endif
|
|
|
|
ic->ic_bss->ni_chan = &ic->ic_channels[frm[2]];
|
|
|
|
|
|
|
|
frm += frm[1] + 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-08-19 12:50:06 +04:00
|
|
|
iwi_frame_intr(struct iwi_softc *sc, struct iwi_rx_data *data, int i,
|
2005-01-11 21:24:24 +03:00
|
|
|
struct iwi_frame *frame)
|
|
|
|
{
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
2005-07-31 01:15:51 +04:00
|
|
|
struct ifnet *ifp = ic->ic_ifp;
|
2005-01-11 21:24:24 +03:00
|
|
|
struct mbuf *m;
|
2005-07-31 01:15:51 +04:00
|
|
|
struct ieee80211_frame *wh;
|
2005-01-11 21:24:24 +03:00
|
|
|
struct ieee80211_node *ni;
|
|
|
|
int error;
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
DPRINTFN(5, ("received frame len=%u chan=%u rssi=%u\n",
|
|
|
|
le16toh(frame->len), frame->chan, frame->rssi_dbm));
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
bus_dmamap_sync(sc->sc_dmat, data->map, sizeof (struct iwi_hdr),
|
2005-01-11 21:24:24 +03:00
|
|
|
sizeof (struct iwi_frame) + le16toh(frame->len),
|
|
|
|
BUS_DMASYNC_POSTREAD);
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
if (le16toh(frame->len) < sizeof (struct ieee80211_frame) ||
|
2005-01-11 21:24:24 +03:00
|
|
|
le16toh(frame->len) > MCLBYTES) {
|
2005-08-19 12:50:06 +04:00
|
|
|
DPRINTF(("%s: bad frame length\n", sc->sc_dev.dv_xname));
|
|
|
|
ifp->if_ierrors++;
|
|
|
|
return;
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
bus_dmamap_unload(sc->sc_dmat, data->map);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/* Finalize mbuf */
|
2005-08-19 12:50:06 +04:00
|
|
|
m = data->m;
|
2005-01-11 21:24:24 +03:00
|
|
|
m->m_pkthdr.rcvif = ifp;
|
|
|
|
m->m_pkthdr.len = m->m_len = sizeof (struct iwi_hdr) +
|
|
|
|
sizeof (struct iwi_frame) + le16toh(frame->len);
|
|
|
|
|
|
|
|
m_adj(m, sizeof (struct iwi_hdr) + sizeof (struct iwi_frame));
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
if (ic->ic_state == IEEE80211_S_SCAN)
|
|
|
|
iwi_fix_channel(ic, m);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
#if NBPFILTER > 0
|
|
|
|
if (sc->sc_drvbpf != NULL) {
|
|
|
|
struct iwi_rx_radiotap_header *tap = &sc->sc_rxtap;
|
2005-08-19 12:50:06 +04:00
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
tap->wr_flags = 0;
|
|
|
|
tap->wr_rate = frame->rate;
|
|
|
|
tap->wr_chan_freq =
|
|
|
|
htole16(ic->ic_channels[frame->chan].ic_freq);
|
|
|
|
tap->wr_chan_flags =
|
|
|
|
htole16(ic->ic_channels[frame->chan].ic_flags);
|
|
|
|
tap->wr_antsignal = frame->signal;
|
|
|
|
tap->wr_antenna = frame->antenna;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-09-13 01:11:11 +04:00
|
|
|
bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_rxtap_len, m);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
wh = mtod(m, struct ieee80211_frame *);
|
|
|
|
ni = ieee80211_find_rxnode(ic, (struct ieee80211_frame_min *)wh);
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
/* Send the frame to the upper layer */
|
2005-07-31 01:15:51 +04:00
|
|
|
ieee80211_input(ic, m, ni, frame->rssi_dbm, 0);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
/* node is no longer needed */
|
2005-06-22 10:14:51 +04:00
|
|
|
ieee80211_free_node(ni);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
MGETHDR(data->m, M_DONTWAIT, MT_DATA);
|
|
|
|
if (data->m == NULL) {
|
2005-01-11 21:24:24 +03:00
|
|
|
aprint_error("%s: could not allocate rx mbuf\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
MCLGET(data->m, M_DONTWAIT);
|
|
|
|
if (!(data->m->m_flags & M_EXT)) {
|
2005-01-11 21:24:24 +03:00
|
|
|
aprint_error("%s: could not allocate rx mbuf cluster\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
2005-08-19 12:50:06 +04:00
|
|
|
m_freem(data->m);
|
|
|
|
data->m = NULL;
|
2005-01-11 21:24:24 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
error = bus_dmamap_load(sc->sc_dmat, data->map, mtod(data->m, void *),
|
2005-01-11 21:24:24 +03:00
|
|
|
MCLBYTES, NULL, BUS_DMA_NOWAIT);
|
|
|
|
if (error != 0) {
|
|
|
|
aprint_error("%s: could not load rx buf DMA map\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
2005-08-19 12:50:06 +04:00
|
|
|
m_freem(data->m);
|
|
|
|
data->m = NULL;
|
2005-01-11 21:24:24 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RX_BASE + i * 4, data->map->dm_segs[0].ds_addr);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-09-25 10:49:54 +04:00
|
|
|
iwi_notification_intr(struct iwi_softc *sc, struct iwi_notif *notif)
|
2005-01-11 21:24:24 +03:00
|
|
|
{
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
|
|
|
struct iwi_notif_scan_channel *chan;
|
|
|
|
struct iwi_notif_scan_complete *scan;
|
|
|
|
struct iwi_notif_authentication *auth;
|
|
|
|
struct iwi_notif_association *assoc;
|
|
|
|
|
|
|
|
switch (notif->type) {
|
|
|
|
case IWI_NOTIF_TYPE_SCAN_CHANNEL:
|
|
|
|
chan = (struct iwi_notif_scan_channel *)(notif + 1);
|
|
|
|
|
2005-09-15 23:56:50 +04:00
|
|
|
DPRINTFN(2, ("Finished scanning channel (%u)\n", chan->nchan));
|
2005-01-11 21:24:24 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IWI_NOTIF_TYPE_SCAN_COMPLETE:
|
|
|
|
scan = (struct iwi_notif_scan_complete *)(notif + 1);
|
|
|
|
|
|
|
|
DPRINTFN(2, ("Scan completed (%u, %u)\n", scan->nchan,
|
|
|
|
scan->status));
|
|
|
|
|
2005-06-20 13:03:44 +04:00
|
|
|
/* monitor mode uses scan to set the channel ... */
|
2005-07-31 01:15:51 +04:00
|
|
|
if (ic->ic_opmode != IEEE80211_M_MONITOR) {
|
|
|
|
sc->flags &= ~IWI_FLAG_SCANNING;
|
2005-06-20 13:03:44 +04:00
|
|
|
ieee80211_end_scan(ic);
|
2005-07-31 01:15:51 +04:00
|
|
|
} else
|
2005-06-20 13:03:44 +04:00
|
|
|
iwi_set_chan(sc, ic->ic_ibss_chan);
|
2005-01-11 21:24:24 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case IWI_NOTIF_TYPE_AUTHENTICATION:
|
|
|
|
auth = (struct iwi_notif_authentication *)(notif + 1);
|
|
|
|
|
|
|
|
DPRINTFN(2, ("Authentication (%u)\n", auth->state));
|
|
|
|
|
|
|
|
switch (auth->state) {
|
|
|
|
case IWI_AUTHENTICATED:
|
2005-07-31 01:15:51 +04:00
|
|
|
ieee80211_node_authorize(ic, ic->ic_bss);
|
2005-01-11 21:24:24 +03:00
|
|
|
ieee80211_new_state(ic, IEEE80211_S_ASSOC, -1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IWI_DEAUTHENTICATED:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
aprint_error("%s: unknown authentication state %u\n",
|
|
|
|
sc->sc_dev.dv_xname, auth->state);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IWI_NOTIF_TYPE_ASSOCIATION:
|
|
|
|
assoc = (struct iwi_notif_association *)(notif + 1);
|
|
|
|
|
|
|
|
DPRINTFN(2, ("Association (%u, %u)\n", assoc->state,
|
|
|
|
assoc->status));
|
|
|
|
|
|
|
|
switch (assoc->state) {
|
2005-07-31 01:15:51 +04:00
|
|
|
case IWI_AUTHENTICATED:
|
|
|
|
/* re-association, do nothing */
|
|
|
|
break;
|
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
case IWI_ASSOCIATED:
|
|
|
|
ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IWI_DEASSOCIATED:
|
2005-07-31 01:15:51 +04:00
|
|
|
ieee80211_begin_scan(ic, 1);
|
2005-01-11 21:24:24 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
aprint_error("%s: unknown association state %u\n",
|
|
|
|
sc->sc_dev.dv_xname, assoc->state);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IWI_NOTIF_TYPE_CALIBRATION:
|
|
|
|
case IWI_NOTIF_TYPE_BEACON:
|
|
|
|
case IWI_NOTIF_TYPE_NOISE:
|
|
|
|
DPRINTFN(5, ("Notification (%u)\n", notif->type));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
aprint_error("%s: unknown notification type %u\n",
|
|
|
|
sc->sc_dev.dv_xname, notif->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_rx_intr(struct iwi_softc *sc)
|
|
|
|
{
|
2005-08-19 12:50:06 +04:00
|
|
|
struct iwi_rx_data *data;
|
2005-01-11 21:24:24 +03:00
|
|
|
struct iwi_hdr *hdr;
|
2005-08-19 12:50:06 +04:00
|
|
|
uint32_t hw;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
hw = CSR_READ_4(sc, IWI_CSR_RX_RIDX);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
for (; sc->rxq.cur != hw;) {
|
|
|
|
data = &sc->rxq.data[sc->rxq.cur];
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
bus_dmamap_sync(sc->sc_dmat, data->map, 0,
|
2005-09-25 10:49:54 +04:00
|
|
|
MCLBYTES, BUS_DMASYNC_POSTREAD);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
hdr = mtod(data->m, struct iwi_hdr *);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
switch (hdr->type) {
|
|
|
|
case IWI_HDR_TYPE_FRAME:
|
2005-08-19 12:50:06 +04:00
|
|
|
iwi_frame_intr(sc, data, sc->rxq.cur,
|
2005-01-11 21:24:24 +03:00
|
|
|
(struct iwi_frame *)(hdr + 1));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IWI_HDR_TYPE_NOTIF:
|
2005-09-25 10:49:54 +04:00
|
|
|
iwi_notification_intr(sc,
|
2005-01-11 21:24:24 +03:00
|
|
|
(struct iwi_notif *)(hdr + 1));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
aprint_error("%s: unknown hdr type %u\n",
|
|
|
|
sc->sc_dev.dv_xname, hdr->type);
|
|
|
|
}
|
2005-08-19 12:50:06 +04:00
|
|
|
|
|
|
|
DPRINTFN(15, ("rx done idx=%u\n", sc->rxq.cur));
|
|
|
|
|
|
|
|
sc->rxq.cur = (sc->rxq.cur + 1) % sc->rxq.count;
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
/* Tell the firmware what we have processed */
|
2005-08-19 12:50:06 +04:00
|
|
|
hw = (hw == 0) ? sc->rxq.count - 1 : hw - 1;
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RX_WIDX, hw);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_tx_intr(struct iwi_softc *sc)
|
|
|
|
{
|
2005-06-22 10:14:51 +04:00
|
|
|
struct ifnet *ifp = &sc->sc_if;
|
2005-08-19 12:50:06 +04:00
|
|
|
struct iwi_tx_data *data;
|
2005-09-17 16:40:27 +04:00
|
|
|
uint32_t hw;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
hw = CSR_READ_4(sc, IWI_CSR_TX1_RIDX);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
for (; sc->txq.next != hw;) {
|
|
|
|
data = &sc->txq.data[sc->txq.next];
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
bus_dmamap_sync(sc->sc_dmat, data->map, 0,
|
|
|
|
MCLBYTES, BUS_DMASYNC_POSTWRITE);
|
|
|
|
bus_dmamap_unload(sc->sc_dmat, data->map);
|
|
|
|
m_freem(data->m);
|
|
|
|
data->m = NULL;
|
|
|
|
ieee80211_free_node(data->ni);
|
|
|
|
data->ni = NULL;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
DPRINTFN(15, ("tx done idx=%u\n", sc->txq.next));
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
ifp->if_opackets++;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
sc->txq.queued--;
|
|
|
|
sc->txq.next = (sc->txq.next + 1) % sc->txq.count;
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
sc->sc_tx_timer = 0;
|
|
|
|
ifp->if_flags &= ~IFF_OACTIVE;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/* Call start() since some buffer descriptors have been released */
|
|
|
|
(*ifp->if_start)(ifp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_intr(void *arg)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = arg;
|
2005-09-17 16:40:27 +04:00
|
|
|
uint32_t r;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
if ((r = CSR_READ_4(sc, IWI_CSR_INTR)) == 0 || r == 0xffffffff)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Disable interrupts */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_INTR_MASK, 0);
|
|
|
|
|
|
|
|
if (r & (IWI_INTR_FATAL_ERROR | IWI_INTR_PARITY_ERROR)) {
|
|
|
|
aprint_error("%s: fatal error\n", sc->sc_dev.dv_xname);
|
2005-08-01 19:14:54 +04:00
|
|
|
sc->sc_ic.ic_ifp->if_flags &= ~IFF_UP;
|
2005-06-22 10:14:51 +04:00
|
|
|
iwi_stop(&sc->sc_if, 1);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (r & IWI_INTR_FW_INITED) {
|
|
|
|
if (!(r & (IWI_INTR_FATAL_ERROR | IWI_INTR_PARITY_ERROR)))
|
|
|
|
wakeup(sc);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r & IWI_INTR_RADIO_OFF) {
|
|
|
|
DPRINTF(("radio transmitter off\n"));
|
2005-08-01 19:14:54 +04:00
|
|
|
sc->sc_ic.ic_ifp->if_flags &= ~IFF_UP;
|
2005-06-22 10:14:51 +04:00
|
|
|
iwi_stop(&sc->sc_if, 1);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
if (r & IWI_INTR_RX_DONE)
|
2005-01-11 21:24:24 +03:00
|
|
|
iwi_rx_intr(sc);
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
if (r & IWI_INTR_CMD_DONE)
|
2005-01-11 21:24:24 +03:00
|
|
|
wakeup(sc);
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
if (r & IWI_INTR_TX1_DONE)
|
2005-01-11 21:24:24 +03:00
|
|
|
iwi_tx_intr(sc);
|
|
|
|
|
|
|
|
/* Acknowledge interrupts */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_INTR, r);
|
|
|
|
|
|
|
|
/* Re-enable interrupts */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_INTR_MASK, IWI_INTR_MASK);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2005-09-17 16:40:27 +04:00
|
|
|
iwi_cmd(struct iwi_softc *sc, uint8_t type, void *data, uint8_t len,
|
2005-01-11 21:24:24 +03:00
|
|
|
int async)
|
|
|
|
{
|
|
|
|
struct iwi_cmd_desc *desc;
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
desc = &sc->cmdq.desc[sc->cmdq.cur];
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
desc->hdr.type = IWI_HDR_TYPE_COMMAND;
|
|
|
|
desc->hdr.flags = IWI_HDR_FLAG_IRQ;
|
|
|
|
desc->type = type;
|
|
|
|
desc->len = len;
|
|
|
|
memcpy(desc->data, data, len);
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
bus_dmamap_sync(sc->sc_dmat, sc->cmdq.desc_map,
|
2005-09-25 10:49:54 +04:00
|
|
|
sc->cmdq.cur * IWI_CMD_DESC_SIZE,
|
|
|
|
IWI_CMD_DESC_SIZE, BUS_DMASYNC_PREWRITE);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-09-25 10:49:54 +04:00
|
|
|
DPRINTFN(2, ("sending command idx=%u type=%u len=%u\n", sc->cmdq.cur,
|
2005-08-19 12:50:06 +04:00
|
|
|
type, len));
|
|
|
|
|
|
|
|
sc->cmdq.cur = (sc->cmdq.cur + 1) % sc->cmdq.count;
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_CMD_WIDX, sc->cmdq.cur);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
return async ? 0 : tsleep(sc, 0, "iwicmd", hz);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_tx_start(struct ifnet *ifp, struct mbuf *m0, struct ieee80211_node *ni)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = ifp->if_softc;
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
2005-07-31 01:15:51 +04:00
|
|
|
struct ieee80211_frame wh;
|
|
|
|
struct ieee80211_key *k;
|
2005-08-19 12:50:06 +04:00
|
|
|
struct iwi_tx_data *data;
|
2005-01-11 21:24:24 +03:00
|
|
|
struct iwi_tx_desc *desc;
|
|
|
|
struct mbuf *mnew;
|
|
|
|
int error, i;
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
(void)memcpy(&wh, mtod(m0, struct ieee80211_frame *), sizeof(wh));
|
|
|
|
if (wh.i_fc[1] & IEEE80211_FC1_WEP) {
|
|
|
|
k = ieee80211_crypto_encap(ic, ni, m0);
|
|
|
|
if (k == NULL) {
|
|
|
|
m_freem(m0);
|
|
|
|
return ENOBUFS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
#if NBPFILTER > 0
|
|
|
|
if (sc->sc_drvbpf != NULL) {
|
|
|
|
struct iwi_tx_radiotap_header *tap = &sc->sc_txtap;
|
|
|
|
|
|
|
|
tap->wt_flags = 0;
|
2005-07-31 01:15:51 +04:00
|
|
|
tap->wt_chan_freq = htole16(ic->ic_ibss_chan->ic_freq);
|
|
|
|
tap->wt_chan_flags = htole16(ic->ic_ibss_chan->ic_flags);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
bpf_mtap2(sc->sc_drvbpf, tap, sc->sc_txtap_len, m0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
data = &sc->txq.data[sc->txq.cur];
|
|
|
|
desc = &sc->txq.desc[sc->txq.cur];
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/* trim IEEE802.11 header */
|
|
|
|
m_adj(m0, sizeof (struct ieee80211_frame));
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
error = bus_dmamap_load_mbuf(sc->sc_dmat, data->map, m0, BUS_DMA_NOWAIT);
|
2005-01-11 21:24:24 +03:00
|
|
|
if (error != 0 && error != EFBIG) {
|
|
|
|
aprint_error("%s: could not map mbuf (error %d)\n",
|
|
|
|
sc->sc_dev.dv_xname, error);
|
|
|
|
m_freem(m0);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
if (error != 0) {
|
|
|
|
/* too many fragments, linearize */
|
|
|
|
|
|
|
|
MGETHDR(mnew, M_DONTWAIT, MT_DATA);
|
|
|
|
if (mnew == NULL) {
|
|
|
|
m_freem(m0);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
M_COPY_PKTHDR(mnew, m0);
|
|
|
|
MCLGET(mnew, M_DONTWAIT);
|
|
|
|
if (!(mnew->m_flags & M_EXT)) {
|
|
|
|
m_freem(m0);
|
|
|
|
m_freem(mnew);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_copydata(m0, 0, m0->m_pkthdr.len, mtod(mnew, caddr_t));
|
|
|
|
m_freem(m0);
|
|
|
|
mnew->m_len = mnew->m_pkthdr.len;
|
|
|
|
m0 = mnew;
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
error = bus_dmamap_load_mbuf(sc->sc_dmat, data->map, m0,
|
2005-01-11 21:24:24 +03:00
|
|
|
BUS_DMA_NOWAIT);
|
|
|
|
if (error != 0) {
|
|
|
|
aprint_error("%s: could not map mbuf (error %d)\n",
|
|
|
|
sc->sc_dev.dv_xname, error);
|
|
|
|
m_freem(m0);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
data->m = m0;
|
|
|
|
data->ni = ni;
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
desc->hdr.type = IWI_HDR_TYPE_DATA;
|
|
|
|
desc->hdr.flags = IWI_HDR_FLAG_IRQ;
|
|
|
|
desc->cmd = IWI_DATA_CMD_TX;
|
|
|
|
desc->len = htole16(m0->m_pkthdr.len);
|
2005-07-31 01:15:51 +04:00
|
|
|
(void)memcpy(&desc->wh, &wh, sizeof (struct ieee80211_frame));
|
2005-01-11 21:24:24 +03:00
|
|
|
desc->flags = 0;
|
2005-07-31 01:15:51 +04:00
|
|
|
if (!IEEE80211_IS_MULTICAST(wh.i_addr1))
|
2005-01-11 21:24:24 +03:00
|
|
|
desc->flags |= IWI_DATA_FLAG_NEED_ACK;
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
#if 0
|
2005-01-11 21:24:24 +03:00
|
|
|
if (ic->ic_flags & IEEE80211_F_PRIVACY) {
|
2005-07-31 01:15:51 +04:00
|
|
|
wh.i_fc[1] |= IEEE80211_FC1_WEP;
|
|
|
|
desc->wep_txkey = ic->ic_crypto.cs_def_txkey;
|
2005-01-11 21:24:24 +03:00
|
|
|
} else
|
2005-07-31 01:15:51 +04:00
|
|
|
#endif
|
2005-01-11 21:24:24 +03:00
|
|
|
desc->flags |= IWI_DATA_FLAG_NO_WEP;
|
|
|
|
|
|
|
|
if (ic->ic_flags & IEEE80211_F_SHPREAMBLE)
|
|
|
|
desc->flags |= IWI_DATA_FLAG_SHPREAMBLE;
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
desc->nseg = htole32(data->map->dm_nsegs);
|
|
|
|
for (i = 0; i < data->map->dm_nsegs; i++) {
|
|
|
|
desc->seg_addr[i] = htole32(data->map->dm_segs[i].ds_addr);
|
|
|
|
desc->seg_len[i] = htole32(data->map->dm_segs[i].ds_len);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
bus_dmamap_sync(sc->sc_dmat, sc->txq.desc_map,
|
2005-09-25 10:49:54 +04:00
|
|
|
sc->txq.cur * IWI_TX_DESC_SIZE,
|
|
|
|
IWI_TX_DESC_SIZE, BUS_DMASYNC_PREWRITE);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
bus_dmamap_sync(sc->sc_dmat, data->map, 0, MCLBYTES,
|
2005-01-11 21:24:24 +03:00
|
|
|
BUS_DMASYNC_PREWRITE);
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
DPRINTFN(5, ("sending data frame len=%u nseg=%u\n",
|
|
|
|
desc->len, desc->nseg));
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/* Inform firmware about this new packet */
|
2005-08-19 12:50:06 +04:00
|
|
|
sc->txq.queued++;
|
|
|
|
sc->txq.cur = (sc->txq.cur + 1) % sc->txq.count;
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX1_WIDX, sc->txq.cur);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_start(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = ifp->if_softc;
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
|
|
|
struct mbuf *m0;
|
2005-07-31 01:15:51 +04:00
|
|
|
struct ether_header *eh;
|
2005-01-11 21:24:24 +03:00
|
|
|
struct ieee80211_node *ni;
|
|
|
|
|
|
|
|
if (ic->ic_state != IEEE80211_S_RUN)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
IF_DEQUEUE(&ifp->if_snd, m0);
|
|
|
|
if (m0 == NULL)
|
|
|
|
break;
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
if (sc->txq.queued >= sc->txq.count - 4) {
|
2005-01-11 21:24:24 +03:00
|
|
|
IF_PREPEND(&ifp->if_snd, m0);
|
|
|
|
ifp->if_flags |= IFF_OACTIVE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
if (m0->m_len < sizeof (struct ether_header) &&
|
|
|
|
(m0 = m_pullup(m0, sizeof (struct ether_header))) == NULL)
|
2005-09-25 10:49:54 +04:00
|
|
|
continue;
|
2005-08-19 12:50:06 +04:00
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
#if NBPFILTER > 0
|
|
|
|
if (ifp->if_bpf != NULL)
|
|
|
|
bpf_mtap(ifp->if_bpf, m0);
|
|
|
|
#endif
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
eh = mtod(m0, struct ether_header *);
|
|
|
|
ni = ieee80211_find_txnode(ic, eh->ether_dhost);
|
|
|
|
if (ni == NULL) {
|
2005-06-22 10:14:51 +04:00
|
|
|
m_freem(m0);
|
|
|
|
continue;
|
|
|
|
}
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
m0 = ieee80211_encap(ic, m0, ni);
|
|
|
|
if (m0 == NULL) {
|
|
|
|
ieee80211_free_node(ni);
|
|
|
|
continue;
|
|
|
|
}
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-09-25 10:49:54 +04:00
|
|
|
#if NBPFILTER > 0
|
|
|
|
if (ic->ic_rawbpf != NULL)
|
|
|
|
bpf_mtap(ic->ic_rawbpf, m0);
|
|
|
|
#endif
|
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
if (iwi_tx_start(ifp, m0, ni) != 0) {
|
2005-07-31 01:15:51 +04:00
|
|
|
ieee80211_free_node(ni);
|
|
|
|
ifp->if_oerrors++;
|
2005-01-11 21:24:24 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* start watchdog timer */
|
|
|
|
sc->sc_tx_timer = 5;
|
|
|
|
ifp->if_timer = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_watchdog(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = ifp->if_softc;
|
|
|
|
|
|
|
|
ifp->if_timer = 0;
|
|
|
|
|
|
|
|
if (sc->sc_tx_timer > 0) {
|
|
|
|
if (--sc->sc_tx_timer == 0) {
|
|
|
|
aprint_error("%s: device timeout\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
2005-07-31 01:15:51 +04:00
|
|
|
ifp->if_oerrors++;
|
|
|
|
ifp->if_flags &= ~IFF_UP;
|
2005-01-11 21:24:24 +03:00
|
|
|
iwi_stop(ifp, 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ifp->if_timer = 1;
|
|
|
|
}
|
|
|
|
|
2005-06-22 10:14:51 +04:00
|
|
|
ieee80211_watchdog(&sc->sc_ic);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2005-09-17 16:40:27 +04:00
|
|
|
iwi_get_table0(struct iwi_softc *sc, uint32_t *tbl)
|
2005-01-11 21:24:24 +03:00
|
|
|
{
|
2005-09-17 16:40:27 +04:00
|
|
|
uint32_t size, buf[128];
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
if (!(sc->flags & IWI_FLAG_FW_INITED)) {
|
|
|
|
memset(buf, 0, sizeof buf);
|
|
|
|
return copyout(buf, tbl, sizeof buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
size = min(CSR_READ_4(sc, IWI_CSR_TABLE0_SIZE), 128 - 1);
|
|
|
|
CSR_READ_REGION_4(sc, IWI_CSR_TABLE0_BASE, &buf[1], size);
|
|
|
|
|
|
|
|
return copyout(buf, tbl, sizeof buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_get_radio(struct iwi_softc *sc, int *ret)
|
|
|
|
{
|
|
|
|
int val;
|
|
|
|
|
|
|
|
val = (CSR_READ_4(sc, IWI_CSR_IO) & IWI_IO_RADIO_ENABLED) ? 1 : 0;
|
|
|
|
return copyout(&val, ret, sizeof val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = ifp->if_softc;
|
|
|
|
struct ifreq *ifr;
|
|
|
|
int s, error = 0;
|
|
|
|
|
|
|
|
s = splnet();
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case SIOCSIFFLAGS:
|
|
|
|
if (ifp->if_flags & IFF_UP) {
|
|
|
|
if (!(ifp->if_flags & IFF_RUNNING))
|
|
|
|
iwi_init(ifp);
|
|
|
|
} else {
|
|
|
|
if (ifp->if_flags & IFF_RUNNING)
|
|
|
|
iwi_stop(ifp, 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SIOCGTABLE0:
|
|
|
|
ifr = (struct ifreq *)data;
|
2005-09-17 16:40:27 +04:00
|
|
|
error = iwi_get_table0(sc, (uint32_t *)ifr->ifr_data);
|
2005-01-11 21:24:24 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SIOCGRADIO:
|
|
|
|
ifr = (struct ifreq *)data;
|
|
|
|
error = iwi_get_radio(sc, (int *)ifr->ifr_data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SIOCSLOADFW:
|
|
|
|
/* only super-user can do that! */
|
|
|
|
if ((error = suser(curproc->p_ucred, &curproc->p_acflag)) != 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
ifr = (struct ifreq *)data;
|
|
|
|
error = iwi_cache_firmware(sc, ifr->ifr_data);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SIOCSKILLFW:
|
|
|
|
/* only super-user can do that! */
|
|
|
|
if ((error = suser(curproc->p_ucred, &curproc->p_acflag)) != 0)
|
|
|
|
break;
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
ifp->if_flags &= ~IFF_UP;
|
2005-01-11 21:24:24 +03:00
|
|
|
iwi_stop(ifp, 1);
|
|
|
|
iwi_free_firmware(sc);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2005-06-22 10:14:51 +04:00
|
|
|
error = ieee80211_ioctl(&sc->sc_ic, cmd, data);
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (error == ENETRESET && cmd != SIOCADDMULTI) {
|
|
|
|
if ((ifp->if_flags & (IFF_UP | IFF_RUNNING)) ==
|
|
|
|
(IFF_UP | IFF_RUNNING))
|
|
|
|
iwi_init(ifp);
|
|
|
|
error = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
splx(s);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_stop_master(struct iwi_softc *sc)
|
|
|
|
{
|
|
|
|
int ntries;
|
|
|
|
|
|
|
|
/* Disable interrupts */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_INTR_MASK, 0);
|
|
|
|
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RST, IWI_RST_STOP_MASTER);
|
|
|
|
for (ntries = 0; ntries < 5; ntries++) {
|
|
|
|
if (CSR_READ_4(sc, IWI_CSR_RST) & IWI_RST_MASTER_DISABLED)
|
|
|
|
break;
|
|
|
|
DELAY(10);
|
|
|
|
}
|
|
|
|
if (ntries == 5)
|
|
|
|
aprint_error("%s: timeout waiting for master\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RST, CSR_READ_4(sc, IWI_CSR_RST) |
|
|
|
|
IWI_RST_PRINCETON_RESET);
|
|
|
|
|
|
|
|
sc->flags &= ~IWI_FLAG_FW_INITED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_reset(struct iwi_softc *sc)
|
|
|
|
{
|
|
|
|
int i, ntries;
|
|
|
|
|
|
|
|
iwi_stop_master(sc);
|
|
|
|
|
|
|
|
/* Move adapter to D0 state */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_CTL, CSR_READ_4(sc, IWI_CSR_CTL) |
|
|
|
|
IWI_CTL_INIT);
|
|
|
|
|
|
|
|
/* Initialize Phase-Locked Level (PLL) */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_READ_INT, IWI_READ_INT_INIT_HOST);
|
|
|
|
|
|
|
|
/* Wait for clock stabilization */
|
|
|
|
for (ntries = 0; ntries < 1000; ntries++) {
|
|
|
|
if (CSR_READ_4(sc, IWI_CSR_CTL) & IWI_CTL_CLOCK_READY)
|
|
|
|
break;
|
|
|
|
DELAY(200);
|
|
|
|
}
|
2005-09-25 10:49:54 +04:00
|
|
|
if (ntries == 1000) {
|
|
|
|
aprint_error("%s: timeout waiting for clock stabilization\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
2005-01-11 21:24:24 +03:00
|
|
|
return EIO;
|
2005-09-25 10:49:54 +04:00
|
|
|
}
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RST, CSR_READ_4(sc, IWI_CSR_RST) |
|
|
|
|
IWI_RST_SW_RESET);
|
|
|
|
|
|
|
|
DELAY(10);
|
|
|
|
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_CTL, CSR_READ_4(sc, IWI_CSR_CTL) |
|
|
|
|
IWI_CTL_INIT);
|
|
|
|
|
|
|
|
/* Clear NIC memory */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_AUTOINC_ADDR, 0);
|
|
|
|
for (i = 0; i < 0xc000; i++)
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_AUTOINC_DATA, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_load_ucode(struct iwi_softc *sc, void *uc, int size)
|
|
|
|
{
|
2005-09-17 16:40:27 +04:00
|
|
|
uint16_t *w;
|
2005-01-11 21:24:24 +03:00
|
|
|
int ntries, i;
|
|
|
|
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RST, CSR_READ_4(sc, IWI_CSR_RST) |
|
|
|
|
IWI_RST_STOP_MASTER);
|
|
|
|
for (ntries = 0; ntries < 5; ntries++) {
|
|
|
|
if (CSR_READ_4(sc, IWI_CSR_RST) & IWI_RST_MASTER_DISABLED)
|
|
|
|
break;
|
|
|
|
DELAY(10);
|
|
|
|
}
|
|
|
|
if (ntries == 5) {
|
|
|
|
aprint_error("%s: timeout waiting for master\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
MEM_WRITE_4(sc, 0x3000e0, 0x80000000);
|
|
|
|
DELAY(5000);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RST, CSR_READ_4(sc, IWI_CSR_RST) &
|
|
|
|
~IWI_RST_PRINCETON_RESET);
|
|
|
|
DELAY(5000);
|
|
|
|
MEM_WRITE_4(sc, 0x3000e0, 0);
|
|
|
|
DELAY(1000);
|
|
|
|
MEM_WRITE_4(sc, 0x300004, 1);
|
|
|
|
DELAY(1000);
|
|
|
|
MEM_WRITE_4(sc, 0x300004, 0);
|
|
|
|
DELAY(1000);
|
|
|
|
MEM_WRITE_1(sc, 0x200000, 0x00);
|
|
|
|
MEM_WRITE_1(sc, 0x200000, 0x40);
|
2005-08-19 12:50:06 +04:00
|
|
|
DELAY(1000);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
/* Adapter is buggy, we must set the address for each word */
|
|
|
|
for (w = uc; size > 0; w++, size -= 2)
|
|
|
|
MEM_WRITE_2(sc, 0x200010, *w);
|
|
|
|
|
|
|
|
MEM_WRITE_1(sc, 0x200000, 0x00);
|
|
|
|
MEM_WRITE_1(sc, 0x200000, 0x80);
|
|
|
|
|
|
|
|
/* Wait until we get a response in the uc queue */
|
|
|
|
for (ntries = 0; ntries < 100; ntries++) {
|
|
|
|
if (MEM_READ_1(sc, 0x200000) & 1)
|
|
|
|
break;
|
|
|
|
DELAY(100);
|
|
|
|
}
|
|
|
|
if (ntries == 100) {
|
|
|
|
aprint_error("%s: timeout waiting for ucode to initialize\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Empty the uc queue or the firmware will not initialize properly */
|
|
|
|
for (i = 0; i < 7; i++)
|
|
|
|
MEM_READ_4(sc, 0x200004);
|
|
|
|
|
|
|
|
MEM_WRITE_1(sc, 0x200000, 0x00);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* macro to handle unaligned little endian data in firmware image */
|
|
|
|
#define GETLE32(p) ((p)[0] | (p)[1] << 8 | (p)[2] << 16 | (p)[3] << 24)
|
|
|
|
static int
|
|
|
|
iwi_load_firmware(struct iwi_softc *sc, void *fw, int size)
|
|
|
|
{
|
|
|
|
bus_dmamap_t map;
|
|
|
|
bus_dma_segment_t seg;
|
|
|
|
caddr_t virtaddr;
|
|
|
|
u_char *p, *end;
|
2005-09-17 16:40:27 +04:00
|
|
|
uint32_t sentinel, ctl, src, dst, sum, len, mlen;
|
2005-01-11 21:24:24 +03:00
|
|
|
int ntries, nsegs, error;
|
|
|
|
|
|
|
|
/* Allocate DMA memory for storing firmware image */
|
|
|
|
error = bus_dmamap_create(sc->sc_dmat, size, 1, size, 0,
|
|
|
|
BUS_DMA_NOWAIT, &map);
|
|
|
|
if (error != 0) {
|
|
|
|
aprint_error("%s: could not create firmware DMA map\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We cannot map fw directly because of some hardware constraints on
|
|
|
|
* the mapping address.
|
|
|
|
*/
|
|
|
|
error = bus_dmamem_alloc(sc->sc_dmat, size, PAGE_SIZE, 0, &seg, 1,
|
|
|
|
&nsegs, BUS_DMA_NOWAIT);
|
|
|
|
if (error != 0) {
|
2005-04-13 04:19:44 +04:00
|
|
|
aprint_error("%s: could not allocate firmware DMA memory\n",
|
2005-01-11 21:24:24 +03:00
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail2;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = bus_dmamem_map(sc->sc_dmat, &seg, nsegs, size, &virtaddr,
|
|
|
|
BUS_DMA_NOWAIT);
|
|
|
|
if (error != 0) {
|
|
|
|
aprint_error("%s: could not load firmware DMA map\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail3;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = bus_dmamap_load(sc->sc_dmat, map, virtaddr, size, NULL,
|
|
|
|
BUS_DMA_NOWAIT);
|
|
|
|
if (error != 0) {
|
|
|
|
aprint_error("%s: could not load fw dma map\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail4;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy firmware image to DMA memory */
|
|
|
|
memcpy(virtaddr, fw, size);
|
|
|
|
|
|
|
|
/* Make sure the adapter will get up-to-date values */
|
|
|
|
bus_dmamap_sync(sc->sc_dmat, map, 0, size, BUS_DMASYNC_PREWRITE);
|
|
|
|
|
|
|
|
/* Tell the adapter where the command blocks are stored */
|
|
|
|
MEM_WRITE_4(sc, 0x3000a0, 0x27000);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Store command blocks into adapter's internal memory using register
|
|
|
|
* indirections. The adapter will read the firmware image through DMA
|
|
|
|
* using information stored in command blocks.
|
|
|
|
*/
|
|
|
|
src = map->dm_segs[0].ds_addr;
|
|
|
|
p = virtaddr;
|
|
|
|
end = p + size;
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_AUTOINC_ADDR, 0x27000);
|
|
|
|
|
|
|
|
while (p < end) {
|
|
|
|
dst = GETLE32(p); p += 4; src += 4;
|
|
|
|
len = GETLE32(p); p += 4; src += 4;
|
|
|
|
p += len;
|
|
|
|
|
|
|
|
while (len > 0) {
|
|
|
|
mlen = min(len, IWI_CB_MAXDATALEN);
|
|
|
|
|
|
|
|
ctl = IWI_CB_DEFAULT_CTL | mlen;
|
|
|
|
sum = ctl ^ src ^ dst;
|
|
|
|
|
|
|
|
/* Write a command block */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_AUTOINC_DATA, ctl);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_AUTOINC_DATA, src);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_AUTOINC_DATA, dst);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_AUTOINC_DATA, sum);
|
|
|
|
|
|
|
|
src += mlen;
|
|
|
|
dst += mlen;
|
|
|
|
len -= mlen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write a fictive final command block (sentinel) */
|
|
|
|
sentinel = CSR_READ_4(sc, IWI_CSR_AUTOINC_ADDR);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_AUTOINC_DATA, 0);
|
|
|
|
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RST, CSR_READ_4(sc, IWI_CSR_RST) &
|
|
|
|
~(IWI_RST_MASTER_DISABLED | IWI_RST_STOP_MASTER));
|
|
|
|
|
|
|
|
/* Tell the adapter to start processing command blocks */
|
|
|
|
MEM_WRITE_4(sc, 0x3000a4, 0x540100);
|
|
|
|
|
|
|
|
/* Wait until the adapter has processed all command blocks */
|
|
|
|
for (ntries = 0; ntries < 400; ntries++) {
|
|
|
|
if (MEM_READ_4(sc, 0x3000d0) >= sentinel)
|
|
|
|
break;
|
|
|
|
DELAY(100);
|
|
|
|
}
|
|
|
|
if (ntries == 400) {
|
|
|
|
aprint_error("%s: timeout processing cb\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
error = EIO;
|
|
|
|
goto fail5;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We're done with command blocks processing */
|
|
|
|
MEM_WRITE_4(sc, 0x3000a4, 0x540c00);
|
|
|
|
|
|
|
|
/* Allow interrupts so we know when the firmware is inited */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_INTR_MASK, IWI_INTR_MASK);
|
|
|
|
|
|
|
|
/* Tell the adapter to initialize the firmware */
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RST, 0);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_CTL, CSR_READ_4(sc, IWI_CSR_CTL) |
|
|
|
|
IWI_CTL_ALLOW_STANDBY);
|
|
|
|
|
|
|
|
/* Wait at most one second for firmware initialization to complete */
|
|
|
|
if ((error = tsleep(sc, 0, "iwiinit", hz)) != 0) {
|
|
|
|
aprint_error("%s: timeout waiting for firmware initialization "
|
|
|
|
"to complete\n", sc->sc_dev.dv_xname);
|
|
|
|
goto fail5;
|
|
|
|
}
|
|
|
|
|
|
|
|
fail5: bus_dmamap_sync(sc->sc_dmat, map, 0, size, BUS_DMASYNC_POSTWRITE);
|
|
|
|
bus_dmamap_unload(sc->sc_dmat, map);
|
|
|
|
fail4: bus_dmamem_unmap(sc->sc_dmat, virtaddr, size);
|
|
|
|
fail3: bus_dmamem_free(sc->sc_dmat, &seg, 1);
|
|
|
|
fail2: bus_dmamap_destroy(sc->sc_dmat, map);
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
fail1: return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Store firmware into kernel memory so we can download it when we need to,
|
|
|
|
* e.g when the adapter wakes up from suspend mode.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
iwi_cache_firmware(struct iwi_softc *sc, void *data)
|
|
|
|
{
|
|
|
|
struct iwi_firmware *kfw = &sc->fw;
|
|
|
|
struct iwi_firmware ufw;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
iwi_free_firmware(sc);
|
|
|
|
|
|
|
|
if ((error = copyin(data, &ufw, sizeof ufw)) != 0)
|
|
|
|
goto fail1;
|
|
|
|
|
|
|
|
kfw->boot_size = ufw.boot_size;
|
|
|
|
kfw->ucode_size = ufw.ucode_size;
|
|
|
|
kfw->main_size = ufw.main_size;
|
|
|
|
|
|
|
|
kfw->boot = malloc(kfw->boot_size, M_DEVBUF, M_NOWAIT);
|
|
|
|
if (kfw->boot == NULL) {
|
|
|
|
error = ENOMEM;
|
|
|
|
goto fail1;
|
|
|
|
}
|
|
|
|
|
|
|
|
kfw->ucode = malloc(kfw->ucode_size, M_DEVBUF, M_NOWAIT);
|
|
|
|
if (kfw->ucode == NULL) {
|
|
|
|
error = ENOMEM;
|
|
|
|
goto fail2;
|
|
|
|
}
|
|
|
|
|
|
|
|
kfw->main = malloc(kfw->main_size, M_DEVBUF, M_NOWAIT);
|
|
|
|
if (kfw->main == NULL) {
|
|
|
|
error = ENOMEM;
|
|
|
|
goto fail3;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = copyin(ufw.boot, kfw->boot, kfw->boot_size)) != 0)
|
|
|
|
goto fail4;
|
|
|
|
|
|
|
|
if ((error = copyin(ufw.ucode, kfw->ucode, kfw->ucode_size)) != 0)
|
|
|
|
goto fail4;
|
|
|
|
|
|
|
|
if ((error = copyin(ufw.main, kfw->main, kfw->main_size)) != 0)
|
|
|
|
goto fail4;
|
|
|
|
|
|
|
|
DPRINTF(("Firmware cached: boot %u, ucode %u, main %u\n",
|
|
|
|
kfw->boot_size, kfw->ucode_size, kfw->main_size));
|
|
|
|
|
|
|
|
sc->flags |= IWI_FLAG_FW_CACHED;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail4: free(kfw->boot, M_DEVBUF);
|
|
|
|
fail3: free(kfw->ucode, M_DEVBUF);
|
|
|
|
fail2: free(kfw->main, M_DEVBUF);
|
|
|
|
fail1:
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_free_firmware(struct iwi_softc *sc)
|
|
|
|
{
|
|
|
|
if (!(sc->flags & IWI_FLAG_FW_CACHED))
|
|
|
|
return;
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
free(sc->fw.boot, M_DEVBUF);
|
|
|
|
free(sc->fw.ucode, M_DEVBUF);
|
|
|
|
free(sc->fw.main, M_DEVBUF);
|
|
|
|
|
|
|
|
sc->flags &= ~IWI_FLAG_FW_CACHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_config(struct iwi_softc *sc)
|
|
|
|
{
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
2005-06-22 10:14:51 +04:00
|
|
|
struct ifnet *ifp = &sc->sc_if;
|
2005-01-11 21:24:24 +03:00
|
|
|
struct iwi_configuration config;
|
|
|
|
struct iwi_rateset rs;
|
|
|
|
struct iwi_txpower power;
|
2005-07-31 01:15:51 +04:00
|
|
|
struct ieee80211_key *wk;
|
2005-01-11 21:24:24 +03:00
|
|
|
struct iwi_wep_key wepkey;
|
2005-09-17 16:40:27 +04:00
|
|
|
uint32_t data;
|
2005-01-11 21:24:24 +03:00
|
|
|
int error, i;
|
|
|
|
|
|
|
|
IEEE80211_ADDR_COPY(ic->ic_myaddr, LLADDR(ifp->if_sadl));
|
|
|
|
DPRINTF(("Setting MAC address to %s\n", ether_sprintf(ic->ic_myaddr)));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_MAC_ADDRESS, ic->ic_myaddr,
|
|
|
|
IEEE80211_ADDR_LEN, 0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
memset(&config, 0, sizeof config);
|
2005-07-31 01:15:51 +04:00
|
|
|
config.bluetooth_coexistence = sc->bluetooth;
|
|
|
|
config.antenna = sc->antenna;
|
2005-01-11 21:24:24 +03:00
|
|
|
config.multicast_enabled = 1;
|
2005-07-31 01:15:51 +04:00
|
|
|
config.answer_pbreq = (ic->ic_opmode == IEEE80211_M_IBSS) ? 1 : 0;
|
|
|
|
config.disable_unicast_decryption = 1;
|
|
|
|
config.disable_multicast_decryption = 1;
|
2005-01-11 21:24:24 +03:00
|
|
|
DPRINTF(("Configuring adapter\n"));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_CONFIGURATION, &config, sizeof config,
|
|
|
|
0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
data = htole32(IWI_POWER_MODE_CAM);
|
|
|
|
DPRINTF(("Setting power mode to %u\n", le32toh(data)));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_POWER_MODE, &data, sizeof data, 0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
data = htole32(ic->ic_rtsthreshold);
|
|
|
|
DPRINTF(("Setting RTS threshold to %u\n", le32toh(data)));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_RTS_THRESHOLD, &data, sizeof data, 0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
data = htole32(ic->ic_fragthreshold);
|
|
|
|
DPRINTF(("Setting fragmentation threshold to %u\n", le32toh(data)));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_FRAG_THRESHOLD, &data, sizeof data, 0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
if (ic->ic_opmode == IEEE80211_M_IBSS) {
|
|
|
|
power.mode = IWI_MODE_11B;
|
|
|
|
power.nchan = 11;
|
|
|
|
for (i = 0; i < 11; i++) {
|
|
|
|
power.chan[i].chan = i + 1;
|
|
|
|
power.chan[i].power = IWI_TXPOWER_MAX;
|
|
|
|
}
|
|
|
|
DPRINTF(("Setting .11b channels tx power\n"));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_TX_POWER, &power, sizeof power,
|
|
|
|
0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
power.mode = IWI_MODE_11G;
|
|
|
|
DPRINTF(("Setting .11g channels tx power\n"));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_TX_POWER, &power, sizeof power,
|
|
|
|
0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
rs.mode = IWI_MODE_11G;
|
|
|
|
rs.type = IWI_RATESET_TYPE_SUPPORTED;
|
|
|
|
rs.nrates = ic->ic_sup_rates[IEEE80211_MODE_11G].rs_nrates;
|
|
|
|
memcpy(rs.rates, ic->ic_sup_rates[IEEE80211_MODE_11G].rs_rates,
|
|
|
|
rs.nrates);
|
|
|
|
DPRINTF(("Setting .11bg supported rates (%u)\n", rs.nrates));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_RATES, &rs, sizeof rs, 0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
rs.mode = IWI_MODE_11A;
|
|
|
|
rs.type = IWI_RATESET_TYPE_SUPPORTED;
|
|
|
|
rs.nrates = ic->ic_sup_rates[IEEE80211_MODE_11A].rs_nrates;
|
|
|
|
memcpy(rs.rates, ic->ic_sup_rates[IEEE80211_MODE_11A].rs_rates,
|
|
|
|
rs.nrates);
|
|
|
|
DPRINTF(("Setting .11a supported rates (%u)\n", rs.nrates));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_RATES, &rs, sizeof rs, 0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
data = htole32(arc4random());
|
|
|
|
DPRINTF(("Setting initialization vector to %u\n", le32toh(data)));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_IV, &data, sizeof data, 0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
for (i = 0; i < IEEE80211_WEP_NKID; i++) {
|
|
|
|
wk = &ic->ic_crypto.cs_nw_keys[i];
|
|
|
|
|
|
|
|
wepkey.cmd = IWI_WEP_KEY_CMD_SETKEY;
|
|
|
|
wepkey.idx = i;
|
|
|
|
wepkey.len = wk->wk_keylen;
|
|
|
|
memset(wepkey.key, 0, sizeof wepkey.key);
|
|
|
|
memcpy(wepkey.key, wk->wk_key, wk->wk_keylen);
|
|
|
|
DPRINTF(("Setting wep key index %u len %u\n",
|
|
|
|
wepkey.idx, wepkey.len));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_WEP_KEY, &wepkey,
|
|
|
|
sizeof wepkey, 0);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
2005-01-11 21:24:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable adapter */
|
|
|
|
DPRINTF(("Enabling adapter\n"));
|
|
|
|
return iwi_cmd(sc, IWI_CMD_ENABLE, NULL, 0, 0);
|
|
|
|
}
|
|
|
|
|
2005-06-20 13:03:44 +04:00
|
|
|
static int
|
|
|
|
iwi_set_chan(struct iwi_softc *sc, struct ieee80211_channel *chan)
|
|
|
|
{
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
|
|
|
struct iwi_scan scan;
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
(void)memset(&scan, 0, sizeof scan);
|
2005-06-20 13:03:44 +04:00
|
|
|
scan.type = IWI_SCAN_TYPE_PASSIVE;
|
2005-07-31 01:15:51 +04:00
|
|
|
scan.dwelltime = htole16(2000);
|
2005-06-20 13:03:44 +04:00
|
|
|
scan.channels[0] = 1 | (IEEE80211_IS_CHAN_5GHZ(chan) ? IWI_CHAN_5GHZ :
|
2005-08-19 12:50:06 +04:00
|
|
|
IWI_CHAN_2GHZ);
|
2005-06-20 13:03:44 +04:00
|
|
|
scan.channels[1] = ieee80211_chan2ieee(ic, chan);
|
|
|
|
|
|
|
|
DPRINTF(("Setting channel to %u\n", ieee80211_chan2ieee(ic, chan)));
|
|
|
|
return iwi_cmd(sc, IWI_CMD_SCAN, &scan, sizeof scan, 1);
|
|
|
|
}
|
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
static int
|
|
|
|
iwi_scan(struct iwi_softc *sc)
|
|
|
|
{
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
|
|
|
struct iwi_scan scan;
|
2005-09-17 16:40:27 +04:00
|
|
|
uint8_t *p;
|
2005-01-11 21:24:24 +03:00
|
|
|
int i, count;
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
(void)memset(&scan, 0, sizeof scan);
|
2005-01-11 21:24:24 +03:00
|
|
|
scan.type = IWI_SCAN_TYPE_BROADCAST;
|
2005-07-31 01:15:51 +04:00
|
|
|
scan.dwelltime = htole16(sc->dwelltime);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
p = scan.channels;
|
|
|
|
count = 0;
|
|
|
|
for (i = 0; i <= IEEE80211_CHAN_MAX; i++) {
|
|
|
|
if (IEEE80211_IS_CHAN_5GHZ(&ic->ic_channels[i]) &&
|
|
|
|
isset(ic->ic_chan_active, i)) {
|
|
|
|
*++p = i;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*(p - count) = IWI_CHAN_5GHZ | count;
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
for (i = 0; i <= IEEE80211_CHAN_MAX; i++) {
|
|
|
|
if (IEEE80211_IS_CHAN_2GHZ(&ic->ic_channels[i]) &&
|
|
|
|
isset(ic->ic_chan_active, i)) {
|
|
|
|
*++p = i;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*(p - count) = IWI_CHAN_2GHZ | count;
|
|
|
|
|
|
|
|
DPRINTF(("Start scanning\n"));
|
|
|
|
return iwi_cmd(sc, IWI_CMD_SCAN, &scan, sizeof scan, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_auth_and_assoc(struct iwi_softc *sc)
|
|
|
|
{
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
|
|
|
struct ieee80211_node *ni = ic->ic_bss;
|
2005-07-31 01:15:51 +04:00
|
|
|
struct ifnet *ifp = &sc->sc_if;
|
2005-01-11 21:24:24 +03:00
|
|
|
struct iwi_configuration config;
|
|
|
|
struct iwi_associate assoc;
|
|
|
|
struct iwi_rateset rs;
|
2005-09-17 16:40:27 +04:00
|
|
|
uint16_t capinfo;
|
|
|
|
uint32_t data;
|
2005-01-11 21:24:24 +03:00
|
|
|
int error;
|
|
|
|
|
|
|
|
if (IEEE80211_IS_CHAN_2GHZ(ni->ni_chan)) {
|
|
|
|
memset(&config, 0, sizeof config);
|
2005-07-31 01:15:51 +04:00
|
|
|
config.bluetooth_coexistence = sc->bluetooth;
|
|
|
|
config.antenna = sc->antenna;
|
2005-01-11 21:24:24 +03:00
|
|
|
config.multicast_enabled = 1;
|
2005-07-31 01:15:51 +04:00
|
|
|
config.use_protection = 1;
|
|
|
|
config.answer_pbreq =
|
|
|
|
(ic->ic_opmode == IEEE80211_M_IBSS) ? 1 : 0;
|
|
|
|
config.disable_unicast_decryption = 1;
|
|
|
|
config.disable_multicast_decryption = 1;
|
2005-01-11 21:24:24 +03:00
|
|
|
DPRINTF(("Configuring adapter\n"));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_CONFIGURATION, &config,
|
|
|
|
sizeof config, 1);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef IWI_DEBUG
|
|
|
|
if (iwi_debug > 0) {
|
|
|
|
printf("Setting ESSID to ");
|
|
|
|
ieee80211_print_essid(ni->ni_essid, ni->ni_esslen);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_ESSID, ni->ni_essid, ni->ni_esslen, 1);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
2005-09-13 01:15:04 +04:00
|
|
|
/* the rate set has already been "negotiated" */
|
2005-01-11 21:24:24 +03:00
|
|
|
rs.mode = IEEE80211_IS_CHAN_5GHZ(ni->ni_chan) ? IWI_MODE_11A :
|
|
|
|
IWI_MODE_11G;
|
2005-09-13 01:15:04 +04:00
|
|
|
rs.type = IWI_RATESET_TYPE_NEGOTIATED;
|
2005-01-11 21:24:24 +03:00
|
|
|
rs.nrates = ni->ni_rates.rs_nrates;
|
|
|
|
memcpy(rs.rates, ni->ni_rates.rs_rates, rs.nrates);
|
2005-09-13 01:15:04 +04:00
|
|
|
DPRINTF(("Setting negotiated rates (%u)\n", rs.nrates));
|
2005-01-11 21:24:24 +03:00
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_RATES, &rs, sizeof rs, 1);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
if (ic->ic_opt_ie != NULL) {
|
|
|
|
DPRINTF(("Setting optional IE (len=%u)\n", ic->ic_opt_ie_len));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_OPTIE, ic->ic_opt_ie,
|
|
|
|
ic->ic_opt_ie_len, 1);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
}
|
2005-01-11 21:24:24 +03:00
|
|
|
data = htole32(ni->ni_rssi);
|
|
|
|
DPRINTF(("Setting sensitivity to %d\n", (int8_t)ni->ni_rssi));
|
|
|
|
error = iwi_cmd(sc, IWI_CMD_SET_SENSITIVITY, &data, sizeof data, 1);
|
|
|
|
if (error != 0)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
memset(&assoc, 0, sizeof assoc);
|
|
|
|
assoc.mode = IEEE80211_IS_CHAN_5GHZ(ni->ni_chan) ? IWI_MODE_11A :
|
|
|
|
IWI_MODE_11G;
|
|
|
|
assoc.chan = ieee80211_chan2ieee(ic, ni->ni_chan);
|
2005-07-31 01:15:51 +04:00
|
|
|
if (ni->ni_authmode == IEEE80211_AUTH_SHARED)
|
|
|
|
assoc.auth = (ic->ic_crypto.cs_def_txkey << 4) | IWI_AUTH_SHARED;
|
|
|
|
if (ic->ic_opt_ie != NULL)
|
|
|
|
assoc.policy |= htole16(IWI_POLICY_OPTIE);
|
2005-06-22 10:14:51 +04:00
|
|
|
memcpy(assoc.tstamp, ni->ni_tstamp.data, 8);
|
2005-07-31 01:15:51 +04:00
|
|
|
|
|
|
|
if (ic->ic_opmode == IEEE80211_M_IBSS)
|
|
|
|
capinfo = IEEE80211_CAPINFO_IBSS;
|
|
|
|
else
|
|
|
|
capinfo = IEEE80211_CAPINFO_ESS;
|
|
|
|
if (ic->ic_flags & IEEE80211_F_PRIVACY)
|
|
|
|
capinfo |= IEEE80211_CAPINFO_PRIVACY;
|
|
|
|
if ((ic->ic_flags & IEEE80211_F_SHPREAMBLE) &&
|
|
|
|
IEEE80211_IS_CHAN_2GHZ(ni->ni_chan))
|
|
|
|
capinfo |= IEEE80211_CAPINFO_SHORT_PREAMBLE;
|
|
|
|
if (ic->ic_flags & IEEE80211_F_SHSLOT)
|
|
|
|
capinfo |= IEEE80211_CAPINFO_SHORT_SLOTTIME;
|
|
|
|
assoc.capinfo = htole16(capinfo);
|
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
assoc.lintval = htole16(ic->ic_lintval);
|
|
|
|
assoc.intval = htole16(ni->ni_intval);
|
|
|
|
IEEE80211_ADDR_COPY(assoc.bssid, ni->ni_bssid);
|
2005-07-31 01:15:51 +04:00
|
|
|
if (ic->ic_opmode == IEEE80211_M_IBSS)
|
|
|
|
IEEE80211_ADDR_COPY(assoc.dst, ifp->if_broadcastaddr);
|
|
|
|
else
|
|
|
|
IEEE80211_ADDR_COPY(assoc.dst, ni->ni_bssid);
|
2005-01-11 21:24:24 +03:00
|
|
|
DPRINTF(("Trying to associate to %s channel %u auth %u\n",
|
|
|
|
ether_sprintf(assoc.bssid), assoc.chan, assoc.auth));
|
|
|
|
return iwi_cmd(sc, IWI_CMD_ASSOCIATE, &assoc, sizeof assoc, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
iwi_init(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = ifp->if_softc;
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
|
|
|
struct iwi_firmware *fw = &sc->fw;
|
|
|
|
int i, error;
|
|
|
|
|
|
|
|
/* exit immediately if firmware has not been ioctl'd */
|
|
|
|
if (!(sc->flags & IWI_FLAG_FW_CACHED)) {
|
2005-07-31 01:15:51 +04:00
|
|
|
if (!(sc->flags & IWI_FLAG_FW_WARNED))
|
|
|
|
aprint_error("%s: Firmware not loaded\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
sc->flags |= IWI_FLAG_FW_WARNED;
|
2005-01-11 21:24:24 +03:00
|
|
|
ifp->if_flags &= ~IFF_UP;
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
iwi_stop(ifp, 0);
|
|
|
|
|
2005-01-11 21:24:24 +03:00
|
|
|
if ((error = iwi_reset(sc)) != 0) {
|
|
|
|
aprint_error("%s: could not reset adapter\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = iwi_load_firmware(sc, fw->boot, fw->boot_size)) != 0) {
|
|
|
|
aprint_error("%s: could not load boot firmware\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((error = iwi_load_ucode(sc, fw->ucode, fw->ucode_size)) != 0) {
|
|
|
|
aprint_error("%s: could not load microcode\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
iwi_stop_master(sc);
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
CSR_WRITE_4(sc, IWI_CSR_CMD_BASE, sc->cmdq.desc_map->dm_segs[0].ds_addr);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_CMD_SIZE, sc->cmdq.count);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_CMD_WIDX, sc->cmdq.cur);
|
|
|
|
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX1_BASE, sc->txq.desc_map->dm_segs[0].ds_addr);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX1_SIZE, sc->txq.count);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX1_WIDX, sc->txq.cur);
|
|
|
|
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX2_BASE, sc->txq.desc_map->dm_segs[0].ds_addr);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX2_SIZE, sc->txq.count);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX2_WIDX, sc->txq.cur);
|
|
|
|
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX3_BASE, sc->txq.desc_map->dm_segs[0].ds_addr);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX3_SIZE, sc->txq.count);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX3_WIDX, sc->txq.cur);
|
|
|
|
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX4_BASE, sc->txq.desc_map->dm_segs[0].ds_addr);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX4_SIZE, sc->txq.count);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_TX4_WIDX, sc->txq.cur);
|
|
|
|
|
|
|
|
for (i = 0; i < sc->rxq.count; i++)
|
2005-01-11 21:24:24 +03:00
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RX_BASE + i * 4,
|
2005-08-19 12:50:06 +04:00
|
|
|
sc->rxq.data[i].map->dm_segs[0].ds_addr);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RX_WIDX, sc->rxq.count -1);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
if ((error = iwi_load_firmware(sc, fw->main, fw->main_size)) != 0) {
|
|
|
|
aprint_error("%s: could not load main firmware\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->flags |= IWI_FLAG_FW_INITED;
|
|
|
|
|
|
|
|
if ((error = iwi_config(sc)) != 0) {
|
|
|
|
aprint_error("%s: device configuration failed\n",
|
|
|
|
sc->sc_dev.dv_xname);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-07-31 01:15:51 +04:00
|
|
|
if (ic->ic_opmode == IEEE80211_M_MONITOR)
|
2005-06-20 13:03:44 +04:00
|
|
|
ieee80211_new_state(ic, IEEE80211_S_RUN, -1);
|
2005-07-31 01:15:51 +04:00
|
|
|
else
|
|
|
|
ieee80211_new_state(ic, IEEE80211_S_SCAN, -1);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
ifp->if_flags &= ~IFF_OACTIVE;
|
|
|
|
ifp->if_flags |= IFF_RUNNING;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
fail: ifp->if_flags &= ~IFF_UP;
|
|
|
|
iwi_stop(ifp, 0);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
iwi_stop(struct ifnet *ifp, int disable)
|
|
|
|
{
|
|
|
|
struct iwi_softc *sc = ifp->if_softc;
|
|
|
|
struct ieee80211com *ic = &sc->sc_ic;
|
|
|
|
|
|
|
|
iwi_stop_master(sc);
|
|
|
|
CSR_WRITE_4(sc, IWI_CSR_RST, IWI_RST_SW_RESET);
|
|
|
|
|
2005-08-19 12:50:06 +04:00
|
|
|
/* reset rings */
|
|
|
|
iwi_reset_cmd_ring(sc, &sc->cmdq);
|
|
|
|
iwi_reset_tx_ring(sc, &sc->txq);
|
|
|
|
iwi_reset_rx_ring(sc, &sc->rxq);
|
2005-01-11 21:24:24 +03:00
|
|
|
|
|
|
|
ifp->if_timer = 0;
|
|
|
|
ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
|
|
|
|
|
|
|
|
ieee80211_new_state(ic, IEEE80211_S_INIT, -1);
|
|
|
|
}
|