summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2009-05-03 04:01:43 +0000
committerimp <imp@FreeBSD.org>2009-05-03 04:01:43 +0000
commit760b5bd33cdf6e87c632b89cd22540b881d6165e (patch)
treec4ef4ebe2e07c1bdced223b9d40909f7caed9b50
parent4c45d5b45c3f38ec82e2180fd7baaa39cce3fb8e (diff)
downloadFreeBSD-src-760b5bd33cdf6e87c632b89cd22540b881d6165e.zip
FreeBSD-src-760b5bd33cdf6e87c632b89cd22540b881d6165e.tar.gz
Bring in Andrew Thompson's port of Sepherosa Ziehau's bwi driver for
Broadcom BCM43xx chipsets. This driver uses the v3 firmware that needs to be fetched separately. A port will be committed to create the bwi firmware module. The driver matches the following chips: Broadcom BCM4301, BCM4307, BCM4306, BCM4309, BCM4311, BCM4312, BCM4318, BCM4319 The driver works for 802.11b and 802.11g. Limitations: This doesn't support the 802.11a or 802.11n portion of radios. Some BCM4306 and BCM4309 cards don't work with Channel 1, 2 or 3. Documenation for this firmware is reverse engineered from http://bcm.sipsolutions.net/ V4 of the firmware is needed for 11a or 11n support http://bcm-v4.sipsolutions.net/ Firmware needs to be fetched from a third party, port to be committed # I've tested this with a BCM4319 mini-pci and a BCM4318 CardBus card, and # not connected it to the build until the firmware port is committed. Obtained from: DragonFlyBSD, //depot/projects/vap Reviewed by: sam@, thompsa@
-rw-r--r--sys/conf/files5
-rw-r--r--sys/conf/options4
-rw-r--r--sys/dev/bwi/bitops.h81
-rw-r--r--sys/dev/bwi/bwimac.c1982
-rw-r--r--sys/dev/bwi/bwimac.h100
-rw-r--r--sys/dev/bwi/bwiphy.c1020
-rw-r--r--sys/dev/bwi/bwiphy.h224
-rw-r--r--sys/dev/bwi/bwirf.c2690
-rw-r--r--sys/dev/bwi/bwirf.h160
-rw-r--r--sys/dev/bwi/if_bwi.c4056
-rw-r--r--sys/dev/bwi/if_bwi_pci.c253
-rw-r--r--sys/dev/bwi/if_bwireg.h496
-rw-r--r--sys/dev/bwi/if_bwivar.h711
-rw-r--r--sys/modules/bwi/Makefile14
14 files changed, 11796 insertions, 0 deletions
diff --git a/sys/conf/files b/sys/conf/files
index 2ecef66..2079030 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -712,6 +712,11 @@ dev/buslogic/bt_eisa.c optional bt eisa
dev/buslogic/bt_isa.c optional bt isa
dev/buslogic/bt_mca.c optional bt mca
dev/buslogic/bt_pci.c optional bt pci
+dev/bwi/bwiirf.c optional bwi
+dev/bwi/bwimac.c optional bwi
+dev/bwi/bwiphy.c optional bwi
+dev/bwi/if_bwi.c optional bwi
+dev/bwi/if_bwi_pci.c optional bwi pci
dev/cardbus/cardbus.c optional cardbus
dev/cardbus/cardbus_cis.c optional cardbus
dev/cardbus/cardbus_device.c optional cardbus
diff --git a/sys/conf/options b/sys/conf/options
index cab24e6..758190f 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -763,6 +763,10 @@ AH_NEED_DESC_SWAP opt_ah.h
AH_USE_INIPDGAIN opt_ah.h
AH_MAXCHAN opt_ah.h
+# options for the Broadcom BCM43xx driver (bwi)
+BWI_DEBUG opt_bwi.h
+BWI_DEBUG_VERBOSE opt_bwi.h
+
# options for the Marvell 8335 wireless driver
MALO_DEBUG opt_malo.h
MALO_TXBUF opt_malo.h
diff --git a/sys/dev/bwi/bitops.h b/sys/dev/bwi/bitops.h
new file mode 100644
index 0000000..0d6dee8
--- /dev/null
+++ b/sys/dev/bwi/bitops.h
@@ -0,0 +1,81 @@
+/*
+ * Copyright (c) 2004, 2005 David Young. All rights reserved.
+ *
+ * Programmed for NetBSD by David Young.
+ *
+ * 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. The name of David Young may not be used to endorse or promote
+ * products derived from this software without specific prior
+ * written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY David Young ``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 David
+ * Young 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.
+ *
+ * $DragonFly: src/sys/dev/netif/bwi/bitops.h,v 1.1 2007/09/08 06:15:54 sephe Exp $
+ * $FreeBSD$
+ */
+
+#ifndef _BITOPS_H
+#define _BITOPS_H
+
+/*
+ * __BIT(n): Return a bitmask with bit m set, where the least
+ * significant bit is bit 0.
+ *
+ * __BITS(m, n): Return a bitmask with bits m through n, inclusive,
+ * set. It does not matter whether m>n or m<=n. The
+ * least significant bit is bit 0.
+ *
+ * A "bitfield" is a span of consecutive bits defined by a bitmask,
+ * where 1s select the bits in the bitfield. __SHIFTIN, __SHIFTOUT,
+ * and SHIFTOUT_MASK help read and write bitfields from device registers.
+ *
+ * __SHIFTIN(v, mask): Left-shift bits `v' into the bitfield
+ * defined by `mask', and return them. No
+ * side-effects.
+ *
+ * __SHIFTOUT(v, mask): Extract and return the bitfield selected
+ * by `mask' from `v', right-shifting the
+ * bits so that the rightmost selected bit
+ * is at bit 0. No side-effects.
+ *
+ * __SHIFTOUT_MASK(mask): Right-shift the bits in `mask' so that
+ * the rightmost non-zero bit is at bit
+ * 0. This is useful for finding the
+ * greatest unsigned value that a bitfield
+ * can hold. No side-effects. Note that
+ * SHIFTOUT_MASK(m) = SHIFTOUT(m, m).
+ */
+
+/* __BIT(n): nth bit, where __BIT(0) == 0x1. */
+#define __BIT(__n) (((__n) == 32) ? 0 : ((uint32_t)1 << (__n)))
+
+/* __BITS(m, n): bits m through n, m < n. */
+#define __BITS(__m, __n) \
+ ((__BIT(MAX((__m), (__n)) + 1) - 1) ^ (__BIT(MIN((__m), (__n))) - 1))
+
+/* Find least significant bit that is set */
+#define __LOWEST_SET_BIT(__mask) ((((__mask) - 1) & (__mask)) ^ (__mask))
+
+#define __SHIFTOUT(__x, __mask) (((__x) & (__mask)) / __LOWEST_SET_BIT(__mask))
+#define __SHIFTIN(__x, __mask) ((__x) * __LOWEST_SET_BIT(__mask))
+#define __SHIFTOUT_MASK(__mask) __SHIFTOUT((__mask), (__mask))
+
+#endif /* !_BITOPS_H */
diff --git a/sys/dev/bwi/bwimac.c b/sys/dev/bwi/bwimac.c
new file mode 100644
index 0000000..4b5a20b
--- /dev/null
+++ b/sys/dev/bwi/bwimac.c
@@ -0,0 +1,1982 @@
+/*
+ * Copyright (c) 2007 The DragonFly Project. All rights reserved.
+ *
+ * This code is derived from software contributed to The DragonFly Project
+ * by Sepherosa Ziehau <sepherosa@gmail.com>
+ *
+ * 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. Neither the name of The DragonFly Project nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific, prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
+ * COPYRIGHT HOLDERS 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.
+ *
+ * $DragonFly: src/sys/dev/netif/bwi/bwimac.c,v 1.13 2008/02/15 11:15:38 sephe Exp $
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include "opt_inet.h"
+#include "opt_bwi.h"
+
+#include <sys/param.h>
+#include <sys/endian.h>
+#include <sys/kernel.h>
+#include <sys/bus.h>
+#include <sys/malloc.h>
+#include <sys/proc.h>
+#include <sys/rman.h>
+#include <sys/socket.h>
+#include <sys/sockio.h>
+#include <sys/sysctl.h>
+#include <sys/systm.h>
+
+#include <sys/linker.h>
+#include <sys/firmware.h>
+
+#include <net/if.h>
+#include <net/if_dl.h>
+#include <net/if_media.h>
+#include <net/if_types.h>
+#include <net/if_arp.h>
+#include <net/ethernet.h>
+#include <net/if_llc.h>
+
+#include <net80211/ieee80211_var.h>
+#include <net80211/ieee80211_radiotap.h>
+#include <net80211/ieee80211_amrr.h>
+#include <net80211/ieee80211_phy.h>
+
+#include <machine/bus.h>
+
+#include <dev/bwi/bitops.h>
+#include <dev/bwi/if_bwireg.h>
+#include <dev/bwi/if_bwivar.h>
+#include <dev/bwi/bwimac.h>
+#include <dev/bwi/bwirf.h>
+#include <dev/bwi/bwiphy.h>
+
+struct bwi_retry_lim {
+ uint16_t shretry;
+ uint16_t shretry_fb;
+ uint16_t lgretry;
+ uint16_t lgretry_fb;
+};
+
+static int bwi_mac_test(struct bwi_mac *);
+static int bwi_mac_get_property(struct bwi_mac *);
+
+static void bwi_mac_set_retry_lim(struct bwi_mac *,
+ const struct bwi_retry_lim *);
+static void bwi_mac_set_ackrates(struct bwi_mac *,
+ const struct ieee80211_rate_table *rt,
+ const struct ieee80211_rateset *);
+
+static int bwi_mac_gpio_init(struct bwi_mac *);
+static int bwi_mac_gpio_fini(struct bwi_mac *);
+static void bwi_mac_opmode_init(struct bwi_mac *);
+static void bwi_mac_hostflags_init(struct bwi_mac *);
+static void bwi_mac_bss_param_init(struct bwi_mac *);
+
+static int bwi_mac_fw_alloc(struct bwi_mac *);
+static void bwi_mac_fw_free(struct bwi_mac *);
+static int bwi_mac_fw_load(struct bwi_mac *);
+static int bwi_mac_fw_init(struct bwi_mac *);
+static int bwi_mac_fw_load_iv(struct bwi_mac *, const struct firmware *);
+
+static void bwi_mac_setup_tpctl(struct bwi_mac *);
+static void bwi_mac_adjust_tpctl(struct bwi_mac *, int, int);
+
+static void bwi_mac_lock(struct bwi_mac *);
+static void bwi_mac_unlock(struct bwi_mac *);
+
+static const uint8_t bwi_sup_macrev[] = { 2, 4, 5, 6, 7, 9, 10 };
+
+void
+bwi_tmplt_write_4(struct bwi_mac *mac, uint32_t ofs, uint32_t val)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+
+ if (mac->mac_flags & BWI_MAC_F_BSWAP)
+ val = bswap32(val);
+
+ CSR_WRITE_4(sc, BWI_MAC_TMPLT_CTRL, ofs);
+ CSR_WRITE_4(sc, BWI_MAC_TMPLT_DATA, val);
+}
+
+void
+bwi_hostflags_write(struct bwi_mac *mac, uint64_t flags)
+{
+ uint64_t val;
+
+ val = flags & 0xffff;
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_HFLAGS_LO, val);
+
+ val = (flags >> 16) & 0xffff;
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_HFLAGS_MI, val);
+
+ /* HI has unclear meaning, so leave it as it is */
+}
+
+uint64_t
+bwi_hostflags_read(struct bwi_mac *mac)
+{
+ uint64_t flags, val;
+
+ /* HI has unclear meaning, so don't touch it */
+ flags = 0;
+
+ val = MOBJ_READ_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_HFLAGS_MI);
+ flags |= val << 16;
+
+ val = MOBJ_READ_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_HFLAGS_LO);
+ flags |= val;
+
+ return flags;
+}
+
+uint16_t
+bwi_memobj_read_2(struct bwi_mac *mac, uint16_t obj_id, uint16_t ofs0)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ uint32_t data_reg;
+ int ofs;
+
+ data_reg = BWI_MOBJ_DATA;
+ ofs = ofs0 / 4;
+
+ if (ofs0 % 4 != 0)
+ data_reg = BWI_MOBJ_DATA_UNALIGN;
+
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL, BWI_MOBJ_CTRL_VAL(obj_id, ofs));
+ return CSR_READ_2(sc, data_reg);
+}
+
+uint32_t
+bwi_memobj_read_4(struct bwi_mac *mac, uint16_t obj_id, uint16_t ofs0)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ int ofs;
+
+ ofs = ofs0 / 4;
+ if (ofs0 % 4 != 0) {
+ uint32_t ret;
+
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL, BWI_MOBJ_CTRL_VAL(obj_id, ofs));
+ ret = CSR_READ_2(sc, BWI_MOBJ_DATA_UNALIGN);
+ ret <<= 16;
+
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL,
+ BWI_MOBJ_CTRL_VAL(obj_id, ofs + 1));
+ ret |= CSR_READ_2(sc, BWI_MOBJ_DATA);
+
+ return ret;
+ } else {
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL, BWI_MOBJ_CTRL_VAL(obj_id, ofs));
+ return CSR_READ_4(sc, BWI_MOBJ_DATA);
+ }
+}
+
+void
+bwi_memobj_write_2(struct bwi_mac *mac, uint16_t obj_id, uint16_t ofs0,
+ uint16_t v)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ uint32_t data_reg;
+ int ofs;
+
+ data_reg = BWI_MOBJ_DATA;
+ ofs = ofs0 / 4;
+
+ if (ofs0 % 4 != 0)
+ data_reg = BWI_MOBJ_DATA_UNALIGN;
+
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL, BWI_MOBJ_CTRL_VAL(obj_id, ofs));
+ CSR_WRITE_2(sc, data_reg, v);
+}
+
+void
+bwi_memobj_write_4(struct bwi_mac *mac, uint16_t obj_id, uint16_t ofs0,
+ uint32_t v)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ int ofs;
+
+ ofs = ofs0 / 4;
+ if (ofs0 % 4 != 0) {
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL, BWI_MOBJ_CTRL_VAL(obj_id, ofs));
+ CSR_WRITE_2(sc, BWI_MOBJ_DATA_UNALIGN, v >> 16);
+
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL,
+ BWI_MOBJ_CTRL_VAL(obj_id, ofs + 1));
+ CSR_WRITE_2(sc, BWI_MOBJ_DATA, v & 0xffff);
+ } else {
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL, BWI_MOBJ_CTRL_VAL(obj_id, ofs));
+ CSR_WRITE_4(sc, BWI_MOBJ_DATA, v);
+ }
+}
+
+int
+bwi_mac_lateattach(struct bwi_mac *mac)
+{
+ int error;
+
+ if (mac->mac_rev >= 5)
+ CSR_READ_4(mac->mac_sc, BWI_STATE_HI); /* dummy read */
+
+ bwi_mac_reset(mac, 1);
+
+ error = bwi_phy_attach(mac);
+ if (error)
+ return error;
+
+ error = bwi_rf_attach(mac);
+ if (error)
+ return error;
+
+ /* Link 11B/G PHY, unlink 11A PHY */
+ if (mac->mac_phy.phy_mode == IEEE80211_MODE_11A)
+ bwi_mac_reset(mac, 0);
+ else
+ bwi_mac_reset(mac, 1);
+
+ error = bwi_mac_test(mac);
+ if (error)
+ return error;
+
+ error = bwi_mac_get_property(mac);
+ if (error)
+ return error;
+
+ error = bwi_rf_map_txpower(mac);
+ if (error)
+ return error;
+
+ bwi_rf_off(mac);
+ CSR_WRITE_2(mac->mac_sc, BWI_BBP_ATTEN, BWI_BBP_ATTEN_MAGIC);
+ bwi_regwin_disable(mac->mac_sc, &mac->mac_regwin, 0);
+
+ return 0;
+}
+
+int
+bwi_mac_init(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ int error, i;
+
+ /* Clear MAC/PHY/RF states */
+ bwi_mac_setup_tpctl(mac);
+ bwi_rf_clear_state(&mac->mac_rf);
+ bwi_phy_clear_state(&mac->mac_phy);
+
+ /* Enable MAC and linked it to PHY */
+ if (!bwi_regwin_is_enabled(sc, &mac->mac_regwin))
+ bwi_mac_reset(mac, 1);
+
+ /* Initialize backplane */
+ error = bwi_bus_init(sc, mac);
+ if (error)
+ return error;
+
+ /* XXX work around for hardware bugs? */
+ if (sc->sc_bus_regwin.rw_rev <= 5 &&
+ sc->sc_bus_regwin.rw_type != BWI_REGWIN_T_BUSPCIE) {
+ CSR_SETBITS_4(sc, BWI_CONF_LO,
+ __SHIFTIN(BWI_CONF_LO_SERVTO, BWI_CONF_LO_SERVTO_MASK) |
+ __SHIFTIN(BWI_CONF_LO_REQTO, BWI_CONF_LO_REQTO_MASK));
+ }
+
+ /* Calibrate PHY */
+ error = bwi_phy_calibrate(mac);
+ if (error) {
+ device_printf(sc->sc_dev, "PHY calibrate failed\n");
+ return error;
+ }
+
+ /* Prepare to initialize firmware */
+ CSR_WRITE_4(sc, BWI_MAC_STATUS,
+ BWI_MAC_STATUS_UCODE_JUMP0 |
+ BWI_MAC_STATUS_IHREN);
+
+ /*
+ * Load and initialize firmwares
+ */
+ error = bwi_mac_fw_alloc(mac);
+ if (error)
+ return error;
+
+ error = bwi_mac_fw_load(mac);
+ if (error)
+ return error;
+
+ error = bwi_mac_gpio_init(mac);
+ if (error)
+ return error;
+
+ error = bwi_mac_fw_init(mac);
+ if (error)
+ return error;
+
+ /*
+ * Turn on RF
+ */
+ bwi_rf_on(mac);
+
+ /* TODO: LED, hardware rf enabled is only related to LED setting */
+
+ /*
+ * Initialize PHY
+ */
+ CSR_WRITE_2(sc, BWI_BBP_ATTEN, 0);
+ bwi_phy_init(mac);
+
+ /* TODO: interference mitigation */
+
+ /*
+ * Setup antenna mode
+ */
+ bwi_rf_set_ant_mode(mac, mac->mac_rf.rf_ant_mode);
+
+ /*
+ * Initialize operation mode (RX configuration)
+ */
+ bwi_mac_opmode_init(mac);
+
+ /* XXX what's these */
+ if (mac->mac_rev < 3) {
+ CSR_WRITE_2(sc, 0x60e, 0);
+ CSR_WRITE_2(sc, 0x610, 0x8000);
+ CSR_WRITE_2(sc, 0x604, 0);
+ CSR_WRITE_2(sc, 0x606, 0x200);
+ } else {
+ CSR_WRITE_4(sc, 0x188, 0x80000000);
+ CSR_WRITE_4(sc, 0x18c, 0x2000000);
+ }
+
+ /*
+ * Initialize TX/RX interrupts' mask
+ */
+ CSR_WRITE_4(sc, BWI_MAC_INTR_STATUS, BWI_INTR_TIMER1);
+ for (i = 0; i < BWI_TXRX_NRING; ++i) {
+ uint32_t intrs;
+
+ if (BWI_TXRX_IS_RX(i))
+ intrs = BWI_TXRX_RX_INTRS;
+ else
+ intrs = BWI_TXRX_TX_INTRS;
+ CSR_WRITE_4(sc, BWI_TXRX_INTR_MASK(i), intrs);
+ }
+
+ /* XXX what's this */
+ CSR_SETBITS_4(sc, BWI_STATE_LO, 0x100000);
+
+ /* Setup MAC power up delay */
+ CSR_WRITE_2(sc, BWI_MAC_POWERUP_DELAY, sc->sc_pwron_delay);
+
+ /* Set MAC regwin revision */
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_MACREV, mac->mac_rev);
+
+ /*
+ * Initialize host flags
+ */
+ bwi_mac_hostflags_init(mac);
+
+ /*
+ * Initialize BSS parameters
+ */
+ bwi_mac_bss_param_init(mac);
+
+ /*
+ * Initialize TX rings
+ */
+ for (i = 0; i < BWI_TX_NRING; ++i) {
+ error = sc->sc_init_tx_ring(sc, i);
+ if (error) {
+ device_printf(sc->sc_dev,
+ "can't initialize %dth TX ring\n", i);
+ return error;
+ }
+ }
+
+ /*
+ * Initialize RX ring
+ */
+ error = sc->sc_init_rx_ring(sc);
+ if (error) {
+ device_printf(sc->sc_dev, "can't initialize RX ring\n");
+ return error;
+ }
+
+ /*
+ * Initialize TX stats if the current MAC uses that
+ */
+ if (mac->mac_flags & BWI_MAC_F_HAS_TXSTATS) {
+ error = sc->sc_init_txstats(sc);
+ if (error) {
+ device_printf(sc->sc_dev,
+ "can't initialize TX stats ring\n");
+ return error;
+ }
+ }
+
+ /* XXX what's these */
+ CSR_WRITE_2(sc, 0x612, 0x50); /* Force Pre-TBTT to 80? */
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, 0x416, 0x50);
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, 0x414, 0x1f4);
+
+ mac->mac_flags |= BWI_MAC_F_INITED;
+ return 0;
+}
+
+void
+bwi_mac_reset(struct bwi_mac *mac, int link_phy)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ uint32_t flags, state_lo, status;
+
+ flags = BWI_STATE_LO_FLAG_PHYRST | BWI_STATE_LO_FLAG_PHYCLKEN;
+ if (link_phy)
+ flags |= BWI_STATE_LO_FLAG_PHYLNK;
+ bwi_regwin_enable(sc, &mac->mac_regwin, flags);
+ DELAY(2000);
+
+ state_lo = CSR_READ_4(sc, BWI_STATE_LO);
+ state_lo |= BWI_STATE_LO_GATED_CLOCK;
+ state_lo &= ~__SHIFTIN(BWI_STATE_LO_FLAG_PHYRST,
+ BWI_STATE_LO_FLAGS_MASK);
+ CSR_WRITE_4(sc, BWI_STATE_LO, state_lo);
+ /* Flush pending bus write */
+ CSR_READ_4(sc, BWI_STATE_LO);
+ DELAY(1000);
+
+ state_lo &= ~BWI_STATE_LO_GATED_CLOCK;
+ CSR_WRITE_4(sc, BWI_STATE_LO, state_lo);
+ /* Flush pending bus write */
+ CSR_READ_4(sc, BWI_STATE_LO);
+ DELAY(1000);
+
+ CSR_WRITE_2(sc, BWI_BBP_ATTEN, 0);
+
+ status = CSR_READ_4(sc, BWI_MAC_STATUS);
+ status |= BWI_MAC_STATUS_IHREN;
+ if (link_phy)
+ status |= BWI_MAC_STATUS_PHYLNK;
+ else
+ status &= ~BWI_MAC_STATUS_PHYLNK;
+ CSR_WRITE_4(sc, BWI_MAC_STATUS, status);
+
+ if (link_phy) {
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_ATTACH | BWI_DBG_INIT,
+ "%s\n", "PHY is linked");
+ mac->mac_phy.phy_flags |= BWI_PHY_F_LINKED;
+ } else {
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_ATTACH | BWI_DBG_INIT,
+ "%s\n", "PHY is unlinked");
+ mac->mac_phy.phy_flags &= ~BWI_PHY_F_LINKED;
+ }
+}
+
+void
+bwi_mac_set_tpctl_11bg(struct bwi_mac *mac, const struct bwi_tpctl *new_tpctl)
+{
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct bwi_tpctl *tpctl = &mac->mac_tpctl;
+
+ if (new_tpctl != NULL) {
+ KASSERT(new_tpctl->bbp_atten <= BWI_BBP_ATTEN_MAX,
+ ("bbp_atten %d", new_tpctl->bbp_atten));
+ KASSERT(new_tpctl->rf_atten <=
+ (rf->rf_rev < 6 ? BWI_RF_ATTEN_MAX0
+ : BWI_RF_ATTEN_MAX1),
+ ("rf_atten %d", new_tpctl->rf_atten));
+ KASSERT(new_tpctl->tp_ctrl1 <= BWI_TPCTL1_MAX,
+ ("tp_ctrl1 %d", new_tpctl->tp_ctrl1));
+
+ tpctl->bbp_atten = new_tpctl->bbp_atten;
+ tpctl->rf_atten = new_tpctl->rf_atten;
+ tpctl->tp_ctrl1 = new_tpctl->tp_ctrl1;
+ }
+
+ /* Set BBP attenuation */
+ bwi_phy_set_bbp_atten(mac, tpctl->bbp_atten);
+
+ /* Set RF attenuation */
+ RF_WRITE(mac, BWI_RFR_ATTEN, tpctl->rf_atten);
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_RF_ATTEN,
+ tpctl->rf_atten);
+
+ /* Set TX power */
+ if (rf->rf_type == BWI_RF_T_BCM2050) {
+ RF_FILT_SETBITS(mac, BWI_RFR_TXPWR, ~BWI_RFR_TXPWR1_MASK,
+ __SHIFTIN(tpctl->tp_ctrl1, BWI_RFR_TXPWR1_MASK));
+ }
+
+ /* Adjust RF Local Oscillator */
+ if (mac->mac_phy.phy_mode == IEEE80211_MODE_11G)
+ bwi_rf_lo_adjust(mac, tpctl);
+}
+
+static int
+bwi_mac_test(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ uint32_t orig_val, val;
+
+#define TEST_VAL1 0xaa5555aa
+#define TEST_VAL2 0x55aaaa55
+
+ /* Save it for later restoring */
+ orig_val = MOBJ_READ_4(mac, BWI_COMM_MOBJ, 0);
+
+ /* Test 1 */
+ MOBJ_WRITE_4(mac, BWI_COMM_MOBJ, 0, TEST_VAL1);
+ val = MOBJ_READ_4(mac, BWI_COMM_MOBJ, 0);
+ if (val != TEST_VAL1) {
+ device_printf(sc->sc_dev, "TEST1 failed\n");
+ return ENXIO;
+ }
+
+ /* Test 2 */
+ MOBJ_WRITE_4(mac, BWI_COMM_MOBJ, 0, TEST_VAL2);
+ val = MOBJ_READ_4(mac, BWI_COMM_MOBJ, 0);
+ if (val != TEST_VAL2) {
+ device_printf(sc->sc_dev, "TEST2 failed\n");
+ return ENXIO;
+ }
+
+ /* Restore to the original value */
+ MOBJ_WRITE_4(mac, BWI_COMM_MOBJ, 0, orig_val);
+
+ val = CSR_READ_4(sc, BWI_MAC_STATUS);
+ if ((val & ~BWI_MAC_STATUS_PHYLNK) != BWI_MAC_STATUS_IHREN) {
+ device_printf(sc->sc_dev, "%s failed, MAC status 0x%08x\n",
+ __func__, val);
+ return ENXIO;
+ }
+
+ val = CSR_READ_4(sc, BWI_MAC_INTR_STATUS);
+ if (val != 0) {
+ device_printf(sc->sc_dev, "%s failed, intr status %08x\n",
+ __func__, val);
+ return ENXIO;
+ }
+
+#undef TEST_VAL2
+#undef TEST_VAL1
+
+ return 0;
+}
+
+static void
+bwi_mac_setup_tpctl(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct bwi_tpctl *tpctl = &mac->mac_tpctl;
+
+ /* Calc BBP attenuation */
+ if (rf->rf_type == BWI_RF_T_BCM2050 && rf->rf_rev < 6)
+ tpctl->bbp_atten = 0;
+ else
+ tpctl->bbp_atten = 2;
+
+ /* Calc TX power CTRL1?? */
+ tpctl->tp_ctrl1 = 0;
+ if (rf->rf_type == BWI_RF_T_BCM2050) {
+ if (rf->rf_rev == 1)
+ tpctl->tp_ctrl1 = 3;
+ else if (rf->rf_rev < 6)
+ tpctl->tp_ctrl1 = 2;
+ else if (rf->rf_rev == 8)
+ tpctl->tp_ctrl1 = 1;
+ }
+
+ /* Empty TX power CTRL2?? */
+ tpctl->tp_ctrl2 = 0xffff;
+
+ /*
+ * Calc RF attenuation
+ */
+ if (phy->phy_mode == IEEE80211_MODE_11A) {
+ tpctl->rf_atten = 0x60;
+ goto back;
+ }
+
+ if (BWI_IS_BRCM_BCM4309G(sc) && sc->sc_pci_revid < 0x51) {
+ tpctl->rf_atten = sc->sc_pci_revid < 0x43 ? 2 : 3;
+ goto back;
+ }
+
+ tpctl->rf_atten = 5;
+
+ if (rf->rf_type != BWI_RF_T_BCM2050) {
+ if (rf->rf_type == BWI_RF_T_BCM2053 && rf->rf_rev == 1)
+ tpctl->rf_atten = 6;
+ goto back;
+ }
+
+ /*
+ * NB: If we reaches here and the card is BRCM_BCM4309G,
+ * then the card's PCI revision must >= 0x51
+ */
+
+ /* BCM2050 RF */
+ switch (rf->rf_rev) {
+ case 1:
+ if (phy->phy_mode == IEEE80211_MODE_11G) {
+ if (BWI_IS_BRCM_BCM4309G(sc) || BWI_IS_BRCM_BU4306(sc))
+ tpctl->rf_atten = 3;
+ else
+ tpctl->rf_atten = 1;
+ } else {
+ if (BWI_IS_BRCM_BCM4309G(sc))
+ tpctl->rf_atten = 7;
+ else
+ tpctl->rf_atten = 6;
+ }
+ break;
+ case 2:
+ if (phy->phy_mode == IEEE80211_MODE_11G) {
+ /*
+ * NOTE: Order of following conditions is critical
+ */
+ if (BWI_IS_BRCM_BCM4309G(sc))
+ tpctl->rf_atten = 3;
+ else if (BWI_IS_BRCM_BU4306(sc))
+ tpctl->rf_atten = 5;
+ else if (sc->sc_bbp_id == BWI_BBPID_BCM4320)
+ tpctl->rf_atten = 4;
+ else
+ tpctl->rf_atten = 3;
+ } else {
+ tpctl->rf_atten = 6;
+ }
+ break;
+ case 4:
+ case 5:
+ tpctl->rf_atten = 1;
+ break;
+ case 8:
+ tpctl->rf_atten = 0x1a;
+ break;
+ }
+back:
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_INIT | BWI_DBG_TXPOWER,
+ "bbp atten: %u, rf atten: %u, ctrl1: %u, ctrl2: %u\n",
+ tpctl->bbp_atten, tpctl->rf_atten,
+ tpctl->tp_ctrl1, tpctl->tp_ctrl2);
+}
+
+void
+bwi_mac_dummy_xmit(struct bwi_mac *mac)
+{
+#define PACKET_LEN 5
+ static const uint32_t packet_11a[PACKET_LEN] =
+ { 0x000201cc, 0x00d40000, 0x00000000, 0x01000000, 0x00000000 };
+ static const uint32_t packet_11bg[PACKET_LEN] =
+ { 0x000b846e, 0x00d40000, 0x00000000, 0x01000000, 0x00000000 };
+
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+ const uint32_t *packet;
+ uint16_t val_50c;
+ int wait_max, i;
+
+ if (mac->mac_phy.phy_mode == IEEE80211_MODE_11A) {
+ wait_max = 30;
+ packet = packet_11a;
+ val_50c = 1;
+ } else {
+ wait_max = 250;
+ packet = packet_11bg;
+ val_50c = 0;
+ }
+
+ for (i = 0; i < PACKET_LEN; ++i)
+ TMPLT_WRITE_4(mac, i * 4, packet[i]);
+
+ CSR_READ_4(sc, BWI_MAC_STATUS); /* dummy read */
+
+ CSR_WRITE_2(sc, 0x568, 0);
+ CSR_WRITE_2(sc, 0x7c0, 0);
+ CSR_WRITE_2(sc, 0x50c, val_50c);
+ CSR_WRITE_2(sc, 0x508, 0);
+ CSR_WRITE_2(sc, 0x50a, 0);
+ CSR_WRITE_2(sc, 0x54c, 0);
+ CSR_WRITE_2(sc, 0x56a, 0x14);
+ CSR_WRITE_2(sc, 0x568, 0x826);
+ CSR_WRITE_2(sc, 0x500, 0);
+ CSR_WRITE_2(sc, 0x502, 0x30);
+
+ if (rf->rf_type == BWI_RF_T_BCM2050 && rf->rf_rev <= 5)
+ RF_WRITE(mac, 0x51, 0x17);
+
+ for (i = 0; i < wait_max; ++i) {
+ if (CSR_READ_2(sc, 0x50e) & 0x80)
+ break;
+ DELAY(10);
+ }
+ for (i = 0; i < 10; ++i) {
+ if (CSR_READ_2(sc, 0x50e) & 0x400)
+ break;
+ DELAY(10);
+ }
+ for (i = 0; i < 10; ++i) {
+ if ((CSR_READ_2(sc, 0x690) & 0x100) == 0)
+ break;
+ DELAY(10);
+ }
+
+ if (rf->rf_type == BWI_RF_T_BCM2050 && rf->rf_rev <= 5)
+ RF_WRITE(mac, 0x51, 0x37);
+#undef PACKET_LEN
+}
+
+void
+bwi_mac_init_tpctl_11bg(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct bwi_tpctl tpctl_orig;
+ int restore_tpctl = 0;
+
+ KASSERT(phy->phy_mode != IEEE80211_MODE_11A,
+ ("phy_mode %d", phy->phy_mode));
+
+ if (BWI_IS_BRCM_BU4306(sc))
+ return;
+
+ PHY_WRITE(mac, 0x28, 0x8018);
+ CSR_CLRBITS_2(sc, BWI_BBP_ATTEN, 0x20);
+
+ if (phy->phy_mode == IEEE80211_MODE_11G) {
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) == 0)
+ return;
+ PHY_WRITE(mac, 0x47a, 0xc111);
+ }
+ if (mac->mac_flags & BWI_MAC_F_TPCTL_INITED)
+ return;
+
+ if (phy->phy_mode == IEEE80211_MODE_11B && phy->phy_rev >= 2 &&
+ rf->rf_type == BWI_RF_T_BCM2050) {
+ RF_SETBITS(mac, 0x76, 0x84);
+ } else {
+ struct bwi_tpctl tpctl;
+
+ /* Backup original TX power control variables */
+ bcopy(&mac->mac_tpctl, &tpctl_orig, sizeof(tpctl_orig));
+ restore_tpctl = 1;
+
+ bcopy(&mac->mac_tpctl, &tpctl, sizeof(tpctl));
+ tpctl.bbp_atten = 11;
+ tpctl.tp_ctrl1 = 0;
+#ifdef notyet
+ if (rf->rf_rev >= 6 && rf->rf_rev <= 8)
+ tpctl.rf_atten = 31;
+ else
+#endif
+ tpctl.rf_atten = 9;
+
+ bwi_mac_set_tpctl_11bg(mac, &tpctl);
+ }
+
+ bwi_mac_dummy_xmit(mac);
+
+ mac->mac_flags |= BWI_MAC_F_TPCTL_INITED;
+ rf->rf_base_tssi = PHY_READ(mac, 0x29);
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_INIT | BWI_DBG_TXPOWER,
+ "base tssi %d\n", rf->rf_base_tssi);
+
+ if (abs(rf->rf_base_tssi - rf->rf_idle_tssi) >= 20) {
+ device_printf(sc->sc_dev, "base tssi measure failed\n");
+ mac->mac_flags |= BWI_MAC_F_TPCTL_ERROR;
+ }
+
+ if (restore_tpctl)
+ bwi_mac_set_tpctl_11bg(mac, &tpctl_orig);
+ else
+ RF_CLRBITS(mac, 0x76, 0x84);
+
+ bwi_rf_clear_tssi(mac);
+}
+
+void
+bwi_mac_detach(struct bwi_mac *mac)
+{
+ bwi_mac_fw_free(mac);
+}
+
+static __inline int
+bwi_fwimage_is_valid(struct bwi_softc *sc, const struct firmware *fw,
+ uint8_t fw_type)
+{
+ const struct bwi_fwhdr *hdr;
+ struct ifnet *ifp = sc->sc_ifp;
+
+ if (fw->datasize < sizeof(*hdr)) {
+ if_printf(ifp, "invalid firmware (%s): invalid size %zu\n",
+ fw->name, fw->datasize);
+ return 0;
+ }
+
+ hdr = (const struct bwi_fwhdr *)fw->data;
+
+ if (fw_type != BWI_FW_T_IV) {
+ /*
+ * Don't verify IV's size, it has different meaning
+ */
+ if (be32toh(hdr->fw_size) != fw->datasize - sizeof(*hdr)) {
+ if_printf(ifp, "invalid firmware (%s): size mismatch, "
+ "fw %u, real %zu\n", fw->name,
+ be32toh(hdr->fw_size),
+ fw->datasize - sizeof(*hdr));
+ return 0;
+ }
+ }
+
+ if (hdr->fw_type != fw_type) {
+ if_printf(ifp, "invalid firmware (%s): type mismatch, "
+ "fw \'%c\', target \'%c\'\n", fw->name,
+ hdr->fw_type, fw_type);
+ return 0;
+ }
+
+ if (hdr->fw_gen != BWI_FW_GEN_1) {
+ if_printf(ifp, "invalid firmware (%s): wrong generation, "
+ "fw %d, target %d\n", fw->name,
+ hdr->fw_gen, BWI_FW_GEN_1);
+ return 0;
+ }
+ return 1;
+}
+
+/*
+ * XXX Error cleanup
+ */
+static int
+bwi_mac_fw_alloc(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct ifnet *ifp = sc->sc_ifp;
+ char fwname[64];
+ int idx;
+
+ /*
+ * Try getting the firmware stub so firmware
+ * module would be loaded automatically
+ */
+ if (mac->mac_stub == NULL) {
+ snprintf(fwname, sizeof(fwname), BWI_FW_STUB_PATH,
+ sc->sc_fw_version);
+ mac->mac_stub = firmware_get(fwname);
+ if (mac->mac_stub == NULL) {
+ if_printf(ifp, "request firmware %s failed\n", fwname);
+ return ENOMEM;
+ }
+ }
+
+ if (mac->mac_ucode == NULL) {
+ snprintf(fwname, sizeof(fwname), BWI_FW_UCODE_PATH,
+ sc->sc_fw_version,
+ mac->mac_rev >= 5 ? 5 : mac->mac_rev);
+
+ mac->mac_ucode = firmware_get(fwname);
+ if (mac->mac_ucode == NULL) {
+ if_printf(ifp, "request firmware %s failed\n", fwname);
+ return ENOMEM;
+ }
+
+ if (!bwi_fwimage_is_valid(sc, mac->mac_ucode, BWI_FW_T_UCODE))
+ return EINVAL;
+ }
+
+ if (mac->mac_pcm == NULL) {
+ snprintf(fwname, sizeof(fwname), BWI_FW_PCM_PATH,
+ sc->sc_fw_version,
+ mac->mac_rev < 5 ? 4 : 5);
+
+ mac->mac_pcm = firmware_get(fwname);
+ if (mac->mac_pcm == NULL) {
+ if_printf(ifp, "request firmware %s failed\n", fwname);
+ return ENOMEM;
+ }
+
+ if (!bwi_fwimage_is_valid(sc, mac->mac_pcm, BWI_FW_T_PCM))
+ return EINVAL;
+ }
+
+ if (mac->mac_iv == NULL) {
+ /* TODO: 11A */
+ if (mac->mac_rev == 2 || mac->mac_rev == 4) {
+ idx = 2;
+ } else if (mac->mac_rev >= 5 && mac->mac_rev <= 10) {
+ idx = 5;
+ } else {
+ if_printf(ifp, "no suitible IV for MAC rev %d\n",
+ mac->mac_rev);
+ return ENODEV;
+ }
+
+ snprintf(fwname, sizeof(fwname), BWI_FW_IV_PATH,
+ sc->sc_fw_version, idx);
+
+ mac->mac_iv = firmware_get(fwname);
+ if (mac->mac_iv == NULL) {
+ if_printf(ifp, "request firmware %s failed\n", fwname);
+ return ENOMEM;
+ }
+ if (!bwi_fwimage_is_valid(sc, mac->mac_iv, BWI_FW_T_IV))
+ return EINVAL;
+ }
+
+ if (mac->mac_iv_ext == NULL) {
+ /* TODO: 11A */
+ if (mac->mac_rev == 2 || mac->mac_rev == 4 ||
+ mac->mac_rev >= 11) {
+ /* No extended IV */
+ goto back;
+ } else if (mac->mac_rev >= 5 && mac->mac_rev <= 10) {
+ idx = 5;
+ } else {
+ if_printf(ifp, "no suitible ExtIV for MAC rev %d\n",
+ mac->mac_rev);
+ return ENODEV;
+ }
+
+ snprintf(fwname, sizeof(fwname), BWI_FW_IV_EXT_PATH,
+ sc->sc_fw_version, idx);
+
+ mac->mac_iv_ext = firmware_get(fwname);
+ if (mac->mac_iv_ext == NULL) {
+ if_printf(ifp, "request firmware %s failed\n", fwname);
+ return ENOMEM;
+ }
+ if (!bwi_fwimage_is_valid(sc, mac->mac_iv_ext, BWI_FW_T_IV))
+ return EINVAL;
+ }
+back:
+ return 0;
+}
+
+static void
+bwi_mac_fw_free(struct bwi_mac *mac)
+{
+ if (mac->mac_ucode != NULL) {
+ firmware_put(mac->mac_ucode, FIRMWARE_UNLOAD);
+ mac->mac_ucode = NULL;
+ }
+
+ if (mac->mac_pcm != NULL) {
+ firmware_put(mac->mac_pcm, FIRMWARE_UNLOAD);
+ mac->mac_pcm = NULL;
+ }
+
+ if (mac->mac_iv != NULL) {
+ firmware_put(mac->mac_iv, FIRMWARE_UNLOAD);
+ mac->mac_iv = NULL;
+ }
+
+ if (mac->mac_iv_ext != NULL) {
+ firmware_put(mac->mac_iv_ext, FIRMWARE_UNLOAD);
+ mac->mac_iv_ext = NULL;
+ }
+
+ if (mac->mac_stub != NULL) {
+ firmware_put(mac->mac_stub, FIRMWARE_UNLOAD);
+ mac->mac_stub = NULL;
+ }
+}
+
+static int
+bwi_mac_fw_load(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct ifnet *ifp = sc->sc_ifp;
+ const uint32_t *fw;
+ uint16_t fw_rev;
+ int fw_len, i;
+
+ /*
+ * Load ucode image
+ */
+ fw = (const uint32_t *)
+ ((const uint8_t *)mac->mac_ucode->data + BWI_FWHDR_SZ);
+ fw_len = (mac->mac_ucode->datasize - BWI_FWHDR_SZ) / sizeof(uint32_t);
+
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL,
+ BWI_MOBJ_CTRL_VAL(
+ BWI_FW_UCODE_MOBJ | BWI_WR_MOBJ_AUTOINC, 0));
+ for (i = 0; i < fw_len; ++i) {
+ CSR_WRITE_4(sc, BWI_MOBJ_DATA, be32toh(fw[i]));
+ DELAY(10);
+ }
+
+ /*
+ * Load PCM image
+ */
+ fw = (const uint32_t *)
+ ((const uint8_t *)mac->mac_pcm->data + BWI_FWHDR_SZ);
+ fw_len = (mac->mac_pcm->datasize - BWI_FWHDR_SZ) / sizeof(uint32_t);
+
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL,
+ BWI_MOBJ_CTRL_VAL(BWI_FW_PCM_MOBJ, 0x01ea));
+ CSR_WRITE_4(sc, BWI_MOBJ_DATA, 0x4000);
+
+ CSR_WRITE_4(sc, BWI_MOBJ_CTRL,
+ BWI_MOBJ_CTRL_VAL(BWI_FW_PCM_MOBJ, 0x01eb));
+ for (i = 0; i < fw_len; ++i) {
+ CSR_WRITE_4(sc, BWI_MOBJ_DATA, be32toh(fw[i]));
+ DELAY(10);
+ }
+
+ CSR_WRITE_4(sc, BWI_MAC_INTR_STATUS, BWI_ALL_INTRS);
+ CSR_WRITE_4(sc, BWI_MAC_STATUS,
+ BWI_MAC_STATUS_UCODE_START |
+ BWI_MAC_STATUS_IHREN |
+ BWI_MAC_STATUS_INFRA);
+
+#define NRETRY 200
+
+ for (i = 0; i < NRETRY; ++i) {
+ uint32_t intr_status;
+
+ intr_status = CSR_READ_4(sc, BWI_MAC_INTR_STATUS);
+ if (intr_status == BWI_INTR_READY)
+ break;
+ DELAY(10);
+ }
+ if (i == NRETRY) {
+ if_printf(ifp, "firmware (ucode&pcm) loading timed out\n");
+ return ETIMEDOUT;
+ }
+
+#undef NRETRY
+
+ CSR_READ_4(sc, BWI_MAC_INTR_STATUS); /* dummy read */
+
+ fw_rev = MOBJ_READ_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_FWREV);
+ if (fw_rev > BWI_FW_VERSION3_REVMAX) {
+ if_printf(ifp, "firmware version 4 is not supported yet\n");
+ return ENODEV;
+ }
+
+ if_printf(ifp, "firmware rev 0x%04x, patch level 0x%04x\n", fw_rev,
+ MOBJ_READ_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_FWPATCHLV));
+ return 0;
+}
+
+static int
+bwi_mac_gpio_init(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_regwin *old, *gpio_rw;
+ uint32_t filt, bits;
+ int error;
+
+ CSR_CLRBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_GPOSEL_MASK);
+ /* TODO:LED */
+
+ CSR_SETBITS_2(sc, BWI_MAC_GPIO_MASK, 0xf);
+
+ filt = 0x1f;
+ bits = 0xf;
+ if (sc->sc_bbp_id == BWI_BBPID_BCM4301) {
+ filt |= 0x60;
+ bits |= 0x60;
+ }
+ if (sc->sc_card_flags & BWI_CARD_F_PA_GPIO9) {
+ CSR_SETBITS_2(sc, BWI_MAC_GPIO_MASK, 0x200);
+ filt |= 0x200;
+ bits |= 0x200;
+ }
+
+ gpio_rw = BWI_GPIO_REGWIN(sc);
+ error = bwi_regwin_switch(sc, gpio_rw, &old);
+ if (error)
+ return error;
+
+ CSR_FILT_SETBITS_4(sc, BWI_GPIO_CTRL, filt, bits);
+
+ return bwi_regwin_switch(sc, old, NULL);
+}
+
+static int
+bwi_mac_gpio_fini(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_regwin *old, *gpio_rw;
+ int error;
+
+ gpio_rw = BWI_GPIO_REGWIN(sc);
+ error = bwi_regwin_switch(sc, gpio_rw, &old);
+ if (error)
+ return error;
+
+ CSR_WRITE_4(sc, BWI_GPIO_CTRL, 0);
+
+ return bwi_regwin_switch(sc, old, NULL);
+}
+
+static int
+bwi_mac_fw_load_iv(struct bwi_mac *mac, const struct firmware *fw)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct ifnet *ifp = sc->sc_ifp;
+ const struct bwi_fwhdr *hdr;
+ const struct bwi_fw_iv *iv;
+ int n, i, iv_img_size;
+
+ /* Get the number of IVs in the IV image */
+ hdr = (const struct bwi_fwhdr *)fw->data;
+ n = be32toh(hdr->fw_iv_cnt);
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_INIT | BWI_DBG_FIRMWARE,
+ "IV count %d\n", n);
+
+ /* Calculate the IV image size, for later sanity check */
+ iv_img_size = fw->datasize - sizeof(*hdr);
+
+ /* Locate the first IV */
+ iv = (const struct bwi_fw_iv *)
+ ((const uint8_t *)fw->data + sizeof(*hdr));
+
+ for (i = 0; i < n; ++i) {
+ uint16_t iv_ofs, ofs;
+ int sz = 0;
+
+ if (iv_img_size < sizeof(iv->iv_ofs)) {
+ if_printf(ifp, "invalid IV image, ofs\n");
+ return EINVAL;
+ }
+ iv_img_size -= sizeof(iv->iv_ofs);
+ sz += sizeof(iv->iv_ofs);
+
+ iv_ofs = be16toh(iv->iv_ofs);
+
+ ofs = __SHIFTOUT(iv_ofs, BWI_FW_IV_OFS_MASK);
+ if (ofs >= 0x1000) {
+ if_printf(ifp, "invalid ofs (0x%04x) "
+ "for %dth iv\n", ofs, i);
+ return EINVAL;
+ }
+
+ if (iv_ofs & BWI_FW_IV_IS_32BIT) {
+ uint32_t val32;
+
+ if (iv_img_size < sizeof(iv->iv_val.val32)) {
+ if_printf(ifp, "invalid IV image, val32\n");
+ return EINVAL;
+ }
+ iv_img_size -= sizeof(iv->iv_val.val32);
+ sz += sizeof(iv->iv_val.val32);
+
+ val32 = be32toh(iv->iv_val.val32);
+ CSR_WRITE_4(sc, ofs, val32);
+ } else {
+ uint16_t val16;
+
+ if (iv_img_size < sizeof(iv->iv_val.val16)) {
+ if_printf(ifp, "invalid IV image, val16\n");
+ return EINVAL;
+ }
+ iv_img_size -= sizeof(iv->iv_val.val16);
+ sz += sizeof(iv->iv_val.val16);
+
+ val16 = be16toh(iv->iv_val.val16);
+ CSR_WRITE_2(sc, ofs, val16);
+ }
+
+ iv = (const struct bwi_fw_iv *)((const uint8_t *)iv + sz);
+ }
+
+ if (iv_img_size != 0) {
+ if_printf(ifp, "invalid IV image, size left %d\n", iv_img_size);
+ return EINVAL;
+ }
+ return 0;
+}
+
+static int
+bwi_mac_fw_init(struct bwi_mac *mac)
+{
+ struct ifnet *ifp = mac->mac_sc->sc_ifp;
+ int error;
+
+ error = bwi_mac_fw_load_iv(mac, mac->mac_iv);
+ if (error) {
+ if_printf(ifp, "load IV failed\n");
+ return error;
+ }
+
+ if (mac->mac_iv_ext != NULL) {
+ error = bwi_mac_fw_load_iv(mac, mac->mac_iv_ext);
+ if (error)
+ if_printf(ifp, "load ExtIV failed\n");
+ }
+ return error;
+}
+
+static void
+bwi_mac_opmode_init(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct ifnet *ifp = sc->sc_ifp;
+ struct ieee80211com *ic = ifp->if_l2com;
+ uint32_t mac_status;
+ uint16_t pre_tbtt;
+
+ CSR_CLRBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_INFRA);
+ CSR_SETBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_INFRA);
+
+ /* Set probe resp timeout to infinite */
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_PROBE_RESP_TO, 0);
+
+ /*
+ * TODO: factor out following part
+ */
+
+ mac_status = CSR_READ_4(sc, BWI_MAC_STATUS);
+ mac_status &= ~(BWI_MAC_STATUS_OPMODE_HOSTAP |
+ BWI_MAC_STATUS_PASS_CTL |
+ BWI_MAC_STATUS_PASS_BCN |
+ BWI_MAC_STATUS_PASS_BADPLCP |
+ BWI_MAC_STATUS_PASS_BADFCS |
+ BWI_MAC_STATUS_PROMISC);
+ mac_status |= BWI_MAC_STATUS_INFRA;
+
+ /* Always turn on PROMISC on old hardware */
+ if (mac->mac_rev < 5)
+ mac_status |= BWI_MAC_STATUS_PROMISC;
+
+ switch (ic->ic_opmode) {
+ case IEEE80211_M_IBSS:
+ mac_status &= ~BWI_MAC_STATUS_INFRA;
+ break;
+ case IEEE80211_M_HOSTAP:
+ mac_status |= BWI_MAC_STATUS_OPMODE_HOSTAP;
+ break;
+ case IEEE80211_M_MONITOR:
+#if 0
+ /* Do you want data from your microwave oven? */
+ mac_status |= BWI_MAC_STATUS_PASS_CTL |
+ BWI_MAC_STATUS_PASS_BADPLCP |
+ BWI_MAC_STATUS_PASS_BADFCS;
+#else
+ mac_status |= BWI_MAC_STATUS_PASS_CTL;
+#endif
+ /* Promisc? */
+ break;
+ default:
+ break;
+ }
+
+ if (ic->ic_ifp->if_flags & IFF_PROMISC)
+ mac_status |= BWI_MAC_STATUS_PROMISC;
+
+ CSR_WRITE_4(sc, BWI_MAC_STATUS, mac_status);
+
+ if (ic->ic_opmode != IEEE80211_M_IBSS &&
+ ic->ic_opmode != IEEE80211_M_HOSTAP) {
+ if (sc->sc_bbp_id == BWI_BBPID_BCM4306 && sc->sc_bbp_rev == 3)
+ pre_tbtt = 100;
+ else
+ pre_tbtt = 50;
+ } else {
+ pre_tbtt = 2;
+ }
+ CSR_WRITE_2(sc, BWI_MAC_PRE_TBTT, pre_tbtt);
+}
+
+static void
+bwi_mac_hostflags_init(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct bwi_rf *rf = &mac->mac_rf;
+ uint64_t host_flags;
+
+ if (phy->phy_mode == IEEE80211_MODE_11A)
+ return;
+
+ host_flags = HFLAGS_READ(mac);
+ host_flags |= BWI_HFLAG_SYM_WA;
+
+ if (phy->phy_mode == IEEE80211_MODE_11G) {
+ if (phy->phy_rev == 1)
+ host_flags |= BWI_HFLAG_GDC_WA;
+ if (sc->sc_card_flags & BWI_CARD_F_PA_GPIO9)
+ host_flags |= BWI_HFLAG_OFDM_PA;
+ } else if (phy->phy_mode == IEEE80211_MODE_11B) {
+ if (phy->phy_rev >= 2 && rf->rf_type == BWI_RF_T_BCM2050)
+ host_flags &= ~BWI_HFLAG_GDC_WA;
+ } else {
+ panic("unknown PHY mode %u\n", phy->phy_mode);
+ }
+
+ HFLAGS_WRITE(mac, host_flags);
+}
+
+static void
+bwi_mac_bss_param_init(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct ifnet *ifp = sc->sc_ifp;
+ struct ieee80211com *ic = ifp->if_l2com;
+ const struct ieee80211_rate_table *rt;
+ struct bwi_retry_lim lim;
+ uint16_t cw_min;
+
+ /*
+ * Set short/long retry limits
+ */
+ bzero(&lim, sizeof(lim));
+ lim.shretry = BWI_SHRETRY;
+ lim.shretry_fb = BWI_SHRETRY_FB;
+ lim.lgretry = BWI_LGRETRY;
+ lim.lgretry_fb = BWI_LGRETRY_FB;
+ bwi_mac_set_retry_lim(mac, &lim);
+
+ /*
+ * Implicitly prevent firmware from sending probe response
+ * by setting its "probe response timeout" to 1us.
+ */
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_PROBE_RESP_TO, 1);
+
+ /*
+ * XXX MAC level acknowledge and CW min/max should depend
+ * on the char rateset of the IBSS/BSS to join.
+ * XXX this is all wrong; should be done on channel change
+ */
+ if (phy->phy_mode == IEEE80211_MODE_11B) {
+ rt = ieee80211_get_ratetable(
+ ieee80211_find_channel(ic, 2412, IEEE80211_CHAN_B));
+ bwi_mac_set_ackrates(mac, rt,
+ &ic->ic_sup_rates[IEEE80211_MODE_11B]);
+ } else {
+ rt = ieee80211_get_ratetable(
+ ieee80211_find_channel(ic, 2412, IEEE80211_CHAN_G));
+ bwi_mac_set_ackrates(mac, rt,
+ &ic->ic_sup_rates[IEEE80211_MODE_11G]);
+ }
+
+ /*
+ * Set CW min
+ */
+ if (phy->phy_mode == IEEE80211_MODE_11B)
+ cw_min = IEEE80211_CW_MIN_0;
+ else
+ cw_min = IEEE80211_CW_MIN_1;
+ MOBJ_WRITE_2(mac, BWI_80211_MOBJ, BWI_80211_MOBJ_CWMIN, cw_min);
+
+ /*
+ * Set CW max
+ */
+ MOBJ_WRITE_2(mac, BWI_80211_MOBJ, BWI_80211_MOBJ_CWMAX,
+ IEEE80211_CW_MAX);
+}
+
+static void
+bwi_mac_set_retry_lim(struct bwi_mac *mac, const struct bwi_retry_lim *lim)
+{
+ /* Short/Long retry limit */
+ MOBJ_WRITE_2(mac, BWI_80211_MOBJ, BWI_80211_MOBJ_SHRETRY,
+ lim->shretry);
+ MOBJ_WRITE_2(mac, BWI_80211_MOBJ, BWI_80211_MOBJ_LGRETRY,
+ lim->lgretry);
+
+ /* Short/Long retry fallback limit */
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_SHRETRY_FB,
+ lim->shretry_fb);
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_LGRETEY_FB,
+ lim->lgretry_fb);
+}
+
+static void
+bwi_mac_set_ackrates(struct bwi_mac *mac, const struct ieee80211_rate_table *rt,
+ const struct ieee80211_rateset *rs)
+{
+ int i;
+
+ /* XXX not standard conforming */
+ for (i = 0; i < rs->rs_nrates; ++i) {
+ enum ieee80211_phytype modtype;
+ uint16_t ofs;
+
+ modtype = ieee80211_rate2phytype(rt, rs->rs_rates[i]);
+ switch (modtype) {
+ case IEEE80211_T_DS:
+ ofs = 0x4c0;
+ break;
+ case IEEE80211_T_OFDM:
+ ofs = 0x480;
+ break;
+ default:
+ panic("unsupported modtype %u\n", modtype);
+ }
+ ofs += 2*(ieee80211_rate2plcp(rs->rs_rates[i], modtype) & 0xf);
+
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, ofs + 0x20,
+ MOBJ_READ_2(mac, BWI_COMM_MOBJ, ofs));
+ }
+}
+
+int
+bwi_mac_start(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+
+ CSR_SETBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_ENABLE);
+ CSR_WRITE_4(sc, BWI_MAC_INTR_STATUS, BWI_INTR_READY);
+
+ /* Flush pending bus writes */
+ CSR_READ_4(sc, BWI_MAC_STATUS);
+ CSR_READ_4(sc, BWI_MAC_INTR_STATUS);
+
+ return bwi_mac_config_ps(mac);
+}
+
+int
+bwi_mac_stop(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ int error, i;
+
+ error = bwi_mac_config_ps(mac);
+ if (error)
+ return error;
+
+ CSR_CLRBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_ENABLE);
+
+ /* Flush pending bus write */
+ CSR_READ_4(sc, BWI_MAC_STATUS);
+
+#define NRETRY 10000
+ for (i = 0; i < NRETRY; ++i) {
+ if (CSR_READ_4(sc, BWI_MAC_INTR_STATUS) & BWI_INTR_READY)
+ break;
+ DELAY(1);
+ }
+ if (i == NRETRY) {
+ device_printf(sc->sc_dev, "can't stop MAC\n");
+ return ETIMEDOUT;
+ }
+#undef NRETRY
+
+ return 0;
+}
+
+int
+bwi_mac_config_ps(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ uint32_t status;
+
+ status = CSR_READ_4(sc, BWI_MAC_STATUS);
+
+ status &= ~BWI_MAC_STATUS_HW_PS;
+ status |= BWI_MAC_STATUS_WAKEUP;
+ CSR_WRITE_4(sc, BWI_MAC_STATUS, status);
+
+ /* Flush pending bus write */
+ CSR_READ_4(sc, BWI_MAC_STATUS);
+
+ if (mac->mac_rev >= 5) {
+ int i;
+
+#define NRETRY 100
+ for (i = 0; i < NRETRY; ++i) {
+ if (MOBJ_READ_2(mac, BWI_COMM_MOBJ,
+ BWI_COMM_MOBJ_UCODE_STATE) != BWI_UCODE_STATE_PS)
+ break;
+ DELAY(10);
+ }
+ if (i == NRETRY) {
+ device_printf(sc->sc_dev, "config PS failed\n");
+ return ETIMEDOUT;
+ }
+#undef NRETRY
+ }
+ return 0;
+}
+
+void
+bwi_mac_reset_hwkeys(struct bwi_mac *mac)
+{
+ /* TODO: firmware crypto */
+ MOBJ_READ_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_KEYTABLE_OFS);
+}
+
+void
+bwi_mac_shutdown(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ int i;
+
+ if (mac->mac_flags & BWI_MAC_F_HAS_TXSTATS)
+ sc->sc_free_txstats(sc);
+
+ sc->sc_free_rx_ring(sc);
+
+ for (i = 0; i < BWI_TX_NRING; ++i)
+ sc->sc_free_tx_ring(sc, i);
+
+ bwi_rf_off(mac);
+
+ /* TODO:LED */
+
+ bwi_mac_gpio_fini(mac);
+
+ bwi_rf_off(mac); /* XXX again */
+ CSR_WRITE_2(sc, BWI_BBP_ATTEN, BWI_BBP_ATTEN_MAGIC);
+ bwi_regwin_disable(sc, &mac->mac_regwin, 0);
+
+ mac->mac_flags &= ~BWI_MAC_F_INITED;
+}
+
+static int
+bwi_mac_get_property(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ enum bwi_bus_space old_bus_space;
+ uint32_t val;
+
+ /*
+ * Byte swap
+ */
+ val = CSR_READ_4(sc, BWI_MAC_STATUS);
+ if (val & BWI_MAC_STATUS_BSWAP) {
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_ATTACH, "%s\n",
+ "need byte swap");
+ mac->mac_flags |= BWI_MAC_F_BSWAP;
+ }
+
+ /*
+ * DMA address space
+ */
+ old_bus_space = sc->sc_bus_space;
+
+ val = CSR_READ_4(sc, BWI_STATE_HI);
+ if (__SHIFTOUT(val, BWI_STATE_HI_FLAGS_MASK) &
+ BWI_STATE_HI_FLAG_64BIT) {
+ /* 64bit address */
+ sc->sc_bus_space = BWI_BUS_SPACE_64BIT;
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_ATTACH, "%s\n",
+ "64bit bus space");
+ } else {
+ uint32_t txrx_reg = BWI_TXRX_CTRL_BASE + BWI_TX32_CTRL;
+
+ CSR_WRITE_4(sc, txrx_reg, BWI_TXRX32_CTRL_ADDRHI_MASK);
+ if (CSR_READ_4(sc, txrx_reg) & BWI_TXRX32_CTRL_ADDRHI_MASK) {
+ /* 32bit address */
+ sc->sc_bus_space = BWI_BUS_SPACE_32BIT;
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_ATTACH, "%s\n",
+ "32bit bus space");
+ } else {
+ /* 30bit address */
+ sc->sc_bus_space = BWI_BUS_SPACE_30BIT;
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_ATTACH, "%s\n",
+ "30bit bus space");
+ }
+ }
+
+ if (old_bus_space != 0 && old_bus_space != sc->sc_bus_space) {
+ device_printf(sc->sc_dev, "MACs bus space mismatch!\n");
+ return ENXIO;
+ }
+ return 0;
+}
+
+void
+bwi_mac_updateslot(struct bwi_mac *mac, int shslot)
+{
+ uint16_t slot_time;
+
+ if (mac->mac_phy.phy_mode == IEEE80211_MODE_11B)
+ return;
+
+ if (shslot)
+ slot_time = IEEE80211_DUR_SHSLOT;
+ else
+ slot_time = IEEE80211_DUR_SLOT;
+
+ CSR_WRITE_2(mac->mac_sc, BWI_MAC_SLOTTIME,
+ slot_time + BWI_MAC_SLOTTIME_ADJUST);
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_SLOTTIME, slot_time);
+}
+
+int
+bwi_mac_attach(struct bwi_softc *sc, int id, uint8_t rev)
+{
+ struct bwi_mac *mac;
+ int i;
+
+ KASSERT(sc->sc_nmac <= BWI_MAC_MAX && sc->sc_nmac >= 0,
+ ("sc_nmac %d", sc->sc_nmac));
+
+ if (sc->sc_nmac == BWI_MAC_MAX) {
+ device_printf(sc->sc_dev, "too many MACs\n");
+ return 0;
+ }
+
+ /*
+ * More than one MAC is only supported by BCM4309
+ */
+ if (sc->sc_nmac != 0 &&
+ sc->sc_pci_did != PCI_PRODUCT_BROADCOM_BCM4309) {
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_ATTACH, "%s\n",
+ "ignore second MAC");
+ return 0;
+ }
+
+ mac = &sc->sc_mac[sc->sc_nmac];
+
+ /* XXX will this happen? */
+ if (BWI_REGWIN_EXIST(&mac->mac_regwin)) {
+ device_printf(sc->sc_dev, "%dth MAC already attached\n",
+ sc->sc_nmac);
+ return 0;
+ }
+
+ /*
+ * Test whether the revision of this MAC is supported
+ */
+#define N(arr) (int)(sizeof(arr) / sizeof(arr[0]))
+ for (i = 0; i < N(bwi_sup_macrev); ++i) {
+ if (bwi_sup_macrev[i] == rev)
+ break;
+ }
+ if (i == N(bwi_sup_macrev)) {
+ device_printf(sc->sc_dev, "MAC rev %u is "
+ "not supported\n", rev);
+ return ENXIO;
+ }
+#undef N
+
+ BWI_CREATE_MAC(mac, sc, id, rev);
+ sc->sc_nmac++;
+
+ if (mac->mac_rev < 5) {
+ mac->mac_flags |= BWI_MAC_F_HAS_TXSTATS;
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_ATTACH, "%s\n",
+ "has TX stats");
+ } else {
+ mac->mac_flags |= BWI_MAC_F_PHYE_RESET;
+ }
+
+ device_printf(sc->sc_dev, "MAC: rev %u\n", rev);
+ return 0;
+}
+
+static __inline void
+bwi_mac_balance_atten(int *bbp_atten0, int *rf_atten0)
+{
+ int bbp_atten, rf_atten, rf_atten_lim = -1;
+
+ bbp_atten = *bbp_atten0;
+ rf_atten = *rf_atten0;
+
+ /*
+ * RF attenuation affects TX power BWI_RF_ATTEN_FACTOR times
+ * as much as BBP attenuation, so we try our best to keep RF
+ * attenuation within range. BBP attenuation will be clamped
+ * later if it is out of range during balancing.
+ *
+ * BWI_RF_ATTEN_MAX0 is used as RF attenuation upper limit.
+ */
+
+ /*
+ * Use BBP attenuation to balance RF attenuation
+ */
+ if (rf_atten < 0)
+ rf_atten_lim = 0;
+ else if (rf_atten > BWI_RF_ATTEN_MAX0)
+ rf_atten_lim = BWI_RF_ATTEN_MAX0;
+
+ if (rf_atten_lim >= 0) {
+ bbp_atten += (BWI_RF_ATTEN_FACTOR * (rf_atten - rf_atten_lim));
+ rf_atten = rf_atten_lim;
+ }
+
+ /*
+ * If possible, use RF attenuation to balance BBP attenuation
+ * NOTE: RF attenuation is still kept within range.
+ */
+ while (rf_atten < BWI_RF_ATTEN_MAX0 && bbp_atten > BWI_BBP_ATTEN_MAX) {
+ bbp_atten -= BWI_RF_ATTEN_FACTOR;
+ ++rf_atten;
+ }
+ while (rf_atten > 0 && bbp_atten < 0) {
+ bbp_atten += BWI_RF_ATTEN_FACTOR;
+ --rf_atten;
+ }
+
+ /* RF attenuation MUST be within range */
+ KASSERT(rf_atten >= 0 && rf_atten <= BWI_RF_ATTEN_MAX0,
+ ("rf_atten %d", rf_atten));
+
+ /*
+ * Clamp BBP attenuation
+ */
+ if (bbp_atten < 0)
+ bbp_atten = 0;
+ else if (bbp_atten > BWI_BBP_ATTEN_MAX)
+ bbp_atten = BWI_BBP_ATTEN_MAX;
+
+ *rf_atten0 = rf_atten;
+ *bbp_atten0 = bbp_atten;
+}
+
+static void
+bwi_mac_adjust_tpctl(struct bwi_mac *mac, int rf_atten_adj, int bbp_atten_adj)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct bwi_tpctl tpctl;
+ int bbp_atten, rf_atten, tp_ctrl1;
+
+ bcopy(&mac->mac_tpctl, &tpctl, sizeof(tpctl));
+
+ /* NOTE: Use signed value to do calulation */
+ bbp_atten = tpctl.bbp_atten;
+ rf_atten = tpctl.rf_atten;
+ tp_ctrl1 = tpctl.tp_ctrl1;
+
+ bbp_atten += bbp_atten_adj;
+ rf_atten += rf_atten_adj;
+
+ bwi_mac_balance_atten(&bbp_atten, &rf_atten);
+
+ if (rf->rf_type == BWI_RF_T_BCM2050 && rf->rf_rev == 2) {
+ if (rf_atten <= 1) {
+ if (tp_ctrl1 == 0) {
+ tp_ctrl1 = 3;
+ bbp_atten += 2;
+ rf_atten += 2;
+ } else if (sc->sc_card_flags & BWI_CARD_F_PA_GPIO9) {
+ bbp_atten +=
+ (BWI_RF_ATTEN_FACTOR * (rf_atten - 2));
+ rf_atten = 2;
+ }
+ } else if (rf_atten > 4 && tp_ctrl1 != 0) {
+ tp_ctrl1 = 0;
+ if (bbp_atten < 3) {
+ bbp_atten += 2;
+ rf_atten -= 3;
+ } else {
+ bbp_atten -= 2;
+ rf_atten -= 2;
+ }
+ }
+ bwi_mac_balance_atten(&bbp_atten, &rf_atten);
+ }
+
+ tpctl.bbp_atten = bbp_atten;
+ tpctl.rf_atten = rf_atten;
+ tpctl.tp_ctrl1 = tp_ctrl1;
+
+ bwi_mac_lock(mac);
+ bwi_mac_set_tpctl_11bg(mac, &tpctl);
+ bwi_mac_unlock(mac);
+}
+
+/*
+ * http://bcm-specs.sipsolutions.net/RecalculateTransmissionPower
+ */
+void
+bwi_mac_calibrate_txpower(struct bwi_mac *mac, enum bwi_txpwrcb_type type)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+ int8_t tssi[4], tssi_avg, cur_txpwr;
+ int error, i, ofdm_tssi;
+ int txpwr_diff, rf_atten_adj, bbp_atten_adj;
+
+ if (!sc->sc_txpwr_calib)
+ return;
+
+ if (mac->mac_flags & BWI_MAC_F_TPCTL_ERROR) {
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_TXPOWER, "%s\n",
+ "tpctl error happened, can't set txpower");
+ return;
+ }
+
+ if (BWI_IS_BRCM_BU4306(sc)) {
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_TXPOWER, "%s\n",
+ "BU4306, can't set txpower");
+ return;
+ }
+
+ /*
+ * Save latest TSSI and reset the related memory objects
+ */
+ ofdm_tssi = 0;
+ error = bwi_rf_get_latest_tssi(mac, tssi, BWI_COMM_MOBJ_TSSI_DS);
+ if (error) {
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_TXPOWER, "%s\n",
+ "no DS tssi");
+
+ if (mac->mac_phy.phy_mode == IEEE80211_MODE_11B) {
+ if (type == BWI_TXPWR_FORCE) {
+ rf_atten_adj = 0;
+ bbp_atten_adj = 1;
+ goto calib;
+ } else {
+ return;
+ }
+ }
+
+ error = bwi_rf_get_latest_tssi(mac, tssi,
+ BWI_COMM_MOBJ_TSSI_OFDM);
+ if (error) {
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_TXPOWER, "%s\n",
+ "no OFDM tssi");
+ if (type == BWI_TXPWR_FORCE) {
+ rf_atten_adj = 0;
+ bbp_atten_adj = 1;
+ goto calib;
+ } else {
+ return;
+ }
+ }
+
+ for (i = 0; i < 4; ++i) {
+ tssi[i] += 0x20;
+ tssi[i] &= 0x3f;
+ }
+ ofdm_tssi = 1;
+ }
+ bwi_rf_clear_tssi(mac);
+
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_TXPOWER,
+ "tssi0 %d, tssi1 %d, tssi2 %d, tssi3 %d\n",
+ tssi[0], tssi[1], tssi[2], tssi[3]);
+
+ /*
+ * Calculate RF/BBP attenuation adjustment based on
+ * the difference between desired TX power and sampled
+ * TX power.
+ */
+ /* +8 == "each incremented by 1/2" */
+ tssi_avg = (tssi[0] + tssi[1] + tssi[2] + tssi[3] + 8) / 4;
+ if (ofdm_tssi && (HFLAGS_READ(mac) & BWI_HFLAG_PWR_BOOST_DS))
+ tssi_avg -= 13;
+
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_TXPOWER, "tssi avg %d\n", tssi_avg);
+
+ error = bwi_rf_tssi2dbm(mac, tssi_avg, &cur_txpwr);
+ if (error)
+ return;
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_TXPOWER, "current txpower %d\n",
+ cur_txpwr);
+
+ txpwr_diff = rf->rf_txpower_max - cur_txpwr; /* XXX ni_txpower */
+
+ rf_atten_adj = -howmany(txpwr_diff, 8);
+ if (type == BWI_TXPWR_INIT) {
+ /*
+ * Move toward EEPROM max TX power as fast as we can
+ */
+ bbp_atten_adj = -txpwr_diff;
+ } else {
+ bbp_atten_adj = -(txpwr_diff / 2);
+ }
+ bbp_atten_adj -= (BWI_RF_ATTEN_FACTOR * rf_atten_adj);
+
+ if (rf_atten_adj == 0 && bbp_atten_adj == 0) {
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_TXPOWER, "%s\n",
+ "no need to adjust RF/BBP attenuation");
+ /* TODO: LO */
+ return;
+ }
+
+calib:
+ DPRINTF(sc, BWI_DBG_MAC | BWI_DBG_TXPOWER,
+ "rf atten adjust %d, bbp atten adjust %d\n",
+ rf_atten_adj, bbp_atten_adj);
+ bwi_mac_adjust_tpctl(mac, rf_atten_adj, bbp_atten_adj);
+ /* TODO: LO */
+}
+
+static void
+bwi_mac_lock(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct ifnet *ifp = sc->sc_ifp;
+ struct ieee80211com *ic = ifp->if_l2com;
+
+ KASSERT((mac->mac_flags & BWI_MAC_F_LOCKED) == 0,
+ ("mac_flags 0x%x", mac->mac_flags));
+
+ if (mac->mac_rev < 3)
+ bwi_mac_stop(mac);
+ else if (ic->ic_opmode != IEEE80211_M_HOSTAP)
+ bwi_mac_config_ps(mac);
+
+ CSR_SETBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_RFLOCK);
+
+ /* Flush pending bus write */
+ CSR_READ_4(sc, BWI_MAC_STATUS);
+ DELAY(10);
+
+ mac->mac_flags |= BWI_MAC_F_LOCKED;
+}
+
+static void
+bwi_mac_unlock(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct ifnet *ifp = sc->sc_ifp;
+ struct ieee80211com *ic = ifp->if_l2com;
+
+ KASSERT(mac->mac_flags & BWI_MAC_F_LOCKED,
+ ("mac_flags 0x%x", mac->mac_flags));
+
+ CSR_READ_2(sc, BWI_PHYINFO); /* dummy read */
+
+ CSR_CLRBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_RFLOCK);
+
+ if (mac->mac_rev < 3)
+ bwi_mac_start(mac);
+ else if (ic->ic_opmode != IEEE80211_M_HOSTAP)
+ bwi_mac_config_ps(mac);
+
+ mac->mac_flags &= ~BWI_MAC_F_LOCKED;
+}
+
+void
+bwi_mac_set_promisc(struct bwi_mac *mac, int promisc)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+
+ if (mac->mac_rev < 5) /* Promisc is always on */
+ return;
+
+ if (promisc)
+ CSR_SETBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_PROMISC);
+ else
+ CSR_CLRBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_PROMISC);
+}
diff --git a/sys/dev/bwi/bwimac.h b/sys/dev/bwi/bwimac.h
new file mode 100644
index 0000000..2c5275e
--- /dev/null
+++ b/sys/dev/bwi/bwimac.h
@@ -0,0 +1,100 @@
+/*
+ * Copyright (c) 2007 The DragonFly Project. All rights reserved.
+ *
+ * This code is derived from software contributed to The DragonFly Project
+ * by Sepherosa Ziehau <sepherosa@gmail.com>
+ *
+ * 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. Neither the name of The DragonFly Project nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific, prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
+ * COPYRIGHT HOLDERS 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.
+ *
+ * $DragonFly: src/sys/dev/netif/bwi/bwimac.h,v 1.2 2008/02/15 11:15:38 sephe Exp $
+ * $FreeBSD$
+ */
+
+#ifndef _BWI_MAC_H
+#define _BWI_MAC_H
+
+int bwi_mac_attach(struct bwi_softc *, int, uint8_t);
+int bwi_mac_lateattach(struct bwi_mac *);
+void bwi_mac_detach(struct bwi_mac *);
+int bwi_mac_init(struct bwi_mac *);
+void bwi_mac_reset(struct bwi_mac *, int);
+int bwi_mac_start(struct bwi_mac *);
+int bwi_mac_stop(struct bwi_mac *);
+void bwi_mac_shutdown(struct bwi_mac *);
+void bwi_mac_updateslot(struct bwi_mac *, int);
+void bwi_mac_set_promisc(struct bwi_mac *, int);
+
+void bwi_mac_calibrate_txpower(struct bwi_mac *,
+ enum bwi_txpwrcb_type);
+void bwi_mac_set_tpctl_11bg(struct bwi_mac *,
+ const struct bwi_tpctl *);
+void bwi_mac_init_tpctl_11bg(struct bwi_mac *);
+void bwi_mac_dummy_xmit(struct bwi_mac *);
+void bwi_mac_reset_hwkeys(struct bwi_mac *);
+int bwi_mac_config_ps(struct bwi_mac *);
+
+uint16_t bwi_memobj_read_2(struct bwi_mac *, uint16_t, uint16_t);
+uint32_t bwi_memobj_read_4(struct bwi_mac *, uint16_t, uint16_t);
+void bwi_memobj_write_2(struct bwi_mac *, uint16_t, uint16_t,
+ uint16_t);
+void bwi_memobj_write_4(struct bwi_mac *, uint16_t, uint16_t,
+ uint32_t);
+void bwi_tmplt_write_4(struct bwi_mac *, uint32_t, uint32_t);
+void bwi_hostflags_write(struct bwi_mac *, uint64_t);
+uint64_t bwi_hostflags_read(struct bwi_mac *);
+
+#define MOBJ_WRITE_2(mac, objid, ofs, val) \
+ bwi_memobj_write_2((mac), (objid), (ofs), (val))
+#define MOBJ_WRITE_4(mac, objid, ofs, val) \
+ bwi_memobj_write_4((mac), (objid), (ofs), (val))
+#define MOBJ_READ_2(mac, objid, ofs) \
+ bwi_memobj_read_2((mac), (objid), (ofs))
+#define MOBJ_READ_4(mac, objid, ofs) \
+ bwi_memobj_read_4((mac), (objid), (ofs))
+
+#define MOBJ_SETBITS_4(mac, objid, ofs, bits) \
+ MOBJ_WRITE_4((mac), (objid), (ofs), \
+ MOBJ_READ_4((mac), (objid), (ofs)) | (bits))
+#define MOBJ_CLRBITS_4(mac, objid, ofs, bits) \
+ MOBJ_WRITE_4((mac), (objid), (ofs), \
+ MOBJ_READ_4((mac), (objid), (ofs)) & ~(bits))
+
+#define MOBJ_FILT_SETBITS_2(mac, objid, ofs, filt, bits) \
+ MOBJ_WRITE_2((mac), (objid), (ofs), \
+ (MOBJ_READ_2((mac), (objid), (ofs)) & (filt)) | (bits))
+
+#define TMPLT_WRITE_4(mac, ofs, val) bwi_tmplt_write_4((mac), (ofs), (val))
+
+#define HFLAGS_WRITE(mac, flags) bwi_hostflags_write((mac), (flags))
+#define HFLAGS_READ(mac) bwi_hostflags_read((mac))
+#define HFLAGS_CLRBITS(mac, bits) \
+ HFLAGS_WRITE((mac), HFLAGS_READ((mac)) | (bits))
+#define HFLAGS_SETBITS(mac, bits) \
+ HFLAGS_WRITE((mac), HFLAGS_READ((mac)) & ~(bits))
+
+#endif /* !_BWI_MAC_H */
diff --git a/sys/dev/bwi/bwiphy.c b/sys/dev/bwi/bwiphy.c
new file mode 100644
index 0000000..2f93c59
--- /dev/null
+++ b/sys/dev/bwi/bwiphy.c
@@ -0,0 +1,1020 @@
+/*
+ * Copyright (c) 2007 The DragonFly Project. All rights reserved.
+ *
+ * This code is derived from software contributed to The DragonFly Project
+ * by Sepherosa Ziehau <sepherosa@gmail.com>
+ *
+ * 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. Neither the name of The DragonFly Project nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific, prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
+ * COPYRIGHT HOLDERS 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.
+ *
+ * $DragonFly: src/sys/dev/netif/bwi/bwiphy.c,v 1.5 2008/01/15 09:01:13 sephe Exp $
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include "opt_inet.h"
+
+#include <sys/param.h>
+#include <sys/endian.h>
+#include <sys/kernel.h>
+#include <sys/bus.h>
+#include <sys/malloc.h>
+#include <sys/proc.h>
+#include <sys/rman.h>
+#include <sys/socket.h>
+#include <sys/sockio.h>
+#include <sys/sysctl.h>
+#include <sys/systm.h>
+
+#include <net/if.h>
+#include <net/if_dl.h>
+#include <net/if_media.h>
+#include <net/if_types.h>
+#include <net/if_arp.h>
+#include <net/ethernet.h>
+#include <net/if_llc.h>
+
+#include <net80211/ieee80211_var.h>
+#include <net80211/ieee80211_radiotap.h>
+#include <net80211/ieee80211_amrr.h>
+
+#include <machine/bus.h>
+
+#include <dev/bwi/bitops.h>
+#include <dev/bwi/if_bwireg.h>
+#include <dev/bwi/if_bwivar.h>
+#include <dev/bwi/bwimac.h>
+#include <dev/bwi/bwirf.h>
+#include <dev/bwi/bwiphy.h>
+
+static void bwi_phy_init_11a(struct bwi_mac *);
+static void bwi_phy_init_11g(struct bwi_mac *);
+static void bwi_phy_init_11b_rev2(struct bwi_mac *);
+static void bwi_phy_init_11b_rev4(struct bwi_mac *);
+static void bwi_phy_init_11b_rev5(struct bwi_mac *);
+static void bwi_phy_init_11b_rev6(struct bwi_mac *);
+
+static void bwi_phy_config_11g(struct bwi_mac *);
+static void bwi_phy_config_agc(struct bwi_mac *);
+
+static void bwi_tbl_write_2(struct bwi_mac *mac, uint16_t, uint16_t);
+static void bwi_tbl_write_4(struct bwi_mac *mac, uint16_t, uint32_t);
+
+#define SUP_BPHY(num) { .rev = num, .init = bwi_phy_init_11b_rev##num }
+
+static const struct {
+ uint8_t rev;
+ void (*init)(struct bwi_mac *);
+} bwi_sup_bphy[] = {
+ SUP_BPHY(2),
+ SUP_BPHY(4),
+ SUP_BPHY(5),
+ SUP_BPHY(6)
+};
+
+#undef SUP_BPHY
+
+#define BWI_PHYTBL_WRSSI 0x1000
+#define BWI_PHYTBL_NOISE_SCALE 0x1400
+#define BWI_PHYTBL_NOISE 0x1800
+#define BWI_PHYTBL_ROTOR 0x2000
+#define BWI_PHYTBL_DELAY 0x2400
+#define BWI_PHYTBL_RSSI 0x4000
+#define BWI_PHYTBL_SIGMA_SQ 0x5000
+#define BWI_PHYTBL_WRSSI_REV1 0x5400
+#define BWI_PHYTBL_FREQ 0x5800
+
+static const uint16_t bwi_phy_freq_11g_rev1[] =
+ { BWI_PHY_FREQ_11G_REV1 };
+static const uint16_t bwi_phy_noise_11g_rev1[] =
+ { BWI_PHY_NOISE_11G_REV1 };
+static const uint16_t bwi_phy_noise_11g[] =
+ { BWI_PHY_NOISE_11G };
+static const uint32_t bwi_phy_rotor_11g_rev1[] =
+ { BWI_PHY_ROTOR_11G_REV1 };
+static const uint16_t bwi_phy_noise_scale_11g_rev2[] =
+ { BWI_PHY_NOISE_SCALE_11G_REV2 };
+static const uint16_t bwi_phy_noise_scale_11g_rev7[] =
+ { BWI_PHY_NOISE_SCALE_11G_REV7 };
+static const uint16_t bwi_phy_noise_scale_11g[] =
+ { BWI_PHY_NOISE_SCALE_11G };
+static const uint16_t bwi_phy_sigma_sq_11g_rev2[] =
+ { BWI_PHY_SIGMA_SQ_11G_REV2 };
+static const uint16_t bwi_phy_sigma_sq_11g_rev7[] =
+ { BWI_PHY_SIGMA_SQ_11G_REV7 };
+static const uint32_t bwi_phy_delay_11g_rev1[] =
+ { BWI_PHY_DELAY_11G_REV1 };
+
+void
+bwi_phy_write(struct bwi_mac *mac, uint16_t ctrl, uint16_t data)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+
+ /* TODO: 11A */
+ CSR_WRITE_2(sc, BWI_PHY_CTRL, ctrl);
+ CSR_WRITE_2(sc, BWI_PHY_DATA, data);
+}
+
+uint16_t
+bwi_phy_read(struct bwi_mac *mac, uint16_t ctrl)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+
+ /* TODO: 11A */
+ CSR_WRITE_2(sc, BWI_PHY_CTRL, ctrl);
+ return CSR_READ_2(sc, BWI_PHY_DATA);
+}
+
+int
+bwi_phy_attach(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ uint8_t phyrev, phytype, phyver;
+ uint16_t val;
+ int i;
+
+ /* Get PHY type/revision/version */
+ val = CSR_READ_2(sc, BWI_PHYINFO);
+ phyrev = __SHIFTOUT(val, BWI_PHYINFO_REV_MASK);
+ phytype = __SHIFTOUT(val, BWI_PHYINFO_TYPE_MASK);
+ phyver = __SHIFTOUT(val, BWI_PHYINFO_VER_MASK);
+ device_printf(sc->sc_dev, "PHY: type %d, rev %d, ver %d\n",
+ phytype, phyrev, phyver);
+
+ /*
+ * Verify whether the revision of the PHY type is supported
+ * Convert PHY type to ieee80211_phymode
+ */
+ switch (phytype) {
+ case BWI_PHYINFO_TYPE_11A:
+ if (phyrev >= 4) {
+ device_printf(sc->sc_dev, "unsupported 11A PHY, "
+ "rev %u\n", phyrev);
+ return ENXIO;
+ }
+ phy->phy_init = bwi_phy_init_11a;
+ phy->phy_mode = IEEE80211_MODE_11A;
+ phy->phy_tbl_ctrl = BWI_PHYR_TBL_CTRL_11A;
+ phy->phy_tbl_data_lo = BWI_PHYR_TBL_DATA_LO_11A;
+ phy->phy_tbl_data_hi = BWI_PHYR_TBL_DATA_HI_11A;
+ break;
+ case BWI_PHYINFO_TYPE_11B:
+#define N(arr) (int)(sizeof(arr) / sizeof(arr[0]))
+ for (i = 0; i < N(bwi_sup_bphy); ++i) {
+ if (phyrev == bwi_sup_bphy[i].rev) {
+ phy->phy_init = bwi_sup_bphy[i].init;
+ break;
+ }
+ }
+ if (i == N(bwi_sup_bphy)) {
+ device_printf(sc->sc_dev, "unsupported 11B PHY, "
+ "rev %u\n", phyrev);
+ return ENXIO;
+ }
+#undef N
+ phy->phy_mode = IEEE80211_MODE_11B;
+ break;
+ case BWI_PHYINFO_TYPE_11G:
+ if (phyrev > 8) {
+ device_printf(sc->sc_dev, "unsupported 11G PHY, "
+ "rev %u\n", phyrev);
+ return ENXIO;
+ }
+ phy->phy_init = bwi_phy_init_11g;
+ phy->phy_mode = IEEE80211_MODE_11G;
+ phy->phy_tbl_ctrl = BWI_PHYR_TBL_CTRL_11G;
+ phy->phy_tbl_data_lo = BWI_PHYR_TBL_DATA_LO_11G;
+ phy->phy_tbl_data_hi = BWI_PHYR_TBL_DATA_HI_11G;
+ break;
+ default:
+ device_printf(sc->sc_dev, "unsupported PHY type %d\n",
+ phytype);
+ return ENXIO;
+ }
+ phy->phy_rev = phyrev;
+ phy->phy_version = phyver;
+ return 0;
+}
+
+void
+bwi_phy_set_bbp_atten(struct bwi_mac *mac, uint16_t bbp_atten)
+{
+ struct bwi_phy *phy = &mac->mac_phy;
+ uint16_t mask = __BITS(3, 0);
+
+ if (phy->phy_version == 0) {
+ CSR_FILT_SETBITS_2(mac->mac_sc, BWI_BBP_ATTEN, ~mask,
+ __SHIFTIN(bbp_atten, mask));
+ } else {
+ if (phy->phy_version > 1)
+ mask <<= 2;
+ else
+ mask <<= 3;
+ PHY_FILT_SETBITS(mac, BWI_PHYR_BBP_ATTEN, ~mask,
+ __SHIFTIN(bbp_atten, mask));
+ }
+}
+
+int
+bwi_phy_calibrate(struct bwi_mac *mac)
+{
+ struct bwi_phy *phy = &mac->mac_phy;
+
+ /* Dummy read */
+ CSR_READ_4(mac->mac_sc, BWI_MAC_STATUS);
+
+ /* Don't re-init */
+ if (phy->phy_flags & BWI_PHY_F_CALIBRATED)
+ return 0;
+
+ if (phy->phy_mode == IEEE80211_MODE_11G && phy->phy_rev == 1) {
+ bwi_mac_reset(mac, 0);
+ bwi_phy_init_11g(mac);
+ bwi_mac_reset(mac, 1);
+ }
+
+ phy->phy_flags |= BWI_PHY_F_CALIBRATED;
+ return 0;
+}
+
+static void
+bwi_tbl_write_2(struct bwi_mac *mac, uint16_t ofs, uint16_t data)
+{
+ struct bwi_phy *phy = &mac->mac_phy;
+
+ KASSERT(phy->phy_tbl_ctrl != 0 && phy->phy_tbl_data_lo != 0,
+ ("phy_tbl_ctrl %d phy_tbl_data_lo %d",
+ phy->phy_tbl_ctrl, phy->phy_tbl_data_lo));
+ PHY_WRITE(mac, phy->phy_tbl_ctrl, ofs);
+ PHY_WRITE(mac, phy->phy_tbl_data_lo, data);
+}
+
+static void
+bwi_tbl_write_4(struct bwi_mac *mac, uint16_t ofs, uint32_t data)
+{
+ struct bwi_phy *phy = &mac->mac_phy;
+
+ KASSERT(phy->phy_tbl_data_lo != 0 && phy->phy_tbl_data_hi != 0 &&
+ phy->phy_tbl_ctrl != 0,
+ ("phy_tbl_data_lo %d phy_tbl_data_hi %d phy_tbl_ctrl %d",
+ phy->phy_tbl_data_lo, phy->phy_tbl_data_hi, phy->phy_tbl_ctrl));
+
+ PHY_WRITE(mac, phy->phy_tbl_ctrl, ofs);
+ PHY_WRITE(mac, phy->phy_tbl_data_hi, data >> 16);
+ PHY_WRITE(mac, phy->phy_tbl_data_lo, data & 0xffff);
+}
+
+void
+bwi_nrssi_write(struct bwi_mac *mac, uint16_t ofs, int16_t data)
+{
+ PHY_WRITE(mac, BWI_PHYR_NRSSI_CTRL, ofs);
+ PHY_WRITE(mac, BWI_PHYR_NRSSI_DATA, (uint16_t)data);
+}
+
+int16_t
+bwi_nrssi_read(struct bwi_mac *mac, uint16_t ofs)
+{
+ PHY_WRITE(mac, BWI_PHYR_NRSSI_CTRL, ofs);
+ return (int16_t)PHY_READ(mac, BWI_PHYR_NRSSI_DATA);
+}
+
+static void
+bwi_phy_init_11a(struct bwi_mac *mac)
+{
+ /* TODO:11A */
+}
+
+static void
+bwi_phy_init_11g(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct bwi_rf *rf = &mac->mac_rf;
+ const struct bwi_tpctl *tpctl = &mac->mac_tpctl;
+
+ if (phy->phy_rev == 1)
+ bwi_phy_init_11b_rev5(mac);
+ else
+ bwi_phy_init_11b_rev6(mac);
+
+ if (phy->phy_rev >= 2 || (phy->phy_flags & BWI_PHY_F_LINKED))
+ bwi_phy_config_11g(mac);
+
+ if (phy->phy_rev >= 2) {
+ PHY_WRITE(mac, 0x814, 0);
+ PHY_WRITE(mac, 0x815, 0);
+
+ if (phy->phy_rev == 2) {
+ PHY_WRITE(mac, 0x811, 0);
+ PHY_WRITE(mac, 0x15, 0xc0);
+ } else if (phy->phy_rev > 5) {
+ PHY_WRITE(mac, 0x811, 0x400);
+ PHY_WRITE(mac, 0x15, 0xc0);
+ }
+ }
+
+ if (phy->phy_rev >= 2 || (phy->phy_flags & BWI_PHY_F_LINKED)) {
+ uint16_t val;
+
+ val = PHY_READ(mac, 0x400) & 0xff;
+ if (val == 3 || val == 5) {
+ PHY_WRITE(mac, 0x4c2, 0x1816);
+ PHY_WRITE(mac, 0x4c3, 0x8006);
+ if (val == 5) {
+ PHY_FILT_SETBITS(mac, 0x4cc,
+ 0xff, 0x1f00);
+ }
+ }
+ }
+
+ if ((phy->phy_rev <= 2 && (phy->phy_flags & BWI_PHY_F_LINKED)) ||
+ phy->phy_rev >= 2)
+ PHY_WRITE(mac, 0x47e, 0x78);
+
+ if (rf->rf_rev == 8) {
+ PHY_SETBITS(mac, 0x801, 0x80);
+ PHY_SETBITS(mac, 0x43e, 0x4);
+ }
+
+ if (phy->phy_rev >= 2 && (phy->phy_flags & BWI_PHY_F_LINKED))
+ bwi_rf_get_gains(mac);
+
+ if (rf->rf_rev != 8)
+ bwi_rf_init(mac);
+
+ if (tpctl->tp_ctrl2 == 0xffff) {
+ bwi_rf_lo_update(mac);
+ } else {
+ if (rf->rf_type == BWI_RF_T_BCM2050 && rf->rf_rev == 8) {
+ RF_WRITE(mac, 0x52,
+ (tpctl->tp_ctrl1 << 4) | tpctl->tp_ctrl2);
+ } else {
+ RF_FILT_SETBITS(mac, 0x52, 0xfff0, tpctl->tp_ctrl1);
+ }
+
+ if (phy->phy_rev >= 6) {
+ PHY_FILT_SETBITS(mac, 0x36, 0xfff,
+ tpctl->tp_ctrl2 << 12);
+ }
+
+ if (sc->sc_card_flags & BWI_CARD_F_PA_GPIO9)
+ PHY_WRITE(mac, 0x2e, 0x8075);
+ else
+ PHY_WRITE(mac, 0x2e, 0x807f);
+
+ if (phy->phy_rev < 2)
+ PHY_WRITE(mac, 0x2f, 0x101);
+ else
+ PHY_WRITE(mac, 0x2f, 0x202);
+ }
+
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ bwi_rf_lo_adjust(mac, tpctl);
+ PHY_WRITE(mac, 0x80f, 0x8078);
+ }
+
+ if ((sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) == 0) {
+ bwi_rf_init_hw_nrssi_table(mac, 0xffff /* XXX */);
+ bwi_rf_set_nrssi_thr(mac);
+ } else if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ if (rf->rf_nrssi[0] == BWI_INVALID_NRSSI) {
+ KASSERT(rf->rf_nrssi[1] == BWI_INVALID_NRSSI,
+ ("rf_nrssi[1] %d", rf->rf_nrssi[1]));
+ bwi_rf_calc_nrssi_slope(mac);
+ } else {
+ KASSERT(rf->rf_nrssi[1] != BWI_INVALID_NRSSI,
+ ("rf_nrssi[1] %d", rf->rf_nrssi[1]));
+ bwi_rf_set_nrssi_thr(mac);
+ }
+ }
+
+ if (rf->rf_rev == 8)
+ PHY_WRITE(mac, 0x805, 0x3230);
+
+ bwi_mac_init_tpctl_11bg(mac);
+
+ if (sc->sc_bbp_id == BWI_BBPID_BCM4306 && sc->sc_bbp_pkg == 2) {
+ PHY_CLRBITS(mac, 0x429, 0x4000);
+ PHY_CLRBITS(mac, 0x4c3, 0x8000);
+ }
+}
+
+static void
+bwi_phy_init_11b_rev2(struct bwi_mac *mac)
+{
+ /* TODO:11B */
+ if_printf(mac->mac_sc->sc_ifp,
+ "%s is not implemented yet\n", __func__);
+}
+
+static void
+bwi_phy_init_11b_rev4(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+ uint16_t val, ofs;
+ u_int chan;
+
+ CSR_WRITE_2(sc, BWI_BPHY_CTRL, BWI_BPHY_CTRL_INIT);
+
+ PHY_WRITE(mac, 0x20, 0x301c);
+ PHY_WRITE(mac, 0x26, 0);
+ PHY_WRITE(mac, 0x30, 0xc6);
+ PHY_WRITE(mac, 0x88, 0x3e00);
+
+ for (ofs = 0, val = 0x3c3d; ofs < 30; ++ofs, val -= 0x202)
+ PHY_WRITE(mac, 0x89 + ofs, val);
+
+ CSR_WRITE_2(sc, BWI_PHY_MAGIC_REG1, BWI_PHY_MAGIC_REG1_VAL1);
+
+ chan = rf->rf_curchan;
+ if (chan == IEEE80211_CHAN_ANY)
+ chan = 6; /* Force to channel 6 */
+ bwi_rf_set_chan(mac, chan, 0);
+
+ if (rf->rf_type != BWI_RF_T_BCM2050) {
+ RF_WRITE(mac, 0x75, 0x80);
+ RF_WRITE(mac, 0x79, 0x81);
+ }
+
+ RF_WRITE(mac, 0x50, 0x20);
+ RF_WRITE(mac, 0x50, 0x23);
+
+ if (rf->rf_type == BWI_RF_T_BCM2050) {
+ RF_WRITE(mac, 0x50, 0x20);
+ RF_WRITE(mac, 0x5a, 0x70);
+ RF_WRITE(mac, 0x5b, 0x7b);
+ RF_WRITE(mac, 0x5c, 0xb0);
+ RF_WRITE(mac, 0x7a, 0xf);
+ PHY_WRITE(mac, 0x38, 0x677);
+ bwi_rf_init_bcm2050(mac);
+ }
+
+ PHY_WRITE(mac, 0x14, 0x80);
+ PHY_WRITE(mac, 0x32, 0xca);
+ if (rf->rf_type == BWI_RF_T_BCM2050)
+ PHY_WRITE(mac, 0x32, 0xe0);
+ PHY_WRITE(mac, 0x35, 0x7c2);
+
+ bwi_rf_lo_update(mac);
+
+ PHY_WRITE(mac, 0x26, 0xcc00);
+ if (rf->rf_type == BWI_RF_T_BCM2050)
+ PHY_WRITE(mac, 0x26, 0xce00);
+
+ CSR_WRITE_2(sc, BWI_RF_CHAN_EX, 0x1100);
+
+ PHY_WRITE(mac, 0x2a, 0x88a3);
+ if (rf->rf_type == BWI_RF_T_BCM2050)
+ PHY_WRITE(mac, 0x2a, 0x88c2);
+
+ bwi_mac_set_tpctl_11bg(mac, NULL);
+ if (sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) {
+ bwi_rf_calc_nrssi_slope(mac);
+ bwi_rf_set_nrssi_thr(mac);
+ }
+ bwi_mac_init_tpctl_11bg(mac);
+}
+
+static void
+bwi_phy_init_11b_rev5(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct bwi_phy *phy = &mac->mac_phy;
+ u_int orig_chan;
+
+ if (phy->phy_version == 1)
+ RF_SETBITS(mac, 0x7a, 0x50);
+
+ if (sc->sc_pci_subvid != PCI_VENDOR_BROADCOM &&
+ sc->sc_pci_subdid != BWI_PCI_SUBDEVICE_BU4306) {
+ uint16_t ofs, val;
+
+ val = 0x2120;
+ for (ofs = 0xa8; ofs < 0xc7; ++ofs) {
+ PHY_WRITE(mac, ofs, val);
+ val += 0x202;
+ }
+ }
+
+ PHY_FILT_SETBITS(mac, 0x35, 0xf0ff, 0x700);
+
+ if (rf->rf_type == BWI_RF_T_BCM2050)
+ PHY_WRITE(mac, 0x38, 0x667);
+
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ if (rf->rf_type == BWI_RF_T_BCM2050) {
+ RF_SETBITS(mac, 0x7a, 0x20);
+ RF_SETBITS(mac, 0x51, 0x4);
+ }
+
+ CSR_WRITE_2(sc, BWI_RF_ANTDIV, 0);
+
+ PHY_SETBITS(mac, 0x802, 0x100);
+ PHY_SETBITS(mac, 0x42b, 0x2000);
+ PHY_WRITE(mac, 0x1c, 0x186a);
+
+ PHY_FILT_SETBITS(mac, 0x13, 0xff, 0x1900);
+ PHY_FILT_SETBITS(mac, 0x35, 0xffc0, 0x64);
+ PHY_FILT_SETBITS(mac, 0x5d, 0xff80, 0xa);
+ }
+
+ /* TODO: bad_frame_preempt? */
+
+ if (phy->phy_version == 1) {
+ PHY_WRITE(mac, 0x26, 0xce00);
+ PHY_WRITE(mac, 0x21, 0x3763);
+ PHY_WRITE(mac, 0x22, 0x1bc3);
+ PHY_WRITE(mac, 0x23, 0x6f9);
+ PHY_WRITE(mac, 0x24, 0x37e);
+ } else {
+ PHY_WRITE(mac, 0x26, 0xcc00);
+ }
+ PHY_WRITE(mac, 0x30, 0xc6);
+
+ CSR_WRITE_2(sc, BWI_BPHY_CTRL, BWI_BPHY_CTRL_INIT);
+
+ if (phy->phy_version == 1)
+ PHY_WRITE(mac, 0x20, 0x3e1c);
+ else
+ PHY_WRITE(mac, 0x20, 0x301c);
+
+ if (phy->phy_version == 0)
+ CSR_WRITE_2(sc, BWI_PHY_MAGIC_REG1, BWI_PHY_MAGIC_REG1_VAL1);
+
+ /* Force to channel 7 */
+ orig_chan = rf->rf_curchan;
+ bwi_rf_set_chan(mac, 7, 0);
+
+ if (rf->rf_type != BWI_RF_T_BCM2050) {
+ RF_WRITE(mac, 0x75, 0x80);
+ RF_WRITE(mac, 0x79, 0x81);
+ }
+
+ RF_WRITE(mac, 0x50, 0x20);
+ RF_WRITE(mac, 0x50, 0x23);
+
+ if (rf->rf_type == BWI_RF_T_BCM2050) {
+ RF_WRITE(mac, 0x50, 0x20);
+ RF_WRITE(mac, 0x5a, 0x70);
+ }
+
+ RF_WRITE(mac, 0x5b, 0x7b);
+ RF_WRITE(mac, 0x5c, 0xb0);
+ RF_SETBITS(mac, 0x7a, 0x7);
+
+ bwi_rf_set_chan(mac, orig_chan, 0);
+
+ PHY_WRITE(mac, 0x14, 0x80);
+ PHY_WRITE(mac, 0x32, 0xca);
+ PHY_WRITE(mac, 0x2a, 0x88a3);
+
+ bwi_mac_set_tpctl_11bg(mac, NULL);
+
+ if (rf->rf_type == BWI_RF_T_BCM2050)
+ RF_WRITE(mac, 0x5d, 0xd);
+
+ CSR_FILT_SETBITS_2(sc, BWI_PHY_MAGIC_REG1, 0xffc0, 0x4);
+}
+
+static void
+bwi_phy_init_11b_rev6(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct bwi_phy *phy = &mac->mac_phy;
+ uint16_t val, ofs;
+ u_int orig_chan;
+
+ PHY_WRITE(mac, 0x3e, 0x817a);
+ RF_SETBITS(mac, 0x7a, 0x58);
+
+ if (rf->rf_rev == 4 || rf->rf_rev == 5) {
+ RF_WRITE(mac, 0x51, 0x37);
+ RF_WRITE(mac, 0x52, 0x70);
+ RF_WRITE(mac, 0x53, 0xb3);
+ RF_WRITE(mac, 0x54, 0x9b);
+ RF_WRITE(mac, 0x5a, 0x88);
+ RF_WRITE(mac, 0x5b, 0x88);
+ RF_WRITE(mac, 0x5d, 0x88);
+ RF_WRITE(mac, 0x5e, 0x88);
+ RF_WRITE(mac, 0x7d, 0x88);
+ HFLAGS_SETBITS(mac, BWI_HFLAG_MAGIC1);
+ } else if (rf->rf_rev == 8) {
+ RF_WRITE(mac, 0x51, 0);
+ RF_WRITE(mac, 0x52, 0x40);
+ RF_WRITE(mac, 0x53, 0xb7);
+ RF_WRITE(mac, 0x54, 0x98);
+ RF_WRITE(mac, 0x5a, 0x88);
+ RF_WRITE(mac, 0x5b, 0x6b);
+ RF_WRITE(mac, 0x5c, 0xf);
+ if (sc->sc_card_flags & BWI_CARD_F_ALT_IQ) {
+ RF_WRITE(mac, 0x5d, 0xfa);
+ RF_WRITE(mac, 0x5e, 0xd8);
+ } else {
+ RF_WRITE(mac, 0x5d, 0xf5);
+ RF_WRITE(mac, 0x5e, 0xb8);
+ }
+ RF_WRITE(mac, 0x73, 0x3);
+ RF_WRITE(mac, 0x7d, 0xa8);
+ RF_WRITE(mac, 0x7c, 0x1);
+ RF_WRITE(mac, 0x7e, 0x8);
+ }
+
+ val = 0x1e1f;
+ for (ofs = 0x88; ofs < 0x98; ++ofs) {
+ PHY_WRITE(mac, ofs, val);
+ val -= 0x202;
+ }
+
+ val = 0x3e3f;
+ for (ofs = 0x98; ofs < 0xa8; ++ofs) {
+ PHY_WRITE(mac, ofs, val);
+ val -= 0x202;
+ }
+
+ val = 0x2120;
+ for (ofs = 0xa8; ofs < 0xc8; ++ofs) {
+ PHY_WRITE(mac, ofs, (val & 0x3f3f));
+ val += 0x202;
+ }
+
+ if (phy->phy_mode == IEEE80211_MODE_11G) {
+ RF_SETBITS(mac, 0x7a, 0x20);
+ RF_SETBITS(mac, 0x51, 0x4);
+ PHY_SETBITS(mac, 0x802, 0x100);
+ PHY_SETBITS(mac, 0x42b, 0x2000);
+ PHY_WRITE(mac, 0x5b, 0);
+ PHY_WRITE(mac, 0x5c, 0);
+ }
+
+ /* Force to channel 7 */
+ orig_chan = rf->rf_curchan;
+ if (orig_chan >= 8)
+ bwi_rf_set_chan(mac, 1, 0);
+ else
+ bwi_rf_set_chan(mac, 13, 0);
+
+ RF_WRITE(mac, 0x50, 0x20);
+ RF_WRITE(mac, 0x50, 0x23);
+
+ DELAY(40);
+
+ if (rf->rf_rev < 6 || rf->rf_rev == 8) {
+ RF_SETBITS(mac, 0x7c, 0x2);
+ RF_WRITE(mac, 0x50, 0x20);
+ }
+ if (rf->rf_rev <= 2) {
+ RF_WRITE(mac, 0x7c, 0x20);
+ RF_WRITE(mac, 0x5a, 0x70);
+ RF_WRITE(mac, 0x5b, 0x7b);
+ RF_WRITE(mac, 0x5c, 0xb0);
+ }
+
+ RF_FILT_SETBITS(mac, 0x7a, 0xf8, 0x7);
+
+ bwi_rf_set_chan(mac, orig_chan, 0);
+
+ PHY_WRITE(mac, 0x14, 0x200);
+ if (rf->rf_rev >= 6)
+ PHY_WRITE(mac, 0x2a, 0x88c2);
+ else
+ PHY_WRITE(mac, 0x2a, 0x8ac0);
+ PHY_WRITE(mac, 0x38, 0x668);
+
+ bwi_mac_set_tpctl_11bg(mac, NULL);
+
+ if (rf->rf_rev <= 5) {
+ PHY_FILT_SETBITS(mac, 0x5d, 0xff80, 0x3);
+ if (rf->rf_rev <= 2)
+ RF_WRITE(mac, 0x5d, 0xd);
+ }
+
+ if (phy->phy_version == 4) {
+ CSR_WRITE_2(sc, BWI_PHY_MAGIC_REG1, BWI_PHY_MAGIC_REG1_VAL2);
+ PHY_CLRBITS(mac, 0x61, 0xf000);
+ } else {
+ PHY_FILT_SETBITS(mac, 0x2, 0xffc0, 0x4);
+ }
+
+ if (phy->phy_mode == IEEE80211_MODE_11B) {
+ CSR_WRITE_2(sc, BWI_BBP_ATTEN, BWI_BBP_ATTEN_MAGIC2);
+ PHY_WRITE(mac, 0x16, 0x410);
+ PHY_WRITE(mac, 0x17, 0x820);
+ PHY_WRITE(mac, 0x62, 0x7);
+
+ bwi_rf_init_bcm2050(mac);
+ bwi_rf_lo_update(mac);
+ if (sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) {
+ bwi_rf_calc_nrssi_slope(mac);
+ bwi_rf_set_nrssi_thr(mac);
+ }
+ bwi_mac_init_tpctl_11bg(mac);
+ } else {
+ CSR_WRITE_2(sc, BWI_BBP_ATTEN, 0);
+ }
+}
+
+#define N(arr) (int)(sizeof(arr) / sizeof(arr[0]))
+
+static void
+bwi_phy_config_11g(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ const uint16_t *tbl;
+ uint16_t wrd_ofs1, wrd_ofs2;
+ int i, n;
+
+ if (phy->phy_rev == 1) {
+ PHY_WRITE(mac, 0x406, 0x4f19);
+ PHY_FILT_SETBITS(mac, 0x429, 0xfc3f, 0x340);
+ PHY_WRITE(mac, 0x42c, 0x5a);
+ PHY_WRITE(mac, 0x427, 0x1a);
+
+ /* Fill frequency table */
+ for (i = 0; i < N(bwi_phy_freq_11g_rev1); ++i) {
+ bwi_tbl_write_2(mac, BWI_PHYTBL_FREQ + i,
+ bwi_phy_freq_11g_rev1[i]);
+ }
+
+ /* Fill noise table */
+ for (i = 0; i < N(bwi_phy_noise_11g_rev1); ++i) {
+ bwi_tbl_write_2(mac, BWI_PHYTBL_NOISE + i,
+ bwi_phy_noise_11g_rev1[i]);
+ }
+
+ /* Fill rotor table */
+ for (i = 0; i < N(bwi_phy_rotor_11g_rev1); ++i) {
+ /* NB: data length is 4 bytes */
+ bwi_tbl_write_4(mac, BWI_PHYTBL_ROTOR + i,
+ bwi_phy_rotor_11g_rev1[i]);
+ }
+ } else {
+ bwi_nrssi_write(mac, 0xba98, (int16_t)0x7654); /* XXX */
+
+ if (phy->phy_rev == 2) {
+ PHY_WRITE(mac, 0x4c0, 0x1861);
+ PHY_WRITE(mac, 0x4c1, 0x271);
+ } else if (phy->phy_rev > 2) {
+ PHY_WRITE(mac, 0x4c0, 0x98);
+ PHY_WRITE(mac, 0x4c1, 0x70);
+ PHY_WRITE(mac, 0x4c9, 0x80);
+ }
+ PHY_SETBITS(mac, 0x42b, 0x800);
+
+ /* Fill RSSI table */
+ for (i = 0; i < 64; ++i)
+ bwi_tbl_write_2(mac, BWI_PHYTBL_RSSI + i, i);
+
+ /* Fill noise table */
+ for (i = 0; i < sizeof(bwi_phy_noise_11g); ++i) {
+ bwi_tbl_write_2(mac, BWI_PHYTBL_NOISE + i,
+ bwi_phy_noise_11g[i]);
+ }
+ }
+
+ /*
+ * Fill noise scale table
+ */
+ if (phy->phy_rev <= 2) {
+ tbl = bwi_phy_noise_scale_11g_rev2;
+ n = N(bwi_phy_noise_scale_11g_rev2);
+ } else if (phy->phy_rev >= 7 && (PHY_READ(mac, 0x449) & 0x200)) {
+ tbl = bwi_phy_noise_scale_11g_rev7;
+ n = N(bwi_phy_noise_scale_11g_rev7);
+ } else {
+ tbl = bwi_phy_noise_scale_11g;
+ n = N(bwi_phy_noise_scale_11g);
+ }
+ for (i = 0; i < n; ++i)
+ bwi_tbl_write_2(mac, BWI_PHYTBL_NOISE_SCALE + i, tbl[i]);
+
+ /*
+ * Fill sigma square table
+ */
+ if (phy->phy_rev == 2) {
+ tbl = bwi_phy_sigma_sq_11g_rev2;
+ n = N(bwi_phy_sigma_sq_11g_rev2);
+ } else if (phy->phy_rev > 2 && phy->phy_rev <= 8) {
+ tbl = bwi_phy_sigma_sq_11g_rev7;
+ n = N(bwi_phy_sigma_sq_11g_rev7);
+ } else {
+ tbl = NULL;
+ n = 0;
+ }
+ for (i = 0; i < n; ++i)
+ bwi_tbl_write_2(mac, BWI_PHYTBL_SIGMA_SQ + i, tbl[i]);
+
+ if (phy->phy_rev == 1) {
+ /* Fill delay table */
+ for (i = 0; i < N(bwi_phy_delay_11g_rev1); ++i) {
+ bwi_tbl_write_4(mac, BWI_PHYTBL_DELAY + i,
+ bwi_phy_delay_11g_rev1[i]);
+ }
+
+ /* Fill WRSSI (Wide-Band RSSI) table */
+ for (i = 4; i < 20; ++i)
+ bwi_tbl_write_2(mac, BWI_PHYTBL_WRSSI_REV1 + i, 0x20);
+
+ bwi_phy_config_agc(mac);
+
+ wrd_ofs1 = 0x5001;
+ wrd_ofs2 = 0x5002;
+ } else {
+ /* Fill WRSSI (Wide-Band RSSI) table */
+ for (i = 0; i < 0x20; ++i)
+ bwi_tbl_write_2(mac, BWI_PHYTBL_WRSSI + i, 0x820);
+
+ bwi_phy_config_agc(mac);
+
+ PHY_READ(mac, 0x400); /* Dummy read */
+ PHY_WRITE(mac, 0x403, 0x1000);
+ bwi_tbl_write_2(mac, 0x3c02, 0xf);
+ bwi_tbl_write_2(mac, 0x3c03, 0x14);
+
+ wrd_ofs1 = 0x401;
+ wrd_ofs2 = 0x402;
+ }
+
+ if (!(BWI_IS_BRCM_BU4306(sc) && sc->sc_pci_revid == 0x17)) {
+ bwi_tbl_write_2(mac, wrd_ofs1, 0x2);
+ bwi_tbl_write_2(mac, wrd_ofs2, 0x1);
+ }
+
+ /* phy->phy_flags & BWI_PHY_F_LINKED ? */
+ if (sc->sc_card_flags & BWI_CARD_F_PA_GPIO9)
+ PHY_WRITE(mac, 0x46e, 0x3cf);
+}
+
+#undef N
+
+/*
+ * Configure Automatic Gain Controller
+ */
+static void
+bwi_phy_config_agc(struct bwi_mac *mac)
+{
+ struct bwi_phy *phy = &mac->mac_phy;
+ uint16_t ofs;
+
+ ofs = phy->phy_rev == 1 ? 0x4c00 : 0;
+
+ bwi_tbl_write_2(mac, ofs, 0xfe);
+ bwi_tbl_write_2(mac, ofs + 1, 0xd);
+ bwi_tbl_write_2(mac, ofs + 2, 0x13);
+ bwi_tbl_write_2(mac, ofs + 3, 0x19);
+
+ if (phy->phy_rev == 1) {
+ bwi_tbl_write_2(mac, 0x1800, 0x2710);
+ bwi_tbl_write_2(mac, 0x1801, 0x9b83);
+ bwi_tbl_write_2(mac, 0x1802, 0x9b83);
+ bwi_tbl_write_2(mac, 0x1803, 0xf8d);
+ PHY_WRITE(mac, 0x455, 0x4);
+ }
+
+ PHY_FILT_SETBITS(mac, 0x4a5, 0xff, 0x5700);
+ PHY_FILT_SETBITS(mac, 0x41a, 0xff80, 0xf);
+ PHY_FILT_SETBITS(mac, 0x41a, 0xc07f, 0x2b80);
+ PHY_FILT_SETBITS(mac, 0x48c, 0xf0ff, 0x300);
+
+ RF_SETBITS(mac, 0x7a, 0x8);
+
+ PHY_FILT_SETBITS(mac, 0x4a0, 0xfff0, 0x8);
+ PHY_FILT_SETBITS(mac, 0x4a1, 0xf0ff, 0x600);
+ PHY_FILT_SETBITS(mac, 0x4a2, 0xf0ff, 0x700);
+ PHY_FILT_SETBITS(mac, 0x4a0, 0xf0ff, 0x100);
+
+ if (phy->phy_rev == 1)
+ PHY_FILT_SETBITS(mac, 0x4a2, 0xfff0, 0x7);
+
+ PHY_FILT_SETBITS(mac, 0x488, 0xff00, 0x1c);
+ PHY_FILT_SETBITS(mac, 0x488, 0xc0ff, 0x200);
+ PHY_FILT_SETBITS(mac, 0x496, 0xff00, 0x1c);
+ PHY_FILT_SETBITS(mac, 0x489, 0xff00, 0x20);
+ PHY_FILT_SETBITS(mac, 0x489, 0xc0ff, 0x200);
+ PHY_FILT_SETBITS(mac, 0x482, 0xff00, 0x2e);
+ PHY_FILT_SETBITS(mac, 0x496, 0xff, 0x1a00);
+ PHY_FILT_SETBITS(mac, 0x481, 0xff00, 0x28);
+ PHY_FILT_SETBITS(mac, 0x481, 0xff, 0x2c00);
+
+ if (phy->phy_rev == 1) {
+ PHY_WRITE(mac, 0x430, 0x92b);
+ PHY_FILT_SETBITS(mac, 0x41b, 0xffe1, 0x2);
+ } else {
+ PHY_CLRBITS(mac, 0x41b, 0x1e);
+ PHY_WRITE(mac, 0x41f, 0x287a);
+ PHY_FILT_SETBITS(mac, 0x420, 0xfff0, 0x4);
+
+ if (phy->phy_rev >= 6) {
+ PHY_WRITE(mac, 0x422, 0x287a);
+ PHY_FILT_SETBITS(mac, 0x420, 0xfff, 0x3000);
+ }
+ }
+
+ PHY_FILT_SETBITS(mac, 0x4a8, 0x8080, 0x7874);
+ PHY_WRITE(mac, 0x48e, 0x1c00);
+
+ if (phy->phy_rev == 1) {
+ PHY_FILT_SETBITS(mac, 0x4ab, 0xf0ff, 0x600);
+ PHY_WRITE(mac, 0x48b, 0x5e);
+ PHY_FILT_SETBITS(mac, 0x48c, 0xff00, 0x1e);
+ PHY_WRITE(mac, 0x48d, 0x2);
+ }
+
+ bwi_tbl_write_2(mac, ofs + 0x800, 0);
+ bwi_tbl_write_2(mac, ofs + 0x801, 7);
+ bwi_tbl_write_2(mac, ofs + 0x802, 16);
+ bwi_tbl_write_2(mac, ofs + 0x803, 28);
+
+ if (phy->phy_rev >= 6) {
+ PHY_CLRBITS(mac, 0x426, 0x3);
+ PHY_CLRBITS(mac, 0x426, 0x1000);
+ }
+}
+
+void
+bwi_set_gains(struct bwi_mac *mac, const struct bwi_gains *gains)
+{
+ struct bwi_phy *phy = &mac->mac_phy;
+ uint16_t tbl_gain_ofs1, tbl_gain_ofs2, tbl_gain;
+ int i;
+
+ if (phy->phy_rev <= 1) {
+ tbl_gain_ofs1 = 0x5000;
+ tbl_gain_ofs2 = tbl_gain_ofs1 + 16;
+ } else {
+ tbl_gain_ofs1 = 0x400;
+ tbl_gain_ofs2 = tbl_gain_ofs1 + 8;
+ }
+
+ for (i = 0; i < 4; ++i) {
+ if (gains != NULL) {
+ tbl_gain = gains->tbl_gain1;
+ } else {
+ /* Bit swap */
+ tbl_gain = (i & 0x1) << 1;
+ tbl_gain |= (i & 0x2) >> 1;
+ }
+ bwi_tbl_write_2(mac, tbl_gain_ofs1 + i, tbl_gain);
+ }
+
+ for (i = 0; i < 16; ++i) {
+ if (gains != NULL)
+ tbl_gain = gains->tbl_gain2;
+ else
+ tbl_gain = i;
+ bwi_tbl_write_2(mac, tbl_gain_ofs2 + i, tbl_gain);
+ }
+
+ if (gains == NULL || (gains != NULL && gains->phy_gain != -1)) {
+ uint16_t phy_gain1, phy_gain2;
+
+ if (gains != NULL) {
+ phy_gain1 =
+ ((uint16_t)gains->phy_gain << 14) |
+ ((uint16_t)gains->phy_gain << 6);
+ phy_gain2 = phy_gain1;
+ } else {
+ phy_gain1 = 0x4040;
+ phy_gain2 = 0x4000;
+ }
+ PHY_FILT_SETBITS(mac, 0x4a0, 0xbfbf, phy_gain1);
+ PHY_FILT_SETBITS(mac, 0x4a1, 0xbfbf, phy_gain1);
+ PHY_FILT_SETBITS(mac, 0x4a2, 0xbfbf, phy_gain2);
+ }
+ bwi_mac_dummy_xmit(mac);
+}
+
+void
+bwi_phy_clear_state(struct bwi_phy *phy)
+{
+ phy->phy_flags &= ~BWI_CLEAR_PHY_FLAGS;
+}
diff --git a/sys/dev/bwi/bwiphy.h b/sys/dev/bwi/bwiphy.h
new file mode 100644
index 0000000..f865f1f
--- /dev/null
+++ b/sys/dev/bwi/bwiphy.h
@@ -0,0 +1,224 @@
+/*
+ * Copyright (c) 2007 The DragonFly Project. All rights reserved.
+ *
+ * This code is derived from software contributed to The DragonFly Project
+ * by Sepherosa Ziehau <sepherosa@gmail.com>
+ *
+ * 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. Neither the name of The DragonFly Project nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific, prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
+ * COPYRIGHT HOLDERS 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.
+ *
+ * $DragonFly: src/sys/dev/netif/bwi/bwiphy.h,v 1.1 2007/09/08 06:15:54 sephe Exp $
+ * $FreeBSD$
+ */
+
+#ifndef _BWI_PHY_H
+#define _BWI_PHY_H
+
+struct bwi_gains {
+ int16_t tbl_gain1;
+ int16_t tbl_gain2;
+ int16_t phy_gain;
+};
+
+int bwi_phy_attach(struct bwi_mac *);
+void bwi_phy_clear_state(struct bwi_phy *);
+
+int bwi_phy_calibrate(struct bwi_mac *);
+void bwi_phy_set_bbp_atten(struct bwi_mac *, uint16_t);
+
+void bwi_set_gains(struct bwi_mac *, const struct bwi_gains *);
+int16_t bwi_nrssi_read(struct bwi_mac *, uint16_t);
+void bwi_nrssi_write(struct bwi_mac *, uint16_t, int16_t);
+
+uint16_t bwi_phy_read(struct bwi_mac *, uint16_t);
+void bwi_phy_write(struct bwi_mac *, uint16_t, uint16_t);
+
+static __inline void
+bwi_phy_init(struct bwi_mac *_mac)
+{
+ _mac->mac_phy.phy_init(_mac);
+}
+
+#define PHY_WRITE(mac, ctrl, val) bwi_phy_write((mac), (ctrl), (val))
+#define PHY_READ(mac, ctrl) bwi_phy_read((mac), (ctrl))
+
+#define PHY_SETBITS(mac, ctrl, bits) \
+ PHY_WRITE((mac), (ctrl), PHY_READ((mac), (ctrl)) | (bits))
+#define PHY_CLRBITS(mac, ctrl, bits) \
+ PHY_WRITE((mac), (ctrl), PHY_READ((mac), (ctrl)) & ~(bits))
+#define PHY_FILT_SETBITS(mac, ctrl, filt, bits) \
+ PHY_WRITE((mac), (ctrl), (PHY_READ((mac), (ctrl)) & (filt)) | (bits))
+
+#define BWI_PHYR_NRSSI_THR_11B 0x020
+#define BWI_PHYR_BBP_ATTEN 0x060
+#define BWI_PHYR_TBL_CTRL_11A 0x072
+#define BWI_PHYR_TBL_DATA_LO_11A 0x073
+#define BWI_PHYR_TBL_DATA_HI_11A 0x074
+#define BWI_PHYR_TBL_CTRL_11G 0x472
+#define BWI_PHYR_TBL_DATA_LO_11G 0x473
+#define BWI_PHYR_TBL_DATA_HI_11G 0x474
+#define BWI_PHYR_NRSSI_THR_11G 0x48a
+#define BWI_PHYR_NRSSI_CTRL 0x803
+#define BWI_PHYR_NRSSI_DATA 0x804
+#define BWI_PHYR_RF_LO 0x810
+
+/*
+ * PHY Tables
+ */
+/*
+ * http://bcm-specs.sipsolutions.net/APHYSetup/FineFrequency
+ * G PHY
+ */
+#define BWI_PHY_FREQ_11G_REV1 \
+ 0x0089, 0x02e9, 0x0409, 0x04e9, 0x05a9, 0x0669, 0x0709, 0x0789, \
+ 0x0829, 0x08a9, 0x0929, 0x0989, 0x0a09, 0x0a69, 0x0ac9, 0x0b29, \
+ 0x0ba9, 0x0be9, 0x0c49, 0x0ca9, 0x0d09, 0x0d69, 0x0da9, 0x0e09, \
+ 0x0e69, 0x0ea9, 0x0f09, 0x0f49, 0x0fa9, 0x0fe9, 0x1029, 0x1089, \
+ 0x10c9, 0x1109, 0x1169, 0x11a9, 0x11e9, 0x1229, 0x1289, 0x12c9, \
+ 0x1309, 0x1349, 0x1389, 0x13c9, 0x1409, 0x1449, 0x14a9, 0x14e9, \
+ 0x1529, 0x1569, 0x15a9, 0x15e9, 0x1629, 0x1669, 0x16a9, 0x16e8, \
+ 0x1728, 0x1768, 0x17a8, 0x17e8, 0x1828, 0x1868, 0x18a8, 0x18e8, \
+ 0x1928, 0x1968, 0x19a8, 0x19e8, 0x1a28, 0x1a68, 0x1aa8, 0x1ae8, \
+ 0x1b28, 0x1b68, 0x1ba8, 0x1be8, 0x1c28, 0x1c68, 0x1ca8, 0x1ce8, \
+ 0x1d28, 0x1d68, 0x1dc8, 0x1e08, 0x1e48, 0x1e88, 0x1ec8, 0x1f08, \
+ 0x1f48, 0x1f88, 0x1fe8, 0x2028, 0x2068, 0x20a8, 0x2108, 0x2148, \
+ 0x2188, 0x21c8, 0x2228, 0x2268, 0x22c8, 0x2308, 0x2348, 0x23a8, \
+ 0x23e8, 0x2448, 0x24a8, 0x24e8, 0x2548, 0x25a8, 0x2608, 0x2668, \
+ 0x26c8, 0x2728, 0x2787, 0x27e7, 0x2847, 0x28c7, 0x2947, 0x29a7, \
+ 0x2a27, 0x2ac7, 0x2b47, 0x2be7, 0x2ca7, 0x2d67, 0x2e47, 0x2f67, \
+ 0x3247, 0x3526, 0x3646, 0x3726, 0x3806, 0x38a6, 0x3946, 0x39e6, \
+ 0x3a66, 0x3ae6, 0x3b66, 0x3bc6, 0x3c45, 0x3ca5, 0x3d05, 0x3d85, \
+ 0x3de5, 0x3e45, 0x3ea5, 0x3ee5, 0x3f45, 0x3fa5, 0x4005, 0x4045, \
+ 0x40a5, 0x40e5, 0x4145, 0x4185, 0x41e5, 0x4225, 0x4265, 0x42c5, \
+ 0x4305, 0x4345, 0x43a5, 0x43e5, 0x4424, 0x4464, 0x44c4, 0x4504, \
+ 0x4544, 0x4584, 0x45c4, 0x4604, 0x4644, 0x46a4, 0x46e4, 0x4724, \
+ 0x4764, 0x47a4, 0x47e4, 0x4824, 0x4864, 0x48a4, 0x48e4, 0x4924, \
+ 0x4964, 0x49a4, 0x49e4, 0x4a24, 0x4a64, 0x4aa4, 0x4ae4, 0x4b23, \
+ 0x4b63, 0x4ba3, 0x4be3, 0x4c23, 0x4c63, 0x4ca3, 0x4ce3, 0x4d23, \
+ 0x4d63, 0x4da3, 0x4de3, 0x4e23, 0x4e63, 0x4ea3, 0x4ee3, 0x4f23, \
+ 0x4f63, 0x4fc3, 0x5003, 0x5043, 0x5083, 0x50c3, 0x5103, 0x5143, \
+ 0x5183, 0x51e2, 0x5222, 0x5262, 0x52a2, 0x52e2, 0x5342, 0x5382, \
+ 0x53c2, 0x5402, 0x5462, 0x54a2, 0x5502, 0x5542, 0x55a2, 0x55e2, \
+ 0x5642, 0x5682, 0x56e2, 0x5722, 0x5782, 0x57e1, 0x5841, 0x58a1, \
+ 0x5901, 0x5961, 0x59c1, 0x5a21, 0x5aa1, 0x5b01, 0x5b81, 0x5be1, \
+ 0x5c61, 0x5d01, 0x5d80, 0x5e20, 0x5ee0, 0x5fa0, 0x6080, 0x61c0
+
+/*
+ * http://bcm-specs.sipsolutions.net/APHYSetup/noise_table
+ */
+/* G PHY Revision 1 */
+#define BWI_PHY_NOISE_11G_REV1 \
+ 0x013c, 0x01f5, 0x031a, 0x0631, 0x0001, 0x0001, 0x0001, 0x0001
+/* G PHY generic */
+#define BWI_PHY_NOISE_11G \
+ 0x5484, 0x3c40, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
+
+/*
+ * http://bcm-specs.sipsolutions.net/APHYSetup/rotor_table
+ * G PHY Revision 1
+ */
+#define BWI_PHY_ROTOR_11G_REV1 \
+ 0xfeb93ffd, 0xfec63ffd, 0xfed23ffd, 0xfedf3ffd, \
+ 0xfeec3ffe, 0xfef83ffe, 0xff053ffe, 0xff113ffe, \
+ 0xff1e3ffe, 0xff2a3fff, 0xff373fff, 0xff443fff, \
+ 0xff503fff, 0xff5d3fff, 0xff693fff, 0xff763fff, \
+ 0xff824000, 0xff8f4000, 0xff9b4000, 0xffa84000, \
+ 0xffb54000, 0xffc14000, 0xffce4000, 0xffda4000, \
+ 0xffe74000, 0xfff34000, 0x00004000, 0x000d4000, \
+ 0x00194000, 0x00264000, 0x00324000, 0x003f4000, \
+ 0x004b4000, 0x00584000, 0x00654000, 0x00714000, \
+ 0x007e4000, 0x008a3fff, 0x00973fff, 0x00a33fff, \
+ 0x00b03fff, 0x00bc3fff, 0x00c93fff, 0x00d63fff, \
+ 0x00e23ffe, 0x00ef3ffe, 0x00fb3ffe, 0x01083ffe, \
+ 0x01143ffe, 0x01213ffd, 0x012e3ffd, 0x013a3ffd, \
+ 0x01473ffd
+
+/*
+ * http://bcm-specs.sipsolutions.net/APHYSetup/noise_scale_table
+ */
+/* G PHY Revision [0,2] */
+#define BWI_PHY_NOISE_SCALE_11G_REV2 \
+ 0x6c77, 0x5162, 0x3b40, 0x3335, 0x2f2d, 0x2a2a, 0x2527, 0x1f21, \
+ 0x1a1d, 0x1719, 0x1616, 0x1414, 0x1414, 0x1400, 0x1414, 0x1614, \
+ 0x1716, 0x1a19, 0x1f1d, 0x2521, 0x2a27, 0x2f2a, 0x332d, 0x3b35, \
+ 0x5140, 0x6c62, 0x0077
+/* G PHY Revsion 7 */
+#define BWI_PHY_NOISE_SCALE_11G_REV7 \
+ 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, \
+ 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa400, 0xa4a4, 0xa4a4, \
+ 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, \
+ 0xa4a4, 0xa4a4, 0x00a4
+/* G PHY generic */
+#define BWI_PHY_NOISE_SCALE_11G \
+ 0xd8dd, 0xcbd4, 0xbcc0, 0xb6b7, 0xb2b0, 0xadad, 0xa7a9, 0x9fa1, \
+ 0x969b, 0x9195, 0x8f8f, 0x8a8a, 0x8a8a, 0x8a00, 0x8a8a, 0x8f8a, \
+ 0x918f, 0x9695, 0x9f9b, 0xa7a1, 0xada9, 0xb2ad, 0xb6b0, 0xbcb7, \
+ 0xcbc0, 0xd8d4, 0x00dd
+
+/*
+ * http://bcm-specs.sipsolutions.net/APHYSetup/sigma_square_table
+ */
+/* G PHY Revision 2 */
+#define BWI_PHY_SIGMA_SQ_11G_REV2 \
+ 0x007a, 0x0075, 0x0071, 0x006c, 0x0067, 0x0063, 0x005e, 0x0059, \
+ 0x0054, 0x0050, 0x004b, 0x0046, 0x0042, 0x003d, 0x003d, 0x003d, \
+ 0x003d, 0x003d, 0x003d, 0x003d, 0x003d, 0x003d, 0x003d, 0x003d, \
+ 0x003d, 0x003d, 0x0000, 0x003d, 0x003d, 0x003d, 0x003d, 0x003d, \
+ 0x003d, 0x003d, 0x003d, 0x003d, 0x003d, 0x003d, 0x003d, 0x003d, \
+ 0x0042, 0x0046, 0x004b, 0x0050, 0x0054, 0x0059, 0x005e, 0x0063, \
+ 0x0067, 0x006c, 0x0071, 0x0075, 0x007a
+/* G PHY Revision (2,7] */
+#define BWI_PHY_SIGMA_SQ_11G_REV7 \
+ 0x00de, 0x00dc, 0x00da, 0x00d8, 0x00d6, 0x00d4, 0x00d2, 0x00cf, \
+ 0x00cd, 0x00ca, 0x00c7, 0x00c4, 0x00c1, 0x00be, 0x00be, 0x00be, \
+ 0x00be, 0x00be, 0x00be, 0x00be, 0x00be, 0x00be, 0x00be, 0x00be, \
+ 0x00be, 0x00be, 0x0000, 0x00be, 0x00be, 0x00be, 0x00be, 0x00be, \
+ 0x00be, 0x00be, 0x00be, 0x00be, 0x00be, 0x00be, 0x00be, 0x00be, \
+ 0x00c1, 0x00c4, 0x00c7, 0x00ca, 0x00cd, 0x00cf, 0x00d2, 0x00d4, \
+ 0x00d6, 0x00d8, 0x00da, 0x00dc, 0x00de
+
+/*
+ * http://bcm-specs.sipsolutions.net/APHYSetup/retard_table
+ * G PHY
+ */
+#define BWI_PHY_DELAY_11G_REV1 \
+ 0xdb93cb87, 0xd666cf64, 0xd1fdd358, 0xcda6d826, \
+ 0xca38dd9f, 0xc729e2b4, 0xc469e88e, 0xc26aee2b, \
+ 0xc0def46c, 0xc073fa62, 0xc01d00d5, 0xc0760743, \
+ 0xc1560d1e, 0xc2e51369, 0xc4ed18ff, 0xc7ac1ed7, \
+ 0xcb2823b2, 0xcefa28d9, 0xd2f62d3f, 0xd7bb3197, \
+ 0xdce53568, 0xe1fe3875, 0xe7d13b35, 0xed663d35, \
+ 0xf39b3ec4, 0xf98e3fa7, 0x00004000, 0x06723fa7, \
+ 0x0c653ec4, 0x129a3d35, 0x182f3b35, 0x1e023875, \
+ 0x231b3568, 0x28453197, 0x2d0a2d3f, 0x310628d9, \
+ 0x34d823b2, 0x38541ed7, 0x3b1318ff, 0x3d1b1369, \
+ 0x3eaa0d1e, 0x3f8a0743, 0x3fe300d5, 0x3f8dfa62, \
+ 0x3f22f46c, 0x3d96ee2b, 0x3b97e88e, 0x38d7e2b4, \
+ 0x35c8dd9f, 0x325ad826, 0x2e03d358, 0x299acf64, \
+ 0x246dcb87
+
+#endif /* !_BWI_PHY_H */
diff --git a/sys/dev/bwi/bwirf.c b/sys/dev/bwi/bwirf.c
new file mode 100644
index 0000000..cb881eb
--- /dev/null
+++ b/sys/dev/bwi/bwirf.c
@@ -0,0 +1,2690 @@
+/*
+ * Copyright (c) 2007 The DragonFly Project. All rights reserved.
+ *
+ * This code is derived from software contributed to The DragonFly Project
+ * by Sepherosa Ziehau <sepherosa@gmail.com>
+ *
+ * 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. Neither the name of The DragonFly Project nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific, prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
+ * COPYRIGHT HOLDERS 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.
+ *
+ * $DragonFly: src/sys/dev/netif/bwi/bwirf.c,v 1.9 2008/08/21 12:19:33 swildner Exp $
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include "opt_inet.h"
+#include "opt_bwi.h"
+
+#include <sys/param.h>
+#include <sys/endian.h>
+#include <sys/kernel.h>
+#include <sys/bus.h>
+#include <sys/malloc.h>
+#include <sys/proc.h>
+#include <sys/rman.h>
+#include <sys/socket.h>
+#include <sys/sockio.h>
+#include <sys/sysctl.h>
+#include <sys/systm.h>
+
+#include <net/if.h>
+#include <net/if_dl.h>
+#include <net/if_media.h>
+#include <net/if_types.h>
+#include <net/if_arp.h>
+#include <net/ethernet.h>
+#include <net/if_llc.h>
+
+#include <net80211/ieee80211_var.h>
+#include <net80211/ieee80211_radiotap.h>
+#include <net80211/ieee80211_amrr.h>
+
+#include <machine/bus.h>
+
+#include <dev/bwi/bitops.h>
+#include <dev/bwi/if_bwireg.h>
+#include <dev/bwi/if_bwivar.h>
+#include <dev/bwi/bwimac.h>
+#include <dev/bwi/bwirf.h>
+#include <dev/bwi/bwiphy.h>
+
+#define RF_LO_WRITE(mac, lo) bwi_rf_lo_write((mac), (lo))
+
+#define BWI_RF_2GHZ_CHAN(chan) \
+ (ieee80211_ieee2mhz((chan), IEEE80211_CHAN_2GHZ) - 2400)
+
+#define BWI_DEFAULT_IDLE_TSSI 52
+
+struct rf_saveregs {
+ uint16_t phy_01;
+ uint16_t phy_03;
+ uint16_t phy_0a;
+ uint16_t phy_15;
+ uint16_t phy_2a;
+ uint16_t phy_30;
+ uint16_t phy_35;
+ uint16_t phy_60;
+ uint16_t phy_429;
+ uint16_t phy_802;
+ uint16_t phy_811;
+ uint16_t phy_812;
+ uint16_t phy_814;
+ uint16_t phy_815;
+
+ uint16_t rf_43;
+ uint16_t rf_52;
+ uint16_t rf_7a;
+};
+
+#define SAVE_RF_REG(mac, regs, n) (regs)->rf_##n = RF_READ((mac), 0x##n)
+#define RESTORE_RF_REG(mac, regs, n) RF_WRITE((mac), 0x##n, (regs)->rf_##n)
+
+#define SAVE_PHY_REG(mac, regs, n) (regs)->phy_##n = PHY_READ((mac), 0x##n)
+#define RESTORE_PHY_REG(mac, regs, n) PHY_WRITE((mac), 0x##n, (regs)->phy_##n)
+
+static int bwi_rf_calc_txpower(int8_t *, uint8_t, const int16_t[]);
+static void bwi_rf_work_around(struct bwi_mac *, u_int);
+static int bwi_rf_gain_max_reached(struct bwi_mac *, int);
+static uint16_t bwi_rf_calibval(struct bwi_mac *);
+static uint16_t bwi_rf_get_tp_ctrl2(struct bwi_mac *);
+
+static void bwi_rf_lo_update_11b(struct bwi_mac *);
+static uint16_t bwi_rf_lo_measure_11b(struct bwi_mac *);
+
+static void bwi_rf_lo_update_11g(struct bwi_mac *);
+static uint32_t bwi_rf_lo_devi_measure(struct bwi_mac *, uint16_t);
+static void bwi_rf_lo_measure_11g(struct bwi_mac *,
+ const struct bwi_rf_lo *, struct bwi_rf_lo *, uint8_t);
+static uint8_t _bwi_rf_lo_update_11g(struct bwi_mac *, uint16_t);
+static void bwi_rf_lo_write(struct bwi_mac *, const struct bwi_rf_lo *);
+
+static void bwi_rf_set_nrssi_ofs_11g(struct bwi_mac *);
+static void bwi_rf_calc_nrssi_slope_11b(struct bwi_mac *);
+static void bwi_rf_calc_nrssi_slope_11g(struct bwi_mac *);
+static void bwi_rf_set_nrssi_thr_11b(struct bwi_mac *);
+static void bwi_rf_set_nrssi_thr_11g(struct bwi_mac *);
+
+static void bwi_rf_init_sw_nrssi_table(struct bwi_mac *);
+
+static int bwi_rf_calc_rssi_bcm2050(struct bwi_mac *,
+ const struct bwi_rxbuf_hdr *);
+static int bwi_rf_calc_rssi_bcm2053(struct bwi_mac *,
+ const struct bwi_rxbuf_hdr *);
+static int bwi_rf_calc_rssi_bcm2060(struct bwi_mac *,
+ const struct bwi_rxbuf_hdr *);
+static int bwi_rf_calc_noise_bcm2050(struct bwi_mac *);
+static int bwi_rf_calc_noise_bcm2053(struct bwi_mac *);
+static int bwi_rf_calc_noise_bcm2060(struct bwi_mac *);
+
+static void bwi_rf_on_11a(struct bwi_mac *);
+static void bwi_rf_on_11bg(struct bwi_mac *);
+
+static void bwi_rf_off_11a(struct bwi_mac *);
+static void bwi_rf_off_11bg(struct bwi_mac *);
+static void bwi_rf_off_11g_rev5(struct bwi_mac *);
+
+static const int8_t bwi_txpower_map_11b[BWI_TSSI_MAX] =
+ { BWI_TXPOWER_MAP_11B };
+static const int8_t bwi_txpower_map_11g[BWI_TSSI_MAX] =
+ { BWI_TXPOWER_MAP_11G };
+
+static __inline int16_t
+bwi_nrssi_11g(struct bwi_mac *mac)
+{
+ int16_t val;
+
+#define NRSSI_11G_MASK __BITS(13, 8)
+
+ val = (int16_t)__SHIFTOUT(PHY_READ(mac, 0x47f), NRSSI_11G_MASK);
+ if (val >= 32)
+ val -= 64;
+ return val;
+
+#undef NRSSI_11G_MASK
+}
+
+static __inline struct bwi_rf_lo *
+bwi_get_rf_lo(struct bwi_mac *mac, uint16_t rf_atten, uint16_t bbp_atten)
+{
+ int n;
+
+ n = rf_atten + (14 * (bbp_atten / 2));
+ KASSERT(n < BWI_RFLO_MAX, ("n %d", n));
+
+ return &mac->mac_rf.rf_lo[n];
+}
+
+static __inline int
+bwi_rf_lo_isused(struct bwi_mac *mac, const struct bwi_rf_lo *lo)
+{
+ struct bwi_rf *rf = &mac->mac_rf;
+ int idx;
+
+ idx = lo - rf->rf_lo;
+ KASSERT(idx >= 0 && idx < BWI_RFLO_MAX, ("idx %d", idx));
+
+ return isset(rf->rf_lo_used, idx);
+}
+
+void
+bwi_rf_write(struct bwi_mac *mac, uint16_t ctrl, uint16_t data)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+
+ CSR_WRITE_2(sc, BWI_RF_CTRL, ctrl);
+ CSR_WRITE_2(sc, BWI_RF_DATA_LO, data);
+}
+
+uint16_t
+bwi_rf_read(struct bwi_mac *mac, uint16_t ctrl)
+{
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct bwi_softc *sc = mac->mac_sc;
+
+ ctrl |= rf->rf_ctrl_rd;
+ if (rf->rf_ctrl_adj) {
+ /* XXX */
+ if (ctrl < 0x70)
+ ctrl += 0x80;
+ else if (ctrl < 0x80)
+ ctrl += 0x70;
+ }
+
+ CSR_WRITE_2(sc, BWI_RF_CTRL, ctrl);
+ return CSR_READ_2(sc, BWI_RF_DATA_LO);
+}
+
+int
+bwi_rf_attach(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct bwi_rf *rf = &mac->mac_rf;
+ uint16_t type, manu;
+ uint8_t rev;
+
+ /*
+ * Get RF manufacture/type/revision
+ */
+ if (sc->sc_bbp_id == BWI_BBPID_BCM4317) {
+ /*
+ * Fake a BCM2050 RF
+ */
+ manu = BWI_RF_MANUFACT_BCM;
+ type = BWI_RF_T_BCM2050;
+ if (sc->sc_bbp_rev == 0)
+ rev = 3;
+ else if (sc->sc_bbp_rev == 1)
+ rev = 4;
+ else
+ rev = 5;
+ } else {
+ uint32_t val;
+
+ CSR_WRITE_2(sc, BWI_RF_CTRL, BWI_RF_CTRL_RFINFO);
+ val = CSR_READ_2(sc, BWI_RF_DATA_HI);
+ val <<= 16;
+
+ CSR_WRITE_2(sc, BWI_RF_CTRL, BWI_RF_CTRL_RFINFO);
+ val |= CSR_READ_2(sc, BWI_RF_DATA_LO);
+
+ manu = __SHIFTOUT(val, BWI_RFINFO_MANUFACT_MASK);
+ type = __SHIFTOUT(val, BWI_RFINFO_TYPE_MASK);
+ rev = __SHIFTOUT(val, BWI_RFINFO_REV_MASK);
+ }
+ device_printf(sc->sc_dev, "RF: manu 0x%03x, type 0x%04x, rev %u\n",
+ manu, type, rev);
+
+ /*
+ * Verify whether the RF is supported
+ */
+ rf->rf_ctrl_rd = 0;
+ rf->rf_ctrl_adj = 0;
+ switch (phy->phy_mode) {
+ case IEEE80211_MODE_11A:
+ if (manu != BWI_RF_MANUFACT_BCM ||
+ type != BWI_RF_T_BCM2060 ||
+ rev != 1) {
+ device_printf(sc->sc_dev, "only BCM2060 rev 1 RF "
+ "is supported for 11A PHY\n");
+ return ENXIO;
+ }
+ rf->rf_ctrl_rd = BWI_RF_CTRL_RD_11A;
+ rf->rf_on = bwi_rf_on_11a;
+ rf->rf_off = bwi_rf_off_11a;
+ rf->rf_calc_rssi = bwi_rf_calc_rssi_bcm2060;
+ rf->rf_calc_noise = bwi_rf_calc_noise_bcm2060;
+ break;
+ case IEEE80211_MODE_11B:
+ if (type == BWI_RF_T_BCM2050) {
+ rf->rf_ctrl_rd = BWI_RF_CTRL_RD_11BG;
+ rf->rf_calc_rssi = bwi_rf_calc_rssi_bcm2050;
+ rf->rf_calc_noise = bwi_rf_calc_noise_bcm2050;
+ } else if (type == BWI_RF_T_BCM2053) {
+ rf->rf_ctrl_adj = 1;
+ rf->rf_calc_rssi = bwi_rf_calc_rssi_bcm2053;
+ rf->rf_calc_noise = bwi_rf_calc_noise_bcm2053;
+ } else {
+ device_printf(sc->sc_dev, "only BCM2050/BCM2053 RF "
+ "is supported for 11B PHY\n");
+ return ENXIO;
+ }
+ rf->rf_on = bwi_rf_on_11bg;
+ rf->rf_off = bwi_rf_off_11bg;
+ rf->rf_calc_nrssi_slope = bwi_rf_calc_nrssi_slope_11b;
+ rf->rf_set_nrssi_thr = bwi_rf_set_nrssi_thr_11b;
+ if (phy->phy_rev == 6)
+ rf->rf_lo_update = bwi_rf_lo_update_11g;
+ else
+ rf->rf_lo_update = bwi_rf_lo_update_11b;
+ break;
+ case IEEE80211_MODE_11G:
+ if (type != BWI_RF_T_BCM2050) {
+ device_printf(sc->sc_dev, "only BCM2050 RF "
+ "is supported for 11G PHY\n");
+ return ENXIO;
+ }
+ rf->rf_ctrl_rd = BWI_RF_CTRL_RD_11BG;
+ rf->rf_on = bwi_rf_on_11bg;
+ if (mac->mac_rev >= 5)
+ rf->rf_off = bwi_rf_off_11g_rev5;
+ else
+ rf->rf_off = bwi_rf_off_11bg;
+ rf->rf_calc_nrssi_slope = bwi_rf_calc_nrssi_slope_11g;
+ rf->rf_set_nrssi_thr = bwi_rf_set_nrssi_thr_11g;
+ rf->rf_calc_rssi = bwi_rf_calc_rssi_bcm2050;
+ rf->rf_calc_noise = bwi_rf_calc_noise_bcm2050;
+ rf->rf_lo_update = bwi_rf_lo_update_11g;
+ break;
+ default:
+ device_printf(sc->sc_dev, "unsupported PHY mode\n");
+ return ENXIO;
+ }
+
+ rf->rf_type = type;
+ rf->rf_rev = rev;
+ rf->rf_manu = manu;
+ rf->rf_curchan = IEEE80211_CHAN_ANY;
+ rf->rf_ant_mode = BWI_ANT_MODE_AUTO;
+ return 0;
+}
+
+void
+bwi_rf_set_chan(struct bwi_mac *mac, u_int chan, int work_around)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+
+ if (chan == IEEE80211_CHAN_ANY)
+ return;
+
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_CHAN, chan);
+
+ /* TODO: 11A */
+
+ if (work_around)
+ bwi_rf_work_around(mac, chan);
+
+ CSR_WRITE_2(sc, BWI_RF_CHAN, BWI_RF_2GHZ_CHAN(chan));
+
+ if (chan == 14) {
+ if (sc->sc_locale == BWI_SPROM_LOCALE_JAPAN)
+ HFLAGS_CLRBITS(mac, BWI_HFLAG_NOT_JAPAN);
+ else
+ HFLAGS_SETBITS(mac, BWI_HFLAG_NOT_JAPAN);
+ CSR_SETBITS_2(sc, BWI_RF_CHAN_EX, (1 << 11)); /* XXX */
+ } else {
+ CSR_CLRBITS_2(sc, BWI_RF_CHAN_EX, 0x840); /* XXX */
+ }
+ DELAY(8000); /* DELAY(2000); */
+
+ mac->mac_rf.rf_curchan = chan;
+}
+
+void
+bwi_rf_get_gains(struct bwi_mac *mac)
+{
+#define SAVE_PHY_MAX 15
+#define SAVE_RF_MAX 3
+
+ static const uint16_t save_rf_regs[SAVE_RF_MAX] =
+ { 0x52, 0x43, 0x7a };
+ static const uint16_t save_phy_regs[SAVE_PHY_MAX] = {
+ 0x0429, 0x0001, 0x0811, 0x0812,
+ 0x0814, 0x0815, 0x005a, 0x0059,
+ 0x0058, 0x000a, 0x0003, 0x080f,
+ 0x0810, 0x002b, 0x0015
+ };
+
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct bwi_rf *rf = &mac->mac_rf;
+ uint16_t save_phy[SAVE_PHY_MAX];
+ uint16_t save_rf[SAVE_RF_MAX];
+ uint16_t trsw;
+ int i, j, loop1_max, loop1, loop2;
+
+ /*
+ * Save PHY/RF registers for later restoration
+ */
+ for (i = 0; i < SAVE_PHY_MAX; ++i)
+ save_phy[i] = PHY_READ(mac, save_phy_regs[i]);
+ PHY_READ(mac, 0x2d); /* dummy read */
+
+ for (i = 0; i < SAVE_RF_MAX; ++i)
+ save_rf[i] = RF_READ(mac, save_rf_regs[i]);
+
+ PHY_CLRBITS(mac, 0x429, 0xc000);
+ PHY_SETBITS(mac, 0x1, 0x8000);
+
+ PHY_SETBITS(mac, 0x811, 0x2);
+ PHY_CLRBITS(mac, 0x812, 0x2);
+ PHY_SETBITS(mac, 0x811, 0x1);
+ PHY_CLRBITS(mac, 0x812, 0x1);
+
+ PHY_SETBITS(mac, 0x814, 0x1);
+ PHY_CLRBITS(mac, 0x815, 0x1);
+ PHY_SETBITS(mac, 0x814, 0x2);
+ PHY_CLRBITS(mac, 0x815, 0x2);
+
+ PHY_SETBITS(mac, 0x811, 0xc);
+ PHY_SETBITS(mac, 0x812, 0xc);
+ PHY_SETBITS(mac, 0x811, 0x30);
+ PHY_FILT_SETBITS(mac, 0x812, 0xffcf, 0x10);
+
+ PHY_WRITE(mac, 0x5a, 0x780);
+ PHY_WRITE(mac, 0x59, 0xc810);
+ PHY_WRITE(mac, 0x58, 0xd);
+ PHY_SETBITS(mac, 0xa, 0x2000);
+
+ PHY_SETBITS(mac, 0x814, 0x4);
+ PHY_CLRBITS(mac, 0x815, 0x4);
+
+ PHY_FILT_SETBITS(mac, 0x3, 0xff9f, 0x40);
+
+ if (rf->rf_rev == 8) {
+ loop1_max = 15;
+ RF_WRITE(mac, 0x43, loop1_max);
+ } else {
+ loop1_max = 9;
+ RF_WRITE(mac, 0x52, 0x0);
+ RF_FILT_SETBITS(mac, 0x43, 0xfff0, loop1_max);
+ }
+
+ bwi_phy_set_bbp_atten(mac, 11);
+
+ if (phy->phy_rev >= 3)
+ PHY_WRITE(mac, 0x80f, 0xc020);
+ else
+ PHY_WRITE(mac, 0x80f, 0x8020);
+ PHY_WRITE(mac, 0x810, 0);
+
+ PHY_FILT_SETBITS(mac, 0x2b, 0xffc0, 0x1);
+ PHY_FILT_SETBITS(mac, 0x2b, 0xc0ff, 0x800);
+ PHY_SETBITS(mac, 0x811, 0x100);
+ PHY_CLRBITS(mac, 0x812, 0x3000);
+
+ if ((sc->sc_card_flags & BWI_CARD_F_EXT_LNA) &&
+ phy->phy_rev >= 7) {
+ PHY_SETBITS(mac, 0x811, 0x800);
+ PHY_SETBITS(mac, 0x812, 0x8000);
+ }
+ RF_CLRBITS(mac, 0x7a, 0xff08);
+
+ /*
+ * Find out 'loop1/loop2', which will be used to calculate
+ * max loopback gain later
+ */
+ j = 0;
+ for (i = 0; i < loop1_max; ++i) {
+ for (j = 0; j < 16; ++j) {
+ RF_WRITE(mac, 0x43, i);
+
+ if (bwi_rf_gain_max_reached(mac, j))
+ goto loop1_exit;
+ }
+ }
+loop1_exit:
+ loop1 = i;
+ loop2 = j;
+
+ /*
+ * Find out 'trsw', which will be used to calculate
+ * TRSW(TX/RX switch) RX gain later
+ */
+ if (loop2 >= 8) {
+ PHY_SETBITS(mac, 0x812, 0x30);
+ trsw = 0x1b;
+ for (i = loop2 - 8; i < 16; ++i) {
+ trsw -= 3;
+ if (bwi_rf_gain_max_reached(mac, i))
+ break;
+ }
+ } else {
+ trsw = 0x18;
+ }
+
+ /*
+ * Restore saved PHY/RF registers
+ */
+ /* First 4 saved PHY registers need special processing */
+ for (i = 4; i < SAVE_PHY_MAX; ++i)
+ PHY_WRITE(mac, save_phy_regs[i], save_phy[i]);
+
+ bwi_phy_set_bbp_atten(mac, mac->mac_tpctl.bbp_atten);
+
+ for (i = 0; i < SAVE_RF_MAX; ++i)
+ RF_WRITE(mac, save_rf_regs[i], save_rf[i]);
+
+ PHY_WRITE(mac, save_phy_regs[2], save_phy[2] | 0x3);
+ DELAY(10);
+ PHY_WRITE(mac, save_phy_regs[2], save_phy[2]);
+ PHY_WRITE(mac, save_phy_regs[3], save_phy[3]);
+ PHY_WRITE(mac, save_phy_regs[0], save_phy[0]);
+ PHY_WRITE(mac, save_phy_regs[1], save_phy[1]);
+
+ /*
+ * Calculate gains
+ */
+ rf->rf_lo_gain = (loop2 * 6) - (loop1 * 4) - 11;
+ rf->rf_rx_gain = trsw * 2;
+ DPRINTF(mac->mac_sc, BWI_DBG_RF | BWI_DBG_INIT,
+ "lo gain: %u, rx gain: %u\n",
+ rf->rf_lo_gain, rf->rf_rx_gain);
+
+#undef SAVE_RF_MAX
+#undef SAVE_PHY_MAX
+}
+
+void
+bwi_rf_init(struct bwi_mac *mac)
+{
+ struct bwi_rf *rf = &mac->mac_rf;
+
+ if (rf->rf_type == BWI_RF_T_BCM2060) {
+ /* TODO: 11A */
+ } else {
+ if (rf->rf_flags & BWI_RF_F_INITED)
+ RF_WRITE(mac, 0x78, rf->rf_calib);
+ else
+ bwi_rf_init_bcm2050(mac);
+ }
+}
+
+static void
+bwi_rf_off_11a(struct bwi_mac *mac)
+{
+ RF_WRITE(mac, 0x4, 0xff);
+ RF_WRITE(mac, 0x5, 0xfb);
+
+ PHY_SETBITS(mac, 0x10, 0x8);
+ PHY_SETBITS(mac, 0x11, 0x8);
+
+ PHY_WRITE(mac, 0x15, 0xaa00);
+}
+
+static void
+bwi_rf_off_11bg(struct bwi_mac *mac)
+{
+ PHY_WRITE(mac, 0x15, 0xaa00);
+}
+
+static void
+bwi_rf_off_11g_rev5(struct bwi_mac *mac)
+{
+ PHY_SETBITS(mac, 0x811, 0x8c);
+ PHY_CLRBITS(mac, 0x812, 0x8c);
+}
+
+static void
+bwi_rf_work_around(struct bwi_mac *mac, u_int chan)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+
+ if (chan == IEEE80211_CHAN_ANY) {
+ device_printf(sc->sc_dev, "%s invalid channel!!\n", __func__);
+ return;
+ }
+
+ if (rf->rf_type != BWI_RF_T_BCM2050 || rf->rf_rev >= 6)
+ return;
+
+ if (chan <= 10)
+ CSR_WRITE_2(sc, BWI_RF_CHAN, BWI_RF_2GHZ_CHAN(chan + 4));
+ else
+ CSR_WRITE_2(sc, BWI_RF_CHAN, BWI_RF_2GHZ_CHAN(1));
+ DELAY(1000);
+ CSR_WRITE_2(sc, BWI_RF_CHAN, BWI_RF_2GHZ_CHAN(chan));
+}
+
+static __inline struct bwi_rf_lo *
+bwi_rf_lo_find(struct bwi_mac *mac, const struct bwi_tpctl *tpctl)
+{
+ uint16_t rf_atten, bbp_atten;
+ int remap_rf_atten;
+
+ remap_rf_atten = 1;
+ if (tpctl == NULL) {
+ bbp_atten = 2;
+ rf_atten = 3;
+ } else {
+ if (tpctl->tp_ctrl1 == 3)
+ remap_rf_atten = 0;
+
+ bbp_atten = tpctl->bbp_atten;
+ rf_atten = tpctl->rf_atten;
+
+ if (bbp_atten > 6)
+ bbp_atten = 6;
+ }
+
+ if (remap_rf_atten) {
+#define MAP_MAX 10
+ static const uint16_t map[MAP_MAX] =
+ { 11, 10, 11, 12, 13, 12, 13, 12, 13, 12 };
+
+#if 0
+ KASSERT(rf_atten < MAP_MAX, ("rf_atten %d", rf_atten));
+ rf_atten = map[rf_atten];
+#else
+ if (rf_atten >= MAP_MAX) {
+ rf_atten = 0; /* XXX */
+ } else {
+ rf_atten = map[rf_atten];
+ }
+#endif
+#undef MAP_MAX
+ }
+
+ return bwi_get_rf_lo(mac, rf_atten, bbp_atten);
+}
+
+void
+bwi_rf_lo_adjust(struct bwi_mac *mac, const struct bwi_tpctl *tpctl)
+{
+ const struct bwi_rf_lo *lo;
+
+ lo = bwi_rf_lo_find(mac, tpctl);
+ RF_LO_WRITE(mac, lo);
+}
+
+static void
+bwi_rf_lo_write(struct bwi_mac *mac, const struct bwi_rf_lo *lo)
+{
+ uint16_t val;
+
+ val = (uint8_t)lo->ctrl_lo;
+ val |= ((uint8_t)lo->ctrl_hi) << 8;
+
+ PHY_WRITE(mac, BWI_PHYR_RF_LO, val);
+}
+
+static int
+bwi_rf_gain_max_reached(struct bwi_mac *mac, int idx)
+{
+ PHY_FILT_SETBITS(mac, 0x812, 0xf0ff, idx << 8);
+ PHY_FILT_SETBITS(mac, 0x15, 0xfff, 0xa000);
+ PHY_SETBITS(mac, 0x15, 0xf000);
+
+ DELAY(20);
+
+ return (PHY_READ(mac, 0x2d) >= 0xdfc);
+}
+
+/* XXX use bitmap array */
+static __inline uint16_t
+bitswap4(uint16_t val)
+{
+ uint16_t ret;
+
+ ret = (val & 0x8) >> 3;
+ ret |= (val & 0x4) >> 1;
+ ret |= (val & 0x2) << 1;
+ ret |= (val & 0x1) << 3;
+ return ret;
+}
+
+static __inline uint16_t
+bwi_phy812_value(struct bwi_mac *mac, uint16_t lpd)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct bwi_rf *rf = &mac->mac_rf;
+ uint16_t lo_gain, ext_lna, loop;
+
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) == 0)
+ return 0;
+
+ lo_gain = rf->rf_lo_gain;
+ if (rf->rf_rev == 8)
+ lo_gain += 0x3e;
+ else
+ lo_gain += 0x26;
+
+ if (lo_gain >= 0x46) {
+ lo_gain -= 0x46;
+ ext_lna = 0x3000;
+ } else if (lo_gain >= 0x3a) {
+ lo_gain -= 0x3a;
+ ext_lna = 0x1000;
+ } else if (lo_gain >= 0x2e) {
+ lo_gain -= 0x2e;
+ ext_lna = 0x2000;
+ } else {
+ lo_gain -= 0x10;
+ ext_lna = 0;
+ }
+
+ for (loop = 0; loop < 16; ++loop) {
+ lo_gain -= (6 * loop);
+ if (lo_gain < 6)
+ break;
+ }
+
+ if (phy->phy_rev >= 7 && (sc->sc_card_flags & BWI_CARD_F_EXT_LNA)) {
+ if (ext_lna)
+ ext_lna |= 0x8000;
+ ext_lna |= (loop << 8);
+ switch (lpd) {
+ case 0x011:
+ return 0x8f92;
+ case 0x001:
+ return (0x8092 | ext_lna);
+ case 0x101:
+ return (0x2092 | ext_lna);
+ case 0x100:
+ return (0x2093 | ext_lna);
+ default:
+ panic("unsupported lpd\n");
+ }
+ } else {
+ ext_lna |= (loop << 8);
+ switch (lpd) {
+ case 0x011:
+ return 0xf92;
+ case 0x001:
+ case 0x101:
+ return (0x92 | ext_lna);
+ case 0x100:
+ return (0x93 | ext_lna);
+ default:
+ panic("unsupported lpd\n");
+ }
+ }
+
+ panic("never reached\n");
+ return 0;
+}
+
+void
+bwi_rf_init_bcm2050(struct bwi_mac *mac)
+{
+#define SAVE_RF_MAX 3
+#define SAVE_PHY_COMM_MAX 4
+#define SAVE_PHY_11G_MAX 6
+
+ static const uint16_t save_rf_regs[SAVE_RF_MAX] =
+ { 0x0043, 0x0051, 0x0052 };
+ static const uint16_t save_phy_regs_comm[SAVE_PHY_COMM_MAX] =
+ { 0x0015, 0x005a, 0x0059, 0x0058 };
+ static const uint16_t save_phy_regs_11g[SAVE_PHY_11G_MAX] =
+ { 0x0811, 0x0812, 0x0814, 0x0815, 0x0429, 0x0802 };
+
+ uint16_t save_rf[SAVE_RF_MAX];
+ uint16_t save_phy_comm[SAVE_PHY_COMM_MAX];
+ uint16_t save_phy_11g[SAVE_PHY_11G_MAX];
+ uint16_t phyr_35, phyr_30 = 0, rfr_78, phyr_80f = 0, phyr_810 = 0;
+ uint16_t bphy_ctrl = 0, bbp_atten, rf_chan_ex;
+ uint16_t phy812_val;
+ uint16_t calib;
+ uint32_t test_lim, test;
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct bwi_rf *rf = &mac->mac_rf;
+ int i;
+
+ /*
+ * Save registers for later restoring
+ */
+ for (i = 0; i < SAVE_RF_MAX; ++i)
+ save_rf[i] = RF_READ(mac, save_rf_regs[i]);
+ for (i = 0; i < SAVE_PHY_COMM_MAX; ++i)
+ save_phy_comm[i] = PHY_READ(mac, save_phy_regs_comm[i]);
+
+ if (phy->phy_mode == IEEE80211_MODE_11B) {
+ phyr_30 = PHY_READ(mac, 0x30);
+ bphy_ctrl = CSR_READ_2(sc, BWI_BPHY_CTRL);
+
+ PHY_WRITE(mac, 0x30, 0xff);
+ CSR_WRITE_2(sc, BWI_BPHY_CTRL, 0x3f3f);
+ } else if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ for (i = 0; i < SAVE_PHY_11G_MAX; ++i) {
+ save_phy_11g[i] =
+ PHY_READ(mac, save_phy_regs_11g[i]);
+ }
+
+ PHY_SETBITS(mac, 0x814, 0x3);
+ PHY_CLRBITS(mac, 0x815, 0x3);
+ PHY_CLRBITS(mac, 0x429, 0x8000);
+ PHY_CLRBITS(mac, 0x802, 0x3);
+
+ phyr_80f = PHY_READ(mac, 0x80f);
+ phyr_810 = PHY_READ(mac, 0x810);
+
+ if (phy->phy_rev >= 3)
+ PHY_WRITE(mac, 0x80f, 0xc020);
+ else
+ PHY_WRITE(mac, 0x80f, 0x8020);
+ PHY_WRITE(mac, 0x810, 0);
+
+ phy812_val = bwi_phy812_value(mac, 0x011);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ if (phy->phy_rev < 7 ||
+ (sc->sc_card_flags & BWI_CARD_F_EXT_LNA) == 0)
+ PHY_WRITE(mac, 0x811, 0x1b3);
+ else
+ PHY_WRITE(mac, 0x811, 0x9b3);
+ }
+ CSR_SETBITS_2(sc, BWI_RF_ANTDIV, 0x8000);
+
+ phyr_35 = PHY_READ(mac, 0x35);
+ PHY_CLRBITS(mac, 0x35, 0x80);
+
+ bbp_atten = CSR_READ_2(sc, BWI_BBP_ATTEN);
+ rf_chan_ex = CSR_READ_2(sc, BWI_RF_CHAN_EX);
+
+ if (phy->phy_version == 0) {
+ CSR_WRITE_2(sc, BWI_BBP_ATTEN, 0x122);
+ } else {
+ if (phy->phy_version >= 2)
+ PHY_FILT_SETBITS(mac, 0x3, 0xffbf, 0x40);
+ CSR_SETBITS_2(sc, BWI_RF_CHAN_EX, 0x2000);
+ }
+
+ calib = bwi_rf_calibval(mac);
+
+ if (phy->phy_mode == IEEE80211_MODE_11B)
+ RF_WRITE(mac, 0x78, 0x26);
+
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ phy812_val = bwi_phy812_value(mac, 0x011);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ }
+
+ PHY_WRITE(mac, 0x15, 0xbfaf);
+ PHY_WRITE(mac, 0x2b, 0x1403);
+
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ phy812_val = bwi_phy812_value(mac, 0x001);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ }
+
+ PHY_WRITE(mac, 0x15, 0xbfa0);
+
+ RF_SETBITS(mac, 0x51, 0x4);
+ if (rf->rf_rev == 8) {
+ RF_WRITE(mac, 0x43, 0x1f);
+ } else {
+ RF_WRITE(mac, 0x52, 0);
+ RF_FILT_SETBITS(mac, 0x43, 0xfff0, 0x9);
+ }
+
+ test_lim = 0;
+ PHY_WRITE(mac, 0x58, 0);
+ for (i = 0; i < 16; ++i) {
+ PHY_WRITE(mac, 0x5a, 0x480);
+ PHY_WRITE(mac, 0x59, 0xc810);
+
+ PHY_WRITE(mac, 0x58, 0xd);
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ phy812_val = bwi_phy812_value(mac, 0x101);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ }
+ PHY_WRITE(mac, 0x15, 0xafb0);
+ DELAY(10);
+
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ phy812_val = bwi_phy812_value(mac, 0x101);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ }
+ PHY_WRITE(mac, 0x15, 0xefb0);
+ DELAY(10);
+
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ phy812_val = bwi_phy812_value(mac, 0x100);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ }
+ PHY_WRITE(mac, 0x15, 0xfff0);
+ DELAY(20);
+
+ test_lim += PHY_READ(mac, 0x2d);
+
+ PHY_WRITE(mac, 0x58, 0);
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ phy812_val = bwi_phy812_value(mac, 0x101);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ }
+ PHY_WRITE(mac, 0x15, 0xafb0);
+ }
+ ++test_lim;
+ test_lim >>= 9;
+
+ DELAY(10);
+
+ test = 0;
+ PHY_WRITE(mac, 0x58, 0);
+ for (i = 0; i < 16; ++i) {
+ int j;
+
+ rfr_78 = (bitswap4(i) << 1) | 0x20;
+ RF_WRITE(mac, 0x78, rfr_78);
+ DELAY(10);
+
+ /* NB: This block is slight different than the above one */
+ for (j = 0; j < 16; ++j) {
+ PHY_WRITE(mac, 0x5a, 0xd80);
+ PHY_WRITE(mac, 0x59, 0xc810);
+
+ PHY_WRITE(mac, 0x58, 0xd);
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) ||
+ phy->phy_rev >= 2) {
+ phy812_val = bwi_phy812_value(mac, 0x101);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ }
+ PHY_WRITE(mac, 0x15, 0xafb0);
+ DELAY(10);
+
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) ||
+ phy->phy_rev >= 2) {
+ phy812_val = bwi_phy812_value(mac, 0x101);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ }
+ PHY_WRITE(mac, 0x15, 0xefb0);
+ DELAY(10);
+
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) ||
+ phy->phy_rev >= 2) {
+ phy812_val = bwi_phy812_value(mac, 0x100);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ }
+ PHY_WRITE(mac, 0x15, 0xfff0);
+ DELAY(10);
+
+ test += PHY_READ(mac, 0x2d);
+
+ PHY_WRITE(mac, 0x58, 0);
+ if ((phy->phy_flags & BWI_PHY_F_LINKED) ||
+ phy->phy_rev >= 2) {
+ phy812_val = bwi_phy812_value(mac, 0x101);
+ PHY_WRITE(mac, 0x812, phy812_val);
+ }
+ PHY_WRITE(mac, 0x15, 0xafb0);
+ }
+
+ ++test;
+ test >>= 8;
+
+ if (test > test_lim)
+ break;
+ }
+ if (i > 15)
+ rf->rf_calib = rfr_78;
+ else
+ rf->rf_calib = calib;
+ if (rf->rf_calib != 0xffff) {
+ DPRINTF(sc, BWI_DBG_RF | BWI_DBG_INIT,
+ "RF calibration value: 0x%04x\n", rf->rf_calib);
+ rf->rf_flags |= BWI_RF_F_INITED;
+ }
+
+ /*
+ * Restore trashes registers
+ */
+ PHY_WRITE(mac, save_phy_regs_comm[0], save_phy_comm[0]);
+
+ for (i = 0; i < SAVE_RF_MAX; ++i) {
+ int pos = (i + 1) % SAVE_RF_MAX;
+
+ RF_WRITE(mac, save_rf_regs[pos], save_rf[pos]);
+ }
+ for (i = 1; i < SAVE_PHY_COMM_MAX; ++i)
+ PHY_WRITE(mac, save_phy_regs_comm[i], save_phy_comm[i]);
+
+ CSR_WRITE_2(sc, BWI_BBP_ATTEN, bbp_atten);
+ if (phy->phy_version != 0)
+ CSR_WRITE_2(sc, BWI_RF_CHAN_EX, rf_chan_ex);
+
+ PHY_WRITE(mac, 0x35, phyr_35);
+ bwi_rf_work_around(mac, rf->rf_curchan);
+
+ if (phy->phy_mode == IEEE80211_MODE_11B) {
+ PHY_WRITE(mac, 0x30, phyr_30);
+ CSR_WRITE_2(sc, BWI_BPHY_CTRL, bphy_ctrl);
+ } else if ((phy->phy_flags & BWI_PHY_F_LINKED) || phy->phy_rev >= 2) {
+ /* XXX Spec only says when PHY is linked (gmode) */
+ CSR_CLRBITS_2(sc, BWI_RF_ANTDIV, 0x8000);
+
+ for (i = 0; i < SAVE_PHY_11G_MAX; ++i) {
+ PHY_WRITE(mac, save_phy_regs_11g[i],
+ save_phy_11g[i]);
+ }
+
+ PHY_WRITE(mac, 0x80f, phyr_80f);
+ PHY_WRITE(mac, 0x810, phyr_810);
+ }
+
+#undef SAVE_PHY_11G_MAX
+#undef SAVE_PHY_COMM_MAX
+#undef SAVE_RF_MAX
+}
+
+static uint16_t
+bwi_rf_calibval(struct bwi_mac *mac)
+{
+ /* http://bcm-specs.sipsolutions.net/RCCTable */
+ static const uint16_t rf_calibvals[] = {
+ 0x2, 0x3, 0x1, 0xf, 0x6, 0x7, 0x5, 0xf,
+ 0xa, 0xb, 0x9, 0xf, 0xe, 0xf, 0xd, 0xf
+ };
+ uint16_t val, calib;
+ int idx;
+
+ val = RF_READ(mac, BWI_RFR_BBP_ATTEN);
+ idx = __SHIFTOUT(val, BWI_RFR_BBP_ATTEN_CALIB_IDX);
+ KASSERT(idx < (int)(sizeof(rf_calibvals) / sizeof(rf_calibvals[0])),
+ ("idx %d", idx));
+
+ calib = rf_calibvals[idx] << 1;
+ if (val & BWI_RFR_BBP_ATTEN_CALIB_BIT)
+ calib |= 0x1;
+ calib |= 0x20;
+
+ return calib;
+}
+
+static __inline int32_t
+_bwi_adjust_devide(int32_t num, int32_t den)
+{
+ if (num < 0)
+ return (num / den);
+ else
+ return (num + den / 2) / den;
+}
+
+/*
+ * http://bcm-specs.sipsolutions.net/TSSI_to_DBM_Table
+ * "calculating table entries"
+ */
+static int
+bwi_rf_calc_txpower(int8_t *txpwr, uint8_t idx, const int16_t pa_params[])
+{
+ int32_t m1, m2, f, dbm;
+ int i;
+
+ m1 = _bwi_adjust_devide(16 * pa_params[0] + idx * pa_params[1], 32);
+ m2 = imax(_bwi_adjust_devide(32768 + idx * pa_params[2], 256), 1);
+
+#define ITER_MAX 16
+
+ f = 256;
+ for (i = 0; i < ITER_MAX; ++i) {
+ int32_t q, d;
+
+ q = _bwi_adjust_devide(
+ f * 4096 - _bwi_adjust_devide(m2 * f, 16) * f, 2048);
+ d = abs(q - f);
+ f = q;
+
+ if (d < 2)
+ break;
+ }
+ if (i == ITER_MAX)
+ return EINVAL;
+
+#undef ITER_MAX
+
+ dbm = _bwi_adjust_devide(m1 * f, 8192);
+ if (dbm < -127)
+ dbm = -127;
+ else if (dbm > 128)
+ dbm = 128;
+
+ *txpwr = dbm;
+ return 0;
+}
+
+int
+bwi_rf_map_txpower(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct bwi_phy *phy = &mac->mac_phy;
+ uint16_t sprom_ofs, val, mask;
+ int16_t pa_params[3];
+ int error = 0, i, ant_gain, reg_txpower_max;
+
+ /*
+ * Find out max TX power
+ */
+ val = bwi_read_sprom(sc, BWI_SPROM_MAX_TXPWR);
+ if (phy->phy_mode == IEEE80211_MODE_11A) {
+ rf->rf_txpower_max = __SHIFTOUT(val,
+ BWI_SPROM_MAX_TXPWR_MASK_11A);
+ } else {
+ rf->rf_txpower_max = __SHIFTOUT(val,
+ BWI_SPROM_MAX_TXPWR_MASK_11BG);
+
+ if ((sc->sc_card_flags & BWI_CARD_F_PA_GPIO9) &&
+ phy->phy_mode == IEEE80211_MODE_11G)
+ rf->rf_txpower_max -= 3;
+ }
+ if (rf->rf_txpower_max <= 0) {
+ device_printf(sc->sc_dev, "invalid max txpower in sprom\n");
+ rf->rf_txpower_max = 74;
+ }
+ DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH,
+ "max txpower from sprom: %d dBm\n", rf->rf_txpower_max);
+
+ /*
+ * Find out region/domain max TX power, which is adjusted
+ * by antenna gain and 1.5 dBm fluctuation as mentioned
+ * in v3 spec.
+ */
+ val = bwi_read_sprom(sc, BWI_SPROM_ANT_GAIN);
+ if (phy->phy_mode == IEEE80211_MODE_11A)
+ ant_gain = __SHIFTOUT(val, BWI_SPROM_ANT_GAIN_MASK_11A);
+ else
+ ant_gain = __SHIFTOUT(val, BWI_SPROM_ANT_GAIN_MASK_11BG);
+ if (ant_gain == 0xff) {
+ device_printf(sc->sc_dev, "invalid antenna gain in sprom\n");
+ ant_gain = 2;
+ }
+ ant_gain *= 4;
+ DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH,
+ "ant gain %d dBm\n", ant_gain);
+
+ reg_txpower_max = 90 - ant_gain - 6; /* XXX magic number */
+ DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH,
+ "region/domain max txpower %d dBm\n", reg_txpower_max);
+
+ /*
+ * Force max TX power within region/domain TX power limit
+ */
+ if (rf->rf_txpower_max > reg_txpower_max)
+ rf->rf_txpower_max = reg_txpower_max;
+ DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH,
+ "max txpower %d dBm\n", rf->rf_txpower_max);
+
+ /*
+ * Create TSSI to TX power mapping
+ */
+
+ if (sc->sc_bbp_id == BWI_BBPID_BCM4301 &&
+ rf->rf_type != BWI_RF_T_BCM2050) {
+ rf->rf_idle_tssi0 = BWI_DEFAULT_IDLE_TSSI;
+ bcopy(bwi_txpower_map_11b, rf->rf_txpower_map0,
+ sizeof(rf->rf_txpower_map0));
+ goto back;
+ }
+
+#define IS_VALID_PA_PARAM(p) ((p) != 0 && (p) != -1)
+#define N(arr) (int)(sizeof(arr) / sizeof(arr[0]))
+
+ /*
+ * Extract PA parameters
+ */
+ if (phy->phy_mode == IEEE80211_MODE_11A)
+ sprom_ofs = BWI_SPROM_PA_PARAM_11A;
+ else
+ sprom_ofs = BWI_SPROM_PA_PARAM_11BG;
+ for (i = 0; i < N(pa_params); ++i)
+ pa_params[i] = (int16_t)bwi_read_sprom(sc, sprom_ofs + (i * 2));
+
+ for (i = 0; i < N(pa_params); ++i) {
+ /*
+ * If one of the PA parameters from SPROM is not valid,
+ * fall back to the default values, if there are any.
+ */
+ if (!IS_VALID_PA_PARAM(pa_params[i])) {
+ const int8_t *txpower_map;
+
+ if (phy->phy_mode == IEEE80211_MODE_11A) {
+ device_printf(sc->sc_dev,
+ "no tssi2dbm table for 11a PHY\n");
+ return ENXIO;
+ }
+
+ if (phy->phy_mode == IEEE80211_MODE_11G) {
+ DPRINTF(sc,
+ BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH,
+ "%s\n", "use default 11g TSSI map");
+ txpower_map = bwi_txpower_map_11g;
+ } else {
+ DPRINTF(sc,
+ BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH,
+ "%s\n", "use default 11b TSSI map");
+ txpower_map = bwi_txpower_map_11b;
+ }
+
+ rf->rf_idle_tssi0 = BWI_DEFAULT_IDLE_TSSI;
+ bcopy(txpower_map, rf->rf_txpower_map0,
+ sizeof(rf->rf_txpower_map0));
+ goto back;
+ }
+ }
+
+#undef N
+
+ /*
+ * All of the PA parameters from SPROM are valid.
+ */
+
+ /*
+ * Extract idle TSSI from SPROM.
+ */
+ val = bwi_read_sprom(sc, BWI_SPROM_IDLE_TSSI);
+ DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH,
+ "sprom idle tssi: 0x%04x\n", val);
+
+ if (phy->phy_mode == IEEE80211_MODE_11A)
+ mask = BWI_SPROM_IDLE_TSSI_MASK_11A;
+ else
+ mask = BWI_SPROM_IDLE_TSSI_MASK_11BG;
+
+ rf->rf_idle_tssi0 = (int)__SHIFTOUT(val, mask);
+ if (!IS_VALID_PA_PARAM(rf->rf_idle_tssi0))
+ rf->rf_idle_tssi0 = 62;
+
+#undef IS_VALID_PA_PARAM
+
+ /*
+ * Calculate TX power map, which is indexed by TSSI
+ */
+ DPRINTF(sc, BWI_DBG_RF | BWI_DBG_ATTACH | BWI_DBG_TXPOWER,
+ "%s\n", "TSSI-TX power map:");
+ for (i = 0; i < BWI_TSSI_MAX; ++i) {
+ error = bwi_rf_calc_txpower(&rf->rf_txpower_map0[i], i,
+ pa_params);
+ if (error) {
+ device_printf(sc->sc_dev,
+ "bwi_rf_calc_txpower failed\n");
+ break;
+ }
+
+#ifdef BWI_DEBUG
+ if (i != 0 && i % 8 == 0) {
+ _DPRINTF(sc,
+ BWI_DBG_RF | BWI_DBG_ATTACH | BWI_DBG_TXPOWER,
+ "%s\n", "");
+ }
+#endif
+ _DPRINTF(sc, BWI_DBG_RF | BWI_DBG_ATTACH | BWI_DBG_TXPOWER,
+ "%d ", rf->rf_txpower_map0[i]);
+ }
+ _DPRINTF(sc, BWI_DBG_RF | BWI_DBG_ATTACH | BWI_DBG_TXPOWER,
+ "%s\n", "");
+back:
+ DPRINTF(sc, BWI_DBG_RF | BWI_DBG_TXPOWER | BWI_DBG_ATTACH,
+ "idle tssi0: %d\n", rf->rf_idle_tssi0);
+ return error;
+}
+
+static void
+bwi_rf_lo_update_11g(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct ifnet *ifp = sc->sc_ifp;
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct bwi_tpctl *tpctl = &mac->mac_tpctl;
+ struct rf_saveregs regs;
+ uint16_t ant_div, chan_ex;
+ uint8_t devi_ctrl;
+ u_int orig_chan;
+
+ /*
+ * Save RF/PHY registers for later restoration
+ */
+ orig_chan = rf->rf_curchan;
+ bzero(&regs, sizeof(regs));
+
+ if (phy->phy_flags & BWI_PHY_F_LINKED) {
+ SAVE_PHY_REG(mac, &regs, 429);
+ SAVE_PHY_REG(mac, &regs, 802);
+
+ PHY_WRITE(mac, 0x429, regs.phy_429 & 0x7fff);
+ PHY_WRITE(mac, 0x802, regs.phy_802 & 0xfffc);
+ }
+
+ ant_div = CSR_READ_2(sc, BWI_RF_ANTDIV);
+ CSR_WRITE_2(sc, BWI_RF_ANTDIV, ant_div | 0x8000);
+ chan_ex = CSR_READ_2(sc, BWI_RF_CHAN_EX);
+
+ SAVE_PHY_REG(mac, &regs, 15);
+ SAVE_PHY_REG(mac, &regs, 2a);
+ SAVE_PHY_REG(mac, &regs, 35);
+ SAVE_PHY_REG(mac, &regs, 60);
+ SAVE_RF_REG(mac, &regs, 43);
+ SAVE_RF_REG(mac, &regs, 7a);
+ SAVE_RF_REG(mac, &regs, 52);
+ if (phy->phy_flags & BWI_PHY_F_LINKED) {
+ SAVE_PHY_REG(mac, &regs, 811);
+ SAVE_PHY_REG(mac, &regs, 812);
+ SAVE_PHY_REG(mac, &regs, 814);
+ SAVE_PHY_REG(mac, &regs, 815);
+ }
+
+ /* Force to channel 6 */
+ bwi_rf_set_chan(mac, 6, 0);
+
+ if (phy->phy_flags & BWI_PHY_F_LINKED) {
+ PHY_WRITE(mac, 0x429, regs.phy_429 & 0x7fff);
+ PHY_WRITE(mac, 0x802, regs.phy_802 & 0xfffc);
+ bwi_mac_dummy_xmit(mac);
+ }
+ RF_WRITE(mac, 0x43, 0x6);
+
+ bwi_phy_set_bbp_atten(mac, 2);
+
+ CSR_WRITE_2(sc, BWI_RF_CHAN_EX, 0);
+
+ PHY_WRITE(mac, 0x2e, 0x7f);
+ PHY_WRITE(mac, 0x80f, 0x78);
+ PHY_WRITE(mac, 0x35, regs.phy_35 & 0xff7f);
+ RF_WRITE(mac, 0x7a, regs.rf_7a & 0xfff0);
+ PHY_WRITE(mac, 0x2b, 0x203);
+ PHY_WRITE(mac, 0x2a, 0x8a3);
+
+ if (phy->phy_flags & BWI_PHY_F_LINKED) {
+ PHY_WRITE(mac, 0x814, regs.phy_814 | 0x3);
+ PHY_WRITE(mac, 0x815, regs.phy_815 & 0xfffc);
+ PHY_WRITE(mac, 0x811, 0x1b3);
+ PHY_WRITE(mac, 0x812, 0xb2);
+ }
+
+ if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0)
+ tpctl->tp_ctrl2 = bwi_rf_get_tp_ctrl2(mac);
+ PHY_WRITE(mac, 0x80f, 0x8078);
+
+ /*
+ * Measure all RF LO
+ */
+ devi_ctrl = _bwi_rf_lo_update_11g(mac, regs.rf_7a);
+
+ /*
+ * Restore saved RF/PHY registers
+ */
+ if (phy->phy_flags & BWI_PHY_F_LINKED) {
+ PHY_WRITE(mac, 0x15, 0xe300);
+ PHY_WRITE(mac, 0x812, (devi_ctrl << 8) | 0xa0);
+ DELAY(5);
+ PHY_WRITE(mac, 0x812, (devi_ctrl << 8) | 0xa2);
+ DELAY(2);
+ PHY_WRITE(mac, 0x812, (devi_ctrl << 8) | 0xa3);
+ } else {
+ PHY_WRITE(mac, 0x15, devi_ctrl | 0xefa0);
+ }
+
+ if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0)
+ tpctl = NULL;
+ bwi_rf_lo_adjust(mac, tpctl);
+
+ PHY_WRITE(mac, 0x2e, 0x807f);
+ if (phy->phy_flags & BWI_PHY_F_LINKED)
+ PHY_WRITE(mac, 0x2f, 0x202);
+ else
+ PHY_WRITE(mac, 0x2f, 0x101);
+
+ CSR_WRITE_2(sc, BWI_RF_CHAN_EX, chan_ex);
+
+ RESTORE_PHY_REG(mac, &regs, 15);
+ RESTORE_PHY_REG(mac, &regs, 2a);
+ RESTORE_PHY_REG(mac, &regs, 35);
+ RESTORE_PHY_REG(mac, &regs, 60);
+
+ RESTORE_RF_REG(mac, &regs, 43);
+ RESTORE_RF_REG(mac, &regs, 7a);
+
+ regs.rf_52 &= 0xf0;
+ regs.rf_52 |= (RF_READ(mac, 0x52) & 0xf);
+ RF_WRITE(mac, 0x52, regs.rf_52);
+
+ CSR_WRITE_2(sc, BWI_RF_ANTDIV, ant_div);
+
+ if (phy->phy_flags & BWI_PHY_F_LINKED) {
+ RESTORE_PHY_REG(mac, &regs, 811);
+ RESTORE_PHY_REG(mac, &regs, 812);
+ RESTORE_PHY_REG(mac, &regs, 814);
+ RESTORE_PHY_REG(mac, &regs, 815);
+ RESTORE_PHY_REG(mac, &regs, 429);
+ RESTORE_PHY_REG(mac, &regs, 802);
+ }
+
+ bwi_rf_set_chan(mac, orig_chan, 1);
+}
+
+static uint32_t
+bwi_rf_lo_devi_measure(struct bwi_mac *mac, uint16_t ctrl)
+{
+ struct bwi_phy *phy = &mac->mac_phy;
+ uint32_t devi = 0;
+ int i;
+
+ if (phy->phy_flags & BWI_PHY_F_LINKED)
+ ctrl <<= 8;
+
+ for (i = 0; i < 8; ++i) {
+ if (phy->phy_flags & BWI_PHY_F_LINKED) {
+ PHY_WRITE(mac, 0x15, 0xe300);
+ PHY_WRITE(mac, 0x812, ctrl | 0xb0);
+ DELAY(5);
+ PHY_WRITE(mac, 0x812, ctrl | 0xb2);
+ DELAY(2);
+ PHY_WRITE(mac, 0x812, ctrl | 0xb3);
+ DELAY(4);
+ PHY_WRITE(mac, 0x15, 0xf300);
+ } else {
+ PHY_WRITE(mac, 0x15, ctrl | 0xefa0);
+ DELAY(2);
+ PHY_WRITE(mac, 0x15, ctrl | 0xefe0);
+ DELAY(4);
+ PHY_WRITE(mac, 0x15, ctrl | 0xffe0);
+ }
+ DELAY(8);
+ devi += PHY_READ(mac, 0x2d);
+ }
+ return devi;
+}
+
+static uint16_t
+bwi_rf_get_tp_ctrl2(struct bwi_mac *mac)
+{
+ uint32_t devi_min;
+ uint16_t tp_ctrl2 = 0;
+ int i;
+
+ RF_WRITE(mac, 0x52, 0);
+ DELAY(10);
+ devi_min = bwi_rf_lo_devi_measure(mac, 0);
+
+ for (i = 0; i < 16; ++i) {
+ uint32_t devi;
+
+ RF_WRITE(mac, 0x52, i);
+ DELAY(10);
+ devi = bwi_rf_lo_devi_measure(mac, 0);
+
+ if (devi < devi_min) {
+ devi_min = devi;
+ tp_ctrl2 = i;
+ }
+ }
+ return tp_ctrl2;
+}
+
+static uint8_t
+_bwi_rf_lo_update_11g(struct bwi_mac *mac, uint16_t orig_rf7a)
+{
+#define RF_ATTEN_LISTSZ 14
+#define BBP_ATTEN_MAX 4 /* half */
+
+ static const int rf_atten_list[RF_ATTEN_LISTSZ] =
+ { 3, 1, 5, 7, 9, 2, 0, 4, 6, 8, 1, 2, 3, 4 };
+ static const int rf_atten_init_list[RF_ATTEN_LISTSZ] =
+ { 0, 3, 1, 5, 7, 3, 2, 0, 4, 6, -1, -1, -1, -1 };
+ static const int rf_lo_measure_order[RF_ATTEN_LISTSZ] =
+ { 3, 1, 5, 7, 9, 2, 0, 4, 6, 8, 10, 11, 12, 13 };
+
+ struct ifnet *ifp = mac->mac_sc->sc_ifp;
+ struct bwi_rf_lo lo_save, *lo;
+ uint8_t devi_ctrl = 0;
+ int idx, adj_rf7a = 0;
+
+ bzero(&lo_save, sizeof(lo_save));
+ for (idx = 0; idx < RF_ATTEN_LISTSZ; ++idx) {
+ int init_rf_atten = rf_atten_init_list[idx];
+ int rf_atten = rf_atten_list[idx];
+ int bbp_atten;
+
+ for (bbp_atten = 0; bbp_atten < BBP_ATTEN_MAX; ++bbp_atten) {
+ uint16_t tp_ctrl2, rf7a;
+
+ if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) {
+ if (idx == 0) {
+ bzero(&lo_save, sizeof(lo_save));
+ } else if (init_rf_atten < 0) {
+ lo = bwi_get_rf_lo(mac,
+ rf_atten, 2 * bbp_atten);
+ bcopy(lo, &lo_save, sizeof(lo_save));
+ } else {
+ lo = bwi_get_rf_lo(mac,
+ init_rf_atten, 0);
+ bcopy(lo, &lo_save, sizeof(lo_save));
+ }
+
+ devi_ctrl = 0;
+ adj_rf7a = 0;
+
+ /*
+ * XXX
+ * Linux driver overflows 'val'
+ */
+ if (init_rf_atten >= 0) {
+ int val;
+
+ val = rf_atten * 2 + bbp_atten;
+ if (val > 14) {
+ adj_rf7a = 1;
+ if (val > 17)
+ devi_ctrl = 1;
+ if (val > 19)
+ devi_ctrl = 2;
+ }
+ }
+ } else {
+ lo = bwi_get_rf_lo(mac,
+ rf_atten, 2 * bbp_atten);
+ if (!bwi_rf_lo_isused(mac, lo))
+ continue;
+ bcopy(lo, &lo_save, sizeof(lo_save));
+
+ devi_ctrl = 3;
+ adj_rf7a = 0;
+ }
+
+ RF_WRITE(mac, BWI_RFR_ATTEN, rf_atten);
+
+ tp_ctrl2 = mac->mac_tpctl.tp_ctrl2;
+ if (init_rf_atten < 0)
+ tp_ctrl2 |= (3 << 4);
+ RF_WRITE(mac, BWI_RFR_TXPWR, tp_ctrl2);
+
+ DELAY(10);
+
+ bwi_phy_set_bbp_atten(mac, bbp_atten * 2);
+
+ rf7a = orig_rf7a & 0xfff0;
+ if (adj_rf7a)
+ rf7a |= 0x8;
+ RF_WRITE(mac, 0x7a, rf7a);
+
+ lo = bwi_get_rf_lo(mac,
+ rf_lo_measure_order[idx], bbp_atten * 2);
+ bwi_rf_lo_measure_11g(mac, &lo_save, lo, devi_ctrl);
+ }
+ }
+ return devi_ctrl;
+
+#undef RF_ATTEN_LISTSZ
+#undef BBP_ATTEN_MAX
+}
+
+static void
+bwi_rf_lo_measure_11g(struct bwi_mac *mac, const struct bwi_rf_lo *src_lo,
+ struct bwi_rf_lo *dst_lo, uint8_t devi_ctrl)
+{
+#define LO_ADJUST_MIN 1
+#define LO_ADJUST_MAX 8
+#define LO_ADJUST(hi, lo) { .ctrl_hi = hi, .ctrl_lo = lo }
+ static const struct bwi_rf_lo rf_lo_adjust[LO_ADJUST_MAX] = {
+ LO_ADJUST(1, 1),
+ LO_ADJUST(1, 0),
+ LO_ADJUST(1, -1),
+ LO_ADJUST(0, -1),
+ LO_ADJUST(-1, -1),
+ LO_ADJUST(-1, 0),
+ LO_ADJUST(-1, 1),
+ LO_ADJUST(0, 1)
+ };
+#undef LO_ADJUST
+
+ struct bwi_rf_lo lo_min;
+ uint32_t devi_min;
+ int found, loop_count, adjust_state;
+
+ bcopy(src_lo, &lo_min, sizeof(lo_min));
+ RF_LO_WRITE(mac, &lo_min);
+ devi_min = bwi_rf_lo_devi_measure(mac, devi_ctrl);
+
+ loop_count = 12; /* XXX */
+ adjust_state = 0;
+ do {
+ struct bwi_rf_lo lo_base;
+ int i, fin;
+
+ found = 0;
+ if (adjust_state == 0) {
+ i = LO_ADJUST_MIN;
+ fin = LO_ADJUST_MAX;
+ } else if (adjust_state % 2 == 0) {
+ i = adjust_state - 1;
+ fin = adjust_state + 1;
+ } else {
+ i = adjust_state - 2;
+ fin = adjust_state + 2;
+ }
+
+ if (i < LO_ADJUST_MIN)
+ i += LO_ADJUST_MAX;
+ KASSERT(i <= LO_ADJUST_MAX && i >= LO_ADJUST_MIN, ("i %d", i));
+
+ if (fin > LO_ADJUST_MAX)
+ fin -= LO_ADJUST_MAX;
+ KASSERT(fin <= LO_ADJUST_MAX && fin >= LO_ADJUST_MIN,
+ ("fin %d", fin));
+
+ bcopy(&lo_min, &lo_base, sizeof(lo_base));
+ for (;;) {
+ struct bwi_rf_lo lo;
+
+ lo.ctrl_hi = lo_base.ctrl_hi +
+ rf_lo_adjust[i - 1].ctrl_hi;
+ lo.ctrl_lo = lo_base.ctrl_lo +
+ rf_lo_adjust[i - 1].ctrl_lo;
+
+ if (abs(lo.ctrl_lo) < 9 && abs(lo.ctrl_hi) < 9) {
+ uint32_t devi;
+
+ RF_LO_WRITE(mac, &lo);
+ devi = bwi_rf_lo_devi_measure(mac, devi_ctrl);
+ if (devi < devi_min) {
+ devi_min = devi;
+ adjust_state = i;
+ found = 1;
+ bcopy(&lo, &lo_min, sizeof(lo_min));
+ }
+ }
+ if (i == fin)
+ break;
+ if (i == LO_ADJUST_MAX)
+ i = LO_ADJUST_MIN;
+ else
+ ++i;
+ }
+ } while (loop_count-- && found);
+
+ bcopy(&lo_min, dst_lo, sizeof(*dst_lo));
+
+#undef LO_ADJUST_MIN
+#undef LO_ADJUST_MAX
+}
+
+static void
+bwi_rf_calc_nrssi_slope_11b(struct bwi_mac *mac)
+{
+#define SAVE_RF_MAX 3
+#define SAVE_PHY_MAX 8
+
+ static const uint16_t save_rf_regs[SAVE_RF_MAX] =
+ { 0x7a, 0x52, 0x43 };
+ static const uint16_t save_phy_regs[SAVE_PHY_MAX] =
+ { 0x30, 0x26, 0x15, 0x2a, 0x20, 0x5a, 0x59, 0x58 };
+
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct bwi_phy *phy = &mac->mac_phy;
+ uint16_t save_rf[SAVE_RF_MAX];
+ uint16_t save_phy[SAVE_PHY_MAX];
+ uint16_t ant_div, bbp_atten, chan_ex;
+ int16_t nrssi[2];
+ int i;
+
+ /*
+ * Save RF/PHY registers for later restoration
+ */
+ for (i = 0; i < SAVE_RF_MAX; ++i)
+ save_rf[i] = RF_READ(mac, save_rf_regs[i]);
+ for (i = 0; i < SAVE_PHY_MAX; ++i)
+ save_phy[i] = PHY_READ(mac, save_phy_regs[i]);
+
+ ant_div = CSR_READ_2(sc, BWI_RF_ANTDIV);
+ bbp_atten = CSR_READ_2(sc, BWI_BBP_ATTEN);
+ chan_ex = CSR_READ_2(sc, BWI_RF_CHAN_EX);
+
+ /*
+ * Calculate nrssi0
+ */
+ if (phy->phy_rev >= 5)
+ RF_CLRBITS(mac, 0x7a, 0xff80);
+ else
+ RF_CLRBITS(mac, 0x7a, 0xfff0);
+ PHY_WRITE(mac, 0x30, 0xff);
+
+ CSR_WRITE_2(sc, BWI_BPHY_CTRL, 0x7f7f);
+
+ PHY_WRITE(mac, 0x26, 0);
+ PHY_SETBITS(mac, 0x15, 0x20);
+ PHY_WRITE(mac, 0x2a, 0x8a3);
+ RF_SETBITS(mac, 0x7a, 0x80);
+
+ nrssi[0] = (int16_t)PHY_READ(mac, 0x27);
+
+ /*
+ * Calculate nrssi1
+ */
+ RF_CLRBITS(mac, 0x7a, 0xff80);
+ if (phy->phy_version >= 2)
+ CSR_WRITE_2(sc, BWI_BBP_ATTEN, 0x40);
+ else if (phy->phy_version == 0)
+ CSR_WRITE_2(sc, BWI_BBP_ATTEN, 0x122);
+ else
+ CSR_CLRBITS_2(sc, BWI_RF_CHAN_EX, 0xdfff);
+
+ PHY_WRITE(mac, 0x20, 0x3f3f);
+ PHY_WRITE(mac, 0x15, 0xf330);
+
+ RF_WRITE(mac, 0x5a, 0x60);
+ RF_CLRBITS(mac, 0x43, 0xff0f);
+
+ PHY_WRITE(mac, 0x5a, 0x480);
+ PHY_WRITE(mac, 0x59, 0x810);
+ PHY_WRITE(mac, 0x58, 0xd);
+
+ DELAY(20);
+
+ nrssi[1] = (int16_t)PHY_READ(mac, 0x27);
+
+ /*
+ * Restore saved RF/PHY registers
+ */
+ PHY_WRITE(mac, save_phy_regs[0], save_phy[0]);
+ RF_WRITE(mac, save_rf_regs[0], save_rf[0]);
+
+ CSR_WRITE_2(sc, BWI_RF_ANTDIV, ant_div);
+
+ for (i = 1; i < 4; ++i)
+ PHY_WRITE(mac, save_phy_regs[i], save_phy[i]);
+
+ bwi_rf_work_around(mac, rf->rf_curchan);
+
+ if (phy->phy_version != 0)
+ CSR_WRITE_2(sc, BWI_RF_CHAN_EX, chan_ex);
+
+ for (; i < SAVE_PHY_MAX; ++i)
+ PHY_WRITE(mac, save_phy_regs[i], save_phy[i]);
+
+ for (i = 1; i < SAVE_RF_MAX; ++i)
+ RF_WRITE(mac, save_rf_regs[i], save_rf[i]);
+
+ /*
+ * Install calculated narrow RSSI values
+ */
+ if (nrssi[0] == nrssi[1])
+ rf->rf_nrssi_slope = 0x10000;
+ else
+ rf->rf_nrssi_slope = 0x400000 / (nrssi[0] - nrssi[1]);
+ if (nrssi[0] <= -4) {
+ rf->rf_nrssi[0] = nrssi[0];
+ rf->rf_nrssi[1] = nrssi[1];
+ }
+
+#undef SAVE_RF_MAX
+#undef SAVE_PHY_MAX
+}
+
+static void
+bwi_rf_set_nrssi_ofs_11g(struct bwi_mac *mac)
+{
+#define SAVE_RF_MAX 2
+#define SAVE_PHY_COMM_MAX 10
+#define SAVE_PHY6_MAX 8
+
+ static const uint16_t save_rf_regs[SAVE_RF_MAX] =
+ { 0x7a, 0x43 };
+ static const uint16_t save_phy_comm_regs[SAVE_PHY_COMM_MAX] = {
+ 0x0001, 0x0811, 0x0812, 0x0814,
+ 0x0815, 0x005a, 0x0059, 0x0058,
+ 0x000a, 0x0003
+ };
+ static const uint16_t save_phy6_regs[SAVE_PHY6_MAX] = {
+ 0x002e, 0x002f, 0x080f, 0x0810,
+ 0x0801, 0x0060, 0x0014, 0x0478
+ };
+
+ struct bwi_phy *phy = &mac->mac_phy;
+ uint16_t save_rf[SAVE_RF_MAX];
+ uint16_t save_phy_comm[SAVE_PHY_COMM_MAX];
+ uint16_t save_phy6[SAVE_PHY6_MAX];
+ uint16_t rf7b = 0xffff;
+ int16_t nrssi;
+ int i, phy6_idx = 0;
+
+ for (i = 0; i < SAVE_PHY_COMM_MAX; ++i)
+ save_phy_comm[i] = PHY_READ(mac, save_phy_comm_regs[i]);
+ for (i = 0; i < SAVE_RF_MAX; ++i)
+ save_rf[i] = RF_READ(mac, save_rf_regs[i]);
+
+ PHY_CLRBITS(mac, 0x429, 0x8000);
+ PHY_FILT_SETBITS(mac, 0x1, 0x3fff, 0x4000);
+ PHY_SETBITS(mac, 0x811, 0xc);
+ PHY_FILT_SETBITS(mac, 0x812, 0xfff3, 0x4);
+ PHY_CLRBITS(mac, 0x802, 0x3);
+
+ if (phy->phy_rev >= 6) {
+ for (i = 0; i < SAVE_PHY6_MAX; ++i)
+ save_phy6[i] = PHY_READ(mac, save_phy6_regs[i]);
+
+ PHY_WRITE(mac, 0x2e, 0);
+ PHY_WRITE(mac, 0x2f, 0);
+ PHY_WRITE(mac, 0x80f, 0);
+ PHY_WRITE(mac, 0x810, 0);
+ PHY_SETBITS(mac, 0x478, 0x100);
+ PHY_SETBITS(mac, 0x801, 0x40);
+ PHY_SETBITS(mac, 0x60, 0x40);
+ PHY_SETBITS(mac, 0x14, 0x200);
+ }
+
+ RF_SETBITS(mac, 0x7a, 0x70);
+ RF_SETBITS(mac, 0x7a, 0x80);
+
+ DELAY(30);
+
+ nrssi = bwi_nrssi_11g(mac);
+ if (nrssi == 31) {
+ for (i = 7; i >= 4; --i) {
+ RF_WRITE(mac, 0x7b, i);
+ DELAY(20);
+ nrssi = bwi_nrssi_11g(mac);
+ if (nrssi < 31 && rf7b == 0xffff)
+ rf7b = i;
+ }
+ if (rf7b == 0xffff)
+ rf7b = 4;
+ } else {
+ struct bwi_gains gains;
+
+ RF_CLRBITS(mac, 0x7a, 0xff80);
+
+ PHY_SETBITS(mac, 0x814, 0x1);
+ PHY_CLRBITS(mac, 0x815, 0x1);
+ PHY_SETBITS(mac, 0x811, 0xc);
+ PHY_SETBITS(mac, 0x812, 0xc);
+ PHY_SETBITS(mac, 0x811, 0x30);
+ PHY_SETBITS(mac, 0x812, 0x30);
+ PHY_WRITE(mac, 0x5a, 0x480);
+ PHY_WRITE(mac, 0x59, 0x810);
+ PHY_WRITE(mac, 0x58, 0xd);
+ if (phy->phy_version == 0)
+ PHY_WRITE(mac, 0x3, 0x122);
+ else
+ PHY_SETBITS(mac, 0xa, 0x2000);
+ PHY_SETBITS(mac, 0x814, 0x4);
+ PHY_CLRBITS(mac, 0x815, 0x4);
+ PHY_FILT_SETBITS(mac, 0x3, 0xff9f, 0x40);
+ RF_SETBITS(mac, 0x7a, 0xf);
+
+ bzero(&gains, sizeof(gains));
+ gains.tbl_gain1 = 3;
+ gains.tbl_gain2 = 0;
+ gains.phy_gain = 1;
+ bwi_set_gains(mac, &gains);
+
+ RF_FILT_SETBITS(mac, 0x43, 0xf0, 0xf);
+ DELAY(30);
+
+ nrssi = bwi_nrssi_11g(mac);
+ if (nrssi == -32) {
+ for (i = 0; i < 4; ++i) {
+ RF_WRITE(mac, 0x7b, i);
+ DELAY(20);
+ nrssi = bwi_nrssi_11g(mac);
+ if (nrssi > -31 && rf7b == 0xffff)
+ rf7b = i;
+ }
+ if (rf7b == 0xffff)
+ rf7b = 3;
+ } else {
+ rf7b = 0;
+ }
+ }
+ RF_WRITE(mac, 0x7b, rf7b);
+
+ /*
+ * Restore saved RF/PHY registers
+ */
+ if (phy->phy_rev >= 6) {
+ for (phy6_idx = 0; phy6_idx < 4; ++phy6_idx) {
+ PHY_WRITE(mac, save_phy6_regs[phy6_idx],
+ save_phy6[phy6_idx]);
+ }
+ }
+
+ /* Saved PHY registers 0, 1, 2 are handled later */
+ for (i = 3; i < SAVE_PHY_COMM_MAX; ++i)
+ PHY_WRITE(mac, save_phy_comm_regs[i], save_phy_comm[i]);
+
+ for (i = SAVE_RF_MAX - 1; i >= 0; --i)
+ RF_WRITE(mac, save_rf_regs[i], save_rf[i]);
+
+ PHY_SETBITS(mac, 0x802, 0x3);
+ PHY_SETBITS(mac, 0x429, 0x8000);
+
+ bwi_set_gains(mac, NULL);
+
+ if (phy->phy_rev >= 6) {
+ for (; phy6_idx < SAVE_PHY6_MAX; ++phy6_idx) {
+ PHY_WRITE(mac, save_phy6_regs[phy6_idx],
+ save_phy6[phy6_idx]);
+ }
+ }
+
+ PHY_WRITE(mac, save_phy_comm_regs[0], save_phy_comm[0]);
+ PHY_WRITE(mac, save_phy_comm_regs[2], save_phy_comm[2]);
+ PHY_WRITE(mac, save_phy_comm_regs[1], save_phy_comm[1]);
+
+#undef SAVE_RF_MAX
+#undef SAVE_PHY_COMM_MAX
+#undef SAVE_PHY6_MAX
+}
+
+static void
+bwi_rf_calc_nrssi_slope_11g(struct bwi_mac *mac)
+{
+#define SAVE_RF_MAX 3
+#define SAVE_PHY_COMM_MAX 4
+#define SAVE_PHY3_MAX 8
+
+ static const uint16_t save_rf_regs[SAVE_RF_MAX] =
+ { 0x7a, 0x52, 0x43 };
+ static const uint16_t save_phy_comm_regs[SAVE_PHY_COMM_MAX] =
+ { 0x15, 0x5a, 0x59, 0x58 };
+ static const uint16_t save_phy3_regs[SAVE_PHY3_MAX] = {
+ 0x002e, 0x002f, 0x080f, 0x0810,
+ 0x0801, 0x0060, 0x0014, 0x0478
+ };
+
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ struct bwi_rf *rf = &mac->mac_rf;
+ uint16_t save_rf[SAVE_RF_MAX];
+ uint16_t save_phy_comm[SAVE_PHY_COMM_MAX];
+ uint16_t save_phy3[SAVE_PHY3_MAX];
+ uint16_t ant_div, bbp_atten, chan_ex;
+ struct bwi_gains gains;
+ int16_t nrssi[2];
+ int i, phy3_idx = 0;
+
+ if (rf->rf_rev >= 9)
+ return;
+ else if (rf->rf_rev == 8)
+ bwi_rf_set_nrssi_ofs_11g(mac);
+
+ PHY_CLRBITS(mac, 0x429, 0x8000);
+ PHY_CLRBITS(mac, 0x802, 0x3);
+
+ /*
+ * Save RF/PHY registers for later restoration
+ */
+ ant_div = CSR_READ_2(sc, BWI_RF_ANTDIV);
+ CSR_SETBITS_2(sc, BWI_RF_ANTDIV, 0x8000);
+
+ for (i = 0; i < SAVE_RF_MAX; ++i)
+ save_rf[i] = RF_READ(mac, save_rf_regs[i]);
+ for (i = 0; i < SAVE_PHY_COMM_MAX; ++i)
+ save_phy_comm[i] = PHY_READ(mac, save_phy_comm_regs[i]);
+
+ bbp_atten = CSR_READ_2(sc, BWI_BBP_ATTEN);
+ chan_ex = CSR_READ_2(sc, BWI_RF_CHAN_EX);
+
+ if (phy->phy_rev >= 3) {
+ for (i = 0; i < SAVE_PHY3_MAX; ++i)
+ save_phy3[i] = PHY_READ(mac, save_phy3_regs[i]);
+
+ PHY_WRITE(mac, 0x2e, 0);
+ PHY_WRITE(mac, 0x810, 0);
+
+ if (phy->phy_rev == 4 || phy->phy_rev == 6 ||
+ phy->phy_rev == 7) {
+ PHY_SETBITS(mac, 0x478, 0x100);
+ PHY_SETBITS(mac, 0x810, 0x40);
+ } else if (phy->phy_rev == 3 || phy->phy_rev == 5) {
+ PHY_CLRBITS(mac, 0x810, 0x40);
+ }
+
+ PHY_SETBITS(mac, 0x60, 0x40);
+ PHY_SETBITS(mac, 0x14, 0x200);
+ }
+
+ /*
+ * Calculate nrssi0
+ */
+ RF_SETBITS(mac, 0x7a, 0x70);
+
+ bzero(&gains, sizeof(gains));
+ gains.tbl_gain1 = 0;
+ gains.tbl_gain2 = 8;
+ gains.phy_gain = 0;
+ bwi_set_gains(mac, &gains);
+
+ RF_CLRBITS(mac, 0x7a, 0xff08);
+ if (phy->phy_rev >= 2) {
+ PHY_FILT_SETBITS(mac, 0x811, 0xffcf, 0x30);
+ PHY_FILT_SETBITS(mac, 0x812, 0xffcf, 0x10);
+ }
+
+ RF_SETBITS(mac, 0x7a, 0x80);
+ DELAY(20);
+ nrssi[0] = bwi_nrssi_11g(mac);
+
+ /*
+ * Calculate nrssi1
+ */
+ RF_CLRBITS(mac, 0x7a, 0xff80);
+ if (phy->phy_version >= 2)
+ PHY_FILT_SETBITS(mac, 0x3, 0xff9f, 0x40);
+ CSR_SETBITS_2(sc, BWI_RF_CHAN_EX, 0x2000);
+
+ RF_SETBITS(mac, 0x7a, 0xf);
+ PHY_WRITE(mac, 0x15, 0xf330);
+ if (phy->phy_rev >= 2) {
+ PHY_FILT_SETBITS(mac, 0x812, 0xffcf, 0x20);
+ PHY_FILT_SETBITS(mac, 0x811, 0xffcf, 0x20);
+ }
+
+ bzero(&gains, sizeof(gains));
+ gains.tbl_gain1 = 3;
+ gains.tbl_gain2 = 0;
+ gains.phy_gain = 1;
+ bwi_set_gains(mac, &gains);
+
+ if (rf->rf_rev == 8) {
+ RF_WRITE(mac, 0x43, 0x1f);
+ } else {
+ RF_FILT_SETBITS(mac, 0x52, 0xff0f, 0x60);
+ RF_FILT_SETBITS(mac, 0x43, 0xfff0, 0x9);
+ }
+ PHY_WRITE(mac, 0x5a, 0x480);
+ PHY_WRITE(mac, 0x59, 0x810);
+ PHY_WRITE(mac, 0x58, 0xd);
+ DELAY(20);
+
+ nrssi[1] = bwi_nrssi_11g(mac);
+
+ /*
+ * Install calculated narrow RSSI values
+ */
+ if (nrssi[1] == nrssi[0])
+ rf->rf_nrssi_slope = 0x10000;
+ else
+ rf->rf_nrssi_slope = 0x400000 / (nrssi[0] - nrssi[1]);
+ if (nrssi[0] >= -4) {
+ rf->rf_nrssi[0] = nrssi[1];
+ rf->rf_nrssi[1] = nrssi[0];
+ }
+
+ /*
+ * Restore saved RF/PHY registers
+ */
+ if (phy->phy_rev >= 3) {
+ for (phy3_idx = 0; phy3_idx < 4; ++phy3_idx) {
+ PHY_WRITE(mac, save_phy3_regs[phy3_idx],
+ save_phy3[phy3_idx]);
+ }
+ }
+ if (phy->phy_rev >= 2) {
+ PHY_CLRBITS(mac, 0x812, 0x30);
+ PHY_CLRBITS(mac, 0x811, 0x30);
+ }
+
+ for (i = 0; i < SAVE_RF_MAX; ++i)
+ RF_WRITE(mac, save_rf_regs[i], save_rf[i]);
+
+ CSR_WRITE_2(sc, BWI_RF_ANTDIV, ant_div);
+ CSR_WRITE_2(sc, BWI_BBP_ATTEN, bbp_atten);
+ CSR_WRITE_2(sc, BWI_RF_CHAN_EX, chan_ex);
+
+ for (i = 0; i < SAVE_PHY_COMM_MAX; ++i)
+ PHY_WRITE(mac, save_phy_comm_regs[i], save_phy_comm[i]);
+
+ bwi_rf_work_around(mac, rf->rf_curchan);
+ PHY_SETBITS(mac, 0x802, 0x3);
+ bwi_set_gains(mac, NULL);
+ PHY_SETBITS(mac, 0x429, 0x8000);
+
+ if (phy->phy_rev >= 3) {
+ for (; phy3_idx < SAVE_PHY3_MAX; ++phy3_idx) {
+ PHY_WRITE(mac, save_phy3_regs[phy3_idx],
+ save_phy3[phy3_idx]);
+ }
+ }
+
+ bwi_rf_init_sw_nrssi_table(mac);
+ bwi_rf_set_nrssi_thr_11g(mac);
+
+#undef SAVE_RF_MAX
+#undef SAVE_PHY_COMM_MAX
+#undef SAVE_PHY3_MAX
+}
+
+static void
+bwi_rf_init_sw_nrssi_table(struct bwi_mac *mac)
+{
+ struct bwi_rf *rf = &mac->mac_rf;
+ int d, i;
+
+ d = 0x1f - rf->rf_nrssi[0];
+ for (i = 0; i < BWI_NRSSI_TBLSZ; ++i) {
+ int val;
+
+ val = (((i - d) * rf->rf_nrssi_slope) / 0x10000) + 0x3a;
+ if (val < 0)
+ val = 0;
+ else if (val > 0x3f)
+ val = 0x3f;
+
+ rf->rf_nrssi_table[i] = val;
+ }
+}
+
+void
+bwi_rf_init_hw_nrssi_table(struct bwi_mac *mac, uint16_t adjust)
+{
+ int i;
+
+ for (i = 0; i < BWI_NRSSI_TBLSZ; ++i) {
+ int16_t val;
+
+ val = bwi_nrssi_read(mac, i);
+
+ val -= adjust;
+ if (val < -32)
+ val = -32;
+ else if (val > 31)
+ val = 31;
+
+ bwi_nrssi_write(mac, i, val);
+ }
+}
+
+static void
+bwi_rf_set_nrssi_thr_11b(struct bwi_mac *mac)
+{
+ struct bwi_rf *rf = &mac->mac_rf;
+ int32_t thr;
+
+ if (rf->rf_type != BWI_RF_T_BCM2050 ||
+ (mac->mac_sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) == 0)
+ return;
+
+ /*
+ * Calculate nrssi threshold
+ */
+ if (rf->rf_rev >= 6) {
+ thr = (rf->rf_nrssi[1] - rf->rf_nrssi[0]) * 32;
+ thr += 20 * (rf->rf_nrssi[0] + 1);
+ thr /= 40;
+ } else {
+ thr = rf->rf_nrssi[1] - 5;
+ }
+ if (thr < 0)
+ thr = 0;
+ else if (thr > 0x3e)
+ thr = 0x3e;
+
+ PHY_READ(mac, BWI_PHYR_NRSSI_THR_11B); /* dummy read */
+ PHY_WRITE(mac, BWI_PHYR_NRSSI_THR_11B, (((uint16_t)thr) << 8) | 0x1c);
+
+ if (rf->rf_rev >= 6) {
+ PHY_WRITE(mac, 0x87, 0xe0d);
+ PHY_WRITE(mac, 0x86, 0xc0b);
+ PHY_WRITE(mac, 0x85, 0xa09);
+ PHY_WRITE(mac, 0x84, 0x808);
+ PHY_WRITE(mac, 0x83, 0x808);
+ PHY_WRITE(mac, 0x82, 0x604);
+ PHY_WRITE(mac, 0x81, 0x302);
+ PHY_WRITE(mac, 0x80, 0x100);
+ }
+}
+
+static __inline int32_t
+_nrssi_threshold(const struct bwi_rf *rf, int32_t val)
+{
+ val *= (rf->rf_nrssi[1] - rf->rf_nrssi[0]);
+ val += (rf->rf_nrssi[0] << 6);
+ if (val < 32)
+ val += 31;
+ else
+ val += 32;
+ val >>= 6;
+ if (val < -31)
+ val = -31;
+ else if (val > 31)
+ val = 31;
+ return val;
+}
+
+static void
+bwi_rf_set_nrssi_thr_11g(struct bwi_mac *mac)
+{
+ int32_t thr1, thr2;
+ uint16_t thr;
+
+ /*
+ * Find the two nrssi thresholds
+ */
+ if ((mac->mac_phy.phy_flags & BWI_PHY_F_LINKED) == 0 ||
+ (mac->mac_sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) == 0) {
+ int16_t nrssi;
+
+ nrssi = bwi_nrssi_read(mac, 0x20);
+ if (nrssi >= 32)
+ nrssi -= 64;
+
+ if (nrssi < 3) {
+ thr1 = 0x2b;
+ thr2 = 0x27;
+ } else {
+ thr1 = 0x2d;
+ thr2 = 0x2b;
+ }
+ } else {
+ /* TODO Interfere mode */
+ thr1 = _nrssi_threshold(&mac->mac_rf, 0x11);
+ thr2 = _nrssi_threshold(&mac->mac_rf, 0xe);
+ }
+
+#define NRSSI_THR1_MASK __BITS(5, 0)
+#define NRSSI_THR2_MASK __BITS(11, 6)
+
+ thr = __SHIFTIN((uint32_t)thr1, NRSSI_THR1_MASK) |
+ __SHIFTIN((uint32_t)thr2, NRSSI_THR2_MASK);
+ PHY_FILT_SETBITS(mac, BWI_PHYR_NRSSI_THR_11G, 0xf000, thr);
+
+#undef NRSSI_THR1_MASK
+#undef NRSSI_THR2_MASK
+}
+
+void
+bwi_rf_clear_tssi(struct bwi_mac *mac)
+{
+ /* XXX use function pointer */
+ if (mac->mac_phy.phy_mode == IEEE80211_MODE_11A) {
+ /* TODO:11A */
+ } else {
+ uint16_t val;
+ int i;
+
+ val = __SHIFTIN(BWI_INVALID_TSSI, BWI_LO_TSSI_MASK) |
+ __SHIFTIN(BWI_INVALID_TSSI, BWI_HI_TSSI_MASK);
+
+ for (i = 0; i < 2; ++i) {
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ,
+ BWI_COMM_MOBJ_TSSI_DS + (i * 2), val);
+ }
+
+ for (i = 0; i < 2; ++i) {
+ MOBJ_WRITE_2(mac, BWI_COMM_MOBJ,
+ BWI_COMM_MOBJ_TSSI_OFDM + (i * 2), val);
+ }
+ }
+}
+
+void
+bwi_rf_clear_state(struct bwi_rf *rf)
+{
+ int i;
+
+ rf->rf_flags &= ~BWI_RF_CLEAR_FLAGS;
+ bzero(rf->rf_lo, sizeof(rf->rf_lo));
+ bzero(rf->rf_lo_used, sizeof(rf->rf_lo_used));
+
+ rf->rf_nrssi_slope = 0;
+ rf->rf_nrssi[0] = BWI_INVALID_NRSSI;
+ rf->rf_nrssi[1] = BWI_INVALID_NRSSI;
+
+ for (i = 0; i < BWI_NRSSI_TBLSZ; ++i)
+ rf->rf_nrssi_table[i] = i;
+
+ rf->rf_lo_gain = 0;
+ rf->rf_rx_gain = 0;
+
+ bcopy(rf->rf_txpower_map0, rf->rf_txpower_map,
+ sizeof(rf->rf_txpower_map));
+ rf->rf_idle_tssi = rf->rf_idle_tssi0;
+}
+
+static void
+bwi_rf_on_11a(struct bwi_mac *mac)
+{
+ /* TODO:11A */
+}
+
+static void
+bwi_rf_on_11bg(struct bwi_mac *mac)
+{
+ struct bwi_phy *phy = &mac->mac_phy;
+
+ PHY_WRITE(mac, 0x15, 0x8000);
+ PHY_WRITE(mac, 0x15, 0xcc00);
+ if (phy->phy_flags & BWI_PHY_F_LINKED)
+ PHY_WRITE(mac, 0x15, 0xc0);
+ else
+ PHY_WRITE(mac, 0x15, 0);
+
+ bwi_rf_set_chan(mac, 6 /* XXX */, 1);
+}
+
+void
+bwi_rf_set_ant_mode(struct bwi_mac *mac, int ant_mode)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_phy *phy = &mac->mac_phy;
+ uint16_t val;
+
+ KASSERT(ant_mode == BWI_ANT_MODE_0 ||
+ ant_mode == BWI_ANT_MODE_1 ||
+ ant_mode == BWI_ANT_MODE_AUTO, ("ant_mode %d", ant_mode));
+
+ HFLAGS_CLRBITS(mac, BWI_HFLAG_AUTO_ANTDIV);
+
+ if (phy->phy_mode == IEEE80211_MODE_11B) {
+ /* NOTE: v4/v3 conflicts, take v3 */
+ if (mac->mac_rev == 2)
+ val = BWI_ANT_MODE_AUTO;
+ else
+ val = ant_mode;
+ val <<= 7;
+ PHY_FILT_SETBITS(mac, 0x3e2, 0xfe7f, val);
+ } else { /* 11a/g */
+ /* XXX reg/value naming */
+ val = ant_mode << 7;
+ PHY_FILT_SETBITS(mac, 0x401, 0x7e7f, val);
+
+ if (ant_mode == BWI_ANT_MODE_AUTO)
+ PHY_CLRBITS(mac, 0x42b, 0x100);
+
+ if (phy->phy_mode == IEEE80211_MODE_11A) {
+ /* TODO:11A */
+ } else { /* 11g */
+ if (ant_mode == BWI_ANT_MODE_AUTO)
+ PHY_SETBITS(mac, 0x48c, 0x2000);
+ else
+ PHY_CLRBITS(mac, 0x48c, 0x2000);
+
+ if (phy->phy_rev >= 2) {
+ PHY_SETBITS(mac, 0x461, 0x10);
+ PHY_FILT_SETBITS(mac, 0x4ad, 0xff00, 0x15);
+ if (phy->phy_rev == 2) {
+ PHY_WRITE(mac, 0x427, 0x8);
+ } else {
+ PHY_FILT_SETBITS(mac, 0x427,
+ 0xff00, 0x8);
+ }
+
+ if (phy->phy_rev >= 6)
+ PHY_WRITE(mac, 0x49b, 0xdc);
+ }
+ }
+ }
+
+ /* XXX v4 set AUTO_ANTDIV unconditionally */
+ if (ant_mode == BWI_ANT_MODE_AUTO)
+ HFLAGS_SETBITS(mac, BWI_HFLAG_AUTO_ANTDIV);
+
+ val = ant_mode << 8;
+ MOBJ_FILT_SETBITS_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_TX_BEACON,
+ 0xfc3f, val);
+ MOBJ_FILT_SETBITS_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_TX_ACK,
+ 0xfc3f, val);
+ MOBJ_FILT_SETBITS_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_TX_PROBE_RESP,
+ 0xfc3f, val);
+
+ /* XXX what's these */
+ if (phy->phy_mode == IEEE80211_MODE_11B)
+ CSR_SETBITS_2(sc, 0x5e, 0x4);
+
+ CSR_WRITE_4(sc, 0x100, 0x1000000);
+ if (mac->mac_rev < 5)
+ CSR_WRITE_4(sc, 0x10c, 0x1000000);
+
+ mac->mac_rf.rf_ant_mode = ant_mode;
+}
+
+int
+bwi_rf_get_latest_tssi(struct bwi_mac *mac, int8_t tssi[], uint16_t ofs)
+{
+ int i;
+
+ for (i = 0; i < 4; ) {
+ uint16_t val;
+
+ val = MOBJ_READ_2(mac, BWI_COMM_MOBJ, ofs + i);
+ tssi[i++] = (int8_t)__SHIFTOUT(val, BWI_LO_TSSI_MASK);
+ tssi[i++] = (int8_t)__SHIFTOUT(val, BWI_HI_TSSI_MASK);
+ }
+
+ for (i = 0; i < 4; ++i) {
+ if (tssi[i] == BWI_INVALID_TSSI)
+ return EINVAL;
+ }
+ return 0;
+}
+
+int
+bwi_rf_tssi2dbm(struct bwi_mac *mac, int8_t tssi, int8_t *txpwr)
+{
+ struct bwi_rf *rf = &mac->mac_rf;
+ int pwr_idx;
+
+ pwr_idx = rf->rf_idle_tssi + (int)tssi - rf->rf_base_tssi;
+#if 0
+ if (pwr_idx < 0 || pwr_idx >= BWI_TSSI_MAX)
+ return EINVAL;
+#else
+ if (pwr_idx < 0)
+ pwr_idx = 0;
+ else if (pwr_idx >= BWI_TSSI_MAX)
+ pwr_idx = BWI_TSSI_MAX - 1;
+#endif
+
+ *txpwr = rf->rf_txpower_map[pwr_idx];
+ return 0;
+}
+
+static int
+bwi_rf_calc_rssi_bcm2050(struct bwi_mac *mac, const struct bwi_rxbuf_hdr *hdr)
+{
+ uint16_t flags1, flags3;
+ int rssi, lna_gain;
+
+ rssi = hdr->rxh_rssi;
+ flags1 = le16toh(hdr->rxh_flags1);
+ flags3 = le16toh(hdr->rxh_flags3);
+
+ if (flags1 & BWI_RXH_F1_OFDM) {
+ if (rssi > 127)
+ rssi -= 256;
+ if (flags3 & BWI_RXH_F3_BCM2050_RSSI)
+ rssi += 17;
+ else
+ rssi -= 4;
+ return rssi;
+ }
+
+ if (mac->mac_sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) {
+ struct bwi_rf *rf = &mac->mac_rf;
+
+ if (rssi >= BWI_NRSSI_TBLSZ)
+ rssi = BWI_NRSSI_TBLSZ - 1;
+
+ rssi = ((31 - (int)rf->rf_nrssi_table[rssi]) * -131) / 128;
+ rssi -= 67;
+ } else {
+ rssi = ((31 - rssi) * -149) / 128;
+ rssi -= 68;
+ }
+
+ if (mac->mac_phy.phy_mode != IEEE80211_MODE_11G)
+ return rssi;
+
+ if (flags3 & BWI_RXH_F3_BCM2050_RSSI)
+ rssi += 20;
+
+ lna_gain = __SHIFTOUT(le16toh(hdr->rxh_phyinfo),
+ BWI_RXH_PHYINFO_LNAGAIN);
+ DPRINTF(mac->mac_sc, BWI_DBG_RF | BWI_DBG_RX,
+ "lna_gain %d, phyinfo 0x%04x\n",
+ lna_gain, le16toh(hdr->rxh_phyinfo));
+ switch (lna_gain) {
+ case 0:
+ rssi += 27;
+ break;
+ case 1:
+ rssi += 6;
+ break;
+ case 2:
+ rssi += 12;
+ break;
+ case 3:
+ /*
+ * XXX
+ * According to v3 spec, we should do _nothing_ here,
+ * but it seems that the result RSSI will be too low
+ * (relative to what ath(4) says). Raise it a little
+ * bit.
+ */
+ rssi += 5;
+ break;
+ default:
+ panic("impossible lna gain %d", lna_gain);
+ }
+ return rssi;
+}
+
+static int
+bwi_rf_calc_rssi_bcm2053(struct bwi_mac *mac, const struct bwi_rxbuf_hdr *hdr)
+{
+ uint16_t flags1;
+ int rssi;
+
+ rssi = (((int)hdr->rxh_rssi - 11) * 103) / 64;
+
+ flags1 = le16toh(hdr->rxh_flags1);
+ if (flags1 & BWI_RXH_F1_BCM2053_RSSI)
+ rssi -= 109;
+ else
+ rssi -= 83;
+ return rssi;
+}
+
+static int
+bwi_rf_calc_rssi_bcm2060(struct bwi_mac *mac, const struct bwi_rxbuf_hdr *hdr)
+{
+ int rssi;
+
+ rssi = hdr->rxh_rssi;
+ if (rssi > 127)
+ rssi -= 256;
+ return rssi;
+}
+
+static int
+bwi_rf_calc_noise_bcm2050(struct bwi_mac *mac)
+{
+ uint16_t val;
+ int noise;
+
+ val = MOBJ_READ_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_RF_NOISE);
+ noise = (int)val; /* XXX check bounds? */
+
+ if (mac->mac_sc->sc_card_flags & BWI_CARD_F_SW_NRSSI) {
+ struct bwi_rf *rf = &mac->mac_rf;
+
+ if (noise >= BWI_NRSSI_TBLSZ)
+ noise = BWI_NRSSI_TBLSZ - 1;
+
+ noise = ((31 - (int)rf->rf_nrssi_table[noise]) * -131) / 128;
+ noise -= 67;
+ } else {
+ noise = ((31 - noise) * -149) / 128;
+ noise -= 68;
+ }
+ return noise;
+}
+
+static int
+bwi_rf_calc_noise_bcm2053(struct bwi_mac *mac)
+{
+ uint16_t val;
+ int noise;
+
+ val = MOBJ_READ_2(mac, BWI_COMM_MOBJ, BWI_COMM_MOBJ_RF_NOISE);
+ noise = (int)val; /* XXX check bounds? */
+
+ noise = ((noise - 11) * 103) / 64;
+ noise -= 109;
+ return noise;
+}
+
+static int
+bwi_rf_calc_noise_bcm2060(struct bwi_mac *mac)
+{
+ /* XXX Dont know how to calc */
+ return (BWI_NOISE_FLOOR);
+}
+
+static uint16_t
+bwi_rf_lo_measure_11b(struct bwi_mac *mac)
+{
+ uint16_t val;
+ int i;
+
+ val = 0;
+ for (i = 0; i < 10; ++i) {
+ PHY_WRITE(mac, 0x15, 0xafa0);
+ DELAY(1);
+ PHY_WRITE(mac, 0x15, 0xefa0);
+ DELAY(10);
+ PHY_WRITE(mac, 0x15, 0xffa0);
+ DELAY(40);
+
+ val += PHY_READ(mac, 0x2c);
+ }
+ return val;
+}
+
+static void
+bwi_rf_lo_update_11b(struct bwi_mac *mac)
+{
+ struct bwi_softc *sc = mac->mac_sc;
+ struct bwi_rf *rf = &mac->mac_rf;
+ struct rf_saveregs regs;
+ uint16_t rf_val, phy_val, min_val, val;
+ uint16_t rf52, bphy_ctrl;
+ int i;
+
+ DPRINTF(sc, BWI_DBG_RF | BWI_DBG_INIT, "%s enter\n", __func__);
+
+ bzero(&regs, sizeof(regs));
+ bphy_ctrl = 0;
+
+ /*
+ * Save RF/PHY registers for later restoration
+ */
+ SAVE_PHY_REG(mac, &regs, 15);
+ rf52 = RF_READ(mac, 0x52) & 0xfff0;
+ if (rf->rf_type == BWI_RF_T_BCM2050) {
+ SAVE_PHY_REG(mac, &regs, 0a);
+ SAVE_PHY_REG(mac, &regs, 2a);
+ SAVE_PHY_REG(mac, &regs, 35);
+ SAVE_PHY_REG(mac, &regs, 03);
+ SAVE_PHY_REG(mac, &regs, 01);
+ SAVE_PHY_REG(mac, &regs, 30);
+
+ SAVE_RF_REG(mac, &regs, 43);
+ SAVE_RF_REG(mac, &regs, 7a);
+
+ bphy_ctrl = CSR_READ_2(sc, BWI_BPHY_CTRL);
+
+ SAVE_RF_REG(mac, &regs, 52);
+ regs.rf_52 &= 0xf0;
+
+ PHY_WRITE(mac, 0x30, 0xff);
+ CSR_WRITE_2(sc, BWI_PHY_CTRL, 0x3f3f);
+ PHY_WRITE(mac, 0x35, regs.phy_35 & 0xff7f);
+ RF_WRITE(mac, 0x7a, regs.rf_7a & 0xfff0);
+ }
+
+ PHY_WRITE(mac, 0x15, 0xb000);
+
+ if (rf->rf_type == BWI_RF_T_BCM2050) {
+ PHY_WRITE(mac, 0x2b, 0x203);
+ PHY_WRITE(mac, 0x2a, 0x8a3);
+ } else {
+ PHY_WRITE(mac, 0x2b, 0x1402);
+ }
+
+ /*
+ * Setup RF signal
+ */
+ rf_val = 0;
+ min_val = UINT16_MAX;
+
+ for (i = 0; i < 4; ++i) {
+ RF_WRITE(mac, 0x52, rf52 | i);
+ bwi_rf_lo_measure_11b(mac); /* Ignore return value */
+ }
+ for (i = 0; i < 10; ++i) {
+ RF_WRITE(mac, 0x52, rf52 | i);
+
+ val = bwi_rf_lo_measure_11b(mac) / 10;
+ if (val < min_val) {
+ min_val = val;
+ rf_val = i;
+ }
+ }
+ RF_WRITE(mac, 0x52, rf52 | rf_val);
+
+ /*
+ * Setup PHY signal
+ */
+ phy_val = 0;
+ min_val = UINT16_MAX;
+
+ for (i = -4; i < 5; i += 2) {
+ int j;
+
+ for (j = -4; j < 5; j += 2) {
+ uint16_t phy2f;
+
+ phy2f = (0x100 * i) + j;
+ if (j < 0)
+ phy2f += 0x100;
+ PHY_WRITE(mac, 0x2f, phy2f);
+
+ val = bwi_rf_lo_measure_11b(mac) / 10;
+ if (val < min_val) {
+ min_val = val;
+ phy_val = phy2f;
+ }
+ }
+ }
+ PHY_WRITE(mac, 0x2f, phy_val + 0x101);
+
+ /*
+ * Restore saved RF/PHY registers
+ */
+ if (rf->rf_type == BWI_RF_T_BCM2050) {
+ RESTORE_PHY_REG(mac, &regs, 0a);
+ RESTORE_PHY_REG(mac, &regs, 2a);
+ RESTORE_PHY_REG(mac, &regs, 35);
+ RESTORE_PHY_REG(mac, &regs, 03);
+ RESTORE_PHY_REG(mac, &regs, 01);
+ RESTORE_PHY_REG(mac, &regs, 30);
+
+ RESTORE_RF_REG(mac, &regs, 43);
+ RESTORE_RF_REG(mac, &regs, 7a);
+
+ RF_FILT_SETBITS(mac, 0x52, 0xf, regs.rf_52);
+
+ CSR_WRITE_2(sc, BWI_BPHY_CTRL, bphy_ctrl);
+ }
+ RESTORE_PHY_REG(mac, &regs, 15);
+
+ bwi_rf_work_around(mac, rf->rf_curchan);
+}
diff --git a/sys/dev/bwi/bwirf.h b/sys/dev/bwi/bwirf.h
new file mode 100644
index 0000000..af2ce17
--- /dev/null
+++ b/sys/dev/bwi/bwirf.h
@@ -0,0 +1,160 @@
+/*
+ * Copyright (c) 2007 The DragonFly Project. All rights reserved.
+ *
+ * This code is derived from software contributed to The DragonFly Project
+ * by Sepherosa Ziehau <sepherosa@gmail.com>
+ *
+ * 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. Neither the name of The DragonFly Project nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific, prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
+ * COPYRIGHT HOLDERS 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.
+ *
+ * $DragonFly: src/sys/dev/netif/bwi/bwirf.h,v 1.3 2007/10/03 04:53:19 sephe Exp $
+ * $FreeBSD$
+ */
+
+#ifndef _BWI_RF_H
+#define _BWI_RF_H
+
+int bwi_rf_attach(struct bwi_mac *);
+void bwi_rf_clear_state(struct bwi_rf *);
+
+int bwi_rf_map_txpower(struct bwi_mac *);
+void bwi_rf_lo_adjust(struct bwi_mac *, const struct bwi_tpctl *);
+void bwi_rf_set_chan(struct bwi_mac *, u_int, int);
+void bwi_rf_get_gains(struct bwi_mac *);
+void bwi_rf_init(struct bwi_mac *);
+void bwi_rf_init_bcm2050(struct bwi_mac *);
+void bwi_rf_init_hw_nrssi_table(struct bwi_mac *, uint16_t);
+void bwi_rf_set_ant_mode(struct bwi_mac *, int);
+
+void bwi_rf_clear_tssi(struct bwi_mac *);
+int bwi_rf_get_latest_tssi(struct bwi_mac *, int8_t[], uint16_t);
+int bwi_rf_tssi2dbm(struct bwi_mac *, int8_t, int8_t *);
+
+void bwi_rf_write(struct bwi_mac *, uint16_t, uint16_t);
+uint16_t bwi_rf_read(struct bwi_mac *, uint16_t);
+
+static __inline void
+bwi_rf_off(struct bwi_mac *_mac)
+{
+ _mac->mac_rf.rf_off(_mac);
+ /* TODO:LED */
+
+ _mac->mac_rf.rf_flags &= ~BWI_RF_F_ON;
+}
+
+static __inline void
+bwi_rf_on(struct bwi_mac *_mac)
+{
+ if (_mac->mac_rf.rf_flags & BWI_RF_F_ON)
+ return;
+
+ _mac->mac_rf.rf_on(_mac);
+ /* TODO: LED */
+
+ _mac->mac_rf.rf_flags |= BWI_RF_F_ON;
+}
+
+static __inline void
+bwi_rf_calc_nrssi_slope(struct bwi_mac *_mac)
+{
+ _mac->mac_rf.rf_calc_nrssi_slope(_mac);
+}
+
+static __inline void
+bwi_rf_set_nrssi_thr(struct bwi_mac *_mac)
+{
+ _mac->mac_rf.rf_set_nrssi_thr(_mac);
+}
+
+static __inline int
+bwi_rf_calc_rssi(struct bwi_mac *_mac, const struct bwi_rxbuf_hdr *_hdr)
+{
+ return _mac->mac_rf.rf_calc_rssi(_mac, _hdr);
+}
+
+static __inline int
+bwi_rf_calc_noise(struct bwi_mac *_mac)
+{
+ return _mac->mac_rf.rf_calc_noise(_mac);
+}
+
+static __inline void
+bwi_rf_lo_update(struct bwi_mac *_mac)
+{
+ return _mac->mac_rf.rf_lo_update(_mac);
+}
+
+#define RF_WRITE(mac, ofs, val) bwi_rf_write((mac), (ofs), (val))
+#define RF_READ(mac, ofs) bwi_rf_read((mac), (ofs))
+
+#define RF_SETBITS(mac, ofs, bits) \
+ RF_WRITE((mac), (ofs), RF_READ((mac), (ofs)) | (bits))
+#define RF_CLRBITS(mac, ofs, bits) \
+ RF_WRITE((mac), (ofs), RF_READ((mac), (ofs)) & ~(bits))
+#define RF_FILT_SETBITS(mac, ofs, filt, bits) \
+ RF_WRITE((mac), (ofs), (RF_READ((mac), (ofs)) & (filt)) | (bits))
+
+#define BWI_RFR_ATTEN 0x43
+
+#define BWI_RFR_TXPWR 0x52
+#define BWI_RFR_TXPWR1_MASK __BITS(6, 4)
+
+#define BWI_RFR_BBP_ATTEN 0x60
+#define BWI_RFR_BBP_ATTEN_CALIB_BIT __BIT(0)
+#define BWI_RFR_BBP_ATTEN_CALIB_IDX __BITS(4, 1)
+
+/*
+ * TSSI -- TX power maps
+ */
+/*
+ * http://bcm-specs.sipsolutions.net/TSSI_to_DBM_Table
+ * B PHY
+ */
+#define BWI_TXPOWER_MAP_11B \
+ 0x4d, 0x4c, 0x4b, 0x4a, 0x4a, 0x49, 0x48, 0x47, \
+ 0x47, 0x46, 0x45, 0x45, 0x44, 0x43, 0x42, 0x42, \
+ 0x41, 0x40, 0x3f, 0x3e, 0x3d, 0x3c, 0x3b, 0x3a, \
+ 0x39, 0x38, 0x37, 0x36, 0x35, 0x34, 0x32, 0x31, \
+ 0x30, 0x2f, 0x2d, 0x2c, 0x2b, 0x29, 0x28, 0x26, \
+ 0x25, 0x23, 0x21, 0x1f, 0x1d, 0x1a, 0x17, 0x14, \
+ 0x10, 0x0c, 0x06, 0x00, -7, -7, -7, -7, \
+ -7, -7, -7, -7, -7, -7, -7, -7
+/*
+ * http://bcm-specs.sipsolutions.net/TSSI_to_DBM_Table
+ * G PHY
+ */
+#define BWI_TXPOWER_MAP_11G \
+ 77, 77, 77, 76, 76, 76, 75, 75, \
+ 74, 74, 73, 73, 73, 72, 72, 71, \
+ 71, 70, 70, 69, 68, 68, 67, 67, \
+ 66, 65, 65, 64, 63, 63, 62, 61, \
+ 60, 59, 58, 57, 56, 55, 54, 53, \
+ 52, 50, 49, 47, 45, 43, 40, 37, \
+ 33, 28, 22, 14, 5, -7, -20, -20, \
+ -20, -20, -20, -20, -20, -20, -20, -20
+
+#endif /* !_BWI_RF_H */
diff --git a/sys/dev/bwi/if_bwi.c b/sys/dev/bwi/if_bwi.c
new file mode 100644
index 0000000..1cb8c0b
--- /dev/null
+++ b/sys/dev/bwi/if_bwi.c
@@ -0,0 +1,4056 @@
+/*
+ * Copyright (c) 2007 The DragonFly Project. All rights reserved.
+ *
+ * This code is derived from software contributed to The DragonFly Project
+ * by Sepherosa Ziehau <sepherosa@gmail.com>
+ *
+ * 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. Neither the name of The DragonFly Project nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific, prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
+ * COPYRIGHT HOLDERS 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.
+ *
+ * $DragonFly: src/sys/dev/netif/bwi/if_bwi.c,v 1.19 2008/02/15 11:15:38 sephe Exp $
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include "opt_inet.h"
+#include "opt_bwi.h"
+
+#include <sys/param.h>
+#include <sys/endian.h>
+#include <sys/kernel.h>
+#include <sys/bus.h>
+#include <sys/malloc.h>
+#include <sys/proc.h>
+#include <sys/rman.h>
+#include <sys/socket.h>
+#include <sys/sockio.h>
+#include <sys/sysctl.h>
+#include <sys/systm.h>
+#include <sys/taskqueue.h>
+
+#include <net/if.h>
+#include <net/if_dl.h>
+#include <net/if_media.h>
+#include <net/if_types.h>
+#include <net/if_arp.h>
+#include <net/ethernet.h>
+#include <net/if_llc.h>
+
+#include <net80211/ieee80211_var.h>
+#include <net80211/ieee80211_radiotap.h>
+#include <net80211/ieee80211_regdomain.h>
+#include <net80211/ieee80211_amrr.h>
+#include <net80211/ieee80211_phy.h>
+
+#include <net/bpf.h>
+
+#ifdef INET
+#include <netinet/in.h>
+#include <netinet/if_ether.h>
+#endif
+
+#include <machine/bus.h>
+
+#include <dev/pci/pcivar.h>
+#include <dev/pci/pcireg.h>
+
+#include <dev/bwi/bitops.h>
+#include <dev/bwi/if_bwireg.h>
+#include <dev/bwi/if_bwivar.h>
+#include <dev/bwi/bwimac.h>
+#include <dev/bwi/bwirf.h>
+
+struct bwi_clock_freq {
+ u_int clkfreq_min;
+ u_int clkfreq_max;
+};
+
+struct bwi_myaddr_bssid {
+ uint8_t myaddr[IEEE80211_ADDR_LEN];
+ uint8_t bssid[IEEE80211_ADDR_LEN];
+} __packed;
+
+static struct ieee80211vap *bwi_vap_create(struct ieee80211com *,
+ const char [IFNAMSIZ], int, int, int,
+ const uint8_t [IEEE80211_ADDR_LEN],
+ const uint8_t [IEEE80211_ADDR_LEN]);
+static void bwi_vap_delete(struct ieee80211vap *);
+static void bwi_init(void *);
+static int bwi_ioctl(struct ifnet *, u_long, caddr_t);
+static void bwi_start(struct ifnet *);
+static void bwi_start_locked(struct ifnet *);
+static int bwi_raw_xmit(struct ieee80211_node *, struct mbuf *,
+ const struct ieee80211_bpf_params *);
+static void bwi_watchdog(struct ifnet *);
+static void bwi_scan_start(struct ieee80211com *);
+static void bwi_set_channel(struct ieee80211com *);
+static void bwi_scan_end(struct ieee80211com *);
+static int bwi_newstate(struct ieee80211vap *, enum ieee80211_state, int);
+static void bwi_updateslot(struct ifnet *);
+static struct ieee80211_node *bwi_node_alloc(struct ieee80211vap *,
+ const uint8_t [IEEE80211_ADDR_LEN]);
+static void bwi_newassoc(struct ieee80211_node *, int);
+static int bwi_media_change(struct ifnet *);
+
+static void bwi_calibrate(void *);
+
+static int bwi_calc_rssi(struct bwi_softc *, const struct bwi_rxbuf_hdr *);
+static int bwi_calc_noise(struct bwi_softc *);
+static __inline uint8_t bwi_ofdm_plcp2rate(const uint32_t *);
+static __inline uint8_t bwi_ds_plcp2rate(const struct ieee80211_ds_plcp_hdr *);
+static void bwi_rx_radiotap(struct ifnet *, struct mbuf *,
+ struct bwi_rxbuf_hdr *, const void *, int, int, int);
+
+static void bwi_restart(void *, int);
+static void bwi_init_statechg(struct bwi_softc *, int);
+static void bwi_stop(struct bwi_softc *, int);
+static void bwi_stop_locked(struct bwi_softc *, int);
+static int bwi_newbuf(struct bwi_softc *, int, int);
+static int bwi_encap(struct bwi_softc *, int, struct mbuf *,
+ struct ieee80211_node *);
+static int bwi_encap_raw(struct bwi_softc *, int, struct mbuf *,
+ struct ieee80211_node *,
+ const struct ieee80211_bpf_params *);
+
+static void bwi_init_rxdesc_ring32(struct bwi_softc *, uint32_t,
+ bus_addr_t, int, int);
+static void bwi_reset_rx_ring32(struct bwi_softc *, uint32_t);
+
+static int bwi_init_tx_ring32(struct bwi_softc *, int);
+static int bwi_init_rx_ring32(struct bwi_softc *);
+static int bwi_init_txstats32(struct bwi_softc *);
+static void bwi_free_tx_ring32(struct bwi_softc *, int);
+static void bwi_free_rx_ring32(struct bwi_softc *);
+static void bwi_free_txstats32(struct bwi_softc *);
+static void bwi_setup_rx_desc32(struct bwi_softc *, int, bus_addr_t, int);
+static void bwi_setup_tx_desc32(struct bwi_softc *, struct bwi_ring_data *,
+ int, bus_addr_t, int);
+static int bwi_rxeof32(struct bwi_softc *);
+static void bwi_start_tx32(struct bwi_softc *, uint32_t, int);
+static void bwi_txeof_status32(struct bwi_softc *);
+
+static int bwi_init_tx_ring64(struct bwi_softc *, int);
+static int bwi_init_rx_ring64(struct bwi_softc *);
+static int bwi_init_txstats64(struct bwi_softc *);
+static void bwi_free_tx_ring64(struct bwi_softc *, int);
+static void bwi_free_rx_ring64(struct bwi_softc *);
+static void bwi_free_txstats64(struct bwi_softc *);
+static void bwi_setup_rx_desc64(struct bwi_softc *, int, bus_addr_t, int);
+static void bwi_setup_tx_desc64(struct bwi_softc *, struct bwi_ring_data *,
+ int, bus_addr_t, int);
+static int bwi_rxeof64(struct bwi_softc *);
+static void bwi_start_tx64(struct bwi_softc *, uint32_t, int);
+static void bwi_txeof_status64(struct bwi_softc *);
+
+static int bwi_rxeof(struct bwi_softc *, int);
+static void _bwi_txeof(struct bwi_softc *, uint16_t, int, int);
+static void bwi_txeof(struct bwi_softc *);
+static void bwi_txeof_status(struct bwi_softc *, int);
+static void bwi_enable_intrs(struct bwi_softc *, uint32_t);
+static void bwi_disable_intrs(struct bwi_softc *, uint32_t);
+
+static int bwi_dma_alloc(struct bwi_softc *);
+static void bwi_dma_free(struct bwi_softc *);
+static int bwi_dma_ring_alloc(struct bwi_softc *, bus_dma_tag_t,
+ struct bwi_ring_data *, bus_size_t,
+ uint32_t);
+static int bwi_dma_mbuf_create(struct bwi_softc *);
+static void bwi_dma_mbuf_destroy(struct bwi_softc *, int, int);
+static int bwi_dma_txstats_alloc(struct bwi_softc *, uint32_t, bus_size_t);
+static void bwi_dma_txstats_free(struct bwi_softc *);
+static void bwi_dma_ring_addr(void *, bus_dma_segment_t *, int, int);
+static void bwi_dma_buf_addr(void *, bus_dma_segment_t *, int,
+ bus_size_t, int);
+
+static void bwi_power_on(struct bwi_softc *, int);
+static int bwi_power_off(struct bwi_softc *, int);
+static int bwi_set_clock_mode(struct bwi_softc *, enum bwi_clock_mode);
+static int bwi_set_clock_delay(struct bwi_softc *);
+static void bwi_get_clock_freq(struct bwi_softc *, struct bwi_clock_freq *);
+static int bwi_get_pwron_delay(struct bwi_softc *sc);
+static void bwi_set_addr_filter(struct bwi_softc *, uint16_t,
+ const uint8_t *);
+static void bwi_set_bssid(struct bwi_softc *, const uint8_t *);
+
+static void bwi_get_card_flags(struct bwi_softc *);
+static void bwi_get_eaddr(struct bwi_softc *, uint16_t, uint8_t *);
+
+static int bwi_bus_attach(struct bwi_softc *);
+static int bwi_bbp_attach(struct bwi_softc *);
+static int bwi_bbp_power_on(struct bwi_softc *, enum bwi_clock_mode);
+static void bwi_bbp_power_off(struct bwi_softc *);
+
+static const char *bwi_regwin_name(const struct bwi_regwin *);
+static uint32_t bwi_regwin_disable_bits(struct bwi_softc *);
+static void bwi_regwin_info(struct bwi_softc *, uint16_t *, uint8_t *);
+static int bwi_regwin_select(struct bwi_softc *, int);
+
+static void bwi_led_attach(struct bwi_softc *);
+static void bwi_led_newstate(struct bwi_softc *, enum ieee80211_state);
+static void bwi_led_event(struct bwi_softc *, int);
+static void bwi_led_blink_start(struct bwi_softc *, int, int);
+static void bwi_led_blink_next(void *);
+static void bwi_led_blink_end(void *);
+
+static const struct {
+ uint16_t did_min;
+ uint16_t did_max;
+ uint16_t bbp_id;
+} bwi_bbpid_map[] = {
+ { 0x4301, 0x4301, 0x4301 },
+ { 0x4305, 0x4307, 0x4307 },
+ { 0x4403, 0x4403, 0x4402 },
+ { 0x4610, 0x4615, 0x4610 },
+ { 0x4710, 0x4715, 0x4710 },
+ { 0x4720, 0x4725, 0x4309 }
+};
+
+static const struct {
+ uint16_t bbp_id;
+ int nregwin;
+} bwi_regwin_count[] = {
+ { 0x4301, 5 },
+ { 0x4306, 6 },
+ { 0x4307, 5 },
+ { 0x4310, 8 },
+ { 0x4401, 3 },
+ { 0x4402, 3 },
+ { 0x4610, 9 },
+ { 0x4704, 9 },
+ { 0x4710, 9 },
+ { 0x5365, 7 }
+};
+
+#define CLKSRC(src) \
+[BWI_CLKSRC_ ## src] = { \
+ .freq_min = BWI_CLKSRC_ ##src## _FMIN, \
+ .freq_max = BWI_CLKSRC_ ##src## _FMAX \
+}
+
+static const struct {
+ u_int freq_min;
+ u_int freq_max;
+} bwi_clkfreq[BWI_CLKSRC_MAX] = {
+ CLKSRC(LP_OSC),
+ CLKSRC(CS_OSC),
+ CLKSRC(PCI)
+};
+
+#undef CLKSRC
+
+#define VENDOR_LED_ACT(vendor) \
+{ \
+ .vid = PCI_VENDOR_##vendor, \
+ .led_act = { BWI_VENDOR_LED_ACT_##vendor } \
+}
+
+static const struct {
+#define PCI_VENDOR_COMPAQ 0x0e11
+#define PCI_VENDOR_LINKSYS 0x1737
+ uint16_t vid;
+ uint8_t led_act[BWI_LED_MAX];
+} bwi_vendor_led_act[] = {
+ VENDOR_LED_ACT(COMPAQ),
+ VENDOR_LED_ACT(LINKSYS)
+#undef PCI_VENDOR_LINKSYS
+#undef PCI_VENDOR_COMPAQ
+};
+
+static const uint8_t bwi_default_led_act[BWI_LED_MAX] =
+ { BWI_VENDOR_LED_ACT_DEFAULT };
+
+#undef VENDOR_LED_ACT
+
+static const struct {
+ int on_dur;
+ int off_dur;
+} bwi_led_duration[109] = {
+ [0] = { 400, 100 },
+ [2] = { 150, 75 },
+ [4] = { 90, 45 },
+ [11] = { 66, 34 },
+ [12] = { 53, 26 },
+ [18] = { 42, 21 },
+ [22] = { 35, 17 },
+ [24] = { 32, 16 },
+ [36] = { 21, 10 },
+ [48] = { 16, 8 },
+ [72] = { 11, 5 },
+ [96] = { 9, 4 },
+ [108] = { 7, 3 }
+};
+
+#ifdef BWI_DEBUG
+#ifdef BWI_DEBUG_VERBOSE
+static uint32_t bwi_debug = BWI_DBG_ATTACH | BWI_DBG_INIT | BWI_DBG_TXPOWER;
+#else
+static uint32_t bwi_debug;
+#endif
+TUNABLE_INT("hw.bwi.debug", (int *)&bwi_debug);
+#endif /* BWI_DEBUG */
+
+static const uint8_t bwi_zero_addr[IEEE80211_ADDR_LEN];
+
+uint16_t
+bwi_read_sprom(struct bwi_softc *sc, uint16_t ofs)
+{
+ return CSR_READ_2(sc, ofs + BWI_SPROM_START);
+}
+
+static __inline void
+bwi_setup_desc32(struct bwi_softc *sc, struct bwi_desc32 *desc_array,
+ int ndesc, int desc_idx, bus_addr_t paddr, int buf_len,
+ int tx)
+{
+ struct bwi_desc32 *desc = &desc_array[desc_idx];
+ uint32_t ctrl, addr, addr_hi, addr_lo;
+
+ addr_lo = __SHIFTOUT(paddr, BWI_DESC32_A_ADDR_MASK);
+ addr_hi = __SHIFTOUT(paddr, BWI_DESC32_A_FUNC_MASK);
+
+ addr = __SHIFTIN(addr_lo, BWI_DESC32_A_ADDR_MASK) |
+ __SHIFTIN(BWI_DESC32_A_FUNC_TXRX, BWI_DESC32_A_FUNC_MASK);
+
+ ctrl = __SHIFTIN(buf_len, BWI_DESC32_C_BUFLEN_MASK) |
+ __SHIFTIN(addr_hi, BWI_DESC32_C_ADDRHI_MASK);
+ if (desc_idx == ndesc - 1)
+ ctrl |= BWI_DESC32_C_EOR;
+ if (tx) {
+ /* XXX */
+ ctrl |= BWI_DESC32_C_FRAME_START |
+ BWI_DESC32_C_FRAME_END |
+ BWI_DESC32_C_INTR;
+ }
+
+ desc->addr = htole32(addr);
+ desc->ctrl = htole32(ctrl);
+}
+
+int
+bwi_attach(struct bwi_softc *sc)
+{
+ struct ieee80211com *ic;
+ device_t dev = sc->sc_dev;
+ struct ifnet *ifp;
+ struct bwi_mac *mac;
+ struct bwi_phy *phy;
+ int i, error;
+ uint8_t bands;
+ uint8_t macaddr[IEEE80211_ADDR_LEN];
+
+ BWI_LOCK_INIT(sc);
+
+ /*
+ * Initialize taskq and various tasks
+ */
+ sc->sc_tq = taskqueue_create("bwi_taskq", M_NOWAIT | M_ZERO,
+ taskqueue_thread_enqueue, &sc->sc_tq);
+ taskqueue_start_threads(&sc->sc_tq, 1, PI_NET, "%s taskq",
+ device_get_nameunit(dev));
+ TASK_INIT(&sc->sc_restart_task, 0, bwi_restart, sc);
+
+ callout_init_mtx(&sc->sc_calib_ch, &sc->sc_mtx, 0);
+
+ /*
+ * Initialize sysctl variables
+ */
+ sc->sc_fw_version = BWI_FW_VERSION3;
+ sc->sc_led_idle = (2350 * hz) / 1000;
+ sc->sc_led_blink = 1;
+ sc->sc_txpwr_calib = 1;
+#ifdef BWI_DEBUG
+ sc->sc_debug = bwi_debug;
+#endif
+ bwi_power_on(sc, 1);
+
+ error = bwi_bbp_attach(sc);
+ if (error)
+ goto fail;
+
+ error = bwi_bbp_power_on(sc, BWI_CLOCK_MODE_FAST);
+ if (error)
+ goto fail;
+
+ if (BWI_REGWIN_EXIST(&sc->sc_com_regwin)) {
+ error = bwi_set_clock_delay(sc);
+ if (error)
+ goto fail;
+
+ error = bwi_set_clock_mode(sc, BWI_CLOCK_MODE_FAST);
+ if (error)
+ goto fail;
+
+ error = bwi_get_pwron_delay(sc);
+ if (error)
+ goto fail;
+ }
+
+ error = bwi_bus_attach(sc);
+ if (error)
+ goto fail;
+
+ bwi_get_card_flags(sc);
+
+ bwi_led_attach(sc);
+
+ for (i = 0; i < sc->sc_nmac; ++i) {
+ struct bwi_regwin *old;
+
+ mac = &sc->sc_mac[i];
+ error = bwi_regwin_switch(sc, &mac->mac_regwin, &old);
+ if (error)
+ goto fail;
+
+ error = bwi_mac_lateattach(mac);
+ if (error)
+ goto fail;
+
+ error = bwi_regwin_switch(sc, old, NULL);
+ if (error)
+ goto fail;
+ }
+
+ /*
+ * XXX First MAC is known to exist
+ * TODO2
+ */
+ mac = &sc->sc_mac[0];
+ phy = &mac->mac_phy;
+
+ bwi_bbp_power_off(sc);
+
+ error = bwi_dma_alloc(sc);
+ if (error)
+ goto fail;
+
+ ifp = sc->sc_ifp = if_alloc(IFT_IEEE80211);
+ if (ifp == NULL) {
+ device_printf(dev, "can not if_alloc()\n");
+ error = ENOSPC;
+ goto fail;
+ }
+ ic = ifp->if_l2com;
+
+ /* set these up early for if_printf use */
+ if_initname(ifp, device_get_name(dev), device_get_unit(dev));
+
+ ifp->if_softc = sc;
+ ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
+ ifp->if_init = bwi_init;
+ ifp->if_ioctl = bwi_ioctl;
+ ifp->if_start = bwi_start;
+ ifp->if_watchdog = bwi_watchdog;
+ IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
+ ifp->if_snd.ifq_drv_maxlen = IFQ_MAXLEN;
+ IFQ_SET_READY(&ifp->if_snd);
+
+ /*
+ * Setup ratesets, phytype, channels and get MAC address
+ */
+ bands = 0;
+ if (phy->phy_mode == IEEE80211_MODE_11B ||
+ phy->phy_mode == IEEE80211_MODE_11G) {
+ setbit(&bands, IEEE80211_MODE_11B);
+ if (phy->phy_mode == IEEE80211_MODE_11B) {
+ ic->ic_phytype = IEEE80211_T_DS;
+ } else {
+ ic->ic_phytype = IEEE80211_T_OFDM;
+ setbit(&bands, IEEE80211_MODE_11G);
+ }
+
+ bwi_get_eaddr(sc, BWI_SPROM_11BG_EADDR, macaddr);
+ if (IEEE80211_IS_MULTICAST(macaddr)) {
+ bwi_get_eaddr(sc, BWI_SPROM_11A_EADDR, macaddr);
+ if (IEEE80211_IS_MULTICAST(macaddr)) {
+ device_printf(dev,
+ "invalid MAC address: %6D\n",
+ macaddr, ":");
+ }
+ }
+ } else if (phy->phy_mode == IEEE80211_MODE_11A) {
+ /* TODO:11A */
+ setbit(&bands, IEEE80211_MODE_11A);
+ error = ENXIO;
+ goto fail;
+ } else {
+ panic("unknown phymode %d\n", phy->phy_mode);
+ }
+
+ /* Get locale */
+ sc->sc_locale = __SHIFTOUT(bwi_read_sprom(sc, BWI_SPROM_CARD_INFO),
+ BWI_SPROM_CARD_INFO_LOCALE);
+ DPRINTF(sc, BWI_DBG_ATTACH, "locale: %d\n", sc->sc_locale);
+ /* XXX use locale */
+ ieee80211_init_channels(ic, NULL, &bands);
+
+ ic->ic_ifp = ifp;
+ ic->ic_caps = IEEE80211_C_STA |
+ IEEE80211_C_SHSLOT |
+ IEEE80211_C_SHPREAMBLE |
+ IEEE80211_C_WPA |
+ IEEE80211_C_BGSCAN |
+ IEEE80211_C_MONITOR;
+ ic->ic_opmode = IEEE80211_M_STA;
+ ieee80211_ifattach(ic, macaddr);
+
+ ic->ic_headroom = sizeof(struct bwi_txbuf_hdr);
+
+ /* override default methods */
+ ic->ic_vap_create = bwi_vap_create;
+ ic->ic_vap_delete = bwi_vap_delete;
+ ic->ic_raw_xmit = bwi_raw_xmit;
+ ic->ic_updateslot = bwi_updateslot;
+ ic->ic_node_alloc = bwi_node_alloc;
+ ic->ic_scan_start = bwi_scan_start;
+ ic->ic_scan_end = bwi_scan_end;
+ ic->ic_set_channel = bwi_set_channel;
+
+ sc->sc_rates = ieee80211_get_ratetable(ic->ic_curchan);
+
+ /*
+ * Attach bpf.
+ */
+ bpfattach(ifp, DLT_IEEE802_11_RADIO,
+ sizeof(struct ieee80211_frame) + sizeof(sc->sc_tx_th));
+
+ sc->sc_tx_th_len = roundup(sizeof(sc->sc_tx_th), sizeof(uint32_t));
+ sc->sc_tx_th.wt_ihdr.it_len = htole16(sc->sc_tx_th_len);
+ sc->sc_tx_th.wt_ihdr.it_present = htole32(BWI_TX_RADIOTAP_PRESENT);
+
+ sc->sc_rx_th_len = roundup(sizeof(sc->sc_rx_th), sizeof(uint32_t));
+ sc->sc_rx_th.wr_ihdr.it_len = htole16(sc->sc_rx_th_len);
+ sc->sc_rx_th.wr_ihdr.it_present = htole32(BWI_RX_RADIOTAP_PRESENT);
+
+ /*
+ * Add sysctl nodes
+ */
+ SYSCTL_ADD_UINT(device_get_sysctl_ctx(dev),
+ SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO,
+ "fw_version", CTLFLAG_RD, &sc->sc_fw_version, 0,
+ "Firmware version");
+ SYSCTL_ADD_UINT(device_get_sysctl_ctx(dev),
+ SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO,
+ "led_idle", CTLFLAG_RW, &sc->sc_led_idle, 0,
+ "# ticks before LED enters idle state");
+ SYSCTL_ADD_INT(device_get_sysctl_ctx(dev),
+ SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO,
+ "led_blink", CTLFLAG_RW, &sc->sc_led_blink, 0,
+ "Allow LED to blink");
+ SYSCTL_ADD_INT(device_get_sysctl_ctx(dev),
+ SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO,
+ "txpwr_calib", CTLFLAG_RW, &sc->sc_txpwr_calib, 0,
+ "Enable software TX power calibration");
+#ifdef BWI_DEBUG
+ SYSCTL_ADD_UINT(device_get_sysctl_ctx(dev),
+ SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO,
+ "debug", CTLFLAG_RW, &sc->sc_debug, 0, "Debug flags");
+#endif
+ if (bootverbose)
+ ieee80211_announce(ic);
+
+ return (0);
+fail:
+ BWI_LOCK_DESTROY(sc);
+ return (error);
+}
+
+int
+bwi_detach(struct bwi_softc *sc)
+{
+ struct ifnet *ifp = sc->sc_ifp;
+ struct ieee80211com *ic = ifp->if_l2com;
+ int i;
+
+ bwi_stop(sc, 1);
+ callout_drain(&sc->sc_calib_ch);
+ ieee80211_ifdetach(ic);
+
+ for (i = 0; i < sc->sc_nmac; ++i)
+ bwi_mac_detach(&sc->sc_mac[i]);
+ bwi_dma_free(sc);
+ if_free(ifp);
+ taskqueue_free(sc->sc_tq);
+
+ BWI_LOCK_DESTROY(sc);
+
+ return (0);
+}
+
+static struct ieee80211vap *
+bwi_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 bwi_vap *bvp;
+ struct ieee80211vap *vap;
+
+ if (!TAILQ_EMPTY(&ic->ic_vaps)) /* only one at a time */
+ return NULL;
+ bvp = (struct bwi_vap *) malloc(sizeof(struct bwi_vap),
+ M_80211_VAP, M_WAITOK | M_ZERO);
+ if (bvp == NULL)
+ return NULL;
+ vap = &bvp->bv_vap;
+ /* enable s/w bmiss handling for sta mode */
+ ieee80211_vap_setup(ic, vap, name, unit, opmode,
+ flags | IEEE80211_CLONE_NOBEACONS, bssid, mac);
+
+ /* override default methods */
+ bvp->bv_newstate = vap->iv_newstate;
+ vap->iv_newstate = bwi_newstate;
+#if 0
+ vap->iv_update_beacon = bwi_beacon_update;
+#endif
+ ieee80211_amrr_init(&bvp->bv_amrr, vap,
+ IEEE80211_AMRR_MIN_SUCCESS_THRESHOLD,
+ IEEE80211_AMRR_MAX_SUCCESS_THRESHOLD,
+ 500 /*ms*/);
+
+ /* complete setup */
+ ieee80211_vap_attach(vap, bwi_media_change, ieee80211_media_status);
+ ic->ic_opmode = opmode;
+ return vap;
+}
+
+static void
+bwi_vap_delete(struct ieee80211vap *vap)
+{
+ struct bwi_vap *bvp = BWI_VAP(vap);
+
+ ieee80211_amrr_cleanup(&bvp->bv_amrr);
+ ieee80211_vap_detach(vap);
+ free(bvp, M_80211_VAP);
+}
+
+void
+bwi_suspend(struct bwi_softc *sc)
+{
+ bwi_stop(sc, 1);
+}
+
+void
+bwi_resume(struct bwi_softc *sc)
+{
+ struct ifnet *ifp = sc->sc_ifp;
+
+ if (ifp->if_flags & IFF_UP)
+ bwi_init(sc);
+}
+
+int
+bwi_shutdown(struct bwi_softc *sc)
+{
+ bwi_stop(sc, 1);
+ return 0;
+}
+
+static void
+bwi_power_on(struct bwi_softc *sc, int with_pll)
+{
+ uint32_t gpio_in, gpio_out, gpio_en;
+ uint16_t status;
+
+ gpio_in = pci_read_config(sc->sc_dev, BWI_PCIR_GPIO_IN, 4);
+ if (gpio_in & BWI_PCIM_GPIO_PWR_ON)
+ goto back;
+
+ gpio_out = pci_read_config(sc->sc_dev, BWI_PCIR_GPIO_OUT, 4);
+ gpio_en = pci_read_config(sc->sc_dev, BWI_PCIR_GPIO_ENABLE, 4);
+
+ gpio_out |= BWI_PCIM_GPIO_PWR_ON;
+ gpio_en |= BWI_PCIM_GPIO_PWR_ON;
+ if (with_pll) {
+ /* Turn off PLL first */
+ gpio_out |= BWI_PCIM_GPIO_PLL_PWR_OFF;
+ gpio_en |= BWI_PCIM_GPIO_PLL_PWR_OFF;
+ }
+
+ pci_write_config(sc->sc_dev, BWI_PCIR_GPIO_OUT, gpio_out, 4);
+ pci_write_config(sc->sc_dev, BWI_PCIR_GPIO_ENABLE, gpio_en, 4);
+ DELAY(1000);
+
+ if (with_pll) {
+ /* Turn on PLL */
+ gpio_out &= ~BWI_PCIM_GPIO_PLL_PWR_OFF;
+ pci_write_config(sc->sc_dev, BWI_PCIR_GPIO_OUT, gpio_out, 4);
+ DELAY(5000);
+ }
+
+back:
+ /* Clear "Signaled Target Abort" */
+ status = pci_read_config(sc->sc_dev, PCIR_STATUS, 2);
+ status &= ~PCIM_STATUS_STABORT;
+ pci_write_config(sc->sc_dev, PCIR_STATUS, status, 2);
+}
+
+static int
+bwi_power_off(struct bwi_softc *sc, int with_pll)
+{
+ uint32_t gpio_out, gpio_en;
+
+ pci_read_config(sc->sc_dev, BWI_PCIR_GPIO_IN, 4); /* dummy read */
+ gpio_out = pci_read_config(sc->sc_dev, BWI_PCIR_GPIO_OUT, 4);
+ gpio_en = pci_read_config(sc->sc_dev, BWI_PCIR_GPIO_ENABLE, 4);
+
+ gpio_out &= ~BWI_PCIM_GPIO_PWR_ON;
+ gpio_en |= BWI_PCIM_GPIO_PWR_ON;
+ if (with_pll) {
+ gpio_out |= BWI_PCIM_GPIO_PLL_PWR_OFF;
+ gpio_en |= BWI_PCIM_GPIO_PLL_PWR_OFF;
+ }
+
+ pci_write_config(sc->sc_dev, BWI_PCIR_GPIO_OUT, gpio_out, 4);
+ pci_write_config(sc->sc_dev, BWI_PCIR_GPIO_ENABLE, gpio_en, 4);
+ return 0;
+}
+
+int
+bwi_regwin_switch(struct bwi_softc *sc, struct bwi_regwin *rw,
+ struct bwi_regwin **old_rw)
+{
+ int error;
+
+ if (old_rw != NULL)
+ *old_rw = NULL;
+
+ if (!BWI_REGWIN_EXIST(rw))
+ return EINVAL;
+
+ if (sc->sc_cur_regwin != rw) {
+ error = bwi_regwin_select(sc, rw->rw_id);
+ if (error) {
+ device_printf(sc->sc_dev, "can't select regwin %d\n",
+ rw->rw_id);
+ return error;
+ }
+ }
+
+ if (old_rw != NULL)
+ *old_rw = sc->sc_cur_regwin;
+ sc->sc_cur_regwin = rw;
+ return 0;
+}
+
+static int
+bwi_regwin_select(struct bwi_softc *sc, int id)
+{
+ uint32_t win = BWI_PCIM_REGWIN(id);
+ int i;
+
+#define RETRY_MAX 50
+ for (i = 0; i < RETRY_MAX; ++i) {
+ pci_write_config(sc->sc_dev, BWI_PCIR_SEL_REGWIN, win, 4);
+ if (pci_read_config(sc->sc_dev, BWI_PCIR_SEL_REGWIN, 4) == win)
+ return 0;
+ DELAY(10);
+ }
+#undef RETRY_MAX
+
+ return ENXIO;
+}
+
+static void
+bwi_regwin_info(struct bwi_softc *sc, uint16_t *type, uint8_t *rev)
+{
+ uint32_t val;
+
+ val = CSR_READ_4(sc, BWI_ID_HI);
+ *type = BWI_ID_HI_REGWIN_TYPE(val);
+ *rev = BWI_ID_HI_REGWIN_REV(val);
+
+ DPRINTF(sc, BWI_DBG_ATTACH, "regwin: type 0x%03x, rev %d, "
+ "vendor 0x%04x\n", *type, *rev,
+ __SHIFTOUT(val, BWI_ID_HI_REGWIN_VENDOR_MASK));
+}
+
+static int
+bwi_bbp_attach(struct bwi_softc *sc)
+{
+#define N(arr) (int)(sizeof(arr) / sizeof(arr[0]))
+ uint16_t bbp_id, rw_type;
+ uint8_t rw_rev;
+ uint32_t info;
+ int error, nregwin, i;
+
+ /*
+ * Get 0th regwin information
+ * NOTE: 0th regwin should exist
+ */
+ error = bwi_regwin_select(sc, 0);
+ if (error) {
+ device_printf(sc->sc_dev, "can't select regwin 0\n");
+ return error;
+ }
+ bwi_regwin_info(sc, &rw_type, &rw_rev);
+
+ /*
+ * Find out BBP id
+ */
+ bbp_id = 0;
+ info = 0;
+ if (rw_type == BWI_REGWIN_T_COM) {
+ info = CSR_READ_4(sc, BWI_INFO);
+ bbp_id = __SHIFTOUT(info, BWI_INFO_BBPID_MASK);
+
+ BWI_CREATE_REGWIN(&sc->sc_com_regwin, 0, rw_type, rw_rev);
+
+ sc->sc_cap = CSR_READ_4(sc, BWI_CAPABILITY);
+ } else {
+ for (i = 0; i < N(bwi_bbpid_map); ++i) {
+ if (sc->sc_pci_did >= bwi_bbpid_map[i].did_min &&
+ sc->sc_pci_did <= bwi_bbpid_map[i].did_max) {
+ bbp_id = bwi_bbpid_map[i].bbp_id;
+ break;
+ }
+ }
+ if (bbp_id == 0) {
+ device_printf(sc->sc_dev, "no BBP id for device id "
+ "0x%04x\n", sc->sc_pci_did);
+ return ENXIO;
+ }
+
+ info = __SHIFTIN(sc->sc_pci_revid, BWI_INFO_BBPREV_MASK) |
+ __SHIFTIN(0, BWI_INFO_BBPPKG_MASK);
+ }
+
+ /*
+ * Find out number of regwins
+ */
+ nregwin = 0;
+ if (rw_type == BWI_REGWIN_T_COM && rw_rev >= 4) {
+ nregwin = __SHIFTOUT(info, BWI_INFO_NREGWIN_MASK);
+ } else {
+ for (i = 0; i < N(bwi_regwin_count); ++i) {
+ if (bwi_regwin_count[i].bbp_id == bbp_id) {
+ nregwin = bwi_regwin_count[i].nregwin;
+ break;
+ }
+ }
+ if (nregwin == 0) {
+ device_printf(sc->sc_dev, "no number of win for "
+ "BBP id 0x%04x\n", bbp_id);
+ return ENXIO;
+ }
+ }
+
+ /* Record BBP id/rev for later using */
+ sc->sc_bbp_id = bbp_id;
+ sc->sc_bbp_rev = __SHIFTOUT(info, BWI_INFO_BBPREV_MASK);
+ sc->sc_bbp_pkg = __SHIFTOUT(info, BWI_INFO_BBPPKG_MASK);
+ device_printf(sc->sc_dev, "BBP: id 0x%04x, rev 0x%x, pkg %d\n",
+ sc->sc_bbp_id, sc->sc_bbp_rev, sc->sc_bbp_pkg);
+
+ DPRINTF(sc, BWI_DBG_ATTACH, "nregwin %d, cap 0x%08x\n",
+ nregwin, sc->sc_cap);
+
+ /*
+ * Create rest of the regwins
+ */
+
+ /* Don't re-create common regwin, if it is already created */
+ i = BWI_REGWIN_EXIST(&sc->sc_com_regwin) ? 1 : 0;
+
+ for (; i < nregwin; ++i) {
+ /*
+ * Get regwin information
+ */
+ error = bwi_regwin_select(sc, i);
+ if (error) {
+ device_printf(sc->sc_dev,
+ "can't select regwin %d\n", i);
+ return error;
+ }
+ bwi_regwin_info(sc, &rw_type, &rw_rev);
+
+ /*
+ * Try attach:
+ * 1) Bus (PCI/PCIE) regwin
+ * 2) MAC regwin
+ * Ignore rest types of regwin
+ */
+ if (rw_type == BWI_REGWIN_T_BUSPCI ||
+ rw_type == BWI_REGWIN_T_BUSPCIE) {
+ if (BWI_REGWIN_EXIST(&sc->sc_bus_regwin)) {
+ device_printf(sc->sc_dev,
+ "bus regwin already exists\n");
+ } else {
+ BWI_CREATE_REGWIN(&sc->sc_bus_regwin, i,
+ rw_type, rw_rev);
+ }
+ } else if (rw_type == BWI_REGWIN_T_MAC) {
+ /* XXX ignore return value */
+ bwi_mac_attach(sc, i, rw_rev);
+ }
+ }
+
+ /* At least one MAC shold exist */
+ if (!BWI_REGWIN_EXIST(&sc->sc_mac[0].mac_regwin)) {
+ device_printf(sc->sc_dev, "no MAC was found\n");
+ return ENXIO;
+ }
+ KASSERT(sc->sc_nmac > 0, ("no mac's"));
+
+ /* Bus regwin must exist */
+ if (!BWI_REGWIN_EXIST(&sc->sc_bus_regwin)) {
+ device_printf(sc->sc_dev, "no bus regwin was found\n");
+ return ENXIO;
+ }
+
+ /* Start with first MAC */
+ error = bwi_regwin_switch(sc, &sc->sc_mac[0].mac_regwin, NULL);
+ if (error)
+ return error;
+
+ return 0;
+#undef N
+}
+
+int
+bwi_bus_init(struct bwi_softc *sc, struct bwi_mac *mac)
+{
+ struct bwi_regwin *old, *bus;
+ uint32_t val;
+ int error;
+
+ bus = &sc->sc_bus_regwin;
+ KASSERT(sc->sc_cur_regwin == &mac->mac_regwin, ("not cur regwin"));
+
+ /*
+ * Tell bus to generate requested interrupts
+ */
+ if (bus->rw_rev < 6 && bus->rw_type == BWI_REGWIN_T_BUSPCI) {
+ /*
+ * NOTE: Read BWI_FLAGS from MAC regwin
+ */
+ val = CSR_READ_4(sc, BWI_FLAGS);
+
+ error = bwi_regwin_switch(sc, bus, &old);
+ if (error)
+ return error;
+
+ CSR_SETBITS_4(sc, BWI_INTRVEC, (val & BWI_FLAGS_INTR_MASK));
+ } else {
+ uint32_t mac_mask;
+
+ mac_mask = 1 << mac->mac_id;
+
+ error = bwi_regwin_switch(sc, bus, &old);
+ if (error)
+ return error;
+
+ val = pci_read_config(sc->sc_dev, BWI_PCIR_INTCTL, 4);
+ val |= mac_mask << 8;
+ pci_write_config(sc->sc_dev, BWI_PCIR_INTCTL, val, 4);
+ }
+
+ if (sc->sc_flags & BWI_F_BUS_INITED)
+ goto back;
+
+ if (bus->rw_type == BWI_REGWIN_T_BUSPCI) {
+ /*
+ * Enable prefetch and burst
+ */
+ CSR_SETBITS_4(sc, BWI_BUS_CONFIG,
+ BWI_BUS_CONFIG_PREFETCH | BWI_BUS_CONFIG_BURST);
+
+ if (bus->rw_rev < 5) {
+ struct bwi_regwin *com = &sc->sc_com_regwin;
+
+ /*
+ * Configure timeouts for bus operation
+ */
+
+ /*
+ * Set service timeout and request timeout
+ */
+ CSR_SETBITS_4(sc, BWI_CONF_LO,
+ __SHIFTIN(BWI_CONF_LO_SERVTO, BWI_CONF_LO_SERVTO_MASK) |
+ __SHIFTIN(BWI_CONF_LO_REQTO, BWI_CONF_LO_REQTO_MASK));
+
+ /*
+ * If there is common regwin, we switch to that regwin
+ * and switch back to bus regwin once we have done.
+ */
+ if (BWI_REGWIN_EXIST(com)) {
+ error = bwi_regwin_switch(sc, com, NULL);
+ if (error)
+ return error;
+ }
+
+ /* Let bus know what we have changed */
+ CSR_WRITE_4(sc, BWI_BUS_ADDR, BWI_BUS_ADDR_MAGIC);
+ CSR_READ_4(sc, BWI_BUS_ADDR); /* Flush */
+ CSR_WRITE_4(sc, BWI_BUS_DATA, 0);
+ CSR_READ_4(sc, BWI_BUS_DATA); /* Flush */
+
+ if (BWI_REGWIN_EXIST(com)) {
+ error = bwi_regwin_switch(sc, bus, NULL);
+ if (error)
+ return error;
+ }
+ } else if (bus->rw_rev >= 11) {
+ /*
+ * Enable memory read multiple
+ */
+ CSR_SETBITS_4(sc, BWI_BUS_CONFIG, BWI_BUS_CONFIG_MRM);
+ }
+ } else {
+ /* TODO:PCIE */
+ }
+
+ sc->sc_flags |= BWI_F_BUS_INITED;
+back:
+ return bwi_regwin_switch(sc, old, NULL);
+}
+
+static void
+bwi_get_card_flags(struct bwi_softc *sc)
+{
+#define PCI_VENDOR_APPLE 0x106b
+#define PCI_VENDOR_DELL 0x1028
+ sc->sc_card_flags = bwi_read_sprom(sc, BWI_SPROM_CARD_FLAGS);
+ if (sc->sc_card_flags == 0xffff)
+ sc->sc_card_flags = 0;
+
+ if (sc->sc_pci_subvid == PCI_VENDOR_DELL &&
+ sc->sc_bbp_id == BWI_BBPID_BCM4301 &&
+ sc->sc_pci_revid == 0x74)
+ sc->sc_card_flags |= BWI_CARD_F_BT_COEXIST;
+
+ if (sc->sc_pci_subvid == PCI_VENDOR_APPLE &&
+ sc->sc_pci_subdid == 0x4e && /* XXX */
+ sc->sc_pci_revid > 0x40)
+ sc->sc_card_flags |= BWI_CARD_F_PA_GPIO9;
+
+ DPRINTF(sc, BWI_DBG_ATTACH, "card flags 0x%04x\n", sc->sc_card_flags);
+#undef PCI_VENDOR_DELL
+#undef PCI_VENDOR_APPLE
+}
+
+static void
+bwi_get_eaddr(struct bwi_softc *sc, uint16_t eaddr_ofs, uint8_t *eaddr)
+{
+ int i;
+
+ for (i = 0; i < 3; ++i) {
+ *((uint16_t *)eaddr + i) =
+ htobe16(bwi_read_sprom(sc, eaddr_ofs + 2 * i));
+ }
+}
+
+static void
+bwi_get_clock_freq(struct bwi_softc *sc, struct bwi_clock_freq *freq)
+{
+ struct bwi_regwin *com;
+ uint32_t val;
+ u_int div;
+ int src;
+
+ bzero(freq, sizeof(*freq));
+ com = &sc->sc_com_regwin;
+
+ KASSERT(BWI_REGWIN_EXIST(com), ("regwin does not exist"));
+ KASSERT(sc->sc_cur_regwin == com, ("wrong regwin"));
+ KASSERT(sc->sc_cap & BWI_CAP_CLKMODE, ("wrong clock mode"));
+
+ /*
+ * Calculate clock frequency
+ */
+ src = -1;
+ div = 0;
+ if (com->rw_rev < 6) {
+ val = pci_read_config(sc->sc_dev, BWI_PCIR_GPIO_OUT, 4);
+ if (val & BWI_PCIM_GPIO_OUT_CLKSRC) {
+ src = BWI_CLKSRC_PCI;
+ div = 64;
+ } else {
+ src = BWI_CLKSRC_CS_OSC;
+ div = 32;
+ }
+ } else if (com->rw_rev < 10) {
+ val = CSR_READ_4(sc, BWI_CLOCK_CTRL);
+
+ src = __SHIFTOUT(val, BWI_CLOCK_CTRL_CLKSRC);
+ if (src == BWI_CLKSRC_LP_OSC) {
+ div = 1;
+ } else {
+ div = (__SHIFTOUT(val, BWI_CLOCK_CTRL_FDIV) + 1) << 2;
+
+ /* Unknown source */
+ if (src >= BWI_CLKSRC_MAX)
+ src = BWI_CLKSRC_CS_OSC;
+ }
+ } else {
+ val = CSR_READ_4(sc, BWI_CLOCK_INFO);
+
+ src = BWI_CLKSRC_CS_OSC;
+ div = (__SHIFTOUT(val, BWI_CLOCK_INFO_FDIV) + 1) << 2;
+ }
+
+ KASSERT(src >= 0 && src < BWI_CLKSRC_MAX, ("bad src %d", src));
+ KASSERT(div != 0, ("div zero"));
+
+ DPRINTF(sc, BWI_DBG_ATTACH, "clksrc %s\n",
+ src == BWI_CLKSRC_PCI ? "PCI" :
+ (src == BWI_CLKSRC_LP_OSC ? "LP_OSC" : "CS_OSC"));
+
+ freq->clkfreq_min = bwi_clkfreq[src].freq_min / div;
+ freq->clkfreq_max = bwi_clkfreq[src].freq_max / div;
+
+ DPRINTF(sc, BWI_DBG_ATTACH, "clkfreq min %u, max %u\n",
+ freq->clkfreq_min, freq->clkfreq_max);
+}
+
+static int
+bwi_set_clock_mode(struct bwi_softc *sc, enum bwi_clock_mode clk_mode)
+{
+ struct bwi_regwin *old, *com;
+ uint32_t clk_ctrl, clk_src;
+ int error, pwr_off = 0;
+
+ com = &sc->sc_com_regwin;
+ if (!BWI_REGWIN_EXIST(com))
+ return 0;
+
+ if (com->rw_rev >= 10 || com->rw_rev < 6)
+ return 0;
+
+ /*
+ * For common regwin whose rev is [6, 10), the chip
+ * must be capable to change clock mode.
+ */
+ if ((sc->sc_cap & BWI_CAP_CLKMODE) == 0)
+ return 0;
+
+ error = bwi_regwin_switch(sc, com, &old);
+ if (error)
+ return error;
+
+ if (clk_mode == BWI_CLOCK_MODE_FAST)
+ bwi_power_on(sc, 0); /* Don't turn on PLL */
+
+ clk_ctrl = CSR_READ_4(sc, BWI_CLOCK_CTRL);
+ clk_src = __SHIFTOUT(clk_ctrl, BWI_CLOCK_CTRL_CLKSRC);
+
+ switch (clk_mode) {
+ case BWI_CLOCK_MODE_FAST:
+ clk_ctrl &= ~BWI_CLOCK_CTRL_SLOW;
+ clk_ctrl |= BWI_CLOCK_CTRL_IGNPLL;
+ break;
+ case BWI_CLOCK_MODE_SLOW:
+ clk_ctrl |= BWI_CLOCK_CTRL_SLOW;
+ break;
+ case BWI_CLOCK_MODE_DYN:
+ clk_ctrl &= ~(BWI_CLOCK_CTRL_SLOW |
+ BWI_CLOCK_CTRL_IGNPLL |
+ BWI_CLOCK_CTRL_NODYN);
+ if (clk_src != BWI_CLKSRC_CS_OSC) {
+ clk_ctrl |= BWI_CLOCK_CTRL_NODYN;
+ pwr_off = 1;
+ }
+ break;
+ }
+ CSR_WRITE_4(sc, BWI_CLOCK_CTRL, clk_ctrl);
+
+ if (pwr_off)
+ bwi_power_off(sc, 0); /* Leave PLL as it is */
+
+ return bwi_regwin_switch(sc, old, NULL);
+}
+
+static int
+bwi_set_clock_delay(struct bwi_softc *sc)
+{
+ struct bwi_regwin *old, *com;
+ int error;
+
+ com = &sc->sc_com_regwin;
+ if (!BWI_REGWIN_EXIST(com))
+ return 0;
+
+ error = bwi_regwin_switch(sc, com, &old);
+ if (error)
+ return error;
+
+ if (sc->sc_bbp_id == BWI_BBPID_BCM4321) {
+ if (sc->sc_bbp_rev == 0)
+ CSR_WRITE_4(sc, BWI_CONTROL, BWI_CONTROL_MAGIC0);
+ else if (sc->sc_bbp_rev == 1)
+ CSR_WRITE_4(sc, BWI_CONTROL, BWI_CONTROL_MAGIC1);
+ }
+
+ if (sc->sc_cap & BWI_CAP_CLKMODE) {
+ if (com->rw_rev >= 10) {
+ CSR_FILT_SETBITS_4(sc, BWI_CLOCK_INFO, 0xffff, 0x40000);
+ } else {
+ struct bwi_clock_freq freq;
+
+ bwi_get_clock_freq(sc, &freq);
+ CSR_WRITE_4(sc, BWI_PLL_ON_DELAY,
+ howmany(freq.clkfreq_max * 150, 1000000));
+ CSR_WRITE_4(sc, BWI_FREQ_SEL_DELAY,
+ howmany(freq.clkfreq_max * 15, 1000000));
+ }
+ }
+
+ return bwi_regwin_switch(sc, old, NULL);
+}
+
+static void
+bwi_init(void *xsc)
+{
+ struct bwi_softc *sc = xsc;
+ struct ifnet *ifp = sc->sc_ifp;
+ struct ieee80211com *ic = ifp->if_l2com;
+
+ BWI_LOCK(sc);
+ bwi_init_statechg(sc, 1);
+ BWI_UNLOCK(sc);
+
+ if (ifp->if_drv_flags & IFF_DRV_RUNNING)
+ ieee80211_start_all(ic); /* start all vap's */
+}
+
+static void
+bwi_init_statechg(struct bwi_softc *sc, int statechg)
+{
+ struct ifnet *ifp = sc->sc_ifp;
+ struct bwi_mac *mac;
+ int error;
+
+ bwi_stop_locked(sc, statechg);
+
+ bwi_bbp_power_on(sc, BWI_CLOCK_MODE_FAST);
+
+ /* TODO: 2 MAC */
+
+ mac = &sc->sc_mac[0];
+ error = bwi_regwin_switch(sc, &mac->mac_regwin, NULL);
+ if (error) {
+ if_printf(ifp, "%s: error %d on regwin switch\n",
+ __func__, error);
+ goto bad;
+ }
+ error = bwi_mac_init(mac);
+ if (error) {
+ if_printf(ifp, "%s: error %d on MAC init\n", __func__, error);
+ goto bad;
+ }
+
+ bwi_bbp_power_on(sc, BWI_CLOCK_MODE_DYN);
+
+ bwi_set_bssid(sc, bwi_zero_addr); /* Clear BSSID */
+ bwi_set_addr_filter(sc, BWI_ADDR_FILTER_MYADDR, IF_LLADDR(ifp));
+
+ bwi_mac_reset_hwkeys(mac);
+
+ if ((mac->mac_flags & BWI_MAC_F_HAS_TXSTATS) == 0) {
+ int i;
+
+#define NRETRY 1000
+ /*
+ * Drain any possible pending TX status
+ */
+ for (i = 0; i < NRETRY; ++i) {
+ if ((CSR_READ_4(sc, BWI_TXSTATUS0) &
+ BWI_TXSTATUS0_VALID) == 0)
+ break;
+ CSR_READ_4(sc, BWI_TXSTATUS1);
+ }
+ if (i == NRETRY)
+ if_printf(ifp, "%s: can't drain TX status\n", __func__);
+#undef NRETRY
+ }
+
+ if (mac->mac_phy.phy_mode == IEEE80211_MODE_11G)
+ bwi_mac_updateslot(mac, 1);
+
+ /* Start MAC */
+ error = bwi_mac_start(mac);
+ if (error) {
+ if_printf(ifp, "%s: error %d starting MAC\n", __func__, error);
+ goto bad;
+ }
+
+ /* Clear stop flag before enabling interrupt */
+ sc->sc_flags &= ~BWI_F_STOP;
+
+ ifp->if_drv_flags |= IFF_DRV_RUNNING;
+
+ /* Enable intrs */
+ bwi_enable_intrs(sc, BWI_INIT_INTRS);
+ return;
+bad:
+ bwi_stop_locked(sc, 1);
+}
+
+static int
+bwi_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
+{
+#define IS_RUNNING(ifp) \
+ ((ifp->if_flags & IFF_UP) && (ifp->if_drv_flags & IFF_DRV_RUNNING))
+ struct bwi_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:
+ BWI_LOCK(sc);
+ if (IS_RUNNING(ifp)) {
+ struct bwi_mac *mac;
+ int promisc = -1;
+
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d",
+ sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ if ((ifp->if_flags & IFF_PROMISC) &&
+ (sc->sc_flags & BWI_F_PROMISC) == 0) {
+ promisc = 1;
+ sc->sc_flags |= BWI_F_PROMISC;
+ } else if ((ifp->if_flags & IFF_PROMISC) == 0 &&
+ (sc->sc_flags & BWI_F_PROMISC)) {
+ promisc = 0;
+ sc->sc_flags &= ~BWI_F_PROMISC;
+ }
+
+ if (promisc >= 0)
+ bwi_mac_set_promisc(mac, promisc);
+ }
+
+ if (ifp->if_flags & IFF_UP) {
+ if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) {
+ bwi_init_statechg(sc, 1);
+ startall = 1;
+ }
+ } else {
+ if (ifp->if_drv_flags & IFF_DRV_RUNNING)
+ bwi_stop_locked(sc, 1);
+ }
+ BWI_UNLOCK(sc);
+ if (startall)
+ ieee80211_start_all(ic);
+ 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;
+#undef IS_RUNNING
+}
+
+static void
+bwi_start(struct ifnet *ifp)
+{
+ struct bwi_softc *sc = ifp->if_softc;
+
+ BWI_LOCK(sc);
+ bwi_start_locked(ifp);
+ BWI_UNLOCK(sc);
+}
+
+static void
+bwi_start_locked(struct ifnet *ifp)
+{
+ struct bwi_softc *sc = ifp->if_softc;
+ struct bwi_txbuf_data *tbd = &sc->sc_tx_bdata[BWI_TX_DATA_RING];
+ struct ieee80211_frame *wh;
+ struct ieee80211_node *ni;
+ struct ieee80211_key *k;
+ struct mbuf *m;
+ int trans, idx;
+
+ if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0)
+ return;
+
+ trans = 0;
+ idx = tbd->tbd_idx;
+
+ while (tbd->tbd_buf[idx].tb_mbuf == NULL) {
+ IFQ_DRV_DEQUEUE(&ifp->if_snd, m); /* XXX: LOCK */
+ if (m == NULL)
+ break;
+
+ ni = (struct ieee80211_node *) m->m_pkthdr.rcvif;
+ wh = mtod(m, struct ieee80211_frame *);
+ if (wh->i_fc[1] & IEEE80211_FC1_WEP) {
+ k = ieee80211_crypto_encap(ni, m);
+ if (k == NULL) {
+ ieee80211_free_node(ni);
+ m_freem(m);
+ ifp->if_oerrors++;
+ continue;
+ }
+ }
+ wh = NULL; /* Catch any invalid use */
+
+ if (bwi_encap(sc, idx, m, ni) != 0) {
+ /* 'm' is freed in bwi_encap() if we reach here */
+ if (ni != NULL)
+ ieee80211_free_node(ni);
+ ifp->if_oerrors++;
+ continue;
+ }
+
+ trans = 1;
+ tbd->tbd_used++;
+ idx = (idx + 1) % BWI_TX_NDESC;
+
+ ifp->if_opackets++;
+
+ if (tbd->tbd_used + BWI_TX_NSPRDESC >= BWI_TX_NDESC) {
+ ifp->if_drv_flags |= IFF_DRV_OACTIVE;
+ break;
+ }
+ }
+ tbd->tbd_idx = idx;
+
+ if (trans)
+ ifp->if_timer = 5;
+}
+
+static int
+bwi_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 bwi_softc *sc = ifp->if_softc;
+ /* XXX wme? */
+ struct bwi_txbuf_data *tbd = &sc->sc_tx_bdata[BWI_TX_DATA_RING];
+ int idx, error;
+
+ if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0) {
+ ieee80211_free_node(ni);
+ m_freem(m);
+ return ENETDOWN;
+ }
+
+ BWI_LOCK(sc);
+ idx = tbd->tbd_idx;
+ KASSERT(tbd->tbd_buf[idx].tb_mbuf == NULL, ("slot %d not empty", idx));
+ if (params == NULL) {
+ /*
+ * Legacy path; interpret frame contents to decide
+ * precisely how to send the frame.
+ */
+ error = bwi_encap(sc, idx, m, ni);
+ } else {
+ /*
+ * Caller supplied explicit parameters to use in
+ * sending the frame.
+ */
+ error = bwi_encap_raw(sc, idx, m, ni, params);
+ }
+ if (error == 0) {
+ ifp->if_opackets++;
+ if (++tbd->tbd_used + BWI_TX_NSPRDESC >= BWI_TX_NDESC)
+ ifp->if_drv_flags |= IFF_DRV_OACTIVE;
+ tbd->tbd_idx = (idx + 1) % BWI_TX_NDESC;
+ ifp->if_timer = 5;
+ } else {
+ /* NB: m is reclaimed on encap failure */
+ ieee80211_free_node(ni);
+ ifp->if_oerrors++;
+ }
+ BWI_UNLOCK(sc);
+ return error;
+}
+
+static void
+bwi_watchdog(struct ifnet *ifp)
+{
+ struct bwi_softc *sc = ifp->if_softc;
+
+ BWI_LOCK(sc);
+ if ((ifp->if_drv_flags & IFF_DRV_RUNNING)) {
+ if_printf(ifp, "watchdog timeout\n");
+ ifp->if_oerrors++;
+ taskqueue_enqueue(sc->sc_tq, &sc->sc_restart_task);
+ }
+ BWI_UNLOCK(sc);
+}
+
+static void
+bwi_stop(struct bwi_softc *sc, int statechg)
+{
+ BWI_LOCK(sc);
+ bwi_stop_locked(sc, statechg);
+ BWI_UNLOCK(sc);
+}
+
+static void
+bwi_stop_locked(struct bwi_softc *sc, int statechg)
+{
+ struct ifnet *ifp = sc->sc_ifp;
+ struct bwi_mac *mac;
+ int i, error, pwr_off = 0;
+
+ BWI_ASSERT_LOCKED(sc);
+
+ callout_stop(&sc->sc_calib_ch);
+ callout_stop(&sc->sc_led_blink_ch);
+ sc->sc_led_blinking = 0;
+ sc->sc_flags |= BWI_F_STOP;
+
+ if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ bwi_disable_intrs(sc, BWI_ALL_INTRS);
+ CSR_READ_4(sc, BWI_MAC_INTR_MASK);
+ bwi_mac_stop(mac);
+ }
+
+ for (i = 0; i < sc->sc_nmac; ++i) {
+ struct bwi_regwin *old_rw;
+
+ mac = &sc->sc_mac[i];
+ if ((mac->mac_flags & BWI_MAC_F_INITED) == 0)
+ continue;
+
+ error = bwi_regwin_switch(sc, &mac->mac_regwin, &old_rw);
+ if (error)
+ continue;
+
+ bwi_mac_shutdown(mac);
+ pwr_off = 1;
+
+ bwi_regwin_switch(sc, old_rw, NULL);
+ }
+
+ if (pwr_off)
+ bwi_bbp_power_off(sc);
+
+ sc->sc_tx_timer = 0;
+ ifp->if_timer = 0;
+ ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
+}
+
+void
+bwi_intr(void *xsc)
+{
+ struct bwi_softc *sc = xsc;
+ struct ifnet *ifp = sc->sc_ifp;
+ struct bwi_mac *mac;
+ uint32_t intr_status;
+ uint32_t txrx_intr_status[BWI_TXRX_NRING];
+ int i, txrx_error, tx = 0, rx_data = -1;
+
+ BWI_LOCK(sc);
+
+ if ((ifp->if_drv_flags & IFF_DRV_RUNNING) == 0 ||
+ (sc->sc_flags & BWI_F_STOP)) {
+ BWI_UNLOCK(sc);
+ return;
+ }
+ /*
+ * Get interrupt status
+ */
+ intr_status = CSR_READ_4(sc, BWI_MAC_INTR_STATUS);
+ if (intr_status == 0xffffffff) { /* Not for us */
+ BWI_UNLOCK(sc);
+ return;
+ }
+
+ DPRINTF(sc, BWI_DBG_INTR, "intr status 0x%08x\n", intr_status);
+
+ intr_status &= CSR_READ_4(sc, BWI_MAC_INTR_MASK);
+ if (intr_status == 0) { /* Nothing is interesting */
+ BWI_UNLOCK(sc);
+ return;
+ }
+
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ txrx_error = 0;
+ DPRINTF(sc, BWI_DBG_INTR, "%s\n", "TX/RX intr");
+ for (i = 0; i < BWI_TXRX_NRING; ++i) {
+ uint32_t mask;
+
+ if (BWI_TXRX_IS_RX(i))
+ mask = BWI_TXRX_RX_INTRS;
+ else
+ mask = BWI_TXRX_TX_INTRS;
+
+ txrx_intr_status[i] =
+ CSR_READ_4(sc, BWI_TXRX_INTR_STATUS(i)) & mask;
+
+ _DPRINTF(sc, BWI_DBG_INTR, ", %d 0x%08x",
+ i, txrx_intr_status[i]);
+
+ if (txrx_intr_status[i] & BWI_TXRX_INTR_ERROR) {
+ if_printf(ifp,
+ "%s: intr fatal TX/RX (%d) error 0x%08x\n",
+ __func__, i, txrx_intr_status[i]);
+ txrx_error = 1;
+ }
+ }
+ _DPRINTF(sc, BWI_DBG_INTR, "%s\n", "");
+
+ /*
+ * Acknowledge interrupt
+ */
+ CSR_WRITE_4(sc, BWI_MAC_INTR_STATUS, intr_status);
+
+ for (i = 0; i < BWI_TXRX_NRING; ++i)
+ CSR_WRITE_4(sc, BWI_TXRX_INTR_STATUS(i), txrx_intr_status[i]);
+
+ /* Disable all interrupts */
+ bwi_disable_intrs(sc, BWI_ALL_INTRS);
+
+ if (intr_status & BWI_INTR_PHY_TXERR) {
+ if (mac->mac_flags & BWI_MAC_F_PHYE_RESET) {
+ if_printf(ifp, "%s: intr PHY TX error\n", __func__);
+ taskqueue_enqueue(sc->sc_tq, &sc->sc_restart_task);
+ BWI_UNLOCK(sc);
+ return;
+ }
+ }
+
+ if (txrx_error) {
+ /* TODO: reset device */
+ }
+
+ if (intr_status & BWI_INTR_TBTT)
+ bwi_mac_config_ps(mac);
+
+ if (intr_status & BWI_INTR_EO_ATIM)
+ if_printf(ifp, "EO_ATIM\n");
+
+ if (intr_status & BWI_INTR_PMQ) {
+ for (;;) {
+ if ((CSR_READ_4(sc, BWI_MAC_PS_STATUS) & 0x8) == 0)
+ break;
+ }
+ CSR_WRITE_2(sc, BWI_MAC_PS_STATUS, 0x2);
+ }
+
+ if (intr_status & BWI_INTR_NOISE)
+ if_printf(ifp, "intr noise\n");
+
+ if (txrx_intr_status[0] & BWI_TXRX_INTR_RX) {
+ rx_data = sc->sc_rxeof(sc);
+ if (sc->sc_flags & BWI_F_STOP) {
+ BWI_UNLOCK(sc);
+ return;
+ }
+ }
+
+ if (txrx_intr_status[3] & BWI_TXRX_INTR_RX) {
+ sc->sc_txeof_status(sc);
+ tx = 1;
+ }
+
+ if (intr_status & BWI_INTR_TX_DONE) {
+ bwi_txeof(sc);
+ tx = 1;
+ }
+
+ /* Re-enable interrupts */
+ bwi_enable_intrs(sc, BWI_INIT_INTRS);
+
+ if (sc->sc_blink_led != NULL && sc->sc_led_blink) {
+ int evt = BWI_LED_EVENT_NONE;
+
+ if (tx && rx_data > 0) {
+ if (sc->sc_rx_rate > sc->sc_tx_rate)
+ evt = BWI_LED_EVENT_RX;
+ else
+ evt = BWI_LED_EVENT_TX;
+ } else if (tx) {
+ evt = BWI_LED_EVENT_TX;
+ } else if (rx_data > 0) {
+ evt = BWI_LED_EVENT_RX;
+ } else if (rx_data == 0) {
+ evt = BWI_LED_EVENT_POLL;
+ }
+
+ if (evt != BWI_LED_EVENT_NONE)
+ bwi_led_event(sc, evt);
+ }
+
+ BWI_UNLOCK(sc);
+}
+
+static void
+bwi_scan_start(struct ieee80211com *ic)
+{
+ struct bwi_softc *sc = ic->ic_ifp->if_softc;
+
+ BWI_LOCK(sc);
+ /* Enable MAC beacon promiscuity */
+ CSR_SETBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_PASS_BCN);
+ BWI_UNLOCK(sc);
+}
+
+static void
+bwi_set_channel(struct ieee80211com *ic)
+{
+ struct bwi_softc *sc = ic->ic_ifp->if_softc;
+ struct ieee80211_channel *c = ic->ic_curchan;
+ struct bwi_mac *mac;
+
+ BWI_LOCK(sc);
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+ bwi_rf_set_chan(mac, ieee80211_chan2ieee(ic, c), 0);
+
+ sc->sc_rates = ieee80211_get_ratetable(c);
+
+ /*
+ * Setup radio tap channel freq and flags
+ */
+ sc->sc_tx_th.wt_chan_freq = sc->sc_rx_th.wr_chan_freq =
+ htole16(c->ic_freq);
+ sc->sc_tx_th.wt_chan_flags = sc->sc_rx_th.wr_chan_flags =
+ htole16(c->ic_flags & 0xffff);
+
+ BWI_UNLOCK(sc);
+}
+
+static void
+bwi_scan_end(struct ieee80211com *ic)
+{
+ struct bwi_softc *sc = ic->ic_ifp->if_softc;
+
+ BWI_LOCK(sc);
+ CSR_CLRBITS_4(sc, BWI_MAC_STATUS, BWI_MAC_STATUS_PASS_BCN);
+ BWI_UNLOCK(sc);
+}
+
+static int
+bwi_newstate(struct ieee80211vap *vap, enum ieee80211_state nstate, int arg)
+{
+ struct bwi_vap *bvp = BWI_VAP(vap);
+ struct ifnet *ifp = vap->iv_ic->ic_ifp;
+ struct bwi_softc *sc = ifp->if_softc;
+ struct bwi_mac *mac;
+ struct ieee80211_node *ni;
+ int error;
+
+ BWI_LOCK(sc);
+
+ callout_stop(&sc->sc_calib_ch);
+
+ if (nstate == IEEE80211_S_INIT)
+ sc->sc_txpwrcb_type = BWI_TXPWR_INIT;
+
+ bwi_led_newstate(sc, nstate);
+
+ error = bvp->bv_newstate(vap, nstate, arg);
+ if (error != 0)
+ goto back;
+
+ if (vap->iv_opmode == IEEE80211_M_MONITOR) {
+ /* Nothing to do */
+ } else if (nstate == IEEE80211_S_RUN) {
+ ni = vap->iv_bss;
+
+ bwi_set_bssid(sc, vap->iv_bss->ni_bssid);
+
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ /* Initial TX power calibration */
+ bwi_mac_calibrate_txpower(mac, BWI_TXPWR_INIT);
+#ifdef notyet
+ sc->sc_txpwrcb_type = BWI_TXPWR_FORCE;
+#else
+ sc->sc_txpwrcb_type = BWI_TXPWR_CALIB;
+#endif
+ if (vap->iv_opmode == IEEE80211_M_STA) {
+ /* fake a join to init the tx rate */
+ bwi_newassoc(ni, 1);
+ }
+
+ callout_reset(&sc->sc_calib_ch, hz, bwi_calibrate, sc);
+ } else {
+ bwi_set_bssid(sc, bwi_zero_addr);
+ }
+back:
+ BWI_UNLOCK(sc);
+
+ return error;
+}
+
+/* ARGUSED */
+static struct ieee80211_node *
+bwi_node_alloc(struct ieee80211vap *vap, const uint8_t mac[IEEE80211_ADDR_LEN])
+{
+ struct bwi_node *bn;
+
+ bn = malloc(sizeof(struct bwi_node), M_80211_NODE, M_NOWAIT | M_ZERO);
+ return bn != NULL ? &bn->ni : NULL;
+}
+
+static void
+bwi_newassoc(struct ieee80211_node *ni, int isnew)
+{
+ struct ieee80211vap *vap = ni->ni_vap;
+
+ ieee80211_amrr_node_init(&BWI_VAP(vap)->bv_amrr,
+ &BWI_NODE(ni)->amn, ni);
+}
+
+static int
+bwi_media_change(struct ifnet *ifp)
+{
+ int error = ieee80211_media_change(ifp);
+ /* NB: only the fixed rate can change and that doesn't need a reset */
+ return (error == ENETRESET ? 0 : error);
+}
+
+static int
+bwi_dma_alloc(struct bwi_softc *sc)
+{
+ int error, i, has_txstats;
+ bus_addr_t lowaddr = 0;
+ bus_size_t tx_ring_sz, rx_ring_sz, desc_sz = 0;
+ uint32_t txrx_ctrl_step = 0;
+
+ has_txstats = 0;
+ for (i = 0; i < sc->sc_nmac; ++i) {
+ if (sc->sc_mac[i].mac_flags & BWI_MAC_F_HAS_TXSTATS) {
+ has_txstats = 1;
+ break;
+ }
+ }
+
+ switch (sc->sc_bus_space) {
+ case BWI_BUS_SPACE_30BIT:
+ case BWI_BUS_SPACE_32BIT:
+ if (sc->sc_bus_space == BWI_BUS_SPACE_30BIT)
+ lowaddr = BWI_BUS_SPACE_MAXADDR;
+ else
+ lowaddr = BUS_SPACE_MAXADDR_32BIT;
+ desc_sz = sizeof(struct bwi_desc32);
+ txrx_ctrl_step = 0x20;
+
+ sc->sc_init_tx_ring = bwi_init_tx_ring32;
+ sc->sc_free_tx_ring = bwi_free_tx_ring32;
+ sc->sc_init_rx_ring = bwi_init_rx_ring32;
+ sc->sc_free_rx_ring = bwi_free_rx_ring32;
+ sc->sc_setup_rxdesc = bwi_setup_rx_desc32;
+ sc->sc_setup_txdesc = bwi_setup_tx_desc32;
+ sc->sc_rxeof = bwi_rxeof32;
+ sc->sc_start_tx = bwi_start_tx32;
+ if (has_txstats) {
+ sc->sc_init_txstats = bwi_init_txstats32;
+ sc->sc_free_txstats = bwi_free_txstats32;
+ sc->sc_txeof_status = bwi_txeof_status32;
+ }
+ break;
+
+ case BWI_BUS_SPACE_64BIT:
+ lowaddr = BUS_SPACE_MAXADDR; /* XXX */
+ desc_sz = sizeof(struct bwi_desc64);
+ txrx_ctrl_step = 0x40;
+
+ sc->sc_init_tx_ring = bwi_init_tx_ring64;
+ sc->sc_free_tx_ring = bwi_free_tx_ring64;
+ sc->sc_init_rx_ring = bwi_init_rx_ring64;
+ sc->sc_free_rx_ring = bwi_free_rx_ring64;
+ sc->sc_setup_rxdesc = bwi_setup_rx_desc64;
+ sc->sc_setup_txdesc = bwi_setup_tx_desc64;
+ sc->sc_rxeof = bwi_rxeof64;
+ sc->sc_start_tx = bwi_start_tx64;
+ if (has_txstats) {
+ sc->sc_init_txstats = bwi_init_txstats64;
+ sc->sc_free_txstats = bwi_free_txstats64;
+ sc->sc_txeof_status = bwi_txeof_status64;
+ }
+ break;
+ }
+
+ KASSERT(lowaddr != 0, ("lowaddr zero"));
+ KASSERT(desc_sz != 0, ("desc_sz zero"));
+ KASSERT(txrx_ctrl_step != 0, ("txrx_ctrl_step zero"));
+
+ tx_ring_sz = roundup(desc_sz * BWI_TX_NDESC, BWI_RING_ALIGN);
+ rx_ring_sz = roundup(desc_sz * BWI_RX_NDESC, BWI_RING_ALIGN);
+
+ /*
+ * Create top level DMA tag
+ */
+ error = bus_dma_tag_create(bus_get_dma_tag(sc->sc_dev), /* parent */
+ BWI_ALIGN, 0, /* alignment, bounds */
+ lowaddr, /* lowaddr */
+ BUS_SPACE_MAXADDR, /* highaddr */
+ NULL, NULL, /* filter, filterarg */
+ MAXBSIZE, /* maxsize */
+ BUS_SPACE_UNRESTRICTED, /* nsegments */
+ BUS_SPACE_MAXSIZE_32BIT, /* maxsegsize */
+ BUS_DMA_ALLOCNOW, /* flags */
+ NULL, NULL, /* lockfunc, lockarg */
+ &sc->sc_parent_dtag);
+ if (error) {
+ device_printf(sc->sc_dev, "can't create parent DMA tag\n");
+ return error;
+ }
+
+#define TXRX_CTRL(idx) (BWI_TXRX_CTRL_BASE + (idx) * txrx_ctrl_step)
+
+ /*
+ * Create TX ring DMA stuffs
+ */
+ error = bus_dma_tag_create(sc->sc_parent_dtag,
+ BWI_RING_ALIGN, 0,
+ BUS_SPACE_MAXADDR,
+ BUS_SPACE_MAXADDR,
+ NULL, NULL,
+ tx_ring_sz,
+ 1,
+ BUS_SPACE_MAXSIZE_32BIT,
+ BUS_DMA_ALLOCNOW,
+ NULL, NULL,
+ &sc->sc_txring_dtag);
+ if (error) {
+ device_printf(sc->sc_dev, "can't create TX ring DMA tag\n");
+ return error;
+ }
+
+ for (i = 0; i < BWI_TX_NRING; ++i) {
+ error = bwi_dma_ring_alloc(sc, sc->sc_txring_dtag,
+ &sc->sc_tx_rdata[i], tx_ring_sz,
+ TXRX_CTRL(i));
+ if (error) {
+ device_printf(sc->sc_dev, "%dth TX ring "
+ "DMA alloc failed\n", i);
+ return error;
+ }
+ }
+
+ /*
+ * Create RX ring DMA stuffs
+ */
+ error = bus_dma_tag_create(sc->sc_parent_dtag,
+ BWI_RING_ALIGN, 0,
+ BUS_SPACE_MAXADDR,
+ BUS_SPACE_MAXADDR,
+ NULL, NULL,
+ rx_ring_sz,
+ 1,
+ BUS_SPACE_MAXSIZE_32BIT,
+ BUS_DMA_ALLOCNOW,
+ NULL, NULL,
+ &sc->sc_rxring_dtag);
+ if (error) {
+ device_printf(sc->sc_dev, "can't create RX ring DMA tag\n");
+ return error;
+ }
+
+ error = bwi_dma_ring_alloc(sc, sc->sc_rxring_dtag, &sc->sc_rx_rdata,
+ rx_ring_sz, TXRX_CTRL(0));
+ if (error) {
+ device_printf(sc->sc_dev, "RX ring DMA alloc failed\n");
+ return error;
+ }
+
+ if (has_txstats) {
+ error = bwi_dma_txstats_alloc(sc, TXRX_CTRL(3), desc_sz);
+ if (error) {
+ device_printf(sc->sc_dev,
+ "TX stats DMA alloc failed\n");
+ return error;
+ }
+ }
+
+#undef TXRX_CTRL
+
+ return bwi_dma_mbuf_create(sc);
+}
+
+static void
+bwi_dma_free(struct bwi_softc *sc)
+{
+ if (sc->sc_txring_dtag != NULL) {
+ int i;
+
+ for (i = 0; i < BWI_TX_NRING; ++i) {
+ struct bwi_ring_data *rd = &sc->sc_tx_rdata[i];
+
+ if (rd->rdata_desc != NULL) {
+ bus_dmamap_unload(sc->sc_txring_dtag,
+ rd->rdata_dmap);
+ bus_dmamem_free(sc->sc_txring_dtag,
+ rd->rdata_desc,
+ rd->rdata_dmap);
+ }
+ }
+ bus_dma_tag_destroy(sc->sc_txring_dtag);
+ }
+
+ if (sc->sc_rxring_dtag != NULL) {
+ struct bwi_ring_data *rd = &sc->sc_rx_rdata;
+
+ if (rd->rdata_desc != NULL) {
+ bus_dmamap_unload(sc->sc_rxring_dtag, rd->rdata_dmap);
+ bus_dmamem_free(sc->sc_rxring_dtag, rd->rdata_desc,
+ rd->rdata_dmap);
+ }
+ bus_dma_tag_destroy(sc->sc_rxring_dtag);
+ }
+
+ bwi_dma_txstats_free(sc);
+ bwi_dma_mbuf_destroy(sc, BWI_TX_NRING, 1);
+
+ if (sc->sc_parent_dtag != NULL)
+ bus_dma_tag_destroy(sc->sc_parent_dtag);
+}
+
+static int
+bwi_dma_ring_alloc(struct bwi_softc *sc, bus_dma_tag_t dtag,
+ struct bwi_ring_data *rd, bus_size_t size,
+ uint32_t txrx_ctrl)
+{
+ int error;
+
+ error = bus_dmamem_alloc(dtag, &rd->rdata_desc,
+ BUS_DMA_WAITOK | BUS_DMA_ZERO,
+ &rd->rdata_dmap);
+ if (error) {
+ device_printf(sc->sc_dev, "can't allocate DMA mem\n");
+ return error;
+ }
+
+ error = bus_dmamap_load(dtag, rd->rdata_dmap, rd->rdata_desc, size,
+ bwi_dma_ring_addr, &rd->rdata_paddr,
+ BUS_DMA_NOWAIT);
+ if (error) {
+ device_printf(sc->sc_dev, "can't load DMA mem\n");
+ bus_dmamem_free(dtag, rd->rdata_desc, rd->rdata_dmap);
+ rd->rdata_desc = NULL;
+ return error;
+ }
+
+ rd->rdata_txrx_ctrl = txrx_ctrl;
+ return 0;
+}
+
+static int
+bwi_dma_txstats_alloc(struct bwi_softc *sc, uint32_t ctrl_base,
+ bus_size_t desc_sz)
+{
+ struct bwi_txstats_data *st;
+ bus_size_t dma_size;
+ int error;
+
+ st = malloc(sizeof(*st), M_DEVBUF, M_NOWAIT | M_ZERO);
+ if (st == NULL) {
+ device_printf(sc->sc_dev, "can't allocate txstats data\n");
+ return ENOMEM;
+ }
+ sc->sc_txstats = st;
+
+ /*
+ * Create TX stats descriptor DMA stuffs
+ */
+ dma_size = roundup(desc_sz * BWI_TXSTATS_NDESC, BWI_RING_ALIGN);
+
+ error = bus_dma_tag_create(sc->sc_parent_dtag,
+ BWI_RING_ALIGN,
+ 0,
+ BUS_SPACE_MAXADDR,
+ BUS_SPACE_MAXADDR,
+ NULL, NULL,
+ dma_size,
+ 1,
+ BUS_SPACE_MAXSIZE_32BIT,
+ BUS_DMA_ALLOCNOW,
+ NULL, NULL,
+ &st->stats_ring_dtag);
+ if (error) {
+ device_printf(sc->sc_dev, "can't create txstats ring "
+ "DMA tag\n");
+ return error;
+ }
+
+ error = bus_dmamem_alloc(st->stats_ring_dtag, &st->stats_ring,
+ BUS_DMA_WAITOK | BUS_DMA_ZERO,
+ &st->stats_ring_dmap);
+ if (error) {
+ device_printf(sc->sc_dev, "can't allocate txstats ring "
+ "DMA mem\n");
+ bus_dma_tag_destroy(st->stats_ring_dtag);
+ st->stats_ring_dtag = NULL;
+ return error;
+ }
+
+ error = bus_dmamap_load(st->stats_ring_dtag, st->stats_ring_dmap,
+ st->stats_ring, dma_size,
+ bwi_dma_ring_addr, &st->stats_ring_paddr,
+ BUS_DMA_NOWAIT);
+ if (error) {
+ device_printf(sc->sc_dev, "can't load txstats ring DMA mem\n");
+ bus_dmamem_free(st->stats_ring_dtag, st->stats_ring,
+ st->stats_ring_dmap);
+ bus_dma_tag_destroy(st->stats_ring_dtag);
+ st->stats_ring_dtag = NULL;
+ return error;
+ }
+
+ /*
+ * Create TX stats DMA stuffs
+ */
+ dma_size = roundup(sizeof(struct bwi_txstats) * BWI_TXSTATS_NDESC,
+ BWI_ALIGN);
+
+ error = bus_dma_tag_create(sc->sc_parent_dtag,
+ BWI_ALIGN,
+ 0,
+ BUS_SPACE_MAXADDR,
+ BUS_SPACE_MAXADDR,
+ NULL, NULL,
+ dma_size,
+ 1,
+ BUS_SPACE_MAXSIZE_32BIT,
+ BUS_DMA_ALLOCNOW,
+ NULL, NULL,
+ &st->stats_dtag);
+ if (error) {
+ device_printf(sc->sc_dev, "can't create txstats DMA tag\n");
+ return error;
+ }
+
+ error = bus_dmamem_alloc(st->stats_dtag, (void **)&st->stats,
+ BUS_DMA_WAITOK | BUS_DMA_ZERO,
+ &st->stats_dmap);
+ if (error) {
+ device_printf(sc->sc_dev, "can't allocate txstats DMA mem\n");
+ bus_dma_tag_destroy(st->stats_dtag);
+ st->stats_dtag = NULL;
+ return error;
+ }
+
+ error = bus_dmamap_load(st->stats_dtag, st->stats_dmap, st->stats,
+ dma_size, bwi_dma_ring_addr, &st->stats_paddr,
+ BUS_DMA_NOWAIT);
+ if (error) {
+ device_printf(sc->sc_dev, "can't load txstats DMA mem\n");
+ bus_dmamem_free(st->stats_dtag, st->stats, st->stats_dmap);
+ bus_dma_tag_destroy(st->stats_dtag);
+ st->stats_dtag = NULL;
+ return error;
+ }
+
+ st->stats_ctrl_base = ctrl_base;
+ return 0;
+}
+
+static void
+bwi_dma_txstats_free(struct bwi_softc *sc)
+{
+ struct bwi_txstats_data *st;
+
+ if (sc->sc_txstats == NULL)
+ return;
+ st = sc->sc_txstats;
+
+ if (st->stats_ring_dtag != NULL) {
+ bus_dmamap_unload(st->stats_ring_dtag, st->stats_ring_dmap);
+ bus_dmamem_free(st->stats_ring_dtag, st->stats_ring,
+ st->stats_ring_dmap);
+ bus_dma_tag_destroy(st->stats_ring_dtag);
+ }
+
+ if (st->stats_dtag != NULL) {
+ bus_dmamap_unload(st->stats_dtag, st->stats_dmap);
+ bus_dmamem_free(st->stats_dtag, st->stats, st->stats_dmap);
+ bus_dma_tag_destroy(st->stats_dtag);
+ }
+
+ free(st, M_DEVBUF);
+}
+
+static void
+bwi_dma_ring_addr(void *arg, bus_dma_segment_t *seg, int nseg, int error)
+{
+ KASSERT(nseg == 1, ("too many segments\n"));
+ *((bus_addr_t *)arg) = seg->ds_addr;
+}
+
+static int
+bwi_dma_mbuf_create(struct bwi_softc *sc)
+{
+ struct bwi_rxbuf_data *rbd = &sc->sc_rx_bdata;
+ int i, j, k, ntx, error;
+
+ /*
+ * Create TX/RX mbuf DMA tag
+ */
+ error = bus_dma_tag_create(sc->sc_parent_dtag,
+ 1,
+ 0,
+ BUS_SPACE_MAXADDR,
+ BUS_SPACE_MAXADDR,
+ NULL, NULL,
+ MCLBYTES,
+ 1,
+ BUS_SPACE_MAXSIZE_32BIT,
+ BUS_DMA_ALLOCNOW,
+ NULL, NULL,
+ &sc->sc_buf_dtag);
+ if (error) {
+ device_printf(sc->sc_dev, "can't create mbuf DMA tag\n");
+ return error;
+ }
+
+ ntx = 0;
+
+ /*
+ * Create TX mbuf DMA map
+ */
+ for (i = 0; i < BWI_TX_NRING; ++i) {
+ struct bwi_txbuf_data *tbd = &sc->sc_tx_bdata[i];
+
+ for (j = 0; j < BWI_TX_NDESC; ++j) {
+ error = bus_dmamap_create(sc->sc_buf_dtag, 0,
+ &tbd->tbd_buf[j].tb_dmap);
+ if (error) {
+ device_printf(sc->sc_dev, "can't create "
+ "%dth tbd, %dth DMA map\n", i, j);
+
+ ntx = i;
+ for (k = 0; k < j; ++k) {
+ bus_dmamap_destroy(sc->sc_buf_dtag,
+ tbd->tbd_buf[k].tb_dmap);
+ }
+ goto fail;
+ }
+ }
+ }
+ ntx = BWI_TX_NRING;
+
+ /*
+ * Create RX mbuf DMA map and a spare DMA map
+ */
+ error = bus_dmamap_create(sc->sc_buf_dtag, 0,
+ &rbd->rbd_tmp_dmap);
+ if (error) {
+ device_printf(sc->sc_dev,
+ "can't create spare RX buf DMA map\n");
+ goto fail;
+ }
+
+ for (j = 0; j < BWI_RX_NDESC; ++j) {
+ error = bus_dmamap_create(sc->sc_buf_dtag, 0,
+ &rbd->rbd_buf[j].rb_dmap);
+ if (error) {
+ device_printf(sc->sc_dev, "can't create %dth "
+ "RX buf DMA map\n", j);
+
+ for (k = 0; k < j; ++k) {
+ bus_dmamap_destroy(sc->sc_buf_dtag,
+ rbd->rbd_buf[j].rb_dmap);
+ }
+ bus_dmamap_destroy(sc->sc_buf_dtag,
+ rbd->rbd_tmp_dmap);
+ goto fail;
+ }
+ }
+
+ return 0;
+fail:
+ bwi_dma_mbuf_destroy(sc, ntx, 0);
+ return error;
+}
+
+static void
+bwi_dma_mbuf_destroy(struct bwi_softc *sc, int ntx, int nrx)
+{
+ int i, j;
+
+ if (sc->sc_buf_dtag == NULL)
+ return;
+
+ for (i = 0; i < ntx; ++i) {
+ struct bwi_txbuf_data *tbd = &sc->sc_tx_bdata[i];
+
+ for (j = 0; j < BWI_TX_NDESC; ++j) {
+ struct bwi_txbuf *tb = &tbd->tbd_buf[j];
+
+ if (tb->tb_mbuf != NULL) {
+ bus_dmamap_unload(sc->sc_buf_dtag,
+ tb->tb_dmap);
+ m_freem(tb->tb_mbuf);
+ }
+ if (tb->tb_ni != NULL)
+ ieee80211_free_node(tb->tb_ni);
+ bus_dmamap_destroy(sc->sc_buf_dtag, tb->tb_dmap);
+ }
+ }
+
+ if (nrx) {
+ struct bwi_rxbuf_data *rbd = &sc->sc_rx_bdata;
+
+ bus_dmamap_destroy(sc->sc_buf_dtag, rbd->rbd_tmp_dmap);
+ for (j = 0; j < BWI_RX_NDESC; ++j) {
+ struct bwi_rxbuf *rb = &rbd->rbd_buf[j];
+
+ if (rb->rb_mbuf != NULL) {
+ bus_dmamap_unload(sc->sc_buf_dtag,
+ rb->rb_dmap);
+ m_freem(rb->rb_mbuf);
+ }
+ bus_dmamap_destroy(sc->sc_buf_dtag, rb->rb_dmap);
+ }
+ }
+
+ bus_dma_tag_destroy(sc->sc_buf_dtag);
+ sc->sc_buf_dtag = NULL;
+}
+
+static void
+bwi_enable_intrs(struct bwi_softc *sc, uint32_t enable_intrs)
+{
+ CSR_SETBITS_4(sc, BWI_MAC_INTR_MASK, enable_intrs);
+}
+
+static void
+bwi_disable_intrs(struct bwi_softc *sc, uint32_t disable_intrs)
+{
+ CSR_CLRBITS_4(sc, BWI_MAC_INTR_MASK, disable_intrs);
+}
+
+static int
+bwi_init_tx_ring32(struct bwi_softc *sc, int ring_idx)
+{
+ struct bwi_ring_data *rd;
+ struct bwi_txbuf_data *tbd;
+ uint32_t val, addr_hi, addr_lo;
+
+ KASSERT(ring_idx < BWI_TX_NRING, ("ring_idx %d", ring_idx));
+ rd = &sc->sc_tx_rdata[ring_idx];
+ tbd = &sc->sc_tx_bdata[ring_idx];
+
+ tbd->tbd_idx = 0;
+ tbd->tbd_used = 0;
+
+ bzero(rd->rdata_desc, sizeof(struct bwi_desc32) * BWI_TX_NDESC);
+ bus_dmamap_sync(sc->sc_txring_dtag, rd->rdata_dmap,
+ BUS_DMASYNC_PREWRITE);
+
+ addr_lo = __SHIFTOUT(rd->rdata_paddr, BWI_TXRX32_RINGINFO_ADDR_MASK);
+ addr_hi = __SHIFTOUT(rd->rdata_paddr, BWI_TXRX32_RINGINFO_FUNC_MASK);
+
+ val = __SHIFTIN(addr_lo, BWI_TXRX32_RINGINFO_ADDR_MASK) |
+ __SHIFTIN(BWI_TXRX32_RINGINFO_FUNC_TXRX,
+ BWI_TXRX32_RINGINFO_FUNC_MASK);
+ CSR_WRITE_4(sc, rd->rdata_txrx_ctrl + BWI_TX32_RINGINFO, val);
+
+ val = __SHIFTIN(addr_hi, BWI_TXRX32_CTRL_ADDRHI_MASK) |
+ BWI_TXRX32_CTRL_ENABLE;
+ CSR_WRITE_4(sc, rd->rdata_txrx_ctrl + BWI_TX32_CTRL, val);
+
+ return 0;
+}
+
+static void
+bwi_init_rxdesc_ring32(struct bwi_softc *sc, uint32_t ctrl_base,
+ bus_addr_t paddr, int hdr_size, int ndesc)
+{
+ uint32_t val, addr_hi, addr_lo;
+
+ addr_lo = __SHIFTOUT(paddr, BWI_TXRX32_RINGINFO_ADDR_MASK);
+ addr_hi = __SHIFTOUT(paddr, BWI_TXRX32_RINGINFO_FUNC_MASK);
+
+ val = __SHIFTIN(addr_lo, BWI_TXRX32_RINGINFO_ADDR_MASK) |
+ __SHIFTIN(BWI_TXRX32_RINGINFO_FUNC_TXRX,
+ BWI_TXRX32_RINGINFO_FUNC_MASK);
+ CSR_WRITE_4(sc, ctrl_base + BWI_RX32_RINGINFO, val);
+
+ val = __SHIFTIN(hdr_size, BWI_RX32_CTRL_HDRSZ_MASK) |
+ __SHIFTIN(addr_hi, BWI_TXRX32_CTRL_ADDRHI_MASK) |
+ BWI_TXRX32_CTRL_ENABLE;
+ CSR_WRITE_4(sc, ctrl_base + BWI_RX32_CTRL, val);
+
+ CSR_WRITE_4(sc, ctrl_base + BWI_RX32_INDEX,
+ (ndesc - 1) * sizeof(struct bwi_desc32));
+}
+
+static int
+bwi_init_rx_ring32(struct bwi_softc *sc)
+{
+ struct bwi_ring_data *rd = &sc->sc_rx_rdata;
+ int i, error;
+
+ sc->sc_rx_bdata.rbd_idx = 0;
+
+ for (i = 0; i < BWI_RX_NDESC; ++i) {
+ error = bwi_newbuf(sc, i, 1);
+ if (error) {
+ device_printf(sc->sc_dev,
+ "can't allocate %dth RX buffer\n", i);
+ return error;
+ }
+ }
+ bus_dmamap_sync(sc->sc_rxring_dtag, rd->rdata_dmap,
+ BUS_DMASYNC_PREWRITE);
+
+ bwi_init_rxdesc_ring32(sc, rd->rdata_txrx_ctrl, rd->rdata_paddr,
+ sizeof(struct bwi_rxbuf_hdr), BWI_RX_NDESC);
+ return 0;
+}
+
+static int
+bwi_init_txstats32(struct bwi_softc *sc)
+{
+ struct bwi_txstats_data *st = sc->sc_txstats;
+ bus_addr_t stats_paddr;
+ int i;
+
+ bzero(st->stats, BWI_TXSTATS_NDESC * sizeof(struct bwi_txstats));
+ bus_dmamap_sync(st->stats_dtag, st->stats_dmap, BUS_DMASYNC_PREWRITE);
+
+ st->stats_idx = 0;
+
+ stats_paddr = st->stats_paddr;
+ for (i = 0; i < BWI_TXSTATS_NDESC; ++i) {
+ bwi_setup_desc32(sc, st->stats_ring, BWI_TXSTATS_NDESC, i,
+ stats_paddr, sizeof(struct bwi_txstats), 0);
+ stats_paddr += sizeof(struct bwi_txstats);
+ }
+ bus_dmamap_sync(st->stats_ring_dtag, st->stats_ring_dmap,
+ BUS_DMASYNC_PREWRITE);
+
+ bwi_init_rxdesc_ring32(sc, st->stats_ctrl_base,
+ st->stats_ring_paddr, 0, BWI_TXSTATS_NDESC);
+ return 0;
+}
+
+static void
+bwi_setup_rx_desc32(struct bwi_softc *sc, int buf_idx, bus_addr_t paddr,
+ int buf_len)
+{
+ struct bwi_ring_data *rd = &sc->sc_rx_rdata;
+
+ KASSERT(buf_idx < BWI_RX_NDESC, ("buf_idx %d", buf_idx));
+ bwi_setup_desc32(sc, rd->rdata_desc, BWI_RX_NDESC, buf_idx,
+ paddr, buf_len, 0);
+}
+
+static void
+bwi_setup_tx_desc32(struct bwi_softc *sc, struct bwi_ring_data *rd,
+ int buf_idx, bus_addr_t paddr, int buf_len)
+{
+ KASSERT(buf_idx < BWI_TX_NDESC, ("buf_idx %d", buf_idx));
+ bwi_setup_desc32(sc, rd->rdata_desc, BWI_TX_NDESC, buf_idx,
+ paddr, buf_len, 1);
+}
+
+static int
+bwi_init_tx_ring64(struct bwi_softc *sc, int ring_idx)
+{
+ /* TODO:64 */
+ return EOPNOTSUPP;
+}
+
+static int
+bwi_init_rx_ring64(struct bwi_softc *sc)
+{
+ /* TODO:64 */
+ return EOPNOTSUPP;
+}
+
+static int
+bwi_init_txstats64(struct bwi_softc *sc)
+{
+ /* TODO:64 */
+ return EOPNOTSUPP;
+}
+
+static void
+bwi_setup_rx_desc64(struct bwi_softc *sc, int buf_idx, bus_addr_t paddr,
+ int buf_len)
+{
+ /* TODO:64 */
+}
+
+static void
+bwi_setup_tx_desc64(struct bwi_softc *sc, struct bwi_ring_data *rd,
+ int buf_idx, bus_addr_t paddr, int buf_len)
+{
+ /* TODO:64 */
+}
+
+static void
+bwi_dma_buf_addr(void *arg, bus_dma_segment_t *seg, int nseg,
+ bus_size_t mapsz __unused, int error)
+{
+ if (!error) {
+ KASSERT(nseg == 1, ("too many segments(%d)\n", nseg));
+ *((bus_addr_t *)arg) = seg->ds_addr;
+ }
+}
+
+static int
+bwi_newbuf(struct bwi_softc *sc, int buf_idx, int init)
+{
+ struct bwi_rxbuf_data *rbd = &sc->sc_rx_bdata;
+ struct bwi_rxbuf *rxbuf = &rbd->rbd_buf[buf_idx];
+ struct bwi_rxbuf_hdr *hdr;
+ bus_dmamap_t map;
+ bus_addr_t paddr;
+ struct mbuf *m;
+ int error;
+
+ KASSERT(buf_idx < BWI_RX_NDESC, ("buf_idx %d", buf_idx));
+
+ m = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
+ if (m == NULL) {
+ error = ENOBUFS;
+
+ /*
+ * If the NIC is up and running, we need to:
+ * - Clear RX buffer's header.
+ * - Restore RX descriptor settings.
+ */
+ if (init)
+ return error;
+ else
+ goto back;
+ }
+ m->m_len = m->m_pkthdr.len = MCLBYTES;
+
+ /*
+ * Try to load RX buf into temporary DMA map
+ */
+ error = bus_dmamap_load_mbuf(sc->sc_buf_dtag, rbd->rbd_tmp_dmap, m,
+ bwi_dma_buf_addr, &paddr, BUS_DMA_NOWAIT);
+ if (error) {
+ m_freem(m);
+
+ /*
+ * See the comment above
+ */
+ if (init)
+ return error;
+ else
+ goto back;
+ }
+
+ if (!init)
+ bus_dmamap_unload(sc->sc_buf_dtag, rxbuf->rb_dmap);
+ rxbuf->rb_mbuf = m;
+ rxbuf->rb_paddr = paddr;
+
+ /*
+ * Swap RX buf's DMA map with the loaded temporary one
+ */
+ map = rxbuf->rb_dmap;
+ rxbuf->rb_dmap = rbd->rbd_tmp_dmap;
+ rbd->rbd_tmp_dmap = map;
+
+back:
+ /*
+ * Clear RX buf header
+ */
+ hdr = mtod(rxbuf->rb_mbuf, struct bwi_rxbuf_hdr *);
+ bzero(hdr, sizeof(*hdr));
+ bus_dmamap_sync(sc->sc_buf_dtag, rxbuf->rb_dmap, BUS_DMASYNC_PREWRITE);
+
+ /*
+ * Setup RX buf descriptor
+ */
+ sc->sc_setup_rxdesc(sc, buf_idx, rxbuf->rb_paddr,
+ rxbuf->rb_mbuf->m_len - sizeof(*hdr));
+ return error;
+}
+
+static void
+bwi_set_addr_filter(struct bwi_softc *sc, uint16_t addr_ofs,
+ const uint8_t *addr)
+{
+ int i;
+
+ CSR_WRITE_2(sc, BWI_ADDR_FILTER_CTRL,
+ BWI_ADDR_FILTER_CTRL_SET | addr_ofs);
+
+ for (i = 0; i < (IEEE80211_ADDR_LEN / 2); ++i) {
+ uint16_t addr_val;
+
+ addr_val = (uint16_t)addr[i * 2] |
+ (((uint16_t)addr[(i * 2) + 1]) << 8);
+ CSR_WRITE_2(sc, BWI_ADDR_FILTER_DATA, addr_val);
+ }
+}
+
+static int
+bwi_rxeof(struct bwi_softc *sc, int end_idx)
+{
+ struct bwi_ring_data *rd = &sc->sc_rx_rdata;
+ struct bwi_rxbuf_data *rbd = &sc->sc_rx_bdata;
+ struct ifnet *ifp = sc->sc_ifp;
+ struct ieee80211com *ic = ifp->if_l2com;
+ int idx, rx_data = 0;
+
+ idx = rbd->rbd_idx;
+ while (idx != end_idx) {
+ struct bwi_rxbuf *rb = &rbd->rbd_buf[idx];
+ struct bwi_rxbuf_hdr *hdr;
+ struct ieee80211_frame_min *wh;
+ struct ieee80211_node *ni;
+ struct mbuf *m;
+ const void *plcp;
+ uint16_t flags2;
+ int buflen, wh_ofs, hdr_extra, rssi, noise, type, rate;
+
+ m = rb->rb_mbuf;
+ bus_dmamap_sync(sc->sc_buf_dtag, rb->rb_dmap,
+ BUS_DMASYNC_POSTREAD);
+
+ if (bwi_newbuf(sc, idx, 0)) {
+ ifp->if_ierrors++;
+ goto next;
+ }
+
+ hdr = mtod(m, struct bwi_rxbuf_hdr *);
+ flags2 = le16toh(hdr->rxh_flags2);
+
+ hdr_extra = 0;
+ if (flags2 & BWI_RXH_F2_TYPE2FRAME)
+ hdr_extra = 2;
+ wh_ofs = hdr_extra + 6; /* XXX magic number */
+
+ buflen = le16toh(hdr->rxh_buflen);
+ if (buflen < BWI_FRAME_MIN_LEN(wh_ofs)) {
+ if_printf(ifp, "%s: zero length data, hdr_extra %d\n",
+ __func__, hdr_extra);
+ ifp->if_ierrors++;
+ m_freem(m);
+ goto next;
+ }
+
+ plcp = ((const uint8_t *)(hdr + 1) + hdr_extra);
+ rssi = bwi_calc_rssi(sc, hdr);
+ noise = bwi_calc_noise(sc);
+
+ m->m_pkthdr.rcvif = ifp;
+ m->m_len = m->m_pkthdr.len = buflen + sizeof(*hdr);
+ m_adj(m, sizeof(*hdr) + wh_ofs);
+
+ if (htole16(hdr->rxh_flags1) & BWI_RXH_F1_OFDM)
+ rate = bwi_ofdm_plcp2rate(plcp);
+ else
+ rate = bwi_ds_plcp2rate(plcp);
+
+ /* RX radio tap */
+ if (bpf_peers_present(ifp->if_bpf))
+ bwi_rx_radiotap(ifp, m, hdr, plcp, rate, rssi, noise);
+
+ m_adj(m, -IEEE80211_CRC_LEN);
+
+ BWI_UNLOCK(sc);
+
+ wh = mtod(m, struct ieee80211_frame_min *);
+ ni = ieee80211_find_rxnode(ic, wh);
+ if (ni != NULL) {
+ type = ieee80211_input(ni, m, rssi - noise, noise, 0);
+ ieee80211_free_node(ni);
+ } else
+ type = ieee80211_input_all(ic, m, rssi - noise,
+ noise, 0);
+ if (type == IEEE80211_FC0_TYPE_DATA) {
+ rx_data = 1;
+ sc->sc_rx_rate = rate;
+ }
+
+ BWI_LOCK(sc);
+next:
+ idx = (idx + 1) % BWI_RX_NDESC;
+
+ if (sc->sc_flags & BWI_F_STOP) {
+ /*
+ * Take the fast lane, don't do
+ * any damage to softc
+ */
+ return -1;
+ }
+ }
+
+ rbd->rbd_idx = idx;
+ bus_dmamap_sync(sc->sc_rxring_dtag, rd->rdata_dmap,
+ BUS_DMASYNC_PREWRITE);
+
+ return rx_data;
+}
+
+static int
+bwi_rxeof32(struct bwi_softc *sc)
+{
+ uint32_t val, rx_ctrl;
+ int end_idx, rx_data;
+
+ rx_ctrl = sc->sc_rx_rdata.rdata_txrx_ctrl;
+
+ val = CSR_READ_4(sc, rx_ctrl + BWI_RX32_STATUS);
+ end_idx = __SHIFTOUT(val, BWI_RX32_STATUS_INDEX_MASK) /
+ sizeof(struct bwi_desc32);
+
+ rx_data = bwi_rxeof(sc, end_idx);
+ if (rx_data >= 0) {
+ CSR_WRITE_4(sc, rx_ctrl + BWI_RX32_INDEX,
+ end_idx * sizeof(struct bwi_desc32));
+ }
+ return rx_data;
+}
+
+static int
+bwi_rxeof64(struct bwi_softc *sc)
+{
+ /* TODO:64 */
+ return 0;
+}
+
+static void
+bwi_reset_rx_ring32(struct bwi_softc *sc, uint32_t rx_ctrl)
+{
+ int i;
+
+ CSR_WRITE_4(sc, rx_ctrl + BWI_RX32_CTRL, 0);
+
+#define NRETRY 10
+
+ for (i = 0; i < NRETRY; ++i) {
+ uint32_t status;
+
+ status = CSR_READ_4(sc, rx_ctrl + BWI_RX32_STATUS);
+ if (__SHIFTOUT(status, BWI_RX32_STATUS_STATE_MASK) ==
+ BWI_RX32_STATUS_STATE_DISABLED)
+ break;
+
+ DELAY(1000);
+ }
+ if (i == NRETRY)
+ device_printf(sc->sc_dev, "reset rx ring timedout\n");
+
+#undef NRETRY
+
+ CSR_WRITE_4(sc, rx_ctrl + BWI_RX32_RINGINFO, 0);
+}
+
+static void
+bwi_free_txstats32(struct bwi_softc *sc)
+{
+ bwi_reset_rx_ring32(sc, sc->sc_txstats->stats_ctrl_base);
+}
+
+static void
+bwi_free_rx_ring32(struct bwi_softc *sc)
+{
+ struct bwi_ring_data *rd = &sc->sc_rx_rdata;
+ struct bwi_rxbuf_data *rbd = &sc->sc_rx_bdata;
+ int i;
+
+ bwi_reset_rx_ring32(sc, rd->rdata_txrx_ctrl);
+
+ for (i = 0; i < BWI_RX_NDESC; ++i) {
+ struct bwi_rxbuf *rb = &rbd->rbd_buf[i];
+
+ if (rb->rb_mbuf != NULL) {
+ bus_dmamap_unload(sc->sc_buf_dtag, rb->rb_dmap);
+ m_freem(rb->rb_mbuf);
+ rb->rb_mbuf = NULL;
+ }
+ }
+}
+
+static void
+bwi_free_tx_ring32(struct bwi_softc *sc, int ring_idx)
+{
+ struct bwi_ring_data *rd;
+ struct bwi_txbuf_data *tbd;
+ struct ifnet *ifp = sc->sc_ifp;
+ uint32_t state, val;
+ int i;
+
+ KASSERT(ring_idx < BWI_TX_NRING, ("ring_idx %d", ring_idx));
+ rd = &sc->sc_tx_rdata[ring_idx];
+ tbd = &sc->sc_tx_bdata[ring_idx];
+
+#define NRETRY 10
+
+ for (i = 0; i < NRETRY; ++i) {
+ val = CSR_READ_4(sc, rd->rdata_txrx_ctrl + BWI_TX32_STATUS);
+ state = __SHIFTOUT(val, BWI_TX32_STATUS_STATE_MASK);
+ if (state == BWI_TX32_STATUS_STATE_DISABLED ||
+ state == BWI_TX32_STATUS_STATE_IDLE ||
+ state == BWI_TX32_STATUS_STATE_STOPPED)
+ break;
+
+ DELAY(1000);
+ }
+ if (i == NRETRY) {
+ if_printf(ifp, "%s: wait for TX ring(%d) stable timed out\n",
+ __func__, ring_idx);
+ }
+
+ CSR_WRITE_4(sc, rd->rdata_txrx_ctrl + BWI_TX32_CTRL, 0);
+ for (i = 0; i < NRETRY; ++i) {
+ val = CSR_READ_4(sc, rd->rdata_txrx_ctrl + BWI_TX32_STATUS);
+ state = __SHIFTOUT(val, BWI_TX32_STATUS_STATE_MASK);
+ if (state == BWI_TX32_STATUS_STATE_DISABLED)
+ break;
+
+ DELAY(1000);
+ }
+ if (i == NRETRY)
+ if_printf(ifp, "%s: reset TX ring (%d) timed out\n",
+ __func__, ring_idx);
+
+#undef NRETRY
+
+ DELAY(1000);
+
+ CSR_WRITE_4(sc, rd->rdata_txrx_ctrl + BWI_TX32_RINGINFO, 0);
+
+ for (i = 0; i < BWI_TX_NDESC; ++i) {
+ struct bwi_txbuf *tb = &tbd->tbd_buf[i];
+
+ if (tb->tb_mbuf != NULL) {
+ bus_dmamap_unload(sc->sc_buf_dtag, tb->tb_dmap);
+ m_freem(tb->tb_mbuf);
+ tb->tb_mbuf = NULL;
+ }
+ if (tb->tb_ni != NULL) {
+ ieee80211_free_node(tb->tb_ni);
+ tb->tb_ni = NULL;
+ }
+ }
+}
+
+static void
+bwi_free_txstats64(struct bwi_softc *sc)
+{
+ /* TODO:64 */
+}
+
+static void
+bwi_free_rx_ring64(struct bwi_softc *sc)
+{
+ /* TODO:64 */
+}
+
+static void
+bwi_free_tx_ring64(struct bwi_softc *sc, int ring_idx)
+{
+ /* TODO:64 */
+}
+
+/* XXX does not belong here */
+#define IEEE80211_OFDM_PLCP_RATE_MASK __BITS(3, 0)
+#define IEEE80211_OFDM_PLCP_LEN_MASK __BITS(16, 5)
+
+static __inline void
+bwi_ofdm_plcp_header(uint32_t *plcp0, int pkt_len, uint8_t rate)
+{
+ uint32_t plcp;
+
+ plcp = __SHIFTIN(ieee80211_rate2plcp(rate, IEEE80211_T_OFDM),
+ IEEE80211_OFDM_PLCP_RATE_MASK) |
+ __SHIFTIN(pkt_len, IEEE80211_OFDM_PLCP_LEN_MASK);
+ *plcp0 = htole32(plcp);
+}
+
+static __inline void
+bwi_ds_plcp_header(struct ieee80211_ds_plcp_hdr *plcp, int pkt_len,
+ uint8_t rate)
+{
+ int len, service, pkt_bitlen;
+
+ pkt_bitlen = pkt_len * NBBY;
+ len = howmany(pkt_bitlen * 2, rate);
+
+ service = IEEE80211_PLCP_SERVICE_LOCKED;
+ if (rate == (11 * 2)) {
+ int pkt_bitlen1;
+
+ /*
+ * PLCP service field needs to be adjusted,
+ * if TX rate is 11Mbytes/s
+ */
+ pkt_bitlen1 = len * 11;
+ if (pkt_bitlen1 - pkt_bitlen >= NBBY)
+ service |= IEEE80211_PLCP_SERVICE_LENEXT7;
+ }
+
+ plcp->i_signal = ieee80211_rate2plcp(rate, IEEE80211_T_CCK);
+ plcp->i_service = service;
+ plcp->i_length = htole16(len);
+ /* NOTE: do NOT touch i_crc */
+}
+
+static __inline void
+bwi_plcp_header(const struct ieee80211_rate_table *rt,
+ void *plcp, int pkt_len, uint8_t rate)
+{
+ enum ieee80211_phytype modtype;
+
+ /*
+ * Assume caller has zeroed 'plcp'
+ */
+ modtype = ieee80211_rate2phytype(rt, rate);
+ if (modtype == IEEE80211_T_OFDM)
+ bwi_ofdm_plcp_header(plcp, pkt_len, rate);
+ else if (modtype == IEEE80211_T_DS)
+ bwi_ds_plcp_header(plcp, pkt_len, rate);
+ else
+ panic("unsupport modulation type %u\n", modtype);
+}
+
+static int
+bwi_encap(struct bwi_softc *sc, int idx, struct mbuf *m,
+ struct ieee80211_node *ni)
+{
+ struct ieee80211vap *vap = ni->ni_vap;
+ struct ifnet *ifp = sc->sc_ifp;
+ struct ieee80211com *ic = ifp->if_l2com;
+ struct bwi_ring_data *rd = &sc->sc_tx_rdata[BWI_TX_DATA_RING];
+ struct bwi_txbuf_data *tbd = &sc->sc_tx_bdata[BWI_TX_DATA_RING];
+ struct bwi_txbuf *tb = &tbd->tbd_buf[idx];
+ struct bwi_mac *mac;
+ struct bwi_txbuf_hdr *hdr;
+ struct ieee80211_frame *wh;
+ const struct ieee80211_txparam *tp;
+ uint8_t rate, rate_fb;
+ uint32_t mac_ctrl;
+ uint16_t phy_ctrl;
+ bus_addr_t paddr;
+ int type, ismcast, pkt_len, error, rix;
+#if 0
+ const uint8_t *p;
+ int i;
+#endif
+
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ wh = mtod(m, struct ieee80211_frame *);
+ type = wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK;
+ ismcast = IEEE80211_IS_MULTICAST(wh->i_addr1);
+
+ /* Get 802.11 frame len before prepending TX header */
+ pkt_len = m->m_pkthdr.len + IEEE80211_CRC_LEN;
+
+ /*
+ * Find TX rate
+ */
+ tp = &vap->iv_txparms[ieee80211_chan2mode(ic->ic_curchan)];
+ if (type != IEEE80211_FC0_TYPE_DATA || (m->m_flags & M_EAPOL)) {
+ rate = rate_fb = tp->mgmtrate;
+ } else if (ismcast) {
+ rate = rate_fb = tp->mcastrate;
+ } else if (tp->ucastrate != IEEE80211_FIXED_RATE_NONE) {
+ rate = rate_fb = tp->ucastrate;
+ } else {
+ rix = ieee80211_amrr_choose(ni, &BWI_NODE(ni)->amn);
+ rate = ni->ni_txrate;
+
+ if (rix > 0) {
+ rate_fb = ni->ni_rates.rs_rates[rix-1] &
+ IEEE80211_RATE_VAL;
+ } else {
+ rate_fb = rate;
+ }
+ }
+ tb->tb_rate[0] = rate;
+ tb->tb_rate[1] = rate_fb;
+ sc->sc_tx_rate = rate;
+
+ /*
+ * TX radio tap
+ */
+ if (bpf_peers_present(ifp->if_bpf)) {
+ sc->sc_tx_th.wt_flags = 0;
+ if (wh->i_fc[1] & IEEE80211_FC1_WEP)
+ sc->sc_tx_th.wt_flags |= IEEE80211_RADIOTAP_F_WEP;
+ if (ieee80211_rate2phytype(sc->sc_rates, rate) == IEEE80211_T_DS &&
+ (ic->ic_flags & IEEE80211_F_SHPREAMBLE) &&
+ rate != (1 * 2)) {
+ sc->sc_tx_th.wt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
+ }
+ sc->sc_tx_th.wt_rate = rate;
+
+ bpf_mtap2(ifp->if_bpf, &sc->sc_tx_th, sc->sc_tx_th_len, m);
+ }
+
+ /*
+ * Setup the embedded TX header
+ */
+ M_PREPEND(m, sizeof(*hdr), M_DONTWAIT);
+ if (m == NULL) {
+ if_printf(ifp, "%s: prepend TX header failed\n", __func__);
+ return ENOBUFS;
+ }
+ hdr = mtod(m, struct bwi_txbuf_hdr *);
+
+ bzero(hdr, sizeof(*hdr));
+
+ bcopy(wh->i_fc, hdr->txh_fc, sizeof(hdr->txh_fc));
+ bcopy(wh->i_addr1, hdr->txh_addr1, sizeof(hdr->txh_addr1));
+
+ if (!ismcast) {
+ uint16_t dur;
+
+ dur = ieee80211_ack_duration(sc->sc_rates, rate,
+ ic->ic_flags & ~IEEE80211_F_SHPREAMBLE);
+
+ hdr->txh_fb_duration = htole16(dur);
+ }
+
+ hdr->txh_id = __SHIFTIN(BWI_TX_DATA_RING, BWI_TXH_ID_RING_MASK) |
+ __SHIFTIN(idx, BWI_TXH_ID_IDX_MASK);
+
+ bwi_plcp_header(sc->sc_rates, hdr->txh_plcp, pkt_len, rate);
+ bwi_plcp_header(sc->sc_rates, hdr->txh_fb_plcp, pkt_len, rate_fb);
+
+ phy_ctrl = __SHIFTIN(mac->mac_rf.rf_ant_mode,
+ BWI_TXH_PHY_C_ANTMODE_MASK);
+ if (ieee80211_rate2phytype(sc->sc_rates, rate) == IEEE80211_T_OFDM)
+ phy_ctrl |= BWI_TXH_PHY_C_OFDM;
+ else if ((ic->ic_flags & IEEE80211_F_SHPREAMBLE) && rate != (2 * 1))
+ phy_ctrl |= BWI_TXH_PHY_C_SHPREAMBLE;
+
+ mac_ctrl = BWI_TXH_MAC_C_HWSEQ | BWI_TXH_MAC_C_FIRST_FRAG;
+ if (!ismcast)
+ mac_ctrl |= BWI_TXH_MAC_C_ACK;
+ if (ieee80211_rate2phytype(sc->sc_rates, rate_fb) == IEEE80211_T_OFDM)
+ mac_ctrl |= BWI_TXH_MAC_C_FB_OFDM;
+
+ hdr->txh_mac_ctrl = htole32(mac_ctrl);
+ hdr->txh_phy_ctrl = htole16(phy_ctrl);
+
+ /* Catch any further usage */
+ hdr = NULL;
+ wh = NULL;
+
+ /* DMA load */
+ error = bus_dmamap_load_mbuf(sc->sc_buf_dtag, tb->tb_dmap, m,
+ bwi_dma_buf_addr, &paddr, BUS_DMA_NOWAIT);
+ if (error && error != EFBIG) {
+ if_printf(ifp, "%s: can't load TX buffer (1) %d\n",
+ __func__, error);
+ goto back;
+ }
+
+ if (error) { /* error == EFBIG */
+ struct mbuf *m_new;
+
+ m_new = m_defrag(m, M_DONTWAIT);
+ if (m_new == NULL) {
+ if_printf(ifp, "%s: can't defrag TX buffer\n",
+ __func__);
+ error = ENOBUFS;
+ goto back;
+ } else {
+ m = m_new;
+ }
+
+ error = bus_dmamap_load_mbuf(sc->sc_buf_dtag, tb->tb_dmap, m,
+ bwi_dma_buf_addr, &paddr,
+ BUS_DMA_NOWAIT);
+ if (error) {
+ if_printf(ifp, "%s: can't load TX buffer (2) %d\n",
+ __func__, error);
+ goto back;
+ }
+ }
+ error = 0;
+
+ bus_dmamap_sync(sc->sc_buf_dtag, tb->tb_dmap, BUS_DMASYNC_PREWRITE);
+
+ tb->tb_mbuf = m;
+ tb->tb_ni = ni;
+
+#if 0
+ p = mtod(m, const uint8_t *);
+ for (i = 0; i < m->m_pkthdr.len; ++i) {
+ if (i != 0 && i % 8 == 0)
+ printf("\n");
+ printf("%02x ", p[i]);
+ }
+ printf("\n");
+#endif
+ DPRINTF(sc, BWI_DBG_TX, "idx %d, pkt_len %d, buflen %d\n",
+ idx, pkt_len, m->m_pkthdr.len);
+
+ /* Setup TX descriptor */
+ sc->sc_setup_txdesc(sc, rd, idx, paddr, m->m_pkthdr.len);
+ bus_dmamap_sync(sc->sc_txring_dtag, rd->rdata_dmap,
+ BUS_DMASYNC_PREWRITE);
+
+ /* Kick start */
+ sc->sc_start_tx(sc, rd->rdata_txrx_ctrl, idx);
+
+back:
+ if (error)
+ m_freem(m);
+ return error;
+}
+
+static int
+bwi_encap_raw(struct bwi_softc *sc, int idx, struct mbuf *m,
+ struct ieee80211_node *ni, const struct ieee80211_bpf_params *params)
+{
+ struct ifnet *ifp = sc->sc_ifp;
+ struct bwi_ring_data *rd = &sc->sc_tx_rdata[BWI_TX_DATA_RING];
+ struct bwi_txbuf_data *tbd = &sc->sc_tx_bdata[BWI_TX_DATA_RING];
+ struct bwi_txbuf *tb = &tbd->tbd_buf[idx];
+ struct bwi_mac *mac;
+ struct bwi_txbuf_hdr *hdr;
+ struct ieee80211_frame *wh;
+ uint8_t rate, rate_fb;
+ uint32_t mac_ctrl;
+ uint16_t phy_ctrl;
+ bus_addr_t paddr;
+ int ismcast, pkt_len, error;
+
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ wh = mtod(m, struct ieee80211_frame *);
+ ismcast = IEEE80211_IS_MULTICAST(wh->i_addr1);
+
+ /* Get 802.11 frame len before prepending TX header */
+ pkt_len = m->m_pkthdr.len + IEEE80211_CRC_LEN;
+
+ /*
+ * Find TX rate
+ */
+ rate = params->ibp_rate0;
+ rate_fb = (params->ibp_try1 != 0) ?
+ params->ibp_rate1 : params->ibp_rate0;
+ tb->tb_rate[0] = rate;
+ tb->tb_rate[1] = rate_fb;
+ sc->sc_tx_rate = rate;
+
+ /*
+ * TX radio tap
+ */
+ if (bpf_peers_present(ifp->if_bpf)) {
+ sc->sc_tx_th.wt_flags = 0;
+ /* XXX IEEE80211_BPF_CRYPTO */
+ if (wh->i_fc[1] & IEEE80211_FC1_WEP)
+ sc->sc_tx_th.wt_flags |= IEEE80211_RADIOTAP_F_WEP;
+ if (params->ibp_flags & IEEE80211_BPF_SHORTPRE)
+ sc->sc_tx_th.wt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
+ sc->sc_tx_th.wt_rate = rate;
+
+ bpf_mtap2(ifp->if_bpf, &sc->sc_tx_th, sc->sc_tx_th_len, m);
+ }
+
+ /*
+ * Setup the embedded TX header
+ */
+ M_PREPEND(m, sizeof(*hdr), M_DONTWAIT);
+ if (m == NULL) {
+ if_printf(ifp, "%s: prepend TX header failed\n", __func__);
+ return ENOBUFS;
+ }
+ hdr = mtod(m, struct bwi_txbuf_hdr *);
+
+ bzero(hdr, sizeof(*hdr));
+
+ bcopy(wh->i_fc, hdr->txh_fc, sizeof(hdr->txh_fc));
+ bcopy(wh->i_addr1, hdr->txh_addr1, sizeof(hdr->txh_addr1));
+
+ mac_ctrl = BWI_TXH_MAC_C_HWSEQ | BWI_TXH_MAC_C_FIRST_FRAG;
+ if (!ismcast && (params->ibp_flags & IEEE80211_BPF_NOACK) == 0) {
+ uint16_t dur;
+
+ dur = ieee80211_ack_duration(sc->sc_rates, rate_fb, 0);
+
+ hdr->txh_fb_duration = htole16(dur);
+ mac_ctrl |= BWI_TXH_MAC_C_ACK;
+ }
+
+ hdr->txh_id = __SHIFTIN(BWI_TX_DATA_RING, BWI_TXH_ID_RING_MASK) |
+ __SHIFTIN(idx, BWI_TXH_ID_IDX_MASK);
+
+ bwi_plcp_header(sc->sc_rates, hdr->txh_plcp, pkt_len, rate);
+ bwi_plcp_header(sc->sc_rates, hdr->txh_fb_plcp, pkt_len, rate_fb);
+
+ phy_ctrl = __SHIFTIN(mac->mac_rf.rf_ant_mode,
+ BWI_TXH_PHY_C_ANTMODE_MASK);
+ if (ieee80211_rate2phytype(sc->sc_rates, rate) == IEEE80211_T_OFDM) {
+ phy_ctrl |= BWI_TXH_PHY_C_OFDM;
+ mac_ctrl |= BWI_TXH_MAC_C_FB_OFDM;
+ } else if (params->ibp_flags & IEEE80211_BPF_SHORTPRE)
+ phy_ctrl |= BWI_TXH_PHY_C_SHPREAMBLE;
+
+ hdr->txh_mac_ctrl = htole32(mac_ctrl);
+ hdr->txh_phy_ctrl = htole16(phy_ctrl);
+
+ /* Catch any further usage */
+ hdr = NULL;
+ wh = NULL;
+
+ /* DMA load */
+ error = bus_dmamap_load_mbuf(sc->sc_buf_dtag, tb->tb_dmap, m,
+ bwi_dma_buf_addr, &paddr, BUS_DMA_NOWAIT);
+ if (error != 0) {
+ struct mbuf *m_new;
+
+ if (error != EFBIG) {
+ if_printf(ifp, "%s: can't load TX buffer (1) %d\n",
+ __func__, error);
+ goto back;
+ }
+ m_new = m_defrag(m, M_DONTWAIT);
+ if (m_new == NULL) {
+ if_printf(ifp, "%s: can't defrag TX buffer\n",
+ __func__);
+ error = ENOBUFS;
+ goto back;
+ }
+ m = m_new;
+ error = bus_dmamap_load_mbuf(sc->sc_buf_dtag, tb->tb_dmap, m,
+ bwi_dma_buf_addr, &paddr,
+ BUS_DMA_NOWAIT);
+ if (error) {
+ if_printf(ifp, "%s: can't load TX buffer (2) %d\n",
+ __func__, error);
+ goto back;
+ }
+ }
+
+ bus_dmamap_sync(sc->sc_buf_dtag, tb->tb_dmap, BUS_DMASYNC_PREWRITE);
+
+ tb->tb_mbuf = m;
+ tb->tb_ni = ni;
+
+ DPRINTF(sc, BWI_DBG_TX, "idx %d, pkt_len %d, buflen %d\n",
+ idx, pkt_len, m->m_pkthdr.len);
+
+ /* Setup TX descriptor */
+ sc->sc_setup_txdesc(sc, rd, idx, paddr, m->m_pkthdr.len);
+ bus_dmamap_sync(sc->sc_txring_dtag, rd->rdata_dmap,
+ BUS_DMASYNC_PREWRITE);
+
+ /* Kick start */
+ sc->sc_start_tx(sc, rd->rdata_txrx_ctrl, idx);
+back:
+ if (error)
+ m_freem(m);
+ return error;
+}
+
+static void
+bwi_start_tx32(struct bwi_softc *sc, uint32_t tx_ctrl, int idx)
+{
+ idx = (idx + 1) % BWI_TX_NDESC;
+ CSR_WRITE_4(sc, tx_ctrl + BWI_TX32_INDEX,
+ idx * sizeof(struct bwi_desc32));
+}
+
+static void
+bwi_start_tx64(struct bwi_softc *sc, uint32_t tx_ctrl, int idx)
+{
+ /* TODO:64 */
+}
+
+static void
+bwi_txeof_status32(struct bwi_softc *sc)
+{
+ struct ifnet *ifp = sc->sc_ifp;
+ uint32_t val, ctrl_base;
+ int end_idx;
+
+ ctrl_base = sc->sc_txstats->stats_ctrl_base;
+
+ val = CSR_READ_4(sc, ctrl_base + BWI_RX32_STATUS);
+ end_idx = __SHIFTOUT(val, BWI_RX32_STATUS_INDEX_MASK) /
+ sizeof(struct bwi_desc32);
+
+ bwi_txeof_status(sc, end_idx);
+
+ CSR_WRITE_4(sc, ctrl_base + BWI_RX32_INDEX,
+ end_idx * sizeof(struct bwi_desc32));
+
+ if ((ifp->if_drv_flags & IFF_DRV_OACTIVE) == 0)
+ ifp->if_start(ifp);
+}
+
+static void
+bwi_txeof_status64(struct bwi_softc *sc)
+{
+ /* TODO:64 */
+}
+
+static void
+_bwi_txeof(struct bwi_softc *sc, uint16_t tx_id, int acked, int data_txcnt)
+{
+ struct ifnet *ifp = sc->sc_ifp;
+ struct bwi_txbuf_data *tbd;
+ struct bwi_txbuf *tb;
+ int ring_idx, buf_idx;
+ struct ieee80211_node *ni;
+
+ if (tx_id == 0) {
+ if_printf(ifp, "%s: zero tx id\n", __func__);
+ return;
+ }
+
+ ring_idx = __SHIFTOUT(tx_id, BWI_TXH_ID_RING_MASK);
+ buf_idx = __SHIFTOUT(tx_id, BWI_TXH_ID_IDX_MASK);
+
+ KASSERT(ring_idx == BWI_TX_DATA_RING, ("ring_idx %d", ring_idx));
+ KASSERT(buf_idx < BWI_TX_NDESC, ("buf_idx %d", buf_idx));
+
+ tbd = &sc->sc_tx_bdata[ring_idx];
+ KASSERT(tbd->tbd_used > 0, ("tbd_used %d", tbd->tbd_used));
+ tbd->tbd_used--;
+
+ tb = &tbd->tbd_buf[buf_idx];
+ DPRINTF(sc, BWI_DBG_TXEOF, "txeof idx %d, "
+ "acked %d, data_txcnt %d, ni %p\n",
+ buf_idx, acked, data_txcnt, tb->tb_ni);
+
+ bus_dmamap_unload(sc->sc_buf_dtag, tb->tb_dmap);
+
+ ni = tb->tb_ni;
+ if (tb->tb_ni != NULL) {
+ struct bwi_node *bn = (struct bwi_node *) tb->tb_ni;
+ const struct bwi_txbuf_hdr *hdr =
+ mtod(tb->tb_mbuf, const struct bwi_txbuf_hdr *);
+
+ /* NB: update rate control only for unicast frames */
+ if (hdr->txh_mac_ctrl & htole32(BWI_TXH_MAC_C_ACK)) {
+ /*
+ * Feed back 'acked and data_txcnt'. Note that the
+ * generic AMRR code only understands one tx rate
+ * and the estimator doesn't handle real retry counts
+ * well so to avoid over-aggressive downshifting we
+ * treat any number of retries as "1".
+ */
+ ieee80211_amrr_tx_complete(&bn->amn, acked,
+ data_txcnt > 1);
+ }
+
+ /*
+ * Do any tx complete callback. Note this must
+ * be done before releasing the node reference.
+ */
+ if (tb->tb_mbuf->m_flags & M_TXCB)
+ ieee80211_process_callback(ni, tb->tb_mbuf, !acked);
+
+ ieee80211_free_node(tb->tb_ni);
+ tb->tb_ni = NULL;
+ }
+ m_freem(tb->tb_mbuf);
+ tb->tb_mbuf = NULL;
+
+ if (tbd->tbd_used == 0)
+ ifp->if_timer = 0;
+
+ ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
+}
+
+static void
+bwi_txeof_status(struct bwi_softc *sc, int end_idx)
+{
+ struct bwi_txstats_data *st = sc->sc_txstats;
+ int idx;
+
+ bus_dmamap_sync(st->stats_dtag, st->stats_dmap, BUS_DMASYNC_POSTREAD);
+
+ idx = st->stats_idx;
+ while (idx != end_idx) {
+ const struct bwi_txstats *stats = &st->stats[idx];
+
+ if ((stats->txs_flags & BWI_TXS_F_PENDING) == 0) {
+ int data_txcnt;
+
+ data_txcnt = __SHIFTOUT(stats->txs_txcnt,
+ BWI_TXS_TXCNT_DATA);
+ _bwi_txeof(sc, le16toh(stats->txs_id),
+ stats->txs_flags & BWI_TXS_F_ACKED,
+ data_txcnt);
+ }
+ idx = (idx + 1) % BWI_TXSTATS_NDESC;
+ }
+ st->stats_idx = idx;
+}
+
+static void
+bwi_txeof(struct bwi_softc *sc)
+{
+ struct ifnet *ifp = sc->sc_ifp;
+
+ for (;;) {
+ uint32_t tx_status0, tx_status1;
+ uint16_t tx_id;
+ int data_txcnt;
+
+ tx_status0 = CSR_READ_4(sc, BWI_TXSTATUS0);
+ if ((tx_status0 & BWI_TXSTATUS0_VALID) == 0)
+ break;
+ tx_status1 = CSR_READ_4(sc, BWI_TXSTATUS1);
+
+ tx_id = __SHIFTOUT(tx_status0, BWI_TXSTATUS0_TXID_MASK);
+ data_txcnt = __SHIFTOUT(tx_status0,
+ BWI_TXSTATUS0_DATA_TXCNT_MASK);
+
+ if (tx_status0 & (BWI_TXSTATUS0_AMPDU | BWI_TXSTATUS0_PENDING))
+ continue;
+
+ _bwi_txeof(sc, le16toh(tx_id), tx_status0 & BWI_TXSTATUS0_ACKED,
+ data_txcnt);
+ }
+
+ if ((ifp->if_drv_flags & IFF_DRV_OACTIVE) == 0)
+ ifp->if_start(ifp);
+}
+
+static int
+bwi_bbp_power_on(struct bwi_softc *sc, enum bwi_clock_mode clk_mode)
+{
+ bwi_power_on(sc, 1);
+ return bwi_set_clock_mode(sc, clk_mode);
+}
+
+static void
+bwi_bbp_power_off(struct bwi_softc *sc)
+{
+ bwi_set_clock_mode(sc, BWI_CLOCK_MODE_SLOW);
+ bwi_power_off(sc, 1);
+}
+
+static int
+bwi_get_pwron_delay(struct bwi_softc *sc)
+{
+ struct bwi_regwin *com, *old;
+ struct bwi_clock_freq freq;
+ uint32_t val;
+ int error;
+
+ com = &sc->sc_com_regwin;
+ KASSERT(BWI_REGWIN_EXIST(com), ("no regwin"));
+
+ if ((sc->sc_cap & BWI_CAP_CLKMODE) == 0)
+ return 0;
+
+ error = bwi_regwin_switch(sc, com, &old);
+ if (error)
+ return error;
+
+ bwi_get_clock_freq(sc, &freq);
+
+ val = CSR_READ_4(sc, BWI_PLL_ON_DELAY);
+ sc->sc_pwron_delay = howmany((val + 2) * 1000000, freq.clkfreq_min);
+ DPRINTF(sc, BWI_DBG_ATTACH, "power on delay %u\n", sc->sc_pwron_delay);
+
+ return bwi_regwin_switch(sc, old, NULL);
+}
+
+static int
+bwi_bus_attach(struct bwi_softc *sc)
+{
+ struct bwi_regwin *bus, *old;
+ int error;
+
+ bus = &sc->sc_bus_regwin;
+
+ error = bwi_regwin_switch(sc, bus, &old);
+ if (error)
+ return error;
+
+ if (!bwi_regwin_is_enabled(sc, bus))
+ bwi_regwin_enable(sc, bus, 0);
+
+ /* Disable interripts */
+ CSR_WRITE_4(sc, BWI_INTRVEC, 0);
+
+ return bwi_regwin_switch(sc, old, NULL);
+}
+
+static const char *
+bwi_regwin_name(const struct bwi_regwin *rw)
+{
+ switch (rw->rw_type) {
+ case BWI_REGWIN_T_COM:
+ return "COM";
+ case BWI_REGWIN_T_BUSPCI:
+ return "PCI";
+ case BWI_REGWIN_T_MAC:
+ return "MAC";
+ case BWI_REGWIN_T_BUSPCIE:
+ return "PCIE";
+ }
+ panic("unknown regwin type 0x%04x\n", rw->rw_type);
+ return NULL;
+}
+
+static uint32_t
+bwi_regwin_disable_bits(struct bwi_softc *sc)
+{
+ uint32_t busrev;
+
+ /* XXX cache this */
+ busrev = __SHIFTOUT(CSR_READ_4(sc, BWI_ID_LO), BWI_ID_LO_BUSREV_MASK);
+ DPRINTF(sc, BWI_DBG_ATTACH | BWI_DBG_INIT | BWI_DBG_MISC,
+ "bus rev %u\n", busrev);
+
+ if (busrev == BWI_BUSREV_0)
+ return BWI_STATE_LO_DISABLE1;
+ else if (busrev == BWI_BUSREV_1)
+ return BWI_STATE_LO_DISABLE2;
+ else
+ return (BWI_STATE_LO_DISABLE1 | BWI_STATE_LO_DISABLE2);
+}
+
+int
+bwi_regwin_is_enabled(struct bwi_softc *sc, struct bwi_regwin *rw)
+{
+ uint32_t val, disable_bits;
+
+ disable_bits = bwi_regwin_disable_bits(sc);
+ val = CSR_READ_4(sc, BWI_STATE_LO);
+
+ if ((val & (BWI_STATE_LO_CLOCK |
+ BWI_STATE_LO_RESET |
+ disable_bits)) == BWI_STATE_LO_CLOCK) {
+ DPRINTF(sc, BWI_DBG_ATTACH | BWI_DBG_INIT, "%s is enabled\n",
+ bwi_regwin_name(rw));
+ return 1;
+ } else {
+ DPRINTF(sc, BWI_DBG_ATTACH | BWI_DBG_INIT, "%s is disabled\n",
+ bwi_regwin_name(rw));
+ return 0;
+ }
+}
+
+void
+bwi_regwin_disable(struct bwi_softc *sc, struct bwi_regwin *rw, uint32_t flags)
+{
+ uint32_t state_lo, disable_bits;
+ int i;
+
+ state_lo = CSR_READ_4(sc, BWI_STATE_LO);
+
+ /*
+ * If current regwin is in 'reset' state, it was already disabled.
+ */
+ if (state_lo & BWI_STATE_LO_RESET) {
+ DPRINTF(sc, BWI_DBG_ATTACH | BWI_DBG_INIT,
+ "%s was already disabled\n", bwi_regwin_name(rw));
+ return;
+ }
+
+ disable_bits = bwi_regwin_disable_bits(sc);
+
+ /*
+ * Disable normal clock
+ */
+ state_lo = BWI_STATE_LO_CLOCK | disable_bits;
+ CSR_WRITE_4(sc, BWI_STATE_LO, state_lo);
+
+ /*
+ * Wait until normal clock is disabled
+ */
+#define NRETRY 1000
+ for (i = 0; i < NRETRY; ++i) {
+ state_lo = CSR_READ_4(sc, BWI_STATE_LO);
+ if (state_lo & disable_bits)
+ break;
+ DELAY(10);
+ }
+ if (i == NRETRY) {
+ device_printf(sc->sc_dev, "%s disable clock timeout\n",
+ bwi_regwin_name(rw));
+ }
+
+ for (i = 0; i < NRETRY; ++i) {
+ uint32_t state_hi;
+
+ state_hi = CSR_READ_4(sc, BWI_STATE_HI);
+ if ((state_hi & BWI_STATE_HI_BUSY) == 0)
+ break;
+ DELAY(10);
+ }
+ if (i == NRETRY) {
+ device_printf(sc->sc_dev, "%s wait BUSY unset timeout\n",
+ bwi_regwin_name(rw));
+ }
+#undef NRETRY
+
+ /*
+ * Reset and disable regwin with gated clock
+ */
+ state_lo = BWI_STATE_LO_RESET | disable_bits |
+ BWI_STATE_LO_CLOCK | BWI_STATE_LO_GATED_CLOCK |
+ __SHIFTIN(flags, BWI_STATE_LO_FLAGS_MASK);
+ CSR_WRITE_4(sc, BWI_STATE_LO, state_lo);
+
+ /* Flush pending bus write */
+ CSR_READ_4(sc, BWI_STATE_LO);
+ DELAY(1);
+
+ /* Reset and disable regwin */
+ state_lo = BWI_STATE_LO_RESET | disable_bits |
+ __SHIFTIN(flags, BWI_STATE_LO_FLAGS_MASK);
+ CSR_WRITE_4(sc, BWI_STATE_LO, state_lo);
+
+ /* Flush pending bus write */
+ CSR_READ_4(sc, BWI_STATE_LO);
+ DELAY(1);
+}
+
+void
+bwi_regwin_enable(struct bwi_softc *sc, struct bwi_regwin *rw, uint32_t flags)
+{
+ uint32_t state_lo, state_hi, imstate;
+
+ bwi_regwin_disable(sc, rw, flags);
+
+ /* Reset regwin with gated clock */
+ state_lo = BWI_STATE_LO_RESET |
+ BWI_STATE_LO_CLOCK |
+ BWI_STATE_LO_GATED_CLOCK |
+ __SHIFTIN(flags, BWI_STATE_LO_FLAGS_MASK);
+ CSR_WRITE_4(sc, BWI_STATE_LO, state_lo);
+
+ /* Flush pending bus write */
+ CSR_READ_4(sc, BWI_STATE_LO);
+ DELAY(1);
+
+ state_hi = CSR_READ_4(sc, BWI_STATE_HI);
+ if (state_hi & BWI_STATE_HI_SERROR)
+ CSR_WRITE_4(sc, BWI_STATE_HI, 0);
+
+ imstate = CSR_READ_4(sc, BWI_IMSTATE);
+ if (imstate & (BWI_IMSTATE_INBAND_ERR | BWI_IMSTATE_TIMEOUT)) {
+ imstate &= ~(BWI_IMSTATE_INBAND_ERR | BWI_IMSTATE_TIMEOUT);
+ CSR_WRITE_4(sc, BWI_IMSTATE, imstate);
+ }
+
+ /* Enable regwin with gated clock */
+ state_lo = BWI_STATE_LO_CLOCK |
+ BWI_STATE_LO_GATED_CLOCK |
+ __SHIFTIN(flags, BWI_STATE_LO_FLAGS_MASK);
+ CSR_WRITE_4(sc, BWI_STATE_LO, state_lo);
+
+ /* Flush pending bus write */
+ CSR_READ_4(sc, BWI_STATE_LO);
+ DELAY(1);
+
+ /* Enable regwin with normal clock */
+ state_lo = BWI_STATE_LO_CLOCK |
+ __SHIFTIN(flags, BWI_STATE_LO_FLAGS_MASK);
+ CSR_WRITE_4(sc, BWI_STATE_LO, state_lo);
+
+ /* Flush pending bus write */
+ CSR_READ_4(sc, BWI_STATE_LO);
+ DELAY(1);
+}
+
+static void
+bwi_set_bssid(struct bwi_softc *sc, const uint8_t *bssid)
+{
+ struct ifnet *ifp = sc->sc_ifp;
+ struct bwi_mac *mac;
+ struct bwi_myaddr_bssid buf;
+ const uint8_t *p;
+ uint32_t val;
+ int n, i;
+
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ bwi_set_addr_filter(sc, BWI_ADDR_FILTER_BSSID, bssid);
+
+ bcopy(IF_LLADDR(ifp), buf.myaddr, sizeof(buf.myaddr));
+ bcopy(bssid, buf.bssid, sizeof(buf.bssid));
+
+ n = sizeof(buf) / sizeof(val);
+ p = (const uint8_t *)&buf;
+ for (i = 0; i < n; ++i) {
+ int j;
+
+ val = 0;
+ for (j = 0; j < sizeof(val); ++j)
+ val |= ((uint32_t)(*p++)) << (j * 8);
+
+ TMPLT_WRITE_4(mac, 0x20 + (i * sizeof(val)), val);
+ }
+}
+
+static void
+bwi_updateslot(struct ifnet *ifp)
+{
+ struct bwi_softc *sc = ifp->if_softc;
+ struct ieee80211com *ic = ifp->if_l2com;
+ struct bwi_mac *mac;
+
+ BWI_LOCK(sc);
+ if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
+ DPRINTF(sc, BWI_DBG_80211, "%s\n", __func__);
+
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ bwi_mac_updateslot(mac, (ic->ic_flags & IEEE80211_F_SHSLOT));
+ }
+ BWI_UNLOCK(sc);
+}
+
+static void
+bwi_calibrate(void *xsc)
+{
+ struct bwi_softc *sc = xsc;
+#ifdef INVARIANTS
+ struct ifnet *ifp = sc->sc_ifp;
+ struct ieee80211com *ic = ifp->if_l2com;
+#endif
+ struct bwi_mac *mac;
+
+ BWI_ASSERT_LOCKED(sc);
+
+ KASSERT(ic->ic_opmode != IEEE80211_M_MONITOR,
+ ("opmode %d", ic->ic_opmode));
+
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ bwi_mac_calibrate_txpower(mac, sc->sc_txpwrcb_type);
+ sc->sc_txpwrcb_type = BWI_TXPWR_CALIB;
+
+ /* XXX 15 seconds */
+ callout_reset(&sc->sc_calib_ch, hz * 15, bwi_calibrate, sc);
+}
+
+static int
+bwi_calc_rssi(struct bwi_softc *sc, const struct bwi_rxbuf_hdr *hdr)
+{
+ struct bwi_mac *mac;
+
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ return bwi_rf_calc_rssi(mac, hdr);
+}
+
+static int
+bwi_calc_noise(struct bwi_softc *sc)
+{
+ struct bwi_mac *mac;
+
+ KASSERT(sc->sc_cur_regwin->rw_type == BWI_REGWIN_T_MAC,
+ ("current regwin type %d", sc->sc_cur_regwin->rw_type));
+ mac = (struct bwi_mac *)sc->sc_cur_regwin;
+
+ return bwi_rf_calc_noise(mac);
+}
+
+static __inline uint8_t
+bwi_ofdm_plcp2rate(const uint32_t *plcp0)
+{
+ uint32_t plcp;
+ uint8_t plcp_rate;
+
+ plcp = le32toh(*plcp0);
+ plcp_rate = __SHIFTOUT(plcp, IEEE80211_OFDM_PLCP_RATE_MASK);
+ return ieee80211_plcp2rate(plcp_rate, IEEE80211_T_OFDM);
+}
+
+static __inline uint8_t
+bwi_ds_plcp2rate(const struct ieee80211_ds_plcp_hdr *hdr)
+{
+ return ieee80211_plcp2rate(hdr->i_signal, IEEE80211_T_DS);
+}
+
+static void
+bwi_rx_radiotap(struct ifnet *ifp, struct mbuf *m,
+ struct bwi_rxbuf_hdr *hdr, const void *plcp, int rate, int rssi, int noise)
+{
+ struct bwi_softc *sc = ifp->if_softc;
+ const struct ieee80211_frame_min *wh;
+
+ sc->sc_rx_th.wr_flags = IEEE80211_RADIOTAP_F_FCS;
+ if (htole16(hdr->rxh_flags1) & BWI_RXH_F1_SHPREAMBLE)
+ sc->sc_rx_th.wr_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
+
+ wh = mtod(m, const struct ieee80211_frame_min *);
+ if (wh->i_fc[1] & IEEE80211_FC1_WEP)
+ sc->sc_rx_th.wr_flags |= IEEE80211_RADIOTAP_F_WEP;
+
+ sc->sc_rx_th.wr_tsf = hdr->rxh_tsf; /* No endian convertion */
+ sc->sc_rx_th.wr_rate = rate;
+ sc->sc_rx_th.wr_antsignal = rssi;
+ sc->sc_rx_th.wr_antnoise = noise;
+
+ bpf_mtap2(ifp->if_bpf, &sc->sc_rx_th, sc->sc_rx_th_len, m);
+}
+
+static void
+bwi_led_attach(struct bwi_softc *sc)
+{
+ const uint8_t *led_act = NULL;
+ uint16_t gpio, val[BWI_LED_MAX];
+ int i;
+
+#define N(arr) (int)(sizeof(arr) / sizeof(arr[0]))
+
+ for (i = 0; i < N(bwi_vendor_led_act); ++i) {
+ if (sc->sc_pci_subvid == bwi_vendor_led_act[i].vid) {
+ led_act = bwi_vendor_led_act[i].led_act;
+ break;
+ }
+ }
+ if (led_act == NULL)
+ led_act = bwi_default_led_act;
+
+#undef N
+
+ gpio = bwi_read_sprom(sc, BWI_SPROM_GPIO01);
+ val[0] = __SHIFTOUT(gpio, BWI_SPROM_GPIO_0);
+ val[1] = __SHIFTOUT(gpio, BWI_SPROM_GPIO_1);
+
+ gpio = bwi_read_sprom(sc, BWI_SPROM_GPIO23);
+ val[2] = __SHIFTOUT(gpio, BWI_SPROM_GPIO_2);
+ val[3] = __SHIFTOUT(gpio, BWI_SPROM_GPIO_3);
+
+ for (i = 0; i < BWI_LED_MAX; ++i) {
+ struct bwi_led *led = &sc->sc_leds[i];
+
+ if (val[i] == 0xff) {
+ led->l_act = led_act[i];
+ } else {
+ if (val[i] & BWI_LED_ACT_LOW)
+ led->l_flags |= BWI_LED_F_ACTLOW;
+ led->l_act = __SHIFTOUT(val[i], BWI_LED_ACT_MASK);
+ }
+ led->l_mask = (1 << i);
+
+ if (led->l_act == BWI_LED_ACT_BLINK_SLOW ||
+ led->l_act == BWI_LED_ACT_BLINK_POLL ||
+ led->l_act == BWI_LED_ACT_BLINK) {
+ led->l_flags |= BWI_LED_F_BLINK;
+ if (led->l_act == BWI_LED_ACT_BLINK_POLL)
+ led->l_flags |= BWI_LED_F_POLLABLE;
+ else if (led->l_act == BWI_LED_ACT_BLINK_SLOW)
+ led->l_flags |= BWI_LED_F_SLOW;
+
+ if (sc->sc_blink_led == NULL) {
+ sc->sc_blink_led = led;
+ if (led->l_flags & BWI_LED_F_SLOW)
+ BWI_LED_SLOWDOWN(sc->sc_led_idle);
+ }
+ }
+
+ DPRINTF(sc, BWI_DBG_LED | BWI_DBG_ATTACH,
+ "%dth led, act %d, lowact %d\n", i,
+ led->l_act, led->l_flags & BWI_LED_F_ACTLOW);
+ }
+ callout_init(&sc->sc_led_blink_ch, CALLOUT_MPSAFE);
+}
+
+static __inline uint16_t
+bwi_led_onoff(const struct bwi_led *led, uint16_t val, int on)
+{
+ if (led->l_flags & BWI_LED_F_ACTLOW)
+ on = !on;
+ if (on)
+ val |= led->l_mask;
+ else
+ val &= ~led->l_mask;
+ return val;
+}
+
+static void
+bwi_led_newstate(struct bwi_softc *sc, enum ieee80211_state nstate)
+{
+ struct ifnet *ifp = sc->sc_ifp;
+ struct ieee80211com *ic = ifp->if_l2com;
+ uint16_t val;
+ int i;
+
+ if (nstate == IEEE80211_S_INIT) {
+ callout_stop(&sc->sc_led_blink_ch);
+ sc->sc_led_blinking = 0;
+ }
+
+ if ((ic->ic_ifp->if_drv_flags & IFF_DRV_RUNNING) == 0)
+ return;
+
+ val = CSR_READ_2(sc, BWI_MAC_GPIO_CTRL);
+ for (i = 0; i < BWI_LED_MAX; ++i) {
+ struct bwi_led *led = &sc->sc_leds[i];
+ int on;
+
+ if (led->l_act == BWI_LED_ACT_UNKN ||
+ led->l_act == BWI_LED_ACT_NULL)
+ continue;
+
+ if ((led->l_flags & BWI_LED_F_BLINK) &&
+ nstate != IEEE80211_S_INIT)
+ continue;
+
+ switch (led->l_act) {
+ case BWI_LED_ACT_ON: /* Always on */
+ on = 1;
+ break;
+ case BWI_LED_ACT_OFF: /* Always off */
+ case BWI_LED_ACT_5GHZ: /* TODO: 11A */
+ on = 0;
+ break;
+ default:
+ on = 1;
+ switch (nstate) {
+ case IEEE80211_S_INIT:
+ on = 0;
+ break;
+ case IEEE80211_S_RUN:
+ if (led->l_act == BWI_LED_ACT_11G &&
+ ic->ic_curmode != IEEE80211_MODE_11G)
+ on = 0;
+ break;
+ default:
+ if (led->l_act == BWI_LED_ACT_ASSOC)
+ on = 0;
+ break;
+ }
+ break;
+ }
+
+ val = bwi_led_onoff(led, val, on);
+ }
+ CSR_WRITE_2(sc, BWI_MAC_GPIO_CTRL, val);
+}
+static void
+bwi_led_event(struct bwi_softc *sc, int event)
+{
+ struct bwi_led *led = sc->sc_blink_led;
+ int rate;
+
+ if (event == BWI_LED_EVENT_POLL) {
+ if ((led->l_flags & BWI_LED_F_POLLABLE) == 0)
+ return;
+ if (ticks - sc->sc_led_ticks < sc->sc_led_idle)
+ return;
+ }
+
+ sc->sc_led_ticks = ticks;
+ if (sc->sc_led_blinking)
+ return;
+
+ switch (event) {
+ case BWI_LED_EVENT_RX:
+ rate = sc->sc_rx_rate;
+ break;
+ case BWI_LED_EVENT_TX:
+ rate = sc->sc_tx_rate;
+ break;
+ case BWI_LED_EVENT_POLL:
+ rate = 0;
+ break;
+ default:
+ panic("unknown LED event %d\n", event);
+ break;
+ }
+ bwi_led_blink_start(sc, bwi_led_duration[rate].on_dur,
+ bwi_led_duration[rate].off_dur);
+}
+
+static void
+bwi_led_blink_start(struct bwi_softc *sc, int on_dur, int off_dur)
+{
+ struct bwi_led *led = sc->sc_blink_led;
+ uint16_t val;
+
+ val = CSR_READ_2(sc, BWI_MAC_GPIO_CTRL);
+ val = bwi_led_onoff(led, val, 1);
+ CSR_WRITE_2(sc, BWI_MAC_GPIO_CTRL, val);
+
+ if (led->l_flags & BWI_LED_F_SLOW) {
+ BWI_LED_SLOWDOWN(on_dur);
+ BWI_LED_SLOWDOWN(off_dur);
+ }
+
+ sc->sc_led_blinking = 1;
+ sc->sc_led_blink_offdur = off_dur;
+
+ callout_reset(&sc->sc_led_blink_ch, on_dur, bwi_led_blink_next, sc);
+}
+
+static void
+bwi_led_blink_next(void *xsc)
+{
+ struct bwi_softc *sc = xsc;
+ uint16_t val;
+
+ val = CSR_READ_2(sc, BWI_MAC_GPIO_CTRL);
+ val = bwi_led_onoff(sc->sc_blink_led, val, 0);
+ CSR_WRITE_2(sc, BWI_MAC_GPIO_CTRL, val);
+
+ callout_reset(&sc->sc_led_blink_ch, sc->sc_led_blink_offdur,
+ bwi_led_blink_end, sc);
+}
+
+static void
+bwi_led_blink_end(void *xsc)
+{
+ struct bwi_softc *sc = xsc;
+ sc->sc_led_blinking = 0;
+}
+
+static void
+bwi_restart(void *xsc, int pending)
+{
+ struct bwi_softc *sc = xsc;
+ struct ifnet *ifp = sc->sc_ifp;
+
+ if_printf(ifp, "%s begin, help!\n", __func__);
+ BWI_LOCK(sc);
+ bwi_init_statechg(xsc, 0);
+ BWI_UNLOCK(sc);
+#if 0
+ bwi_start_locked(ifp);
+#endif
+}
diff --git a/sys/dev/bwi/if_bwi_pci.c b/sys/dev/bwi/if_bwi_pci.c
new file mode 100644
index 0000000..20696f7
--- /dev/null
+++ b/sys/dev/bwi/if_bwi_pci.c
@@ -0,0 +1,253 @@
+/*-
+ * Copyright (c) 2002-2007 Sam Leffler, Errno Consulting
+ * 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,
+ * without modification.
+ * 2. Redistributions in binary form must reproduce at minimum a disclaimer
+ * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
+ * redistribution must be conditioned upon including a substantially
+ * similar Disclaimer requirement for further binary redistribution.
+ *
+ * NO WARRANTY
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
+ * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
+ * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES.
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+/*
+ * PCI/Cardbus front-end for the Broadcom Wireless LAN controller driver.
+ */
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/module.h>
+#include <sys/kernel.h>
+#include <sys/lock.h>
+#include <sys/mutex.h>
+#include <sys/errno.h>
+
+#include <machine/bus.h>
+#include <machine/resource.h>
+#include <sys/bus.h>
+#include <sys/rman.h>
+
+#include <sys/socket.h>
+
+#include <net/if.h>
+#include <net/if_media.h>
+#include <net/if_arp.h>
+
+#include <net80211/ieee80211_var.h>
+#include <net80211/ieee80211_radiotap.h>
+#include <net80211/ieee80211_amrr.h>
+
+#include <dev/pci/pcivar.h>
+#include <dev/pci/pcireg.h>
+
+#include <dev/bwi/if_bwivar.h>
+#include <dev/bwi/if_bwireg.h>
+#include <dev/bwi/bitops.h>
+
+/*
+ * PCI glue.
+ */
+
+struct bwi_pci_softc {
+ struct bwi_softc sc_sc;
+};
+
+#define BS_BAR 0x10
+#define PCIR_RETRY_TIMEOUT 0x41
+
+static const struct bwi_dev {
+ uint16_t vid;
+ uint16_t did;
+ const char *desc;
+} bwi_devices[] = {
+ { PCI_VENDOR_BROADCOM, 0x4301,"Broadcom BCM4301 802.11 Wireless Lan" },
+ { PCI_VENDOR_BROADCOM, 0x4307,"Broadcom BCM4307 802.11 Wireless Lan" },
+ { PCI_VENDOR_BROADCOM, 0x4311,"Broadcom BCM4311 802.11 Wireless Lan" },
+ { PCI_VENDOR_BROADCOM, 0x4312,"Broadcom BCM4312 802.11 Wireless Lan" },
+ { PCI_VENDOR_BROADCOM, 0x4320,"Broadcom BCM4306v1 802.11 Wireless Lan"},
+ { PCI_VENDOR_BROADCOM, 0x4321,"Broadcom BCM4306v2 802.11 Wireless Lan"},
+ { PCI_VENDOR_BROADCOM, 0x4325,"Broadcom BCM4306v3 802.11 Wireless Lan"},
+ { PCI_VENDOR_BROADCOM, 0x4324,"Broadcom BCM4309 802.11 Wireless Lan" },
+ { PCI_VENDOR_BROADCOM, 0x4318,"Broadcom BCM4318 802.11 Wireless Lan" },
+ { PCI_VENDOR_BROADCOM, 0x4319,"Broadcom BCM4319 802.11 Wireless Lan" }
+};
+
+static int
+bwi_pci_probe(device_t dev)
+{
+ const struct bwi_dev *b;
+ uint16_t did, vid;
+
+ did = pci_get_device(dev);
+ vid = pci_get_vendor(dev);
+
+ for (b = bwi_devices; b->desc != NULL; ++b) {
+ if (b->did == did && b->vid == vid) {
+ device_set_desc(dev, b->desc);
+ return BUS_PROBE_DEFAULT;
+ }
+ }
+ return ENXIO;
+}
+
+static int
+bwi_pci_attach(device_t dev)
+{
+ struct bwi_pci_softc *psc = device_get_softc(dev);
+ struct bwi_softc *sc = &psc->sc_sc;
+ int error = ENXIO;
+
+ sc->sc_dev = dev;
+
+ /*
+ * Enable bus mastering.
+ */
+ pci_enable_busmaster(dev);
+
+ /*
+ * Setup memory-mapping of PCI registers.
+ */
+ sc->sc_mem_rid = BWI_PCIR_BAR;
+ sc->sc_mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
+ &sc->sc_mem_rid, RF_ACTIVE);
+ if (sc->sc_mem_res == NULL) {
+ device_printf(dev, "cannot map register space\n");
+ goto bad;
+ }
+ sc->sc_mem_bt = rman_get_bustag(sc->sc_mem_res);
+ sc->sc_mem_bh = rman_get_bushandle(sc->sc_mem_res);
+ /*
+ * Mark device invalid so any interrupts (shared or otherwise)
+ * that arrive before the card is setup are discarded.
+ */
+ sc->sc_invalid = 1;
+
+ /*
+ * Arrange interrupt line.
+ */
+ sc->sc_irq_rid = 0;
+ sc->sc_irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ,
+ &sc->sc_irq_rid,
+ RF_SHAREABLE|RF_ACTIVE);
+ if (sc->sc_irq_res == NULL) {
+ device_printf(dev, "could not map interrupt\n");
+ goto bad1;
+ }
+ if (bus_setup_intr(dev, sc->sc_irq_res,
+ INTR_TYPE_NET | INTR_MPSAFE,
+ NULL, bwi_intr, sc, &sc->sc_irq_handle)) {
+ device_printf(dev, "could not establish interrupt\n");
+ goto bad2;
+ }
+
+ /* Get more PCI information */
+ sc->sc_pci_did = pci_get_device(dev);
+ sc->sc_pci_revid = pci_get_revid(dev);
+ sc->sc_pci_subvid = pci_get_subvendor(dev);
+ sc->sc_pci_subdid = pci_get_subdevice(dev);
+
+ error = bwi_attach(sc);
+ if (error == 0) /* success */
+ return 0;
+
+ bus_teardown_intr(dev, sc->sc_irq_res, sc->sc_irq_handle);
+bad2:
+ bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_irq_res);
+bad1:
+ bus_release_resource(dev, SYS_RES_MEMORY, BS_BAR, sc->sc_mem_res);
+bad:
+ return (error);
+}
+
+static int
+bwi_pci_detach(device_t dev)
+{
+ struct bwi_pci_softc *psc = device_get_softc(dev);
+ struct bwi_softc *sc = &psc->sc_sc;
+
+ /* check if device was removed */
+ sc->sc_invalid = !bus_child_present(dev);
+
+ bwi_detach(sc);
+
+ bus_generic_detach(dev);
+ bus_teardown_intr(dev, sc->sc_irq_res, sc->sc_irq_handle);
+ bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_irq_res);
+
+ bus_release_resource(dev, SYS_RES_MEMORY, BS_BAR, sc->sc_mem_res);
+
+ return (0);
+}
+
+static int
+bwi_pci_shutdown(device_t dev)
+{
+ struct bwi_pci_softc *psc = device_get_softc(dev);
+
+ bwi_shutdown(&psc->sc_sc);
+ return (0);
+}
+
+static int
+bwi_pci_suspend(device_t dev)
+{
+ struct bwi_pci_softc *psc = device_get_softc(dev);
+
+ bwi_suspend(&psc->sc_sc);
+
+ return (0);
+}
+
+static int
+bwi_pci_resume(device_t dev)
+{
+ struct bwi_pci_softc *psc = device_get_softc(dev);
+
+ bwi_resume(&psc->sc_sc);
+
+ return (0);
+}
+
+static device_method_t bwi_pci_methods[] = {
+ /* Device interface */
+ DEVMETHOD(device_probe, bwi_pci_probe),
+ DEVMETHOD(device_attach, bwi_pci_attach),
+ DEVMETHOD(device_detach, bwi_pci_detach),
+ DEVMETHOD(device_shutdown, bwi_pci_shutdown),
+ DEVMETHOD(device_suspend, bwi_pci_suspend),
+ DEVMETHOD(device_resume, bwi_pci_resume),
+
+ { 0,0 }
+};
+static driver_t bwi_driver = {
+ "bwi",
+ bwi_pci_methods,
+ sizeof (struct bwi_pci_softc)
+};
+static devclass_t bwi_devclass;
+DRIVER_MODULE(if_bwi, pci, bwi_driver, bwi_devclass, 0, 0);
+DRIVER_MODULE(bwi, cardbus, bwi_driver, bwi_devclass, 0, 0);
+MODULE_VERSION(if_bwi, 1);
+MODULE_DEPEND(if_bwi, wlan, 1, 1, 1); /* 802.11 media layer */
+MODULE_DEPEND(if_bwi, firmware, 1, 1, 1); /* firmware support */
+MODULE_DEPEND(if_bwi, wlan_amrr, 1, 1, 1);
diff --git a/sys/dev/bwi/if_bwireg.h b/sys/dev/bwi/if_bwireg.h
new file mode 100644
index 0000000..840067a
--- /dev/null
+++ b/sys/dev/bwi/if_bwireg.h
@@ -0,0 +1,496 @@
+/*
+ * Copyright (c) 2007 The DragonFly Project. All rights reserved.
+ *
+ * This code is derived from software contributed to The DragonFly Project
+ * by Sepherosa Ziehau <sepherosa@gmail.com>
+ *
+ * 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. Neither the name of The DragonFly Project nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific, prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
+ * COPYRIGHT HOLDERS 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.
+ *
+ * $DragonFly: src/sys/dev/netif/bwi/if_bwireg.h,v 1.4 2007/10/19 14:27:04 sephe Exp $
+ * $FreeBSD$
+ */
+
+#ifndef _IF_BWIREG_H
+#define _IF_BWIREG_H
+
+/*
+ * Registers for all of the register windows
+ */
+#define BWI_FLAGS 0xf18
+#define BWI_FLAGS_INTR_MASK __BITS(5, 0)
+
+#define BWI_IMSTATE 0xf90
+#define BWI_IMSTATE_INBAND_ERR __BIT(17)
+#define BWI_IMSTATE_TIMEOUT __BIT(18)
+
+#define BWI_INTRVEC 0xf94
+
+#define BWI_STATE_LO 0xf98
+#define BWI_STATE_LO_RESET __BIT(0)
+#define BWI_STATE_LO_DISABLE1 __BIT(1)
+#define BWI_STATE_LO_DISABLE2 __BIT(2)
+#define BWI_STATE_LO_CLOCK __BIT(16)
+#define BWI_STATE_LO_GATED_CLOCK __BIT(17)
+#define BWI_STATE_LO_FLAG_PHYCLKEN __BIT(0)
+#define BWI_STATE_LO_FLAG_PHYRST __BIT(1)
+#define BWI_STATE_LO_FLAG_PHYLNK __BIT(11)
+#define BWI_STATE_LO_FLAGS_MASK __BITS(29, 18)
+
+#define BWI_STATE_HI 0xf9c
+#define BWI_STATE_HI_SERROR __BIT(0)
+#define BWI_STATE_HI_BUSY __BIT(2)
+#define BWI_STATE_HI_FLAG_MAGIC1 0x1
+#define BWI_STATE_HI_FLAG_MAGIC2 0x2
+#define BWI_STATE_HI_FLAG_64BIT 0x1000
+#define BWI_STATE_HI_FLAGS_MASK __BITS(28, 16)
+
+#define BWI_CONF_LO 0xfa8
+#define BWI_CONF_LO_SERVTO_MASK __BITS(2, 0) /* service timeout */
+#define BWI_CONF_LO_SERVTO 2
+#define BWI_CONF_LO_REQTO_MASK __BITS(6, 4) /* request timeout */
+#define BWI_CONF_LO_REQTO 3
+
+
+#define BWI_ID_LO 0xff8
+#define BWI_ID_LO_BUSREV_MASK __BITS(31, 28)
+/* Bus revision */
+#define BWI_BUSREV_0 0
+#define BWI_BUSREV_1 1
+
+#define BWI_ID_HI 0xffc
+#define BWI_ID_HI_REGWIN_REV(v) (((v) & 0xf) | (((v) & 0x7000) >> 8))
+#define BWI_ID_HI_REGWIN_TYPE(v) (((v) & 0x8ff0) >> 4)
+#define BWI_ID_HI_REGWIN_VENDOR_MASK __BITS(31, 16)
+
+/*
+ * Registers for common register window
+ */
+#define BWI_INFO 0x0
+#define BWI_INFO_BBPID_MASK __BITS(15, 0)
+#define BWI_INFO_BBPREV_MASK __BITS(19, 16)
+#define BWI_INFO_BBPPKG_MASK __BITS(23, 20)
+#define BWI_INFO_NREGWIN_MASK __BITS(27, 24)
+
+#define BWI_CAPABILITY 0x4
+#define BWI_CAP_CLKMODE __BIT(18)
+
+#define BWI_CONTROL 0x28
+#define BWI_CONTROL_MAGIC0 0x3a4
+#define BWI_CONTROL_MAGIC1 0xa4
+#define BWI_PLL_ON_DELAY 0xb0
+#define BWI_FREQ_SEL_DELAY 0xb4
+
+#define BWI_CLOCK_CTRL 0xb8
+#define BWI_CLOCK_CTRL_CLKSRC __BITS(2, 0)
+#define BWI_CLOCK_CTRL_SLOW __BIT(11)
+#define BWI_CLOCK_CTRL_IGNPLL __BIT(12)
+#define BWI_CLOCK_CTRL_NODYN __BIT(13)
+#define BWI_CLOCK_CTRL_FDIV __BITS(31, 16) /* freq divisor */
+
+/* Possible values for BWI_CLOCK_CTRL_CLKSRC */
+#define BWI_CLKSRC_LP_OSC 0 /* Low power oscillator */
+#define BWI_CLKSRC_CS_OSC 1 /* Crystal oscillator */
+#define BWI_CLKSRC_PCI 2
+#define BWI_CLKSRC_MAX 3 /* Maximum of clock source */
+/* Min/Max frequency for given clock source */
+#define BWI_CLKSRC_LP_OSC_FMIN 25000
+#define BWI_CLKSRC_LP_OSC_FMAX 43000
+#define BWI_CLKSRC_CS_OSC_FMIN 19800000
+#define BWI_CLKSRC_CS_OSC_FMAX 20200000
+#define BWI_CLKSRC_PCI_FMIN 25000000
+#define BWI_CLKSRC_PCI_FMAX 34000000
+
+#define BWI_CLOCK_INFO 0xc0
+#define BWI_CLOCK_INFO_FDIV __BITS(31, 16) /* freq divisor */
+
+/*
+ * Registers for bus register window
+ */
+#define BWI_BUS_ADDR 0x50
+#define BWI_BUS_ADDR_MAGIC 0xfd8
+
+#define BWI_BUS_DATA 0x54
+
+#define BWI_BUS_CONFIG 0x108
+#define BWI_BUS_CONFIG_PREFETCH __BIT(2)
+#define BWI_BUS_CONFIG_BURST __BIT(3)
+#define BWI_BUS_CONFIG_MRM __BIT(5)
+
+/*
+ * Register for MAC
+ */
+#define BWI_TXRX_INTR_STATUS_BASE 0x20
+#define BWI_TXRX_INTR_MASK_BASE 0x24
+#define BWI_TXRX_INTR_STATUS(i) (BWI_TXRX_INTR_STATUS_BASE + ((i) * 8))
+#define BWI_TXRX_INTR_MASK(i) (BWI_TXRX_INTR_MASK_BASE + ((i) * 8))
+
+#define BWI_MAC_STATUS 0x120
+#define BWI_MAC_STATUS_ENABLE __BIT(0)
+#define BWI_MAC_STATUS_UCODE_START __BIT(1)
+#define BWI_MAC_STATUS_UCODE_JUMP0 __BIT(2)
+#define BWI_MAC_STATUS_IHREN __BIT(10)
+#define BWI_MAC_STATUS_GPOSEL_MASK __BITS(15, 14)
+#define BWI_MAC_STATUS_BSWAP __BIT(16)
+#define BWI_MAC_STATUS_INFRA __BIT(17)
+#define BWI_MAC_STATUS_OPMODE_HOSTAP __BIT(18)
+#define BWI_MAC_STATUS_RFLOCK __BIT(19)
+#define BWI_MAC_STATUS_PASS_BCN __BIT(20)
+#define BWI_MAC_STATUS_PASS_BADPLCP __BIT(21)
+#define BWI_MAC_STATUS_PASS_CTL __BIT(22)
+#define BWI_MAC_STATUS_PASS_BADFCS __BIT(23)
+#define BWI_MAC_STATUS_PROMISC __BIT(24)
+#define BWI_MAC_STATUS_HW_PS __BIT(25)
+#define BWI_MAC_STATUS_WAKEUP __BIT(26)
+#define BWI_MAC_STATUS_PHYLNK __BIT(31)
+
+#define BWI_MAC_INTR_STATUS 0x128
+#define BWI_MAC_INTR_MASK 0x12c
+
+#define BWI_MAC_TMPLT_CTRL 0x130
+#define BWI_MAC_TMPLT_DATA 0x134
+
+#define BWI_MAC_PS_STATUS 0x140
+
+#define BWI_MOBJ_CTRL 0x160
+#define BWI_MOBJ_CTRL_VAL(objid, ofs) ((objid) << 16 | (ofs))
+#define BWI_MOBJ_DATA 0x164
+#define BWI_MOBJ_DATA_UNALIGN 0x166
+/*
+ * Memory object IDs
+ */
+#define BWI_WR_MOBJ_AUTOINC 0x100 /* Auto-increment wr */
+#define BWI_RD_MOBJ_AUTOINC 0x200 /* Auto-increment rd */
+/* Firmware ucode object */
+#define BWI_FW_UCODE_MOBJ 0x0
+/* Common object */
+#define BWI_COMM_MOBJ 0x1
+#define BWI_COMM_MOBJ_FWREV 0x0
+#define BWI_COMM_MOBJ_FWPATCHLV 0x2
+#define BWI_COMM_MOBJ_SLOTTIME 0x10
+#define BWI_COMM_MOBJ_MACREV 0x16
+#define BWI_COMM_MOBJ_TX_ACK 0x22
+#define BWI_COMM_MOBJ_UCODE_STATE 0x40
+#define BWI_COMM_MOBJ_SHRETRY_FB 0x44
+#define BWI_COMM_MOBJ_LGRETEY_FB 0x46
+#define BWI_COMM_MOBJ_TX_BEACON 0x54
+#define BWI_COMM_MOBJ_KEYTABLE_OFS 0x56
+#define BWI_COMM_MOBJ_TSSI_DS 0x58
+#define BWI_COMM_MOBJ_HFLAGS_LO 0x5e
+#define BWI_COMM_MOBJ_HFLAGS_MI 0x60
+#define BWI_COMM_MOBJ_HFLAGS_HI 0x62
+#define BWI_COMM_MOBJ_RF_ATTEN 0x64
+#define BWI_COMM_MOBJ_RF_NOISE 0x6e
+#define BWI_COMM_MOBJ_TSSI_OFDM 0x70
+#define BWI_COMM_MOBJ_PROBE_RESP_TO 0x74
+#define BWI_COMM_MOBJ_CHAN 0xa0
+#define BWI_COMM_MOBJ_KEY_ALGO 0x100
+#define BWI_COMM_MOBJ_TX_PROBE_RESP 0x188
+#define BWI_HFLAG_AUTO_ANTDIV 0x1ULL
+#define BWI_HFLAG_SYM_WA 0x2ULL /* ??? SYM work around */
+#define BWI_HFLAG_PWR_BOOST_DS 0x8ULL
+#define BWI_HFLAG_GDC_WA 0x20ULL /* ??? GDC work around */
+#define BWI_HFLAG_OFDM_PA 0x40ULL
+#define BWI_HFLAG_NOT_JAPAN 0x80ULL
+#define BWI_HFLAG_MAGIC1 0x200ULL
+#define BWI_UCODE_STATE_PS 4
+#define BWI_LO_TSSI_MASK __BITS(7, 0)
+#define BWI_HI_TSSI_MASK __BITS(15, 8)
+#define BWI_INVALID_TSSI 0x7f
+/* 802.11 object */
+#define BWI_80211_MOBJ 0x2
+#define BWI_80211_MOBJ_CWMIN 0xc
+#define BWI_80211_MOBJ_CWMAX 0x10
+#define BWI_80211_MOBJ_SHRETRY 0x18
+#define BWI_80211_MOBJ_LGRETRY 0x1c
+/* Firmware PCM object */
+#define BWI_FW_PCM_MOBJ 0x3
+/* MAC address of pairwise keys */
+#define BWI_PKEY_ADDR_MOBJ 0x4
+
+#define BWI_TXSTATUS0 0x170
+#define BWI_TXSTATUS0_VALID __BIT(0)
+#define BWI_TXSTATUS0_ACKED __BIT(1)
+#define BWI_TXSTATUS0_FREASON_MASK __BITS(4, 2) /* Failure reason */
+#define BWI_TXSTATUS0_AMPDU __BIT(5)
+#define BWI_TXSTATUS0_PENDING __BIT(6)
+#define BWI_TXSTATUS0_PM __BIT(7)
+#define BWI_TXSTATUS0_RTS_TXCNT_MASK __BITS(11, 8)
+#define BWI_TXSTATUS0_DATA_TXCNT_MASK __BITS(15, 12)
+#define BWI_TXSTATUS0_TXID_MASK __BITS(31, 16)
+#define BWI_TXSTATUS1 0x174
+
+#define BWI_TXRX_CTRL_BASE 0x200
+#define BWI_TX32_CTRL 0x0
+#define BWI_TX32_RINGINFO 0x4
+#define BWI_TX32_INDEX 0x8
+#define BWI_TX32_STATUS 0xc
+#define BWI_TX32_STATUS_STATE_MASK __BITS(15, 12)
+#define BWI_TX32_STATUS_STATE_DISABLED 0
+#define BWI_TX32_STATUS_STATE_IDLE 2
+#define BWI_TX32_STATUS_STATE_STOPPED 3
+#define BWI_RX32_CTRL 0x10
+#define BWI_RX32_CTRL_HDRSZ_MASK __BITS(7, 1)
+#define BWI_RX32_RINGINFO 0x14
+#define BWI_RX32_INDEX 0x18
+#define BWI_RX32_STATUS 0x1c
+#define BWI_RX32_STATUS_INDEX_MASK __BITS(11, 0)
+#define BWI_RX32_STATUS_STATE_MASK __BITS(15, 12)
+#define BWI_RX32_STATUS_STATE_DISABLED 0
+/* Shared by 32bit TX/RX CTRL */
+#define BWI_TXRX32_CTRL_ENABLE __BIT(0)
+#define BWI_TXRX32_CTRL_ADDRHI_MASK __BITS(17, 16)
+/* Shared by 32bit TX/RX RINGINFO */
+#define BWI_TXRX32_RINGINFO_FUNC_TXRX 0x1
+#define BWI_TXRX32_RINGINFO_FUNC_MASK __BITS(31, 30)
+#define BWI_TXRX32_RINGINFO_ADDR_MASK __BITS(29, 0)
+
+#define BWI_PHYINFO 0x3e0
+#define BWI_PHYINFO_REV_MASK __BITS(3, 0)
+#define BWI_PHYINFO_TYPE_MASK __BITS(11, 8)
+#define BWI_PHYINFO_TYPE_11A 0
+#define BWI_PHYINFO_TYPE_11B 1
+#define BWI_PHYINFO_TYPE_11G 2
+#define BWI_PHYINFO_TYPE_11N 5
+#define BWI_PHYINFO_VER_MASK __BITS(15, 12)
+
+#define BWI_RF_ANTDIV 0x3e2 /* Antenna Diversity?? */
+
+#define BWI_PHY_MAGIC_REG1 0x3e4
+#define BWI_PHY_MAGIC_REG1_VAL1 0x3000
+#define BWI_PHY_MAGIC_REG1_VAL2 0x9
+
+#define BWI_BBP_ATTEN 0x3e6
+#define BWI_BBP_ATTEN_MAGIC 0xf4
+#define BWI_BBP_ATTEN_MAGIC2 0x8140
+
+#define BWI_BPHY_CTRL 0x3ec
+#define BWI_BPHY_CTRL_INIT 0x3f22
+
+#define BWI_RF_CHAN 0x3f0
+#define BWI_RF_CHAN_EX 0x3f4
+
+#define BWI_RF_CTRL 0x3f6
+/* Register values for BWI_RF_CTRL */
+#define BWI_RF_CTRL_RFINFO 0x1
+/* XXX extra bits for reading from radio */
+#define BWI_RF_CTRL_RD_11A 0x40
+#define BWI_RF_CTRL_RD_11BG 0x80
+#define BWI_RF_DATA_HI 0x3f8
+#define BWI_RF_DATA_LO 0x3fa
+/* Values read from BWI_RF_DATA_{HI,LO} after BWI_RF_CTRL_RFINFO */
+#define BWI_RFINFO_MANUFACT_MASK __BITS(11, 0)
+#define BWI_RF_MANUFACT_BCM 0x17f /* XXX */
+#define BWI_RFINFO_TYPE_MASK __BITS(27, 12)
+#define BWI_RF_T_BCM2050 0x2050
+#define BWI_RF_T_BCM2053 0x2053
+#define BWI_RF_T_BCM2060 0x2060
+#define BWI_RFINFO_REV_MASK __BITS(31, 28)
+
+#define BWI_PHY_CTRL 0x3fc
+#define BWI_PHY_DATA 0x3fe
+
+#define BWI_ADDR_FILTER_CTRL 0x420
+#define BWI_ADDR_FILTER_CTRL_SET 0x20
+#define BWI_ADDR_FILTER_MYADDR 0
+#define BWI_ADDR_FILTER_BSSID 3
+#define BWI_ADDR_FILTER_DATA 0x422
+
+#define BWI_MAC_GPIO_CTRL 0x49c
+#define BWI_MAC_GPIO_MASK 0x49e
+#define BWI_MAC_PRE_TBTT 0x612
+#define BWI_MAC_SLOTTIME 0x684
+#define BWI_MAC_SLOTTIME_ADJUST 510
+#define BWI_MAC_POWERUP_DELAY 0x6a8
+
+/*
+ * Special registers
+ */
+/*
+ * GPIO control
+ * If common regwin exists, then it is within common regwin,
+ * else it is in bus regwin.
+ */
+#define BWI_GPIO_CTRL 0x6c
+
+#define PCI_VENDOR_BROADCOM 0x14e4 /* Broadcom */
+#define PCI_PRODUCT_BROADCOM_BCM4309 0x4324
+
+/*
+ * Extended PCI registers
+ */
+#define BWI_PCIR_BAR PCIR_BAR(0)
+#define BWI_PCIR_SEL_REGWIN 0x80
+/* Register value for BWI_PCIR_SEL_REGWIN */
+#define BWI_PCIM_REGWIN(id) (((id) * 0x1000) + 0x18000000)
+#define BWI_PCIR_GPIO_IN 0xb0
+#define BWI_PCIR_GPIO_OUT 0xb4
+#define BWI_PCIM_GPIO_OUT_CLKSRC __BIT(4)
+#define BWI_PCIR_GPIO_ENABLE 0xb8
+/* Register values for BWI_PCIR_GPIO_{IN,OUT,ENABLE} */
+#define BWI_PCIM_GPIO_PWR_ON __BIT(6)
+#define BWI_PCIM_GPIO_PLL_PWR_OFF __BIT(7)
+#define BWI_PCIR_INTCTL 0x94
+
+/*
+ * PCI subdevice IDs
+ */
+#define BWI_PCI_SUBDEVICE_BU4306 0x416
+#define BWI_PCI_SUBDEVICE_BCM4309G 0x421
+
+#define BWI_IS_BRCM_BU4306(sc) \
+ ((sc)->sc_pci_subvid == PCI_VENDOR_BROADCOM && \
+ (sc)->sc_pci_subdid == BWI_PCI_SUBDEVICE_BU4306)
+#define BWI_IS_BRCM_BCM4309G(sc) \
+ ((sc)->sc_pci_subvid == PCI_VENDOR_BROADCOM && \
+ (sc)->sc_pci_subdid == BWI_PCI_SUBDEVICE_BCM4309G)
+
+/*
+ * EEPROM start address
+ */
+#define BWI_SPROM_START 0x1000
+#define BWI_SPROM_11BG_EADDR 0x48
+#define BWI_SPROM_11A_EADDR 0x54
+#define BWI_SPROM_CARD_INFO 0x5c
+#define BWI_SPROM_CARD_INFO_LOCALE __BITS(11, 8)
+#define BWI_SPROM_LOCALE_JAPAN 5
+#define BWI_SPROM_PA_PARAM_11BG 0x5e
+#define BWI_SPROM_GPIO01 0x64
+#define BWI_SPROM_GPIO_0 __BITS(7, 0)
+#define BWI_SPROM_GPIO_1 __BITS(15, 8)
+#define BWI_SPROM_GPIO23 0x66
+#define BWI_SPROM_GPIO_2 __BITS(7, 0)
+#define BWI_SPROM_GPIO_3 __BITS(15, 8)
+#define BWI_SPROM_MAX_TXPWR 0x68
+#define BWI_SPROM_MAX_TXPWR_MASK_11BG __BITS(7, 0) /* XXX */
+#define BWI_SPROM_MAX_TXPWR_MASK_11A __BITS(15, 8) /* XXX */
+#define BWI_SPROM_PA_PARAM_11A 0x6a
+#define BWI_SPROM_IDLE_TSSI 0x70
+#define BWI_SPROM_IDLE_TSSI_MASK_11BG __BITS(7, 0) /* XXX */
+#define BWI_SPROM_IDLE_TSSI_MASK_11A __BITS(15, 8) /* XXX */
+#define BWI_SPROM_CARD_FLAGS 0x72
+#define BWI_SPROM_ANT_GAIN 0x74
+#define BWI_SPROM_ANT_GAIN_MASK_11A __BITS(7, 0)
+#define BWI_SPROM_ANT_GAIN_MASK_11BG __BITS(15, 8)
+
+/*
+ * SPROM card flags
+ */
+#define BWI_CARD_F_BT_COEXIST __BIT(0) /* Bluetooth coexist */
+#define BWI_CARD_F_PA_GPIO9 __BIT(1) /* GPIO 9 controls PA */
+#define BWI_CARD_F_SW_NRSSI __BIT(3)
+#define BWI_CARD_F_NO_SLOWCLK __BIT(5) /* no slow clock */
+#define BWI_CARD_F_EXT_LNA __BIT(12) /* external LNA */
+#define BWI_CARD_F_ALT_IQ __BIT(15) /* alternate I/Q */
+
+/*
+ * SPROM GPIO
+ */
+#define BWI_LED_ACT_LOW __BIT(7)
+#define BWI_LED_ACT_MASK __BITS(6, 0)
+#define BWI_LED_ACT_OFF 0
+#define BWI_LED_ACT_ON 1
+#define BWI_LED_ACT_BLINK 2
+#define BWI_LED_ACT_RF_ENABLED 3
+#define BWI_LED_ACT_5GHZ 4
+#define BWI_LED_ACT_2GHZ 5
+#define BWI_LED_ACT_11G 6
+#define BWI_LED_ACT_BLINK_SLOW 7
+#define BWI_LED_ACT_BLINK_POLL 8
+#define BWI_LED_ACT_UNKN 9
+#define BWI_LED_ACT_ASSOC 10
+#define BWI_LED_ACT_NULL 11
+
+#define BWI_VENDOR_LED_ACT_COMPAQ \
+ BWI_LED_ACT_RF_ENABLED, \
+ BWI_LED_ACT_2GHZ, \
+ BWI_LED_ACT_5GHZ, \
+ BWI_LED_ACT_OFF
+
+#define BWI_VENDOR_LED_ACT_LINKSYS \
+ BWI_LED_ACT_ASSOC, \
+ BWI_LED_ACT_2GHZ, \
+ BWI_LED_ACT_5GHZ, \
+ BWI_LED_ACT_OFF
+
+#define BWI_VENDOR_LED_ACT_DEFAULT \
+ BWI_LED_ACT_BLINK, \
+ BWI_LED_ACT_2GHZ, \
+ BWI_LED_ACT_5GHZ, \
+ BWI_LED_ACT_OFF
+
+/*
+ * BBP IDs
+ */
+#define BWI_BBPID_BCM4301 0x4301
+#define BWI_BBPID_BCM4306 0x4306
+#define BWI_BBPID_BCM4317 0x4317
+#define BWI_BBPID_BCM4320 0x4320
+#define BWI_BBPID_BCM4321 0x4321
+
+/*
+ * Register window types
+ */
+#define BWI_REGWIN_T_COM 0x800
+#define BWI_REGWIN_T_BUSPCI 0x804
+#define BWI_REGWIN_T_MAC 0x812
+#define BWI_REGWIN_T_BUSPCIE 0x820
+
+/*
+ * MAC interrupts
+ */
+#define BWI_INTR_READY __BIT(0)
+#define BWI_INTR_BEACON __BIT(1)
+#define BWI_INTR_TBTT __BIT(2)
+#define BWI_INTR_EO_ATIM __BIT(5) /* End of ATIM */
+#define BWI_INTR_PMQ __BIT(6) /* XXX?? */
+#define BWI_INTR_MAC_TXERR __BIT(9)
+#define BWI_INTR_PHY_TXERR __BIT(11)
+#define BWI_INTR_TIMER1 __BIT(14)
+#define BWI_INTR_RX_DONE __BIT(15)
+#define BWI_INTR_TX_FIFO __BIT(16) /* XXX?? */
+#define BWI_INTR_NOISE __BIT(18)
+#define BWI_INTR_RF_DISABLED __BIT(28)
+#define BWI_INTR_TX_DONE __BIT(29)
+
+#define BWI_INIT_INTRS \
+ (BWI_INTR_READY | BWI_INTR_BEACON | BWI_INTR_TBTT | \
+ BWI_INTR_EO_ATIM | BWI_INTR_PMQ | BWI_INTR_MAC_TXERR | \
+ BWI_INTR_PHY_TXERR | BWI_INTR_RX_DONE | BWI_INTR_TX_FIFO | \
+ BWI_INTR_NOISE | BWI_INTR_RF_DISABLED | BWI_INTR_TX_DONE)
+#define BWI_ALL_INTRS 0xffffffff
+
+/*
+ * TX/RX interrupts
+ */
+#define BWI_TXRX_INTR_ERROR (__BIT(15) | __BIT(14) | __BITS(12, 10))
+#define BWI_TXRX_INTR_RX __BIT(16)
+#define BWI_TXRX_TX_INTRS BWI_TXRX_INTR_ERROR
+#define BWI_TXRX_RX_INTRS (BWI_TXRX_INTR_ERROR | BWI_TXRX_INTR_RX)
+#define BWI_TXRX_IS_RX(i) ((i) % 3 == 0)
+
+#endif /* !_IF_BWIREG_H */
diff --git a/sys/dev/bwi/if_bwivar.h b/sys/dev/bwi/if_bwivar.h
new file mode 100644
index 0000000..311e38f
--- /dev/null
+++ b/sys/dev/bwi/if_bwivar.h
@@ -0,0 +1,711 @@
+/*
+ * Copyright (c) 2007 The DragonFly Project. All rights reserved.
+ *
+ * This code is derived from software contributed to The DragonFly Project
+ * by Sepherosa Ziehau <sepherosa@gmail.com>
+ *
+ * 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. Neither the name of The DragonFly Project nor the names of its
+ * contributors may be used to endorse or promote products derived
+ * from this software without specific, prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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
+ * COPYRIGHT HOLDERS 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.
+ *
+ * $DragonFly: src/sys/dev/netif/bwi/if_bwivar.h,v 1.14 2008/02/15 11:15:38 sephe Exp $
+ * $FreeBSD$
+ */
+
+#ifndef _IF_BWIVAR_H
+#define _IF_BWIVAR_H
+
+#define BWI_ALIGN 0x1000
+#define BWI_RING_ALIGN BWI_ALIGN
+#define BWI_BUS_SPACE_MAXADDR 0x3fffffff
+
+#define BWI_TX_NRING 6
+#define BWI_TXRX_NRING 6
+#define BWI_TX_NDESC 128
+#define BWI_RX_NDESC 64
+#define BWI_TXSTATS_NDESC 64
+#define BWI_TX_NSPRDESC 2
+#define BWI_TX_DATA_RING 1
+
+/* XXX Onoe/Sample/AMRR probably need different configuration */
+#define BWI_SHRETRY 7
+#define BWI_LGRETRY 4
+#define BWI_SHRETRY_FB 3
+#define BWI_LGRETRY_FB 2
+
+#define BWI_LED_EVENT_NONE -1
+#define BWI_LED_EVENT_POLL 0
+#define BWI_LED_EVENT_TX 1
+#define BWI_LED_EVENT_RX 2
+#define BWI_LED_SLOWDOWN(dur) (dur) = (((dur) * 3) / 2)
+
+enum bwi_txpwrcb_type {
+ BWI_TXPWR_INIT = 0,
+ BWI_TXPWR_FORCE = 1,
+ BWI_TXPWR_CALIB = 2
+};
+
+#define BWI_NOISE_FLOOR -95 /* TODO: noise floor calc */
+#define BWI_FRAME_MIN_LEN(hdr) \
+ ((hdr) + sizeof(struct ieee80211_frame_ack) + IEEE80211_CRC_LEN)
+
+#define CSR_READ_4(sc, reg) \
+ bus_space_read_4((sc)->sc_mem_bt, (sc)->sc_mem_bh, (reg))
+#define CSR_READ_2(sc, reg) \
+ bus_space_read_2((sc)->sc_mem_bt, (sc)->sc_mem_bh, (reg))
+
+#define CSR_WRITE_4(sc, reg, val) \
+ bus_space_write_4((sc)->sc_mem_bt, (sc)->sc_mem_bh, (reg), (val))
+#define CSR_WRITE_2(sc, reg, val) \
+ bus_space_write_2((sc)->sc_mem_bt, (sc)->sc_mem_bh, (reg), (val))
+
+#define CSR_SETBITS_4(sc, reg, bits) \
+ CSR_WRITE_4((sc), (reg), CSR_READ_4((sc), (reg)) | (bits))
+#define CSR_SETBITS_2(sc, reg, bits) \
+ CSR_WRITE_2((sc), (reg), CSR_READ_2((sc), (reg)) | (bits))
+
+#define CSR_FILT_SETBITS_4(sc, reg, filt, bits) \
+ CSR_WRITE_4((sc), (reg), (CSR_READ_4((sc), (reg)) & (filt)) | (bits))
+#define CSR_FILT_SETBITS_2(sc, reg, filt, bits) \
+ CSR_WRITE_2((sc), (reg), (CSR_READ_2((sc), (reg)) & (filt)) | (bits))
+
+#define CSR_CLRBITS_4(sc, reg, bits) \
+ CSR_WRITE_4((sc), (reg), CSR_READ_4((sc), (reg)) & ~(bits))
+#define CSR_CLRBITS_2(sc, reg, bits) \
+ CSR_WRITE_2((sc), (reg), CSR_READ_2((sc), (reg)) & ~(bits))
+
+#ifdef BWI_DEBUG
+
+#define DPRINTF(sc, dbg, fmt, ...) \
+do { \
+ if ((sc)->sc_debug & (dbg)) \
+ device_printf((sc)->sc_dev, fmt, __VA_ARGS__); \
+} while (0)
+
+#define _DPRINTF(sc, dbg, fmt, ...) \
+do { \
+ if ((sc)->sc_debug & (dbg)) \
+ printf(fmt, __VA_ARGS__); \
+} while (0)
+
+#else /* !BWI_DEBUG */
+
+#define DPRINTF(sc, dbg, fmt, ...) ((void)0)
+#define _DPRINTF(sc, dbg, fmt, ...) ((void)0)
+
+#endif /* BWI_DEBUG */
+
+struct bwi_desc32 {
+ /* Little endian */
+ uint32_t ctrl;
+ uint32_t addr; /* BWI_DESC32_A_ */
+} __packed;
+
+#define BWI_DESC32_A_FUNC_TXRX 0x1
+#define BWI_DESC32_A_FUNC_MASK __BITS(31, 30)
+#define BWI_DESC32_A_ADDR_MASK __BITS(29, 0)
+
+#define BWI_DESC32_C_BUFLEN_MASK __BITS(12, 0)
+#define BWI_DESC32_C_ADDRHI_MASK __BITS(17, 16)
+#define BWI_DESC32_C_EOR __BIT(28)
+#define BWI_DESC32_C_INTR __BIT(29)
+#define BWI_DESC32_C_FRAME_END __BIT(30)
+#define BWI_DESC32_C_FRAME_START __BIT(31)
+
+struct bwi_desc64 {
+ /* Little endian */
+ uint32_t ctrl0;
+ uint32_t ctrl1;
+ uint32_t addr_lo;
+ uint32_t addr_hi;
+} __packed;
+
+struct bwi_rxbuf_hdr {
+ /* Little endian */
+ uint16_t rxh_buflen; /* exclude bwi_rxbuf_hdr */
+ uint8_t rxh_pad1[2];
+ uint16_t rxh_flags1; /* BWI_RXH_F1_ */
+ uint8_t rxh_rssi;
+ uint8_t rxh_sq;
+ uint16_t rxh_phyinfo; /* BWI_RXH_PHYINFO_ */
+ uint16_t rxh_flags3; /* BWI_RXH_F3_ */
+ uint16_t rxh_flags2; /* BWI_RXH_F2_ */
+ uint16_t rxh_tsf;
+ uint8_t rxh_pad3[14]; /* Padded to 30bytes */
+} __packed;
+
+#define BWI_RXH_F1_BCM2053_RSSI __BIT(14)
+#define BWI_RXH_F1_SHPREAMBLE __BIT(7)
+#define BWI_RXH_F1_OFDM __BIT(0)
+
+#define BWI_RXH_F2_TYPE2FRAME __BIT(2)
+
+#define BWI_RXH_F3_BCM2050_RSSI __BIT(10)
+
+#define BWI_RXH_PHYINFO_LNAGAIN __BITS(15, 14)
+
+struct bwi_txbuf_hdr {
+ /* Little endian */
+ uint32_t txh_mac_ctrl; /* BWI_TXH_MAC_C_ */
+ uint8_t txh_fc[2];
+ uint16_t txh_unknown1;
+ uint16_t txh_phy_ctrl; /* BWI_TXH_PHY_C_ */
+ uint8_t txh_ivs[16];
+ uint8_t txh_addr1[IEEE80211_ADDR_LEN];
+ uint16_t txh_unknown2;
+ uint8_t txh_rts_fb_plcp[4];
+ uint16_t txh_rts_fb_duration;
+ uint8_t txh_fb_plcp[4];
+ uint16_t txh_fb_duration;
+ uint8_t txh_pad2[2];
+ uint16_t txh_id; /* BWI_TXH_ID_ */
+ uint16_t txh_unknown3;
+ uint8_t txh_rts_plcp[6];
+ uint8_t txh_rts_fc[2];
+ uint16_t txh_rts_duration;
+ uint8_t txh_rts_ra[IEEE80211_ADDR_LEN];
+ uint8_t txh_rts_ta[IEEE80211_ADDR_LEN];
+ uint8_t txh_pad3[2];
+ uint8_t txh_plcp[6];
+} __packed;
+
+#define BWI_TXH_ID_RING_MASK __BITS(15, 13)
+#define BWI_TXH_ID_IDX_MASK __BITS(12, 0)
+
+#define BWI_TXH_PHY_C_OFDM __BIT(0)
+#define BWI_TXH_PHY_C_SHPREAMBLE __BIT(4)
+#define BWI_TXH_PHY_C_ANTMODE_MASK __BITS(9, 8)
+
+#define BWI_TXH_MAC_C_ACK __BIT(0)
+#define BWI_TXH_MAC_C_FIRST_FRAG __BIT(3)
+#define BWI_TXH_MAC_C_HWSEQ __BIT(4)
+#define BWI_TXH_MAC_C_FB_OFDM __BIT(8)
+
+struct bwi_txstats {
+ /* Little endian */
+ uint8_t txs_pad1[4];
+ uint16_t txs_id;
+ uint8_t txs_flags; /* BWI_TXS_F_ */
+ uint8_t txs_txcnt; /* BWI_TXS_TXCNT_ */
+ uint8_t txs_pad2[2];
+ uint16_t txs_seq;
+ uint16_t txs_unknown;
+ uint8_t txs_pad3[2]; /* Padded to 16bytes */
+} __packed;
+
+#define BWI_TXS_TXCNT_DATA __BITS(7, 4)
+
+#define BWI_TXS_F_ACKED __BIT(0)
+#define BWI_TXS_F_PENDING __BIT(5)
+
+struct bwi_ring_data {
+ uint32_t rdata_txrx_ctrl;
+ bus_dmamap_t rdata_dmap;
+ bus_addr_t rdata_paddr;
+ void *rdata_desc;
+};
+
+struct bwi_txbuf {
+ struct mbuf *tb_mbuf;
+ bus_dmamap_t tb_dmap;
+
+ struct ieee80211_node *tb_ni;
+ int tb_rate[2];
+};
+
+struct bwi_txbuf_data {
+ struct bwi_txbuf tbd_buf[BWI_TX_NDESC];
+ int tbd_used;
+ int tbd_idx;
+};
+
+struct bwi_rxbuf {
+ struct mbuf *rb_mbuf;
+ bus_addr_t rb_paddr;
+ bus_dmamap_t rb_dmap;
+};
+
+struct bwi_rxbuf_data {
+ struct bwi_rxbuf rbd_buf[BWI_RX_NDESC];
+ bus_dmamap_t rbd_tmp_dmap;
+ int rbd_idx;
+};
+
+struct bwi_txstats_data {
+ bus_dma_tag_t stats_ring_dtag;
+ bus_dmamap_t stats_ring_dmap;
+ bus_addr_t stats_ring_paddr;
+ void *stats_ring;
+
+ bus_dma_tag_t stats_dtag;
+ bus_dmamap_t stats_dmap;
+ bus_addr_t stats_paddr;
+ struct bwi_txstats *stats;
+
+ uint32_t stats_ctrl_base;
+ int stats_idx;
+};
+
+struct bwi_fwhdr {
+ /* Big endian */
+ uint8_t fw_type; /* BWI_FW_T_ */
+ uint8_t fw_gen; /* BWI_FW_GEN */
+ uint8_t fw_pad[2];
+ uint32_t fw_size;
+#define fw_iv_cnt fw_size
+} __packed;
+
+#define BWI_FWHDR_SZ sizeof(struct bwi_fwhdr)
+
+#define BWI_FW_T_UCODE 'u'
+#define BWI_FW_T_PCM 'p'
+#define BWI_FW_T_IV 'i'
+
+#define BWI_FW_GEN_1 1
+
+#define BWI_FW_VERSION3 3
+#define BWI_FW_VERSION4 4
+#define BWI_FW_VERSION3_REVMAX 0x128
+
+#define BWI_FW_PATH "bwi_v%d_"
+#define BWI_FW_STUB_PATH BWI_FW_PATH "ucode"
+#define BWI_FW_UCODE_PATH BWI_FW_PATH "ucode%d"
+#define BWI_FW_PCM_PATH BWI_FW_PATH "pcm%d"
+#define BWI_FW_IV_PATH BWI_FW_PATH "b0g0initvals%d"
+#define BWI_FW_IV_EXT_PATH BWI_FW_PATH "b0g0bsinitvals%d"
+
+struct bwi_fw_iv {
+ /* Big endian */
+ uint16_t iv_ofs;
+ union {
+ uint32_t val32;
+ uint16_t val16;
+ } iv_val;
+} __packed;
+
+#define BWI_FW_IV_OFS_MASK __BITS(14, 0)
+#define BWI_FW_IV_IS_32BIT __BIT(15)
+
+struct bwi_led {
+ uint8_t l_flags; /* BWI_LED_F_ */
+ uint8_t l_act; /* BWI_LED_ACT_ */
+ uint8_t l_mask;
+};
+
+#define BWI_LED_F_ACTLOW 0x1
+#define BWI_LED_F_BLINK 0x2
+#define BWI_LED_F_POLLABLE 0x4
+#define BWI_LED_F_SLOW 0x8
+
+enum bwi_clock_mode {
+ BWI_CLOCK_MODE_SLOW,
+ BWI_CLOCK_MODE_FAST,
+ BWI_CLOCK_MODE_DYN
+};
+
+struct bwi_regwin {
+ uint32_t rw_flags; /* BWI_REGWIN_F_ */
+ uint16_t rw_type; /* BWI_REGWIN_T_ */
+ uint8_t rw_id;
+ uint8_t rw_rev;
+};
+
+#define BWI_REGWIN_F_EXIST 0x1
+
+#define BWI_CREATE_REGWIN(rw, id, type, rev) \
+do { \
+ (rw)->rw_flags = BWI_REGWIN_F_EXIST; \
+ (rw)->rw_type = (type); \
+ (rw)->rw_id = (id); \
+ (rw)->rw_rev = (rev); \
+} while (0)
+
+#define BWI_REGWIN_EXIST(rw) ((rw)->rw_flags & BWI_REGWIN_F_EXIST)
+#define BWI_GPIO_REGWIN(sc) \
+ (BWI_REGWIN_EXIST(&(sc)->sc_com_regwin) ? \
+ &(sc)->sc_com_regwin : &(sc)->sc_bus_regwin)
+
+struct bwi_mac;
+
+struct bwi_phy {
+ enum ieee80211_phymode phy_mode;
+ int phy_rev;
+ int phy_version;
+
+ uint32_t phy_flags; /* BWI_PHY_F_ */
+ uint16_t phy_tbl_ctrl;
+ uint16_t phy_tbl_data_lo;
+ uint16_t phy_tbl_data_hi;
+
+ void (*phy_init)(struct bwi_mac *);
+};
+
+#define BWI_PHY_F_CALIBRATED 0x1
+#define BWI_PHY_F_LINKED 0x2
+#define BWI_CLEAR_PHY_FLAGS (BWI_PHY_F_CALIBRATED)
+
+/* TX power control */
+struct bwi_tpctl {
+ uint16_t bbp_atten; /* BBP attenuation: 4bits */
+ uint16_t rf_atten; /* RF attenuation */
+ uint16_t tp_ctrl1; /* ??: 3bits */
+ uint16_t tp_ctrl2; /* ??: 4bits */
+};
+
+#define BWI_RF_ATTEN_FACTOR 4
+#define BWI_RF_ATTEN_MAX0 9
+#define BWI_RF_ATTEN_MAX1 31
+#define BWI_BBP_ATTEN_MAX 11
+#define BWI_TPCTL1_MAX 7
+
+struct bwi_rf_lo {
+ int8_t ctrl_lo;
+ int8_t ctrl_hi;
+};
+
+struct bwi_rf {
+ uint16_t rf_type; /* BWI_RF_T_ */
+ uint16_t rf_manu;
+ int rf_rev;
+
+ uint32_t rf_flags; /* BWI_RF_F_ */
+
+#define BWI_RFLO_MAX 56
+ struct bwi_rf_lo rf_lo[BWI_RFLO_MAX];
+ uint8_t rf_lo_used[8];
+
+#define BWI_INVALID_NRSSI -1000
+ int16_t rf_nrssi[2]; /* Narrow RSSI */
+ int32_t rf_nrssi_slope;
+
+#define BWI_NRSSI_TBLSZ 64
+ int8_t rf_nrssi_table[BWI_NRSSI_TBLSZ];
+
+ uint16_t rf_lo_gain; /* loopback gain */
+ uint16_t rf_rx_gain; /* TRSW RX gain */
+
+ uint16_t rf_calib; /* RF calibration value */
+ u_int rf_curchan; /* current channel */
+
+ uint16_t rf_ctrl_rd;
+ int rf_ctrl_adj;
+ void (*rf_off)(struct bwi_mac *);
+ void (*rf_on)(struct bwi_mac *);
+
+ void (*rf_set_nrssi_thr)(struct bwi_mac *);
+ void (*rf_calc_nrssi_slope)(struct bwi_mac *);
+ int (*rf_calc_rssi)
+ (struct bwi_mac *,
+ const struct bwi_rxbuf_hdr *);
+ int (*rf_calc_noise)(struct bwi_mac *);
+
+ void (*rf_lo_update)(struct bwi_mac *);
+
+#define BWI_TSSI_MAX 64
+ int8_t rf_txpower_map0[BWI_TSSI_MAX];
+ /* Indexed by TSSI */
+ int rf_idle_tssi0;
+
+ int8_t rf_txpower_map[BWI_TSSI_MAX];
+ int rf_idle_tssi;
+
+ int rf_base_tssi;
+
+ int rf_txpower_max; /* dBm */
+
+ int rf_ant_mode; /* BWI_ANT_MODE_ */
+};
+
+#define BWI_RF_F_INITED 0x1
+#define BWI_RF_F_ON 0x2
+#define BWI_RF_CLEAR_FLAGS (BWI_RF_F_INITED)
+
+#define BWI_ANT_MODE_0 0
+#define BWI_ANT_MODE_1 1
+#define BWI_ANT_MODE_UNKN 2
+#define BWI_ANT_MODE_AUTO 3
+
+struct bwi_softc;
+struct firmware;
+
+struct bwi_mac {
+ struct bwi_regwin mac_regwin; /* MUST be first field */
+#define mac_rw_flags mac_regwin.rw_flags
+#define mac_type mac_regwin.rw_type
+#define mac_id mac_regwin.rw_id
+#define mac_rev mac_regwin.rw_rev
+
+ struct bwi_softc *mac_sc;
+
+ struct bwi_phy mac_phy; /* PHY I/F */
+ struct bwi_rf mac_rf; /* RF I/F */
+
+ struct bwi_tpctl mac_tpctl; /* TX power control */
+ uint32_t mac_flags; /* BWI_MAC_F_ */
+
+ const struct firmware *mac_stub;
+ const struct firmware *mac_ucode;
+ const struct firmware *mac_pcm;
+ const struct firmware *mac_iv;
+ const struct firmware *mac_iv_ext;
+};
+
+#define BWI_MAC_F_BSWAP 0x1
+#define BWI_MAC_F_TPCTL_INITED 0x2
+#define BWI_MAC_F_HAS_TXSTATS 0x4
+#define BWI_MAC_F_INITED 0x8
+#define BWI_MAC_F_ENABLED 0x10
+#define BWI_MAC_F_LOCKED 0x20 /* for debug */
+#define BWI_MAC_F_TPCTL_ERROR 0x40
+#define BWI_MAC_F_PHYE_RESET 0x80
+
+#define BWI_CREATE_MAC(mac, sc, id, rev) \
+do { \
+ BWI_CREATE_REGWIN(&(mac)->mac_regwin, \
+ (id), \
+ BWI_REGWIN_T_MAC, \
+ (rev)); \
+ (mac)->mac_sc = (sc); \
+} while (0)
+
+#define BWI_MAC_MAX 2
+#define BWI_LED_MAX 4
+
+enum bwi_bus_space {
+ BWI_BUS_SPACE_30BIT = 1,
+ BWI_BUS_SPACE_32BIT,
+ BWI_BUS_SPACE_64BIT
+};
+
+#define BWI_TX_RADIOTAP_PRESENT \
+ ((1 << IEEE80211_RADIOTAP_FLAGS) | \
+ (1 << IEEE80211_RADIOTAP_RATE) | \
+ (1 << IEEE80211_RADIOTAP_CHANNEL))
+
+struct bwi_tx_radiotap_hdr {
+ struct ieee80211_radiotap_header wt_ihdr;
+ uint8_t wt_flags;
+ uint8_t wt_rate;
+ uint16_t wt_chan_freq;
+ uint16_t wt_chan_flags;
+};
+
+#define BWI_RX_RADIOTAP_PRESENT \
+ ((1 << IEEE80211_RADIOTAP_TSFT) | \
+ (1 << IEEE80211_RADIOTAP_FLAGS) | \
+ (1 << IEEE80211_RADIOTAP_RATE) | \
+ (1 << IEEE80211_RADIOTAP_CHANNEL) | \
+ (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) | \
+ (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE))
+
+struct bwi_rx_radiotap_hdr {
+ struct ieee80211_radiotap_header wr_ihdr;
+ uint64_t wr_tsf;
+ uint8_t wr_flags;
+ uint8_t wr_rate;
+ uint16_t wr_chan_freq;
+ uint16_t wr_chan_flags;
+ int8_t wr_antsignal;
+ int8_t wr_antnoise;
+ /* TODO: sq */
+};
+
+struct bwi_node {
+ struct ieee80211_node ni; /* must be the first */
+ struct ieee80211_amrr_node amn;
+};
+#define BWI_NODE(ni) ((struct bwi_node *)(ni))
+
+struct bwi_vap {
+ struct ieee80211vap bv_vap;
+ struct ieee80211_amrr bv_amrr;
+ int (*bv_newstate)(struct ieee80211vap *,
+ enum ieee80211_state, int);
+};
+#define BWI_VAP(vap) ((struct bwi_vap *)(vap))
+
+struct bwi_softc {
+ struct ifnet *sc_ifp;
+ uint32_t sc_flags; /* BWI_F_ */
+ device_t sc_dev;
+ struct mtx sc_mtx;
+ int sc_invalid;
+
+ uint32_t sc_cap; /* BWI_CAP_ */
+ uint16_t sc_bbp_id; /* BWI_BBPID_ */
+ uint8_t sc_bbp_rev;
+ uint8_t sc_bbp_pkg;
+
+ uint8_t sc_pci_revid;
+ uint16_t sc_pci_did;
+ uint16_t sc_pci_subvid;
+ uint16_t sc_pci_subdid;
+
+ uint16_t sc_card_flags; /* BWI_CARD_F_ */
+ uint16_t sc_pwron_delay;
+ int sc_locale;
+
+ int sc_irq_rid;
+ struct resource *sc_irq_res;
+ void *sc_irq_handle;
+
+ int sc_mem_rid;
+ struct resource *sc_mem_res;
+ bus_space_tag_t sc_mem_bt;
+ bus_space_handle_t sc_mem_bh;
+
+ struct callout sc_calib_ch;
+
+ struct bwi_regwin *sc_cur_regwin;
+ struct bwi_regwin sc_com_regwin;
+ struct bwi_regwin sc_bus_regwin;
+
+ int sc_nmac;
+ struct bwi_mac sc_mac[BWI_MAC_MAX];
+
+ int sc_rx_rate;
+ int sc_tx_rate;
+ enum bwi_txpwrcb_type sc_txpwrcb_type;
+
+ int sc_led_blinking;
+ int sc_led_ticks;
+ struct bwi_led *sc_blink_led;
+ struct callout sc_led_blink_ch;
+ int sc_led_blink_offdur;
+ struct bwi_led sc_leds[BWI_LED_MAX];
+
+ enum bwi_bus_space sc_bus_space;
+ bus_dma_tag_t sc_parent_dtag;
+
+ bus_dma_tag_t sc_buf_dtag;
+ struct bwi_txbuf_data sc_tx_bdata[BWI_TX_NRING];
+ struct bwi_rxbuf_data sc_rx_bdata;
+
+ bus_dma_tag_t sc_txring_dtag;
+ struct bwi_ring_data sc_tx_rdata[BWI_TX_NRING];
+ bus_dma_tag_t sc_rxring_dtag;
+ struct bwi_ring_data sc_rx_rdata;
+
+ struct bwi_txstats_data *sc_txstats;
+
+ int sc_tx_timer;
+ const struct ieee80211_rate_table *sc_rates;
+
+ struct bwi_tx_radiotap_hdr sc_tx_th;
+ int sc_tx_th_len;
+ struct bwi_rx_radiotap_hdr sc_rx_th;
+ int sc_rx_th_len;
+
+ struct taskqueue *sc_tq;
+ struct task sc_restart_task;
+
+ int (*sc_init_tx_ring)(struct bwi_softc *, int);
+ void (*sc_free_tx_ring)(struct bwi_softc *, int);
+
+ int (*sc_init_rx_ring)(struct bwi_softc *);
+ void (*sc_free_rx_ring)(struct bwi_softc *);
+
+ int (*sc_init_txstats)(struct bwi_softc *);
+ void (*sc_free_txstats)(struct bwi_softc *);
+
+ void (*sc_setup_rxdesc)
+ (struct bwi_softc *, int, bus_addr_t, int);
+ int (*sc_rxeof)(struct bwi_softc *);
+
+ void (*sc_setup_txdesc)
+ (struct bwi_softc *, struct bwi_ring_data *,
+ int, bus_addr_t, int);
+ void (*sc_start_tx)
+ (struct bwi_softc *, uint32_t, int);
+
+ void (*sc_txeof_status)(struct bwi_softc *);
+
+ /* Sysctl variables */
+ int sc_fw_version; /* BWI_FW_VERSION[34] */
+ int sc_dwell_time; /* milliseconds */
+ int sc_led_idle;
+ int sc_led_blink;
+ int sc_txpwr_calib;
+ uint32_t sc_debug; /* BWI_DBG_ */
+};
+
+#define BWI_F_BUS_INITED 0x1
+#define BWI_F_PROMISC 0x2
+#define BWI_F_STOP 0x4
+
+#define BWI_DBG_MAC 0x00000001
+#define BWI_DBG_RF 0x00000002
+#define BWI_DBG_PHY 0x00000004
+#define BWI_DBG_MISC 0x00000008
+
+#define BWI_DBG_ATTACH 0x00000010
+#define BWI_DBG_INIT 0x00000020
+#define BWI_DBG_FIRMWARE 0x00000040
+#define BWI_DBG_80211 0x00000080
+#define BWI_DBG_TXPOWER 0x00000100
+#define BWI_DBG_INTR 0x00000200
+#define BWI_DBG_RX 0x00000400
+#define BWI_DBG_TX 0x00000800
+#define BWI_DBG_TXEOF 0x00001000
+#define BWI_DBG_LED 0x00002000
+
+#define BWI_LOCK_INIT(sc) \
+ mtx_init(&(sc)->sc_mtx, device_get_nameunit((sc)->sc_dev), \
+ MTX_NETWORK_LOCK, MTX_DEF | MTX_RECURSE)
+#define BWI_LOCK_DESTROY(sc) mtx_destroy(&(sc)->sc_mtx)
+#define BWI_LOCK(sc) mtx_lock(&(sc)->sc_mtx)
+#define BWI_UNLOCK(sc) mtx_unlock(&(sc)->sc_mtx)
+#define BWI_ASSERT_LOCKED(sc) mtx_assert(&(sc)->sc_mtx, MA_OWNED)
+
+int bwi_attach(struct bwi_softc *);
+int bwi_detach(struct bwi_softc *);
+void bwi_suspend(struct bwi_softc *);
+void bwi_resume(struct bwi_softc *);
+int bwi_shutdown(struct bwi_softc *);
+void bwi_intr(void *);
+
+int bwi_bus_init(struct bwi_softc *, struct bwi_mac *mac);
+
+uint16_t bwi_read_sprom(struct bwi_softc *, uint16_t);
+int bwi_regwin_switch(struct bwi_softc *, struct bwi_regwin *,
+ struct bwi_regwin **);
+int bwi_regwin_is_enabled(struct bwi_softc *, struct bwi_regwin *);
+void bwi_regwin_enable(struct bwi_softc *, struct bwi_regwin *,
+ uint32_t);
+void bwi_regwin_disable(struct bwi_softc *, struct bwi_regwin *,
+ uint32_t);
+
+#define abs(a) __builtin_abs(a)
+
+/* XXX does not belong here */
+struct ieee80211_ds_plcp_hdr {
+ uint8_t i_signal;
+ uint8_t i_service;
+ uint16_t i_length;
+ uint16_t i_crc;
+} __packed;
+
+#endif /* !_IF_BWIVAR_H */
diff --git a/sys/modules/bwi/Makefile b/sys/modules/bwi/Makefile
new file mode 100644
index 0000000..cdd5c90
--- /dev/null
+++ b/sys/modules/bwi/Makefile
@@ -0,0 +1,14 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/bwi
+
+KMOD = if_bwi
+
+SRCS = if_bwi.c if_bwi_pci.c bwimac.c bwiphy.c bwirf.c
+SRCS += device_if.h bus_if.h pci_if.h opt_inet.h opt_bwi.h
+
+opt_bwi.h:
+ echo '#define BWI_DEBUG 1' > opt_bwi.h
+# echo '#define BWI_DEBUG_VERBOSE 1' >> opt_bwi.h
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud