11000Sxc151355 /* 26235Sxc151355 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 31000Sxc151355 * Use is subject to license terms. 41000Sxc151355 */ 51000Sxc151355 61000Sxc151355 /* 71000Sxc151355 * Copyright (c) 2002-2004 Sam Leffler, Errno Consulting 81000Sxc151355 * All rights reserved. 91000Sxc151355 * 101000Sxc151355 * Redistribution and use in source and binary forms, with or without 111000Sxc151355 * modification, are permitted provided that the following conditions 121000Sxc151355 * are met: 131000Sxc151355 * 1. Redistributions of source code must retain the above copyright 141000Sxc151355 * notice, this list of conditions and the following disclaimer, 151000Sxc151355 * without modification. 161000Sxc151355 * 2. Redistributions in binary form must reproduce at minimum a disclaimer 171000Sxc151355 * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any 181000Sxc151355 * redistribution must be conditioned upon including a substantially 191000Sxc151355 * similar Disclaimer requirement for further binary redistribution. 201000Sxc151355 * 3. Neither the names of the above-listed copyright holders nor the names 211000Sxc151355 * of any contributors may be used to endorse or promote products derived 221000Sxc151355 * from this software without specific prior written permission. 231000Sxc151355 * 241000Sxc151355 * NO WARRANTY 251000Sxc151355 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 261000Sxc151355 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 271000Sxc151355 * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY 281000Sxc151355 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 291000Sxc151355 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, 301000Sxc151355 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 311000Sxc151355 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 321000Sxc151355 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 331000Sxc151355 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 341000Sxc151355 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 351000Sxc151355 * THE POSSIBILITY OF SUCH DAMAGES. 361000Sxc151355 * 371000Sxc151355 */ 381000Sxc151355 391000Sxc151355 #pragma ident "%Z%%M% %I% %E% SMI" 401000Sxc151355 411000Sxc151355 /* 421000Sxc151355 * Driver for the Atheros Wireless LAN controller. 431000Sxc151355 * 443147Sxc151355 * The Atheros driver calls into net80211 module for IEEE80211 protocol 453147Sxc151355 * management functionalities. The driver includes a LLD(Low Level Driver) 463147Sxc151355 * part to implement H/W related operations. 471000Sxc151355 * The following is the high level structure of ath driver. 481000Sxc151355 * (The arrows between modules indicate function call direction.) 491000Sxc151355 * 501000Sxc151355 * 513147Sxc151355 * | 523147Sxc151355 * | GLD thread 533147Sxc151355 * V 543147Sxc151355 * ================== ========================================= 553147Sxc151355 * | | |[1] | 563147Sxc151355 * | | | GLDv3 Callback functions registered | 573147Sxc151355 * | Net80211 | ========================= by | 583147Sxc151355 * | module | | | driver | 593147Sxc151355 * | | V | | 603147Sxc151355 * | |======================== | | 613147Sxc151355 * | Functions exported by net80211 | | | 623147Sxc151355 * | | | | 633147Sxc151355 * ========================================== ================= 643147Sxc151355 * | | 653147Sxc151355 * V | 663147Sxc151355 * +----------------------------------+ | 673147Sxc151355 * |[2] | | 683147Sxc151355 * | Net80211 Callback functions | | 693147Sxc151355 * | registered by LLD | | 703147Sxc151355 * +----------------------------------+ | 713147Sxc151355 * | | 723147Sxc151355 * V v 733147Sxc151355 * +-----------------------------------------------------------+ 743147Sxc151355 * |[3] | 753147Sxc151355 * | LLD Internal functions | 763147Sxc151355 * | | 773147Sxc151355 * +-----------------------------------------------------------+ 783147Sxc151355 * ^ 793147Sxc151355 * | Software interrupt thread 803147Sxc151355 * | 811000Sxc151355 * 821000Sxc151355 * The short description of each module is as below: 833147Sxc151355 * Module 1: GLD callback functions, which are intercepting the calls from 843147Sxc151355 * GLD to LLD. 853147Sxc151355 * Module 2: Net80211 callback functions registered by LLD, which 863147Sxc151355 * calls into LLD for H/W related functions needed by net80211. 873147Sxc151355 * Module 3: LLD Internal functions, which are responsible for allocing 881000Sxc151355 * descriptor/buffer, handling interrupt and other H/W 891000Sxc151355 * operations. 901000Sxc151355 * 911000Sxc151355 * All functions are running in 3 types of thread: 921000Sxc151355 * 1. GLD callbacks threads, such as ioctl, intr, etc. 933147Sxc151355 * 2. Clock interruptt thread which is responsible for scan, rate control and 943147Sxc151355 * calibration. 951000Sxc151355 * 3. Software Interrupt thread originated in LLD. 961000Sxc151355 * 971000Sxc151355 * The lock strategy is as below: 981000Sxc151355 * There have 4 queues for tx, each queue has one asc_txqlock[i] to 991000Sxc151355 * prevent conflicts access to queue resource from different thread. 1001000Sxc151355 * 1011000Sxc151355 * All the transmit buffers are contained in asc_txbuf which are 1021000Sxc151355 * protected by asc_txbuflock. 1031000Sxc151355 * 1041000Sxc151355 * Each receive buffers are contained in asc_rxbuf which are protected 1051000Sxc151355 * by asc_rxbuflock. 1061000Sxc151355 * 1071000Sxc151355 * In ath struct, asc_genlock is a general lock, protecting most other 1081000Sxc151355 * operational data in ath_softc struct and HAL accesses. 1091000Sxc151355 * It is acquired by the interupt handler and most "mode-ctrl" routines. 1101000Sxc151355 * 1111000Sxc151355 * Any of the locks can be acquired singly, but where multiple 1121000Sxc151355 * locks are acquired, they *must* be in the order: 1133147Sxc151355 * asc_genlock >> asc_txqlock[i] >> asc_txbuflock >> asc_rxbuflock 1141000Sxc151355 */ 1151000Sxc151355 1161000Sxc151355 #include <sys/param.h> 1171000Sxc151355 #include <sys/types.h> 1181000Sxc151355 #include <sys/signal.h> 1191000Sxc151355 #include <sys/stream.h> 1201000Sxc151355 #include <sys/termio.h> 1211000Sxc151355 #include <sys/errno.h> 1221000Sxc151355 #include <sys/file.h> 1231000Sxc151355 #include <sys/cmn_err.h> 1241000Sxc151355 #include <sys/stropts.h> 1251000Sxc151355 #include <sys/strsubr.h> 1261000Sxc151355 #include <sys/strtty.h> 1271000Sxc151355 #include <sys/kbio.h> 1281000Sxc151355 #include <sys/cred.h> 1291000Sxc151355 #include <sys/stat.h> 1301000Sxc151355 #include <sys/consdev.h> 1311000Sxc151355 #include <sys/kmem.h> 1321000Sxc151355 #include <sys/modctl.h> 1331000Sxc151355 #include <sys/ddi.h> 1341000Sxc151355 #include <sys/sunddi.h> 1351000Sxc151355 #include <sys/pci.h> 1361000Sxc151355 #include <sys/errno.h> 1373147Sxc151355 #include <sys/mac.h> 1381000Sxc151355 #include <sys/dlpi.h> 1391000Sxc151355 #include <sys/ethernet.h> 1401000Sxc151355 #include <sys/list.h> 1411000Sxc151355 #include <sys/byteorder.h> 1421000Sxc151355 #include <sys/strsun.h> 1431000Sxc151355 #include <sys/policy.h> 1441000Sxc151355 #include <inet/common.h> 1451000Sxc151355 #include <inet/nd.h> 1461000Sxc151355 #include <inet/mi.h> 1471000Sxc151355 #include <inet/wifi_ioctl.h> 1483147Sxc151355 #include <sys/mac_wifi.h> 1491000Sxc151355 #include "ath_hal.h" 1501000Sxc151355 #include "ath_impl.h" 1511000Sxc151355 #include "ath_aux.h" 1521000Sxc151355 #include "ath_rate.h" 1531000Sxc151355 1543147Sxc151355 #define ATH_MAX_RSSI 63 /* max rssi */ 1553147Sxc151355 1561000Sxc151355 extern void ath_halfix_init(void); 1571000Sxc151355 extern void ath_halfix_finit(void); 1581000Sxc151355 extern int32_t ath_getset(ath_t *asc, mblk_t *mp, uint32_t cmd); 1591000Sxc151355 1601000Sxc151355 /* 1611000Sxc151355 * PIO access attributes for registers 1621000Sxc151355 */ 1631000Sxc151355 static ddi_device_acc_attr_t ath_reg_accattr = { 1641000Sxc151355 DDI_DEVICE_ATTR_V0, 1651000Sxc151355 DDI_STRUCTURE_LE_ACC, 1661000Sxc151355 DDI_STRICTORDER_ACC 1671000Sxc151355 }; 1681000Sxc151355 1691000Sxc151355 /* 1701000Sxc151355 * DMA access attributes for descriptors: NOT to be byte swapped. 1711000Sxc151355 */ 1721000Sxc151355 static ddi_device_acc_attr_t ath_desc_accattr = { 1731000Sxc151355 DDI_DEVICE_ATTR_V0, 1741000Sxc151355 DDI_STRUCTURE_LE_ACC, 1751000Sxc151355 DDI_STRICTORDER_ACC 1761000Sxc151355 }; 1771000Sxc151355 1781000Sxc151355 /* 1791000Sxc151355 * Describes the chip's DMA engine 1801000Sxc151355 */ 1816235Sxc151355 static ddi_dma_attr_t ath_dma_attr = { 1826235Sxc151355 DMA_ATTR_V0, /* version number */ 1836235Sxc151355 0, /* low address */ 1846235Sxc151355 0xffffffffU, /* high address */ 1856235Sxc151355 0x3ffffU, /* counter register max */ 1866235Sxc151355 1, /* alignment */ 1876235Sxc151355 0xFFF, /* burst sizes */ 1886235Sxc151355 1, /* minimum transfer size */ 1896235Sxc151355 0x3ffffU, /* max transfer size */ 1906235Sxc151355 0xffffffffU, /* address register max */ 1916235Sxc151355 1, /* no scatter-gather */ 1926235Sxc151355 1, /* granularity of device */ 1936235Sxc151355 0, /* DMA flags */ 1946235Sxc151355 }; 1956235Sxc151355 1966235Sxc151355 static ddi_dma_attr_t ath_desc_dma_attr = { 1976235Sxc151355 DMA_ATTR_V0, /* version number */ 1986235Sxc151355 0, /* low address */ 1996235Sxc151355 0xffffffffU, /* high address */ 2006235Sxc151355 0xffffffffU, /* counter register max */ 2016235Sxc151355 0x1000, /* alignment */ 2026235Sxc151355 0xFFF, /* burst sizes */ 2036235Sxc151355 1, /* minimum transfer size */ 2046235Sxc151355 0xffffffffU, /* max transfer size */ 2056235Sxc151355 0xffffffffU, /* address register max */ 2066235Sxc151355 1, /* no scatter-gather */ 2076235Sxc151355 1, /* granularity of device */ 2086235Sxc151355 0, /* DMA flags */ 2091000Sxc151355 }; 2101000Sxc151355 2111000Sxc151355 static kmutex_t ath_loglock; 2121000Sxc151355 static void *ath_soft_state_p = NULL; 2133147Sxc151355 static int ath_dwelltime = 150; /* scan interval, ms */ 2143147Sxc151355 2153147Sxc151355 static int ath_m_stat(void *, uint_t, uint64_t *); 2163147Sxc151355 static int ath_m_start(void *); 2173147Sxc151355 static void ath_m_stop(void *); 2183147Sxc151355 static int ath_m_promisc(void *, boolean_t); 2193147Sxc151355 static int ath_m_multicst(void *, boolean_t, const uint8_t *); 2203147Sxc151355 static int ath_m_unicst(void *, const uint8_t *); 2213147Sxc151355 static mblk_t *ath_m_tx(void *, mblk_t *); 2223147Sxc151355 static void ath_m_ioctl(void *, queue_t *, mblk_t *); 2233147Sxc151355 static mac_callbacks_t ath_m_callbacks = { 2243147Sxc151355 MC_IOCTL, 2253147Sxc151355 ath_m_stat, 2263147Sxc151355 ath_m_start, 2273147Sxc151355 ath_m_stop, 2283147Sxc151355 ath_m_promisc, 2293147Sxc151355 ath_m_multicst, 2303147Sxc151355 ath_m_unicst, 2313147Sxc151355 ath_m_tx, 2323147Sxc151355 NULL, /* mc_resources; */ 2333147Sxc151355 ath_m_ioctl, 2343147Sxc151355 NULL /* mc_getcapab */ 2353147Sxc151355 }; 2361000Sxc151355 2371000Sxc151355 /* 2381000Sxc151355 * Available debug flags: 2391000Sxc151355 * ATH_DBG_INIT, ATH_DBG_GLD, ATH_DBG_HAL, ATH_DBG_INT, ATH_DBG_ATTACH, 2401000Sxc151355 * ATH_DBG_DETACH, ATH_DBG_AUX, ATH_DBG_WIFICFG, ATH_DBG_OSDEP 2411000Sxc151355 */ 2421000Sxc151355 uint32_t ath_dbg_flags = 0; 2431000Sxc151355 2441000Sxc151355 /* 2451000Sxc151355 * Exception/warning cases not leading to panic. 2461000Sxc151355 */ 2471000Sxc151355 void 2481000Sxc151355 ath_problem(const int8_t *fmt, ...) 2491000Sxc151355 { 2501000Sxc151355 va_list args; 2511000Sxc151355 2521000Sxc151355 mutex_enter(&ath_loglock); 2531000Sxc151355 2541000Sxc151355 va_start(args, fmt); 2551000Sxc151355 vcmn_err(CE_WARN, fmt, args); 2561000Sxc151355 va_end(args); 2571000Sxc151355 2581000Sxc151355 mutex_exit(&ath_loglock); 2591000Sxc151355 } 2601000Sxc151355 2611000Sxc151355 /* 2621000Sxc151355 * Normal log information independent of debug. 2631000Sxc151355 */ 2641000Sxc151355 void 2651000Sxc151355 ath_log(const int8_t *fmt, ...) 2661000Sxc151355 { 2671000Sxc151355 va_list args; 2681000Sxc151355 2691000Sxc151355 mutex_enter(&ath_loglock); 2701000Sxc151355 2711000Sxc151355 va_start(args, fmt); 2721000Sxc151355 vcmn_err(CE_CONT, fmt, args); 2731000Sxc151355 va_end(args); 2741000Sxc151355 2751000Sxc151355 mutex_exit(&ath_loglock); 2761000Sxc151355 } 2771000Sxc151355 2781000Sxc151355 void 2791000Sxc151355 ath_dbg(uint32_t dbg_flags, const int8_t *fmt, ...) 2801000Sxc151355 { 2811000Sxc151355 va_list args; 2821000Sxc151355 2831000Sxc151355 if (dbg_flags & ath_dbg_flags) { 2841000Sxc151355 mutex_enter(&ath_loglock); 2851000Sxc151355 va_start(args, fmt); 2861000Sxc151355 vcmn_err(CE_CONT, fmt, args); 2871000Sxc151355 va_end(args); 2881000Sxc151355 mutex_exit(&ath_loglock); 2891000Sxc151355 } 2901000Sxc151355 } 2911000Sxc151355 2921000Sxc151355 void 2931000Sxc151355 ath_setup_desc(ath_t *asc, struct ath_buf *bf) 2941000Sxc151355 { 2951000Sxc151355 struct ath_desc *ds; 2961000Sxc151355 2971000Sxc151355 ds = bf->bf_desc; 2981000Sxc151355 ds->ds_link = bf->bf_daddr; 2991000Sxc151355 ds->ds_data = bf->bf_dma.cookie.dmac_address; 3003147Sxc151355 ds->ds_vdata = bf->bf_dma.mem_va; 3011000Sxc151355 ATH_HAL_SETUPRXDESC(asc->asc_ah, ds, 3021000Sxc151355 bf->bf_dma.alength, /* buffer size */ 3031000Sxc151355 0); 3041000Sxc151355 3051000Sxc151355 if (asc->asc_rxlink != NULL) 3061000Sxc151355 *asc->asc_rxlink = bf->bf_daddr; 3071000Sxc151355 asc->asc_rxlink = &ds->ds_link; 3081000Sxc151355 } 3091000Sxc151355 3101000Sxc151355 3111000Sxc151355 /* 3121000Sxc151355 * Allocate an area of memory and a DMA handle for accessing it 3131000Sxc151355 */ 3141000Sxc151355 static int 3156235Sxc151355 ath_alloc_dma_mem(dev_info_t *devinfo, ddi_dma_attr_t *dma_attr, size_t memsize, 3166235Sxc151355 ddi_device_acc_attr_t *attr_p, uint_t alloc_flags, 3176235Sxc151355 uint_t bind_flags, dma_area_t *dma_p) 3181000Sxc151355 { 3191000Sxc151355 int err; 3201000Sxc151355 3211000Sxc151355 /* 3221000Sxc151355 * Allocate handle 3231000Sxc151355 */ 3246235Sxc151355 err = ddi_dma_alloc_handle(devinfo, dma_attr, 3255420Sxc151355 DDI_DMA_SLEEP, NULL, &dma_p->dma_hdl); 3261000Sxc151355 if (err != DDI_SUCCESS) 3271000Sxc151355 return (DDI_FAILURE); 3281000Sxc151355 3291000Sxc151355 /* 3301000Sxc151355 * Allocate memory 3311000Sxc151355 */ 3321000Sxc151355 err = ddi_dma_mem_alloc(dma_p->dma_hdl, memsize, attr_p, 3331000Sxc151355 alloc_flags, DDI_DMA_SLEEP, NULL, &dma_p->mem_va, 3341000Sxc151355 &dma_p->alength, &dma_p->acc_hdl); 3351000Sxc151355 if (err != DDI_SUCCESS) 3361000Sxc151355 return (DDI_FAILURE); 3371000Sxc151355 3381000Sxc151355 /* 3391000Sxc151355 * Bind the two together 3401000Sxc151355 */ 3411000Sxc151355 err = ddi_dma_addr_bind_handle(dma_p->dma_hdl, NULL, 3425420Sxc151355 dma_p->mem_va, dma_p->alength, bind_flags, 3435420Sxc151355 DDI_DMA_SLEEP, NULL, &dma_p->cookie, &dma_p->ncookies); 3441000Sxc151355 if (err != DDI_DMA_MAPPED) 3451000Sxc151355 return (DDI_FAILURE); 3461000Sxc151355 3471000Sxc151355 dma_p->nslots = ~0U; 3481000Sxc151355 dma_p->size = ~0U; 3491000Sxc151355 dma_p->token = ~0U; 3501000Sxc151355 dma_p->offset = 0; 3511000Sxc151355 return (DDI_SUCCESS); 3521000Sxc151355 } 3531000Sxc151355 3541000Sxc151355 /* 3551000Sxc151355 * Free one allocated area of DMAable memory 3561000Sxc151355 */ 3571000Sxc151355 static void 3581000Sxc151355 ath_free_dma_mem(dma_area_t *dma_p) 3591000Sxc151355 { 3601000Sxc151355 if (dma_p->dma_hdl != NULL) { 3611000Sxc151355 (void) ddi_dma_unbind_handle(dma_p->dma_hdl); 3621000Sxc151355 if (dma_p->acc_hdl != NULL) { 3631000Sxc151355 ddi_dma_mem_free(&dma_p->acc_hdl); 3641000Sxc151355 dma_p->acc_hdl = NULL; 3651000Sxc151355 } 3661000Sxc151355 ddi_dma_free_handle(&dma_p->dma_hdl); 3671000Sxc151355 dma_p->ncookies = 0; 3681000Sxc151355 dma_p->dma_hdl = NULL; 3691000Sxc151355 } 3701000Sxc151355 } 3711000Sxc151355 3721000Sxc151355 3731000Sxc151355 static int 3741000Sxc151355 ath_desc_alloc(dev_info_t *devinfo, ath_t *asc) 3751000Sxc151355 { 3761000Sxc151355 int i, err; 3771000Sxc151355 size_t size; 3781000Sxc151355 struct ath_desc *ds; 3791000Sxc151355 struct ath_buf *bf; 3801000Sxc151355 3811000Sxc151355 size = sizeof (struct ath_desc) * (ATH_TXBUF + ATH_RXBUF); 3821000Sxc151355 3836235Sxc151355 err = ath_alloc_dma_mem(devinfo, &ath_desc_dma_attr, size, 3846235Sxc151355 &ath_desc_accattr, DDI_DMA_CONSISTENT, 3856235Sxc151355 DDI_DMA_RDWR | DDI_DMA_CONSISTENT, &asc->asc_desc_dma); 3861000Sxc151355 3871000Sxc151355 /* virtual address of the first descriptor */ 3881000Sxc151355 asc->asc_desc = (struct ath_desc *)asc->asc_desc_dma.mem_va; 3891000Sxc151355 3901000Sxc151355 ds = asc->asc_desc; 3911000Sxc151355 ATH_DEBUG((ATH_DBG_INIT, "ath: ath_desc_alloc(): DMA map: " 3921000Sxc151355 "%p (%d) -> %p\n", 3931000Sxc151355 asc->asc_desc, asc->asc_desc_dma.alength, 3941000Sxc151355 asc->asc_desc_dma.cookie.dmac_address)); 3951000Sxc151355 3961000Sxc151355 /* allocate data structures to describe TX/RX DMA buffers */ 3971000Sxc151355 asc->asc_vbuflen = sizeof (struct ath_buf) * (ATH_TXBUF + ATH_RXBUF); 3981000Sxc151355 bf = (struct ath_buf *)kmem_zalloc(asc->asc_vbuflen, KM_SLEEP); 3991000Sxc151355 asc->asc_vbufptr = bf; 4001000Sxc151355 4011000Sxc151355 /* DMA buffer size for each TX/RX packet */ 4021000Sxc151355 asc->asc_dmabuf_size = roundup(1000 + sizeof (struct ieee80211_frame) + 4031000Sxc151355 IEEE80211_MTU + IEEE80211_CRC_LEN + 4041000Sxc151355 (IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN + 4051000Sxc151355 IEEE80211_WEP_CRCLEN), asc->asc_cachelsz); 4061000Sxc151355 4071000Sxc151355 /* create RX buffer list and allocate DMA memory */ 4081000Sxc151355 list_create(&asc->asc_rxbuf_list, sizeof (struct ath_buf), 4091000Sxc151355 offsetof(struct ath_buf, bf_node)); 4101000Sxc151355 for (i = 0; i < ATH_RXBUF; i++, bf++, ds++) { 4111000Sxc151355 bf->bf_desc = ds; 4121000Sxc151355 bf->bf_daddr = asc->asc_desc_dma.cookie.dmac_address + 413*6990Sgd78059 ((uintptr_t)ds - (uintptr_t)asc->asc_desc); 4141000Sxc151355 list_insert_tail(&asc->asc_rxbuf_list, bf); 4151000Sxc151355 4161000Sxc151355 /* alloc DMA memory */ 4176235Sxc151355 err = ath_alloc_dma_mem(devinfo, &ath_dma_attr, 4186235Sxc151355 asc->asc_dmabuf_size, &ath_desc_accattr, 4191000Sxc151355 DDI_DMA_STREAMING, DDI_DMA_READ | DDI_DMA_STREAMING, 4201000Sxc151355 &bf->bf_dma); 4211000Sxc151355 if (err != DDI_SUCCESS) 4221000Sxc151355 return (err); 4231000Sxc151355 } 4241000Sxc151355 4251000Sxc151355 /* create TX buffer list and allocate DMA memory */ 4261000Sxc151355 list_create(&asc->asc_txbuf_list, sizeof (struct ath_buf), 4271000Sxc151355 offsetof(struct ath_buf, bf_node)); 4281000Sxc151355 for (i = 0; i < ATH_TXBUF; i++, bf++, ds++) { 4291000Sxc151355 bf->bf_desc = ds; 4301000Sxc151355 bf->bf_daddr = asc->asc_desc_dma.cookie.dmac_address + 431*6990Sgd78059 ((uintptr_t)ds - (uintptr_t)asc->asc_desc); 4321000Sxc151355 list_insert_tail(&asc->asc_txbuf_list, bf); 4331000Sxc151355 4341000Sxc151355 /* alloc DMA memory */ 4356235Sxc151355 err = ath_alloc_dma_mem(devinfo, &ath_dma_attr, 4366235Sxc151355 asc->asc_dmabuf_size, &ath_desc_accattr, 4371000Sxc151355 DDI_DMA_STREAMING, DDI_DMA_STREAMING, &bf->bf_dma); 4381000Sxc151355 if (err != DDI_SUCCESS) 4391000Sxc151355 return (err); 4401000Sxc151355 } 4411000Sxc151355 4421000Sxc151355 return (DDI_SUCCESS); 4431000Sxc151355 } 4441000Sxc151355 4451000Sxc151355 static void 4461000Sxc151355 ath_desc_free(ath_t *asc) 4471000Sxc151355 { 4481000Sxc151355 struct ath_buf *bf; 4491000Sxc151355 4501000Sxc151355 /* Free TX DMA buffer */ 4511000Sxc151355 bf = list_head(&asc->asc_txbuf_list); 4521000Sxc151355 while (bf != NULL) { 4531000Sxc151355 ath_free_dma_mem(&bf->bf_dma); 4541000Sxc151355 list_remove(&asc->asc_txbuf_list, bf); 4551000Sxc151355 bf = list_head(&asc->asc_txbuf_list); 4561000Sxc151355 } 4571000Sxc151355 list_destroy(&asc->asc_txbuf_list); 4581000Sxc151355 4591000Sxc151355 /* Free RX DMA uffer */ 4601000Sxc151355 bf = list_head(&asc->asc_rxbuf_list); 4611000Sxc151355 while (bf != NULL) { 4621000Sxc151355 ath_free_dma_mem(&bf->bf_dma); 4631000Sxc151355 list_remove(&asc->asc_rxbuf_list, bf); 4641000Sxc151355 bf = list_head(&asc->asc_rxbuf_list); 4651000Sxc151355 } 4661000Sxc151355 list_destroy(&asc->asc_rxbuf_list); 4671000Sxc151355 4681000Sxc151355 /* Free descriptor DMA buffer */ 4691000Sxc151355 ath_free_dma_mem(&asc->asc_desc_dma); 4701000Sxc151355 4711000Sxc151355 kmem_free((void *)asc->asc_vbufptr, asc->asc_vbuflen); 4721000Sxc151355 asc->asc_vbufptr = NULL; 4731000Sxc151355 } 4741000Sxc151355 4751000Sxc151355 static void 4761000Sxc151355 ath_printrxbuf(struct ath_buf *bf, int32_t done) 4771000Sxc151355 { 4781000Sxc151355 struct ath_desc *ds = bf->bf_desc; 4791000Sxc151355 4801000Sxc151355 ATH_DEBUG((ATH_DBG_RECV, "ath: R (%p %p) %08x %08x %08x " 4811000Sxc151355 "%08x %08x %08x %c\n", 4821000Sxc151355 ds, bf->bf_daddr, 4831000Sxc151355 ds->ds_link, ds->ds_data, 4841000Sxc151355 ds->ds_ctl0, ds->ds_ctl1, 4851000Sxc151355 ds->ds_hw[0], ds->ds_hw[1], 4861000Sxc151355 !done ? ' ' : (ds->ds_rxstat.rs_status == 0) ? '*' : '!')); 4871000Sxc151355 } 4881000Sxc151355 4891000Sxc151355 static void 4901000Sxc151355 ath_rx_handler(ath_t *asc) 4911000Sxc151355 { 4923147Sxc151355 ieee80211com_t *ic = (ieee80211com_t *)asc; 4931000Sxc151355 struct ath_buf *bf; 4941000Sxc151355 struct ath_hal *ah = asc->asc_ah; 4951000Sxc151355 struct ath_desc *ds; 4961000Sxc151355 mblk_t *rx_mp; 4973147Sxc151355 struct ieee80211_frame *wh; 4981000Sxc151355 int32_t len, loop = 1; 4991000Sxc151355 uint8_t phyerr; 5001000Sxc151355 HAL_STATUS status; 5011000Sxc151355 HAL_NODE_STATS hal_node_stats; 5023147Sxc151355 struct ieee80211_node *in; 5031000Sxc151355 5041000Sxc151355 do { 5051000Sxc151355 mutex_enter(&asc->asc_rxbuflock); 5061000Sxc151355 bf = list_head(&asc->asc_rxbuf_list); 5071000Sxc151355 if (bf == NULL) { 5081000Sxc151355 ATH_DEBUG((ATH_DBG_RECV, "ath: ath_rx_handler(): " 5091000Sxc151355 "no buffer\n")); 5101000Sxc151355 mutex_exit(&asc->asc_rxbuflock); 5111000Sxc151355 break; 5121000Sxc151355 } 5131000Sxc151355 ASSERT(bf->bf_dma.cookie.dmac_address != NULL); 5141000Sxc151355 ds = bf->bf_desc; 5151000Sxc151355 if (ds->ds_link == bf->bf_daddr) { 5161000Sxc151355 /* 5171000Sxc151355 * Never process the self-linked entry at the end, 5181000Sxc151355 * this may be met at heavy load. 5191000Sxc151355 */ 5201000Sxc151355 mutex_exit(&asc->asc_rxbuflock); 5211000Sxc151355 break; 5221000Sxc151355 } 5231000Sxc151355 5241000Sxc151355 status = ATH_HAL_RXPROCDESC(ah, ds, 5251000Sxc151355 bf->bf_daddr, 5261000Sxc151355 ATH_PA2DESC(asc, ds->ds_link)); 5271000Sxc151355 if (status == HAL_EINPROGRESS) { 5281000Sxc151355 mutex_exit(&asc->asc_rxbuflock); 5291000Sxc151355 break; 5301000Sxc151355 } 5311000Sxc151355 list_remove(&asc->asc_rxbuf_list, bf); 5321000Sxc151355 mutex_exit(&asc->asc_rxbuflock); 5331000Sxc151355 5341000Sxc151355 if (ds->ds_rxstat.rs_status != 0) { 5351000Sxc151355 if (ds->ds_rxstat.rs_status & HAL_RXERR_CRC) 5361000Sxc151355 asc->asc_stats.ast_rx_crcerr++; 5371000Sxc151355 if (ds->ds_rxstat.rs_status & HAL_RXERR_FIFO) 5381000Sxc151355 asc->asc_stats.ast_rx_fifoerr++; 5391000Sxc151355 if (ds->ds_rxstat.rs_status & HAL_RXERR_DECRYPT) 5401000Sxc151355 asc->asc_stats.ast_rx_badcrypt++; 5411000Sxc151355 if (ds->ds_rxstat.rs_status & HAL_RXERR_PHY) { 5421000Sxc151355 asc->asc_stats.ast_rx_phyerr++; 5431000Sxc151355 phyerr = ds->ds_rxstat.rs_phyerr & 0x1f; 5441000Sxc151355 asc->asc_stats.ast_rx_phy[phyerr]++; 5451000Sxc151355 } 5461000Sxc151355 goto rx_next; 5471000Sxc151355 } 5481000Sxc151355 len = ds->ds_rxstat.rs_datalen; 5491000Sxc151355 5501000Sxc151355 /* less than sizeof(struct ieee80211_frame) */ 5511000Sxc151355 if (len < 20) { 5521000Sxc151355 asc->asc_stats.ast_rx_tooshort++; 5531000Sxc151355 goto rx_next; 5541000Sxc151355 } 5551000Sxc151355 5561000Sxc151355 if ((rx_mp = allocb(asc->asc_dmabuf_size, BPRI_MED)) == NULL) { 5571000Sxc151355 ath_problem("ath: ath_rx_handler(): " 5581000Sxc151355 "allocing mblk buffer failed.\n"); 5591000Sxc151355 return; 5601000Sxc151355 } 5611000Sxc151355 5621000Sxc151355 ATH_DMA_SYNC(bf->bf_dma, DDI_DMA_SYNC_FORCPU); 5631000Sxc151355 bcopy(bf->bf_dma.mem_va, rx_mp->b_rptr, len); 5641000Sxc151355 5651000Sxc151355 rx_mp->b_wptr += len; 5661000Sxc151355 wh = (struct ieee80211_frame *)rx_mp->b_rptr; 5673147Sxc151355 if ((wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) == 5681000Sxc151355 IEEE80211_FC0_TYPE_CTL) { 5691000Sxc151355 /* 5701000Sxc151355 * Ignore control frame received in promisc mode. 5711000Sxc151355 */ 5721000Sxc151355 freemsg(rx_mp); 5731000Sxc151355 goto rx_next; 5741000Sxc151355 } 5751000Sxc151355 /* Remove the CRC at the end of IEEE80211 frame */ 5761000Sxc151355 rx_mp->b_wptr -= IEEE80211_CRC_LEN; 5771000Sxc151355 #ifdef DEBUG 5781000Sxc151355 ath_printrxbuf(bf, status == HAL_OK); 5791000Sxc151355 #endif /* DEBUG */ 5803147Sxc151355 /* 5813147Sxc151355 * Locate the node for sender, track state, and then 5823147Sxc151355 * pass the (referenced) node up to the 802.11 layer 5833147Sxc151355 * for its use. 5843147Sxc151355 */ 5853147Sxc151355 in = ieee80211_find_rxnode(ic, wh); 5863147Sxc151355 5873147Sxc151355 /* 5883147Sxc151355 * Send frame up for processing. 5893147Sxc151355 */ 5903147Sxc151355 (void) ieee80211_input(ic, rx_mp, in, 5911000Sxc151355 ds->ds_rxstat.rs_rssi, 5923147Sxc151355 ds->ds_rxstat.rs_tstamp); 5933147Sxc151355 5943147Sxc151355 ieee80211_free_node(in); 5953147Sxc151355 5961000Sxc151355 rx_next: 5971000Sxc151355 mutex_enter(&asc->asc_rxbuflock); 5981000Sxc151355 list_insert_tail(&asc->asc_rxbuf_list, bf); 5991000Sxc151355 mutex_exit(&asc->asc_rxbuflock); 6001000Sxc151355 ath_setup_desc(asc, bf); 6011000Sxc151355 } while (loop); 6021000Sxc151355 6031000Sxc151355 /* rx signal state monitoring */ 6043147Sxc151355 ATH_HAL_RXMONITOR(ah, &hal_node_stats, &asc->asc_curchan); 6051000Sxc151355 } 6061000Sxc151355 6071000Sxc151355 static void 6081000Sxc151355 ath_printtxbuf(struct ath_buf *bf, int done) 6091000Sxc151355 { 6101000Sxc151355 struct ath_desc *ds = bf->bf_desc; 6111000Sxc151355 6121000Sxc151355 ATH_DEBUG((ATH_DBG_SEND, "ath: T(%p %p) %08x %08x %08x %08x %08x" 6131000Sxc151355 " %08x %08x %08x %c\n", 6141000Sxc151355 ds, bf->bf_daddr, 6151000Sxc151355 ds->ds_link, ds->ds_data, 6161000Sxc151355 ds->ds_ctl0, ds->ds_ctl1, 6171000Sxc151355 ds->ds_hw[0], ds->ds_hw[1], ds->ds_hw[2], ds->ds_hw[3], 6181000Sxc151355 !done ? ' ' : (ds->ds_txstat.ts_status == 0) ? '*' : '!')); 6191000Sxc151355 } 6201000Sxc151355 6211000Sxc151355 /* 6221000Sxc151355 * The input parameter mp has following assumption: 6233147Sxc151355 * For data packets, GLDv3 mac_wifi plugin allocates and fills the 6243147Sxc151355 * ieee80211 header. For management packets, net80211 allocates and 6253147Sxc151355 * fills the ieee80211 header. In both cases, enough spaces in the 6263147Sxc151355 * header are left for encryption option. 6271000Sxc151355 */ 6281000Sxc151355 static int32_t 6293147Sxc151355 ath_tx_start(ath_t *asc, struct ieee80211_node *in, struct ath_buf *bf, 6303147Sxc151355 mblk_t *mp) 6311000Sxc151355 { 6323147Sxc151355 ieee80211com_t *ic = (ieee80211com_t *)asc; 6331000Sxc151355 struct ieee80211_frame *wh; 6341000Sxc151355 struct ath_hal *ah = asc->asc_ah; 6353147Sxc151355 uint32_t subtype, flags, ctsduration; 6361000Sxc151355 int32_t keyix, iswep, hdrlen, pktlen, mblen, mbslen, try0; 6373147Sxc151355 uint8_t rix, cix, txrate, ctsrate; 6381000Sxc151355 struct ath_desc *ds; 6391000Sxc151355 struct ath_txq *txq; 6401000Sxc151355 HAL_PKT_TYPE atype; 6411000Sxc151355 const HAL_RATE_TABLE *rt; 6421000Sxc151355 HAL_BOOL shortPreamble; 6431000Sxc151355 struct ath_node *an; 6443147Sxc151355 caddr_t dest; 6451000Sxc151355 6461000Sxc151355 /* 6471000Sxc151355 * CRC are added by H/W, not encaped by driver, 6481000Sxc151355 * but we must count it in pkt length. 6491000Sxc151355 */ 6501000Sxc151355 pktlen = IEEE80211_CRC_LEN; 6511000Sxc151355 6523147Sxc151355 wh = (struct ieee80211_frame *)mp->b_rptr; 6533147Sxc151355 iswep = wh->i_fc[1] & IEEE80211_FC1_WEP; 6541000Sxc151355 keyix = HAL_TXKEYIX_INVALID; 6551000Sxc151355 hdrlen = sizeof (struct ieee80211_frame); 6563147Sxc151355 if (iswep != 0) { 6573147Sxc151355 const struct ieee80211_cipher *cip; 6583147Sxc151355 struct ieee80211_key *k; 6591000Sxc151355 6603147Sxc151355 /* 6613147Sxc151355 * Construct the 802.11 header+trailer for an encrypted 6623147Sxc151355 * frame. The only reason this can fail is because of an 6633147Sxc151355 * unknown or unsupported cipher/key type. 6643147Sxc151355 */ 6653147Sxc151355 k = ieee80211_crypto_encap(ic, mp); 6663147Sxc151355 if (k == NULL) { 6673147Sxc151355 ATH_DEBUG((ATH_DBG_AUX, "crypto_encap failed\n")); 6683147Sxc151355 /* 6693147Sxc151355 * This can happen when the key is yanked after the 6703147Sxc151355 * frame was queued. Just discard the frame; the 6713147Sxc151355 * 802.11 layer counts failures and provides 6723147Sxc151355 * debugging/diagnostics. 6733147Sxc151355 */ 6743147Sxc151355 return (EIO); 6753147Sxc151355 } 6763147Sxc151355 cip = k->wk_cipher; 6771000Sxc151355 /* 6783147Sxc151355 * Adjust the packet + header lengths for the crypto 6793147Sxc151355 * additions and calculate the h/w key index. When 6803147Sxc151355 * a s/w mic is done the frame will have had any mic 6813147Sxc151355 * added to it prior to entry so m0->m_pkthdr.len above will 6823147Sxc151355 * account for it. Otherwise we need to add it to the 6833147Sxc151355 * packet length. 6841000Sxc151355 */ 6853147Sxc151355 hdrlen += cip->ic_header; 6864126Szf162725 pktlen += cip->ic_trailer; 6873147Sxc151355 if ((k->wk_flags & IEEE80211_KEY_SWMIC) == 0) 6883147Sxc151355 pktlen += cip->ic_miclen; 6893147Sxc151355 keyix = k->wk_keyix; 6901000Sxc151355 6913147Sxc151355 /* packet header may have moved, reset our local pointer */ 6923147Sxc151355 wh = (struct ieee80211_frame *)mp->b_rptr; 6931000Sxc151355 } 6941000Sxc151355 6953147Sxc151355 dest = bf->bf_dma.mem_va; 6963147Sxc151355 for (; mp != NULL; mp = mp->b_cont) { 6973147Sxc151355 mblen = MBLKL(mp); 6983147Sxc151355 bcopy(mp->b_rptr, dest, mblen); 6993147Sxc151355 dest += mblen; 7003147Sxc151355 } 701*6990Sgd78059 mbslen = (uintptr_t)dest - (uintptr_t)bf->bf_dma.mem_va; 7023147Sxc151355 pktlen += mbslen; 7033147Sxc151355 7041000Sxc151355 bf->bf_in = in; 7051000Sxc151355 7061000Sxc151355 /* setup descriptors */ 7071000Sxc151355 ds = bf->bf_desc; 7081000Sxc151355 rt = asc->asc_currates; 7093147Sxc151355 ASSERT(rt != NULL); 7101000Sxc151355 7111000Sxc151355 /* 7121000Sxc151355 * The 802.11 layer marks whether or not we should 7131000Sxc151355 * use short preamble based on the current mode and 7141000Sxc151355 * negotiated parameters. 7151000Sxc151355 */ 7163147Sxc151355 if ((ic->ic_flags & IEEE80211_F_SHPREAMBLE) && 7171000Sxc151355 (in->in_capinfo & IEEE80211_CAPINFO_SHORT_PREAMBLE)) { 7181000Sxc151355 shortPreamble = AH_TRUE; 7191000Sxc151355 asc->asc_stats.ast_tx_shortpre++; 7201000Sxc151355 } else { 7211000Sxc151355 shortPreamble = AH_FALSE; 7221000Sxc151355 } 7231000Sxc151355 7241000Sxc151355 an = ATH_NODE(in); 7251000Sxc151355 7261000Sxc151355 /* 7271000Sxc151355 * Calculate Atheros packet type from IEEE80211 packet header 7281000Sxc151355 * and setup for rate calculations. 7291000Sxc151355 */ 7303147Sxc151355 switch (wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) { 7311000Sxc151355 case IEEE80211_FC0_TYPE_MGT: 7323147Sxc151355 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; 7331000Sxc151355 if (subtype == IEEE80211_FC0_SUBTYPE_BEACON) 7341000Sxc151355 atype = HAL_PKT_TYPE_BEACON; 7351000Sxc151355 else if (subtype == IEEE80211_FC0_SUBTYPE_PROBE_RESP) 7361000Sxc151355 atype = HAL_PKT_TYPE_PROBE_RESP; 7371000Sxc151355 else if (subtype == IEEE80211_FC0_SUBTYPE_ATIM) 7381000Sxc151355 atype = HAL_PKT_TYPE_ATIM; 7391000Sxc151355 else 7401000Sxc151355 atype = HAL_PKT_TYPE_NORMAL; 7411000Sxc151355 rix = 0; /* lowest rate */ 7421000Sxc151355 try0 = ATH_TXMAXTRY; 7431000Sxc151355 if (shortPreamble) 7441000Sxc151355 txrate = an->an_tx_mgtratesp; 7451000Sxc151355 else 7461000Sxc151355 txrate = an->an_tx_mgtrate; 7471000Sxc151355 /* force all ctl frames to highest queue */ 7481000Sxc151355 txq = asc->asc_ac2q[WME_AC_VO]; 7491000Sxc151355 break; 7501000Sxc151355 case IEEE80211_FC0_TYPE_CTL: 7511000Sxc151355 atype = HAL_PKT_TYPE_PSPOLL; 7523147Sxc151355 subtype = wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK; 7531000Sxc151355 rix = 0; /* lowest rate */ 7541000Sxc151355 try0 = ATH_TXMAXTRY; 7551000Sxc151355 if (shortPreamble) 7561000Sxc151355 txrate = an->an_tx_mgtratesp; 7571000Sxc151355 else 7581000Sxc151355 txrate = an->an_tx_mgtrate; 7591000Sxc151355 /* force all ctl frames to highest queue */ 7601000Sxc151355 txq = asc->asc_ac2q[WME_AC_VO]; 7611000Sxc151355 break; 7621000Sxc151355 case IEEE80211_FC0_TYPE_DATA: 7631000Sxc151355 atype = HAL_PKT_TYPE_NORMAL; 7641000Sxc151355 rix = an->an_tx_rix0; 7651000Sxc151355 try0 = an->an_tx_try0; 7661000Sxc151355 if (shortPreamble) 7671000Sxc151355 txrate = an->an_tx_rate0sp; 7681000Sxc151355 else 7691000Sxc151355 txrate = an->an_tx_rate0; 7701000Sxc151355 /* Always use background queue */ 7711000Sxc151355 txq = asc->asc_ac2q[WME_AC_BK]; 7721000Sxc151355 break; 7731000Sxc151355 default: 7741000Sxc151355 /* Unknown 802.11 frame */ 7751000Sxc151355 asc->asc_stats.ast_tx_invalid++; 7761000Sxc151355 return (1); 7771000Sxc151355 } 7781000Sxc151355 /* 7791000Sxc151355 * Calculate miscellaneous flags. 7801000Sxc151355 */ 7811000Sxc151355 flags = HAL_TXDESC_CLRDMASK; 7823147Sxc151355 if (IEEE80211_IS_MULTICAST(wh->i_addr1)) { 7831000Sxc151355 flags |= HAL_TXDESC_NOACK; /* no ack on broad/multicast */ 7841000Sxc151355 asc->asc_stats.ast_tx_noack++; 7853147Sxc151355 } else if (pktlen > ic->ic_rtsthreshold) { 7861000Sxc151355 flags |= HAL_TXDESC_RTSENA; /* RTS based on frame length */ 7871000Sxc151355 asc->asc_stats.ast_tx_rts++; 7881000Sxc151355 } 7891000Sxc151355 7901000Sxc151355 /* 7911000Sxc151355 * Calculate duration. This logically belongs in the 802.11 7921000Sxc151355 * layer but it lacks sufficient information to calculate it. 7931000Sxc151355 */ 7941000Sxc151355 if ((flags & HAL_TXDESC_NOACK) == 0 && 7953147Sxc151355 (wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) != 7961000Sxc151355 IEEE80211_FC0_TYPE_CTL) { 7971000Sxc151355 uint16_t dur; 7981000Sxc151355 dur = ath_hal_computetxtime(ah, rt, IEEE80211_ACK_SIZE, 7991000Sxc151355 rix, shortPreamble); 8003147Sxc151355 *(uint16_t *)wh->i_dur = LE_16(dur); 8011000Sxc151355 } 8021000Sxc151355 8031000Sxc151355 /* 8041000Sxc151355 * Calculate RTS/CTS rate and duration if needed. 8051000Sxc151355 */ 8061000Sxc151355 ctsduration = 0; 8071000Sxc151355 if (flags & (HAL_TXDESC_RTSENA|HAL_TXDESC_CTSENA)) { 8081000Sxc151355 /* 8091000Sxc151355 * CTS transmit rate is derived from the transmit rate 8101000Sxc151355 * by looking in the h/w rate table. We must also factor 8111000Sxc151355 * in whether or not a short preamble is to be used. 8121000Sxc151355 */ 8131000Sxc151355 cix = rt->info[rix].controlRate; 8141000Sxc151355 ctsrate = rt->info[cix].rateCode; 8151000Sxc151355 if (shortPreamble) 8161000Sxc151355 ctsrate |= rt->info[cix].shortPreamble; 8171000Sxc151355 /* 8181000Sxc151355 * Compute the transmit duration based on the size 8191000Sxc151355 * of an ACK frame. We call into the HAL to do the 8201000Sxc151355 * computation since it depends on the characteristics 8211000Sxc151355 * of the actual PHY being used. 8221000Sxc151355 */ 8231000Sxc151355 if (flags & HAL_TXDESC_RTSENA) { /* SIFS + CTS */ 8241000Sxc151355 ctsduration += ath_hal_computetxtime(ah, 8251000Sxc151355 rt, IEEE80211_ACK_SIZE, cix, shortPreamble); 8261000Sxc151355 } 8271000Sxc151355 /* SIFS + data */ 8281000Sxc151355 ctsduration += ath_hal_computetxtime(ah, 8291000Sxc151355 rt, pktlen, rix, shortPreamble); 8301000Sxc151355 if ((flags & HAL_TXDESC_NOACK) == 0) { /* SIFS + ACK */ 8311000Sxc151355 ctsduration += ath_hal_computetxtime(ah, 8321000Sxc151355 rt, IEEE80211_ACK_SIZE, cix, shortPreamble); 8331000Sxc151355 } 8341000Sxc151355 } else 8351000Sxc151355 ctsrate = 0; 8361000Sxc151355 8371000Sxc151355 if (++txq->axq_intrcnt >= ATH_TXINTR_PERIOD) { 8381000Sxc151355 flags |= HAL_TXDESC_INTREQ; 8391000Sxc151355 txq->axq_intrcnt = 0; 8401000Sxc151355 } 8411000Sxc151355 8421000Sxc151355 /* 8431000Sxc151355 * Formulate first tx descriptor with tx controls. 8441000Sxc151355 */ 8451000Sxc151355 ATH_HAL_SETUPTXDESC(ah, ds, 8461000Sxc151355 pktlen, /* packet length */ 8471000Sxc151355 hdrlen, /* header length */ 8481000Sxc151355 atype, /* Atheros packet type */ 8491000Sxc151355 MIN(in->in_txpower, 60), /* txpower */ 8501000Sxc151355 txrate, try0, /* series 0 rate/tries */ 8513147Sxc151355 keyix, /* key cache index */ 8523147Sxc151355 an->an_tx_antenna, /* antenna mode */ 8531000Sxc151355 flags, /* flags */ 8541000Sxc151355 ctsrate, /* rts/cts rate */ 8551000Sxc151355 ctsduration); /* rts/cts duration */ 8563147Sxc151355 bf->bf_flags = flags; 8571000Sxc151355 8581000Sxc151355 ATH_DEBUG((ATH_DBG_SEND, "ath: ath_xmit(): to %s totlen=%d " 8591000Sxc151355 "an->an_tx_rate1sp=%d tx_rate2sp=%d tx_rate3sp=%d " 8601000Sxc151355 "qnum=%d rix=%d sht=%d dur = %d\n", 8613147Sxc151355 ieee80211_macaddr_sprintf(wh->i_addr1), mbslen, an->an_tx_rate1sp, 8621000Sxc151355 an->an_tx_rate2sp, an->an_tx_rate3sp, 8633147Sxc151355 txq->axq_qnum, rix, shortPreamble, *(uint16_t *)wh->i_dur)); 8641000Sxc151355 8651000Sxc151355 /* 8661000Sxc151355 * Setup the multi-rate retry state only when we're 8671000Sxc151355 * going to use it. This assumes ath_hal_setuptxdesc 8681000Sxc151355 * initializes the descriptors (so we don't have to) 8691000Sxc151355 * when the hardware supports multi-rate retry and 8701000Sxc151355 * we don't use it. 8711000Sxc151355 */ 8721000Sxc151355 if (try0 != ATH_TXMAXTRY) 8731000Sxc151355 ATH_HAL_SETUPXTXDESC(ah, ds, 8741000Sxc151355 an->an_tx_rate1sp, 2, /* series 1 */ 8751000Sxc151355 an->an_tx_rate2sp, 2, /* series 2 */ 8761000Sxc151355 an->an_tx_rate3sp, 2); /* series 3 */ 8771000Sxc151355 8781000Sxc151355 ds->ds_link = 0; 8791000Sxc151355 ds->ds_data = bf->bf_dma.cookie.dmac_address; 8801000Sxc151355 ATH_HAL_FILLTXDESC(ah, ds, 8811000Sxc151355 mbslen, /* segment length */ 8821000Sxc151355 AH_TRUE, /* first segment */ 8831000Sxc151355 AH_TRUE, /* last segment */ 8841000Sxc151355 ds); /* first descriptor */ 8851000Sxc151355 8861000Sxc151355 ATH_DMA_SYNC(bf->bf_dma, DDI_DMA_SYNC_FORDEV); 8871000Sxc151355 8881000Sxc151355 mutex_enter(&txq->axq_lock); 8891000Sxc151355 list_insert_tail(&txq->axq_list, bf); 8901000Sxc151355 if (txq->axq_link == NULL) { 8911000Sxc151355 ATH_HAL_PUTTXBUF(ah, txq->axq_qnum, bf->bf_daddr); 8921000Sxc151355 } else { 8931000Sxc151355 *txq->axq_link = bf->bf_daddr; 8941000Sxc151355 } 8951000Sxc151355 txq->axq_link = &ds->ds_link; 8961000Sxc151355 mutex_exit(&txq->axq_lock); 8971000Sxc151355 8981000Sxc151355 ATH_HAL_TXSTART(ah, txq->axq_qnum); 8991000Sxc151355 9003147Sxc151355 ic->ic_stats.is_tx_frags++; 9013147Sxc151355 ic->ic_stats.is_tx_bytes += pktlen; 9023147Sxc151355 9031000Sxc151355 return (0); 9041000Sxc151355 } 9051000Sxc151355 9063147Sxc151355 /* 9073147Sxc151355 * Transmit a management frame. On failure we reclaim the skbuff. 9083147Sxc151355 * Note that management frames come directly from the 802.11 layer 9093147Sxc151355 * and do not honor the send queue flow control. Need to investigate 9103147Sxc151355 * using priority queueing so management frames can bypass data. 9113147Sxc151355 */ 9121000Sxc151355 static int 9133147Sxc151355 ath_xmit(ieee80211com_t *ic, mblk_t *mp, uint8_t type) 9141000Sxc151355 { 9153147Sxc151355 ath_t *asc = (ath_t *)ic; 9163147Sxc151355 struct ath_hal *ah = asc->asc_ah; 9173147Sxc151355 struct ieee80211_node *in = NULL; 9181000Sxc151355 struct ath_buf *bf = NULL; 9193147Sxc151355 struct ieee80211_frame *wh; 9203147Sxc151355 int error = 0; 9213147Sxc151355 9223147Sxc151355 ASSERT(mp->b_next == NULL); 9233147Sxc151355 9246797Sxc151355 if (!ATH_IS_RUNNING(asc)) { 9256797Sxc151355 if ((type & IEEE80211_FC0_TYPE_MASK) != 9266797Sxc151355 IEEE80211_FC0_TYPE_DATA) { 9276797Sxc151355 freemsg(mp); 9286797Sxc151355 } 9296797Sxc151355 return (ENXIO); 9306797Sxc151355 } 9316797Sxc151355 9323147Sxc151355 /* Grab a TX buffer */ 9333147Sxc151355 mutex_enter(&asc->asc_txbuflock); 9343147Sxc151355 bf = list_head(&asc->asc_txbuf_list); 9353147Sxc151355 if (bf != NULL) 9363147Sxc151355 list_remove(&asc->asc_txbuf_list, bf); 9373147Sxc151355 if (list_empty(&asc->asc_txbuf_list)) { 9383147Sxc151355 ATH_DEBUG((ATH_DBG_SEND, "ath: ath_mgmt_send(): " 9393147Sxc151355 "stop queue\n")); 9403147Sxc151355 asc->asc_stats.ast_tx_qstop++; 9413147Sxc151355 } 9423147Sxc151355 mutex_exit(&asc->asc_txbuflock); 9433147Sxc151355 if (bf == NULL) { 9443147Sxc151355 ATH_DEBUG((ATH_DBG_SEND, "ath: ath_mgmt_send(): discard, " 9453147Sxc151355 "no xmit buf\n")); 9463147Sxc151355 ic->ic_stats.is_tx_nobuf++; 9473147Sxc151355 if ((type & IEEE80211_FC0_TYPE_MASK) == 9483147Sxc151355 IEEE80211_FC0_TYPE_DATA) { 9493147Sxc151355 asc->asc_stats.ast_tx_nobuf++; 9503147Sxc151355 mutex_enter(&asc->asc_resched_lock); 9513147Sxc151355 asc->asc_resched_needed = B_TRUE; 9523147Sxc151355 mutex_exit(&asc->asc_resched_lock); 9533147Sxc151355 } else { 9543147Sxc151355 asc->asc_stats.ast_tx_nobufmgt++; 9553147Sxc151355 freemsg(mp); 9563147Sxc151355 } 9573147Sxc151355 return (ENOMEM); 9583147Sxc151355 } 9593147Sxc151355 9603147Sxc151355 wh = (struct ieee80211_frame *)mp->b_rptr; 9613147Sxc151355 9623147Sxc151355 /* Locate node */ 9633147Sxc151355 in = ieee80211_find_txnode(ic, wh->i_addr1); 9643147Sxc151355 if (in == NULL) { 9653147Sxc151355 error = EIO; 9663147Sxc151355 goto bad; 9673147Sxc151355 } 9683147Sxc151355 9693147Sxc151355 in->in_inact = 0; 9703147Sxc151355 switch (type & IEEE80211_FC0_TYPE_MASK) { 9713147Sxc151355 case IEEE80211_FC0_TYPE_DATA: 9723147Sxc151355 (void) ieee80211_encap(ic, mp, in); 9733147Sxc151355 break; 9743147Sxc151355 default: 9753147Sxc151355 if ((wh->i_fc[0] & IEEE80211_FC0_SUBTYPE_MASK) == 9763147Sxc151355 IEEE80211_FC0_SUBTYPE_PROBE_RESP) { 9773147Sxc151355 /* fill time stamp */ 9783147Sxc151355 uint64_t tsf; 9793147Sxc151355 uint32_t *tstamp; 9803147Sxc151355 9813147Sxc151355 tsf = ATH_HAL_GETTSF64(ah); 9823147Sxc151355 /* adjust 100us delay to xmit */ 9833147Sxc151355 tsf += 100; 9843147Sxc151355 tstamp = (uint32_t *)&wh[1]; 9853147Sxc151355 tstamp[0] = LE_32(tsf & 0xffffffff); 9863147Sxc151355 tstamp[1] = LE_32(tsf >> 32); 9873147Sxc151355 } 9883147Sxc151355 asc->asc_stats.ast_tx_mgmt++; 9893147Sxc151355 break; 9903147Sxc151355 } 9913147Sxc151355 9923147Sxc151355 error = ath_tx_start(asc, in, bf, mp); 9933147Sxc151355 if (error != 0) { 9943147Sxc151355 bad: 9953147Sxc151355 ic->ic_stats.is_tx_failed++; 9963147Sxc151355 if (bf != NULL) { 9973147Sxc151355 mutex_enter(&asc->asc_txbuflock); 9983147Sxc151355 list_insert_tail(&asc->asc_txbuf_list, bf); 9993147Sxc151355 mutex_exit(&asc->asc_txbuflock); 10003147Sxc151355 } 10013147Sxc151355 } 10023147Sxc151355 if (in != NULL) 10033147Sxc151355 ieee80211_free_node(in); 10043147Sxc151355 if ((type & IEEE80211_FC0_TYPE_MASK) != IEEE80211_FC0_TYPE_DATA || 10053147Sxc151355 error == 0) { 10063147Sxc151355 freemsg(mp); 10073147Sxc151355 } 10083147Sxc151355 10093147Sxc151355 return (error); 10103147Sxc151355 } 10113147Sxc151355 10123147Sxc151355 static mblk_t * 10133147Sxc151355 ath_m_tx(void *arg, mblk_t *mp) 10143147Sxc151355 { 10153147Sxc151355 ath_t *asc = arg; 10163147Sxc151355 ieee80211com_t *ic = (ieee80211com_t *)asc; 10173147Sxc151355 mblk_t *next; 10184126Szf162725 int error = 0; 10191000Sxc151355 10201000Sxc151355 /* 10211000Sxc151355 * No data frames go out unless we're associated; this 10221000Sxc151355 * should not happen as the 802.11 layer does not enable 10231000Sxc151355 * the xmit queue until we enter the RUN state. 10241000Sxc151355 */ 10253147Sxc151355 if (ic->ic_state != IEEE80211_S_RUN) { 10263147Sxc151355 ATH_DEBUG((ATH_DBG_SEND, "ath: ath_m_tx(): " 10273147Sxc151355 "discard, state %u\n", ic->ic_state)); 10283631Sxh158540 asc->asc_stats.ast_tx_discard++; 10293315Sxc151355 freemsgchain(mp); 10303315Sxc151355 return (NULL); 10311000Sxc151355 } 10321000Sxc151355 10333147Sxc151355 while (mp != NULL) { 10343147Sxc151355 next = mp->b_next; 10353147Sxc151355 mp->b_next = NULL; 10364126Szf162725 error = ath_xmit(ic, mp, IEEE80211_FC0_TYPE_DATA); 10374126Szf162725 if (error != 0) { 10383147Sxc151355 mp->b_next = next; 10394126Szf162725 if (error == ENOMEM) { 10404126Szf162725 break; 10414126Szf162725 } else { 10424126Szf162725 freemsgchain(mp); /* CR6501759 issues */ 10434126Szf162725 return (NULL); 10444126Szf162725 } 10453147Sxc151355 } 10463147Sxc151355 mp = next; 10471000Sxc151355 } 10481000Sxc151355 10493147Sxc151355 return (mp); 10501000Sxc151355 10511000Sxc151355 } 10521000Sxc151355 10533147Sxc151355 static int 10541000Sxc151355 ath_tx_processq(ath_t *asc, struct ath_txq *txq) 10551000Sxc151355 { 10563147Sxc151355 ieee80211com_t *ic = (ieee80211com_t *)asc; 10571000Sxc151355 struct ath_hal *ah = asc->asc_ah; 10581000Sxc151355 struct ath_buf *bf; 10591000Sxc151355 struct ath_desc *ds; 10601000Sxc151355 struct ieee80211_node *in; 10613147Sxc151355 int32_t sr, lr, nacked = 0; 10621000Sxc151355 HAL_STATUS status; 10631000Sxc151355 struct ath_node *an; 10641000Sxc151355 10651000Sxc151355 for (;;) { 10661000Sxc151355 mutex_enter(&txq->axq_lock); 10671000Sxc151355 bf = list_head(&txq->axq_list); 10681000Sxc151355 if (bf == NULL) { 10691000Sxc151355 txq->axq_link = NULL; 10701000Sxc151355 mutex_exit(&txq->axq_lock); 10711000Sxc151355 break; 10721000Sxc151355 } 10731000Sxc151355 ds = bf->bf_desc; /* last decriptor */ 10741000Sxc151355 status = ATH_HAL_TXPROCDESC(ah, ds); 10751000Sxc151355 #ifdef DEBUG 10761000Sxc151355 ath_printtxbuf(bf, status == HAL_OK); 10771000Sxc151355 #endif 10781000Sxc151355 if (status == HAL_EINPROGRESS) { 10791000Sxc151355 mutex_exit(&txq->axq_lock); 10801000Sxc151355 break; 10811000Sxc151355 } 10821000Sxc151355 list_remove(&txq->axq_list, bf); 10831000Sxc151355 mutex_exit(&txq->axq_lock); 10841000Sxc151355 in = bf->bf_in; 10851000Sxc151355 if (in != NULL) { 10861000Sxc151355 an = ATH_NODE(in); 10871000Sxc151355 /* Successful transmition */ 10881000Sxc151355 if (ds->ds_txstat.ts_status == 0) { 10891000Sxc151355 an->an_tx_ok++; 10901000Sxc151355 an->an_tx_antenna = 10911000Sxc151355 ds->ds_txstat.ts_antenna; 10921000Sxc151355 if (ds->ds_txstat.ts_rate & 10931000Sxc151355 HAL_TXSTAT_ALTRATE) 10941000Sxc151355 asc->asc_stats.ast_tx_altrate++; 10951000Sxc151355 asc->asc_stats.ast_tx_rssidelta = 10961000Sxc151355 ds->ds_txstat.ts_rssi - 10971000Sxc151355 asc->asc_stats.ast_tx_rssi; 10981000Sxc151355 asc->asc_stats.ast_tx_rssi = 10991000Sxc151355 ds->ds_txstat.ts_rssi; 11001000Sxc151355 } else { 11011000Sxc151355 an->an_tx_err++; 11021000Sxc151355 if (ds->ds_txstat.ts_status & 11031000Sxc151355 HAL_TXERR_XRETRY) 11041000Sxc151355 asc->asc_stats. 11051000Sxc151355 ast_tx_xretries++; 11061000Sxc151355 if (ds->ds_txstat.ts_status & 11071000Sxc151355 HAL_TXERR_FIFO) 11081000Sxc151355 asc->asc_stats.ast_tx_fifoerr++; 11091000Sxc151355 if (ds->ds_txstat.ts_status & 11101000Sxc151355 HAL_TXERR_FILT) 11111000Sxc151355 asc->asc_stats. 11121000Sxc151355 ast_tx_filtered++; 11131000Sxc151355 an->an_tx_antenna = 0; /* invalidate */ 11141000Sxc151355 } 11151000Sxc151355 sr = ds->ds_txstat.ts_shortretry; 11161000Sxc151355 lr = ds->ds_txstat.ts_longretry; 11171000Sxc151355 asc->asc_stats.ast_tx_shortretry += sr; 11181000Sxc151355 asc->asc_stats.ast_tx_longretry += lr; 11193147Sxc151355 /* 11203147Sxc151355 * Hand the descriptor to the rate control algorithm. 11213147Sxc151355 */ 11223147Sxc151355 if ((ds->ds_txstat.ts_status & HAL_TXERR_FILT) == 0 && 11233147Sxc151355 (bf->bf_flags & HAL_TXDESC_NOACK) == 0) { 11243147Sxc151355 /* 11253147Sxc151355 * If frame was ack'd update the last rx time 11263147Sxc151355 * used to workaround phantom bmiss interrupts. 11273147Sxc151355 */ 11283147Sxc151355 if (ds->ds_txstat.ts_status == 0) { 11293147Sxc151355 nacked++; 11303147Sxc151355 an->an_tx_ok++; 11313147Sxc151355 } else { 11323147Sxc151355 an->an_tx_err++; 11333147Sxc151355 } 11343147Sxc151355 an->an_tx_retr += sr + lr; 11353147Sxc151355 } 11361000Sxc151355 } 11371000Sxc151355 bf->bf_in = NULL; 11381000Sxc151355 mutex_enter(&asc->asc_txbuflock); 11391000Sxc151355 list_insert_tail(&asc->asc_txbuf_list, bf); 11401000Sxc151355 mutex_exit(&asc->asc_txbuflock); 11411000Sxc151355 /* 11421000Sxc151355 * Reschedule stalled outbound packets 11431000Sxc151355 */ 11443147Sxc151355 mutex_enter(&asc->asc_resched_lock); 11453147Sxc151355 if (asc->asc_resched_needed) { 11463147Sxc151355 asc->asc_resched_needed = B_FALSE; 11473147Sxc151355 mac_tx_update(ic->ic_mach); 11481000Sxc151355 } 11493147Sxc151355 mutex_exit(&asc->asc_resched_lock); 11501000Sxc151355 } 11513147Sxc151355 return (nacked); 11521000Sxc151355 } 11531000Sxc151355 11541000Sxc151355 11551000Sxc151355 static void 11561000Sxc151355 ath_tx_handler(ath_t *asc) 11571000Sxc151355 { 11581000Sxc151355 int i; 11591000Sxc151355 11601000Sxc151355 /* 11611000Sxc151355 * Process each active queue. 11621000Sxc151355 */ 11631000Sxc151355 for (i = 0; i < HAL_NUM_TX_QUEUES; i++) { 11641000Sxc151355 if (ATH_TXQ_SETUP(asc, i)) { 11653147Sxc151355 (void) ath_tx_processq(asc, &asc->asc_txq[i]); 11661000Sxc151355 } 11671000Sxc151355 } 11681000Sxc151355 } 11691000Sxc151355 11701000Sxc151355 static struct ieee80211_node * 11713147Sxc151355 ath_node_alloc(ieee80211com_t *ic) 11721000Sxc151355 { 11731000Sxc151355 struct ath_node *an; 11743147Sxc151355 ath_t *asc = (ath_t *)ic; 11751000Sxc151355 11761000Sxc151355 an = kmem_zalloc(sizeof (struct ath_node), KM_SLEEP); 11771000Sxc151355 ath_rate_update(asc, &an->an_node, 0); 11781000Sxc151355 return (&an->an_node); 11791000Sxc151355 } 11801000Sxc151355 11811000Sxc151355 static void 11823147Sxc151355 ath_node_free(struct ieee80211_node *in) 11831000Sxc151355 { 11843147Sxc151355 ieee80211com_t *ic = in->in_ic; 11853147Sxc151355 ath_t *asc = (ath_t *)ic; 11861000Sxc151355 struct ath_buf *bf; 11871000Sxc151355 struct ath_txq *txq; 11881000Sxc151355 int32_t i; 11891000Sxc151355 11901000Sxc151355 for (i = 0; i < HAL_NUM_TX_QUEUES; i++) { 11911000Sxc151355 if (ATH_TXQ_SETUP(asc, i)) { 11921000Sxc151355 txq = &asc->asc_txq[i]; 11931000Sxc151355 mutex_enter(&txq->axq_lock); 11941000Sxc151355 bf = list_head(&txq->axq_list); 11951000Sxc151355 while (bf != NULL) { 11961000Sxc151355 if (bf->bf_in == in) { 11971000Sxc151355 bf->bf_in = NULL; 11981000Sxc151355 } 11991000Sxc151355 bf = list_next(&txq->axq_list, bf); 12001000Sxc151355 } 12011000Sxc151355 mutex_exit(&txq->axq_lock); 12021000Sxc151355 } 12031000Sxc151355 } 12043147Sxc151355 ic->ic_node_cleanup(in); 12054126Szf162725 if (in->in_wpa_ie != NULL) 12064126Szf162725 ieee80211_free(in->in_wpa_ie); 12071000Sxc151355 kmem_free(in, sizeof (struct ath_node)); 12081000Sxc151355 } 12091000Sxc151355 12101000Sxc151355 static void 12113147Sxc151355 ath_next_scan(void *arg) 12121000Sxc151355 { 12133147Sxc151355 ieee80211com_t *ic = arg; 12143147Sxc151355 ath_t *asc = (ath_t *)ic; 12153147Sxc151355 12163147Sxc151355 asc->asc_scan_timer = 0; 12173147Sxc151355 if (ic->ic_state == IEEE80211_S_SCAN) { 12183147Sxc151355 asc->asc_scan_timer = timeout(ath_next_scan, (void *)asc, 12193147Sxc151355 drv_usectohz(ath_dwelltime * 1000)); 12203147Sxc151355 ieee80211_next_scan(ic); 12213147Sxc151355 } 12221000Sxc151355 } 12231000Sxc151355 12243147Sxc151355 static void 12253147Sxc151355 ath_stop_scantimer(ath_t *asc) 12261000Sxc151355 { 12273147Sxc151355 timeout_id_t tmp_id = 0; 12281000Sxc151355 12293147Sxc151355 while ((asc->asc_scan_timer != 0) && (tmp_id != asc->asc_scan_timer)) { 12303147Sxc151355 tmp_id = asc->asc_scan_timer; 12313147Sxc151355 (void) untimeout(tmp_id); 12321000Sxc151355 } 12333147Sxc151355 asc->asc_scan_timer = 0; 12341000Sxc151355 } 12351000Sxc151355 12361000Sxc151355 static int32_t 12373147Sxc151355 ath_newstate(ieee80211com_t *ic, enum ieee80211_state nstate, int arg) 12381000Sxc151355 { 12393147Sxc151355 ath_t *asc = (ath_t *)ic; 12401000Sxc151355 struct ath_hal *ah = asc->asc_ah; 12411000Sxc151355 struct ieee80211_node *in; 12421000Sxc151355 int32_t i, error; 12431000Sxc151355 uint8_t *bssid; 12441000Sxc151355 uint32_t rfilt; 12451000Sxc151355 enum ieee80211_state ostate; 12461000Sxc151355 12471000Sxc151355 static const HAL_LED_STATE leds[] = { 12481000Sxc151355 HAL_LED_INIT, /* IEEE80211_S_INIT */ 12491000Sxc151355 HAL_LED_SCAN, /* IEEE80211_S_SCAN */ 12501000Sxc151355 HAL_LED_AUTH, /* IEEE80211_S_AUTH */ 12511000Sxc151355 HAL_LED_ASSOC, /* IEEE80211_S_ASSOC */ 12521000Sxc151355 HAL_LED_RUN, /* IEEE80211_S_RUN */ 12531000Sxc151355 }; 12543147Sxc151355 if (!ATH_IS_RUNNING(asc)) 12551000Sxc151355 return (0); 12561000Sxc151355 12573147Sxc151355 ostate = ic->ic_state; 12583147Sxc151355 if (nstate != IEEE80211_S_SCAN) 12593147Sxc151355 ath_stop_scantimer(asc); 12601000Sxc151355 12613147Sxc151355 ATH_LOCK(asc); 12621000Sxc151355 ATH_HAL_SETLEDSTATE(ah, leds[nstate]); /* set LED */ 12631000Sxc151355 12641000Sxc151355 if (nstate == IEEE80211_S_INIT) { 12651000Sxc151355 asc->asc_imask &= ~(HAL_INT_SWBA | HAL_INT_BMISS); 12663147Sxc151355 ATH_HAL_INTRSET(ah, asc->asc_imask &~ HAL_INT_GLOBAL); 12673147Sxc151355 ATH_UNLOCK(asc); 12683147Sxc151355 goto done; 12691000Sxc151355 } 12703147Sxc151355 in = ic->ic_bss; 12713147Sxc151355 error = ath_chan_set(asc, ic->ic_curchan); 12723147Sxc151355 if (error != 0) { 12733147Sxc151355 if (nstate != IEEE80211_S_SCAN) { 12743147Sxc151355 ATH_UNLOCK(asc); 12753147Sxc151355 ieee80211_reset_chan(ic); 12763147Sxc151355 goto bad; 12773147Sxc151355 } 12783147Sxc151355 } 12791000Sxc151355 12801000Sxc151355 rfilt = ath_calcrxfilter(asc); 12811000Sxc151355 if (nstate == IEEE80211_S_SCAN) 12823147Sxc151355 bssid = ic->ic_macaddr; 12831000Sxc151355 else 12841000Sxc151355 bssid = in->in_bssid; 12851000Sxc151355 ATH_HAL_SETRXFILTER(ah, rfilt); 12861000Sxc151355 12873147Sxc151355 if (nstate == IEEE80211_S_RUN && ic->ic_opmode != IEEE80211_M_IBSS) 12881000Sxc151355 ATH_HAL_SETASSOCID(ah, bssid, in->in_associd); 12891000Sxc151355 else 12901000Sxc151355 ATH_HAL_SETASSOCID(ah, bssid, 0); 12913147Sxc151355 if (ic->ic_flags & IEEE80211_F_PRIVACY) { 12921000Sxc151355 for (i = 0; i < IEEE80211_WEP_NKID; i++) { 12931000Sxc151355 if (ATH_HAL_KEYISVALID(ah, i)) 12941000Sxc151355 ATH_HAL_KEYSETMAC(ah, i, bssid); 12951000Sxc151355 } 12961000Sxc151355 } 12971000Sxc151355 12981000Sxc151355 if ((nstate == IEEE80211_S_RUN) && 12991000Sxc151355 (ostate != IEEE80211_S_RUN)) { 13001000Sxc151355 /* Configure the beacon and sleep timers. */ 13011000Sxc151355 ath_beacon_config(asc); 13021000Sxc151355 } else { 13031000Sxc151355 asc->asc_imask &= ~(HAL_INT_SWBA | HAL_INT_BMISS); 13041000Sxc151355 ATH_HAL_INTRSET(ah, asc->asc_imask); 13051000Sxc151355 } 13061000Sxc151355 /* 13071000Sxc151355 * Reset the rate control state. 13081000Sxc151355 */ 13091000Sxc151355 ath_rate_ctl_reset(asc, nstate); 13101000Sxc151355 13113147Sxc151355 if (nstate == IEEE80211_S_RUN && (ostate != IEEE80211_S_RUN)) { 13121000Sxc151355 nvlist_t *attr_list = NULL; 13131000Sxc151355 sysevent_id_t eid; 13141000Sxc151355 int32_t err = 0; 13151000Sxc151355 char *str_name = "ATH"; 13161000Sxc151355 char str_value[256] = {0}; 13171000Sxc151355 13181000Sxc151355 ATH_DEBUG((ATH_DBG_80211, "ath: ath new state(RUN): " 13191000Sxc151355 "ic_flags=0x%08x iv=%d" 13201000Sxc151355 " bssid=%s capinfo=0x%04x chan=%d\n", 13213147Sxc151355 ic->ic_flags, 13221000Sxc151355 in->in_intval, 13233147Sxc151355 ieee80211_macaddr_sprintf(in->in_bssid), 13241000Sxc151355 in->in_capinfo, 13253147Sxc151355 ieee80211_chan2ieee(ic, in->in_chan))); 13261000Sxc151355 13271000Sxc151355 (void) sprintf(str_value, "%s%s%d", "-i ", 13281000Sxc151355 ddi_driver_name(asc->asc_dev), 13291000Sxc151355 ddi_get_instance(asc->asc_dev)); 13301000Sxc151355 if (nvlist_alloc(&attr_list, 13311000Sxc151355 NV_UNIQUE_NAME_TYPE, KM_SLEEP) == 0) { 13321000Sxc151355 err = nvlist_add_string(attr_list, 13331000Sxc151355 str_name, str_value); 13341000Sxc151355 if (err != DDI_SUCCESS) 13351000Sxc151355 ATH_DEBUG((ATH_DBG_80211, "ath: " 13361000Sxc151355 "ath_new_state: error log event\n")); 13371000Sxc151355 err = ddi_log_sysevent(asc->asc_dev, 13381000Sxc151355 DDI_VENDOR_SUNW, "class", 13391000Sxc151355 "subclass", attr_list, 13401000Sxc151355 &eid, DDI_NOSLEEP); 13411000Sxc151355 if (err != DDI_SUCCESS) 13421000Sxc151355 ATH_DEBUG((ATH_DBG_80211, "ath: " 13431000Sxc151355 "ath_new_state(): error log event\n")); 13441000Sxc151355 nvlist_free(attr_list); 13451000Sxc151355 } 13461000Sxc151355 } 13471000Sxc151355 13483147Sxc151355 ATH_UNLOCK(asc); 13493147Sxc151355 done: 13503147Sxc151355 /* 13513147Sxc151355 * Invoke the parent method to complete the work. 13523147Sxc151355 */ 13533147Sxc151355 error = asc->asc_newstate(ic, nstate, arg); 13543147Sxc151355 /* 13553147Sxc151355 * Finally, start any timers. 13563147Sxc151355 */ 13573147Sxc151355 if (nstate == IEEE80211_S_RUN) { 13583147Sxc151355 ieee80211_start_watchdog(ic, 1); 13593147Sxc151355 } else if ((nstate == IEEE80211_S_SCAN) && (ostate != nstate)) { 13603147Sxc151355 /* start ap/neighbor scan timer */ 13613147Sxc151355 ASSERT(asc->asc_scan_timer == 0); 13623147Sxc151355 asc->asc_scan_timer = timeout(ath_next_scan, (void *)asc, 13633147Sxc151355 drv_usectohz(ath_dwelltime * 1000)); 13643147Sxc151355 } 13651000Sxc151355 bad: 13661000Sxc151355 return (error); 13671000Sxc151355 } 13681000Sxc151355 13691000Sxc151355 /* 13701000Sxc151355 * Periodically recalibrate the PHY to account 13711000Sxc151355 * for temperature/environment changes. 13721000Sxc151355 */ 13731000Sxc151355 static void 13743147Sxc151355 ath_calibrate(ath_t *asc) 13751000Sxc151355 { 13761000Sxc151355 struct ath_hal *ah = asc->asc_ah; 13773147Sxc151355 HAL_BOOL iqcaldone; 13781000Sxc151355 13791000Sxc151355 asc->asc_stats.ast_per_cal++; 13801000Sxc151355 13811000Sxc151355 if (ATH_HAL_GETRFGAIN(ah) == HAL_RFGAIN_NEED_CHANGE) { 13821000Sxc151355 /* 13831000Sxc151355 * Rfgain is out of bounds, reset the chip 13841000Sxc151355 * to load new gain values. 13851000Sxc151355 */ 13861000Sxc151355 ATH_DEBUG((ATH_DBG_HAL, "ath: ath_calibrate(): " 13871000Sxc151355 "Need change RFgain\n")); 13881000Sxc151355 asc->asc_stats.ast_per_rfgain++; 13893147Sxc151355 (void) ath_reset(&asc->asc_isc); 13901000Sxc151355 } 13913147Sxc151355 if (!ATH_HAL_CALIBRATE(ah, &asc->asc_curchan, &iqcaldone)) { 13921000Sxc151355 ATH_DEBUG((ATH_DBG_HAL, "ath: ath_calibrate(): " 13931000Sxc151355 "calibration of channel %u failed\n", 13943147Sxc151355 asc->asc_curchan.channel)); 13951000Sxc151355 asc->asc_stats.ast_per_calfail++; 13961000Sxc151355 } 13971000Sxc151355 } 13981000Sxc151355 13993147Sxc151355 static void 14003147Sxc151355 ath_watchdog(void *arg) 14013147Sxc151355 { 14023147Sxc151355 ath_t *asc = arg; 14033147Sxc151355 ieee80211com_t *ic = &asc->asc_isc; 14043147Sxc151355 int ntimer = 0; 14053147Sxc151355 14063147Sxc151355 ATH_LOCK(asc); 14073147Sxc151355 ic->ic_watchdog_timer = 0; 14083147Sxc151355 if (!ATH_IS_RUNNING(asc)) { 14093147Sxc151355 ATH_UNLOCK(asc); 14103147Sxc151355 return; 14113147Sxc151355 } 14123147Sxc151355 14133147Sxc151355 if (ic->ic_state == IEEE80211_S_RUN) { 14143147Sxc151355 /* periodic recalibration */ 14153147Sxc151355 ath_calibrate(asc); 14163147Sxc151355 14173147Sxc151355 /* 14183147Sxc151355 * Start the background rate control thread if we 14193147Sxc151355 * are not configured to use a fixed xmit rate. 14203147Sxc151355 */ 14213147Sxc151355 if (ic->ic_fixed_rate == IEEE80211_FIXED_RATE_NONE) { 14223147Sxc151355 asc->asc_stats.ast_rate_calls ++; 14233147Sxc151355 if (ic->ic_opmode == IEEE80211_M_STA) 14243147Sxc151355 ath_rate_ctl(ic, ic->ic_bss); 14253147Sxc151355 else 14263147Sxc151355 ieee80211_iterate_nodes(&ic->ic_sta, 14273147Sxc151355 ath_rate_cb, asc); 14283147Sxc151355 } 14293147Sxc151355 14303147Sxc151355 ntimer = 1; 14313147Sxc151355 } 14323147Sxc151355 ATH_UNLOCK(asc); 14333147Sxc151355 14343147Sxc151355 ieee80211_watchdog(ic); 14353147Sxc151355 if (ntimer != 0) 14363147Sxc151355 ieee80211_start_watchdog(ic, ntimer); 14373147Sxc151355 } 14383147Sxc151355 14391000Sxc151355 static uint_t 14403147Sxc151355 ath_intr(caddr_t arg) 14411000Sxc151355 { 14423147Sxc151355 ath_t *asc = (ath_t *)arg; 14431000Sxc151355 struct ath_hal *ah = asc->asc_ah; 14441000Sxc151355 HAL_INT status; 14453147Sxc151355 ieee80211com_t *ic = (ieee80211com_t *)asc; 14463147Sxc151355 14473147Sxc151355 ATH_LOCK(asc); 14481000Sxc151355 14493147Sxc151355 if (!ATH_IS_RUNNING(asc)) { 14503147Sxc151355 /* 14513147Sxc151355 * The hardware is not ready/present, don't touch anything. 14523147Sxc151355 * Note this can happen early on if the IRQ is shared. 14533147Sxc151355 */ 14543147Sxc151355 ATH_UNLOCK(asc); 14553147Sxc151355 return (DDI_INTR_UNCLAIMED); 14563147Sxc151355 } 14571000Sxc151355 14581000Sxc151355 if (!ATH_HAL_INTRPEND(ah)) { /* shared irq, not for us */ 14593147Sxc151355 ATH_UNLOCK(asc); 14601000Sxc151355 return (DDI_INTR_UNCLAIMED); 14611000Sxc151355 } 14621000Sxc151355 14631000Sxc151355 ATH_HAL_GETISR(ah, &status); 14641000Sxc151355 status &= asc->asc_imask; 14651000Sxc151355 if (status & HAL_INT_FATAL) { 14661000Sxc151355 asc->asc_stats.ast_hardware++; 14671000Sxc151355 goto reset; 14681000Sxc151355 } else if (status & HAL_INT_RXORN) { 14691000Sxc151355 asc->asc_stats.ast_rxorn++; 14701000Sxc151355 goto reset; 14711000Sxc151355 } else { 14721000Sxc151355 if (status & HAL_INT_RXEOL) { 14731000Sxc151355 asc->asc_stats.ast_rxeol++; 14741000Sxc151355 asc->asc_rxlink = NULL; 14751000Sxc151355 } 14761000Sxc151355 if (status & HAL_INT_TXURN) { 14771000Sxc151355 asc->asc_stats.ast_txurn++; 14781000Sxc151355 ATH_HAL_UPDATETXTRIGLEVEL(ah, AH_TRUE); 14791000Sxc151355 } 14803147Sxc151355 14811000Sxc151355 if (status & HAL_INT_RX) { 14821000Sxc151355 asc->asc_rx_pend = 1; 14831000Sxc151355 ddi_trigger_softintr(asc->asc_softint_id); 14841000Sxc151355 } 14851000Sxc151355 if (status & HAL_INT_TX) { 14861000Sxc151355 ath_tx_handler(asc); 14871000Sxc151355 } 14883147Sxc151355 ATH_UNLOCK(asc); 14891000Sxc151355 14901000Sxc151355 if (status & HAL_INT_SWBA) { 14911000Sxc151355 /* This will occur only in Host-AP or Ad-Hoc mode */ 14921000Sxc151355 return (DDI_INTR_CLAIMED); 14931000Sxc151355 } 14941000Sxc151355 if (status & HAL_INT_BMISS) { 14953147Sxc151355 if (ic->ic_state == IEEE80211_S_RUN) { 14963147Sxc151355 (void) ieee80211_new_state(ic, 14971000Sxc151355 IEEE80211_S_ASSOC, -1); 14981000Sxc151355 } 14991000Sxc151355 } 15001000Sxc151355 } 15011000Sxc151355 15021000Sxc151355 return (DDI_INTR_CLAIMED); 15031000Sxc151355 reset: 15043147Sxc151355 (void) ath_reset(ic); 15053147Sxc151355 ATH_UNLOCK(asc); 15061000Sxc151355 return (DDI_INTR_CLAIMED); 15071000Sxc151355 } 15081000Sxc151355 15091000Sxc151355 static uint_t 15101000Sxc151355 ath_softint_handler(caddr_t data) 15111000Sxc151355 { 15121000Sxc151355 ath_t *asc = (ath_t *)data; 15131000Sxc151355 15141000Sxc151355 /* 15151000Sxc151355 * Check if the soft interrupt is triggered by another 15161000Sxc151355 * driver at the same level. 15171000Sxc151355 */ 15183147Sxc151355 ATH_LOCK(asc); 15191000Sxc151355 if (asc->asc_rx_pend) { /* Soft interrupt for this driver */ 15201000Sxc151355 asc->asc_rx_pend = 0; 15213147Sxc151355 ATH_UNLOCK(asc); 15223147Sxc151355 ath_rx_handler(asc); 15231000Sxc151355 return (DDI_INTR_CLAIMED); 15241000Sxc151355 } 15253147Sxc151355 ATH_UNLOCK(asc); 15261000Sxc151355 return (DDI_INTR_UNCLAIMED); 15271000Sxc151355 } 15281000Sxc151355 15291000Sxc151355 /* 15301000Sxc151355 * following are gld callback routine 15311000Sxc151355 * ath_gld_send, ath_gld_ioctl, ath_gld_gstat 15321000Sxc151355 * are listed in other corresponding sections. 15331000Sxc151355 * reset the hardware w/o losing operational state. this is 15341000Sxc151355 * basically a more efficient way of doing ath_gld_stop, ath_gld_start, 15351000Sxc151355 * followed by state transitions to the current 802.11 15361000Sxc151355 * operational state. used to recover from errors rx overrun 15371000Sxc151355 * and to reset the hardware when rf gain settings must be reset. 15381000Sxc151355 */ 15391000Sxc151355 15403147Sxc151355 static void 15413147Sxc151355 ath_stop_locked(ath_t *asc) 15421000Sxc151355 { 15433147Sxc151355 ieee80211com_t *ic = (ieee80211com_t *)asc; 15443147Sxc151355 struct ath_hal *ah = asc->asc_ah; 15451000Sxc151355 15463147Sxc151355 ATH_LOCK_ASSERT(asc); 15476797Sxc151355 if (!asc->asc_isrunning) 15486797Sxc151355 return; 15496797Sxc151355 15503147Sxc151355 /* 15513147Sxc151355 * Shutdown the hardware and driver: 15523147Sxc151355 * reset 802.11 state machine 15533147Sxc151355 * turn off timers 15543147Sxc151355 * disable interrupts 15553147Sxc151355 * turn off the radio 15563147Sxc151355 * clear transmit machinery 15573147Sxc151355 * clear receive machinery 15583147Sxc151355 * drain and release tx queues 15593147Sxc151355 * reclaim beacon resources 15603147Sxc151355 * power down hardware 15613147Sxc151355 * 15623147Sxc151355 * Note that some of this work is not possible if the 15633147Sxc151355 * hardware is gone (invalid). 15643147Sxc151355 */ 15653147Sxc151355 ATH_UNLOCK(asc); 15663147Sxc151355 ieee80211_new_state(ic, IEEE80211_S_INIT, -1); 15673147Sxc151355 ieee80211_stop_watchdog(ic); 15683147Sxc151355 ATH_LOCK(asc); 15693147Sxc151355 ATH_HAL_INTRSET(ah, 0); 15703147Sxc151355 ath_draintxq(asc); 15716797Sxc151355 if (!asc->asc_invalid) { 15723147Sxc151355 ath_stoprecv(asc); 15733147Sxc151355 ATH_HAL_PHYDISABLE(ah); 15743147Sxc151355 } else { 15753147Sxc151355 asc->asc_rxlink = NULL; 15763147Sxc151355 } 15776797Sxc151355 asc->asc_isrunning = 0; 15781000Sxc151355 } 15791000Sxc151355 15803147Sxc151355 static void 15813147Sxc151355 ath_m_stop(void *arg) 15821000Sxc151355 { 15833147Sxc151355 ath_t *asc = arg; 15841000Sxc151355 struct ath_hal *ah = asc->asc_ah; 15851000Sxc151355 15863147Sxc151355 ATH_LOCK(asc); 15873147Sxc151355 ath_stop_locked(asc); 15883147Sxc151355 ATH_HAL_SETPOWER(ah, HAL_PM_AWAKE); 15891000Sxc151355 asc->asc_invalid = 1; 15903147Sxc151355 ATH_UNLOCK(asc); 15911000Sxc151355 } 15921000Sxc151355 15936797Sxc151355 static int 15946797Sxc151355 ath_start_locked(ath_t *asc) 15951000Sxc151355 { 15963147Sxc151355 ieee80211com_t *ic = (ieee80211com_t *)asc; 15971000Sxc151355 struct ath_hal *ah = asc->asc_ah; 15981000Sxc151355 HAL_STATUS status; 15991000Sxc151355 16006797Sxc151355 ATH_LOCK_ASSERT(asc); 16011000Sxc151355 16021000Sxc151355 /* 16031000Sxc151355 * The basic interface to setting the hardware in a good 16041000Sxc151355 * state is ``reset''. On return the hardware is known to 16051000Sxc151355 * be powered up and with interrupts disabled. This must 16061000Sxc151355 * be followed by initialization of the appropriate bits 16071000Sxc151355 * and then setup of the interrupt mask. 16081000Sxc151355 */ 16093147Sxc151355 asc->asc_curchan.channel = ic->ic_curchan->ich_freq; 16103147Sxc151355 asc->asc_curchan.channelFlags = ath_chan2flags(ic, ic->ic_curchan); 16113147Sxc151355 if (!ATH_HAL_RESET(ah, (HAL_OPMODE)ic->ic_opmode, 16123147Sxc151355 &asc->asc_curchan, AH_FALSE, &status)) { 16133147Sxc151355 ATH_DEBUG((ATH_DBG_HAL, "ath: ath_m_start(): " 16146235Sxc151355 "reset hardware failed: '%s' (HAL status %u)\n", 16156235Sxc151355 ath_get_hal_status_desc(status), status)); 16163147Sxc151355 return (ENOTACTIVE); 16171000Sxc151355 } 16181000Sxc151355 16193147Sxc151355 (void) ath_startrecv(asc); 16201000Sxc151355 16211000Sxc151355 /* 16221000Sxc151355 * Enable interrupts. 16231000Sxc151355 */ 16241000Sxc151355 asc->asc_imask = HAL_INT_RX | HAL_INT_TX 16251000Sxc151355 | HAL_INT_RXEOL | HAL_INT_RXORN 16261000Sxc151355 | HAL_INT_FATAL | HAL_INT_GLOBAL; 16271000Sxc151355 ATH_HAL_INTRSET(ah, asc->asc_imask); 16281000Sxc151355 16291000Sxc151355 /* 16301000Sxc151355 * The hardware should be ready to go now so it's safe 16311000Sxc151355 * to kick the 802.11 state machine as it's likely to 16321000Sxc151355 * immediately call back to us to send mgmt frames. 16331000Sxc151355 */ 16343147Sxc151355 ath_chan_change(asc, ic->ic_curchan); 16356797Sxc151355 16366797Sxc151355 asc->asc_isrunning = 1; 16376797Sxc151355 16386797Sxc151355 return (0); 16396797Sxc151355 } 16406797Sxc151355 16416797Sxc151355 int 16426797Sxc151355 ath_m_start(void *arg) 16436797Sxc151355 { 16446797Sxc151355 ath_t *asc = arg; 16456797Sxc151355 int err; 16466797Sxc151355 16476797Sxc151355 ATH_LOCK(asc); 16486797Sxc151355 /* 16496797Sxc151355 * Stop anything previously setup. This is safe 16506797Sxc151355 * whether this is the first time through or not. 16516797Sxc151355 */ 16526797Sxc151355 ath_stop_locked(asc); 16536797Sxc151355 16546797Sxc151355 if ((err = ath_start_locked(asc)) != 0) { 16556797Sxc151355 ATH_UNLOCK(asc); 16566797Sxc151355 return (err); 16576797Sxc151355 } 16586797Sxc151355 16591000Sxc151355 asc->asc_invalid = 0; 16603147Sxc151355 ATH_UNLOCK(asc); 16616797Sxc151355 16623147Sxc151355 return (0); 16631000Sxc151355 } 16641000Sxc151355 16651000Sxc151355 16663147Sxc151355 static int 16673147Sxc151355 ath_m_unicst(void *arg, const uint8_t *macaddr) 16681000Sxc151355 { 16693147Sxc151355 ath_t *asc = arg; 16701000Sxc151355 struct ath_hal *ah = asc->asc_ah; 16711000Sxc151355 16721000Sxc151355 ATH_DEBUG((ATH_DBG_GLD, "ath: ath_gld_saddr(): " 16731000Sxc151355 "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x\n", 16741000Sxc151355 macaddr[0], macaddr[1], macaddr[2], 16751000Sxc151355 macaddr[3], macaddr[4], macaddr[5])); 16761000Sxc151355 16773147Sxc151355 ATH_LOCK(asc); 16783147Sxc151355 IEEE80211_ADDR_COPY(asc->asc_isc.ic_macaddr, macaddr); 16793147Sxc151355 ATH_HAL_SETMAC(ah, asc->asc_isc.ic_macaddr); 16801000Sxc151355 16813147Sxc151355 (void) ath_reset(&asc->asc_isc); 16823147Sxc151355 ATH_UNLOCK(asc); 16833147Sxc151355 return (0); 16841000Sxc151355 } 16851000Sxc151355 16861000Sxc151355 static int 16873147Sxc151355 ath_m_promisc(void *arg, boolean_t on) 16881000Sxc151355 { 16893147Sxc151355 ath_t *asc = arg; 16901000Sxc151355 struct ath_hal *ah = asc->asc_ah; 16911000Sxc151355 uint32_t rfilt; 16921000Sxc151355 16933147Sxc151355 ATH_LOCK(asc); 16941000Sxc151355 rfilt = ATH_HAL_GETRXFILTER(ah); 16953147Sxc151355 if (on) 16963147Sxc151355 rfilt |= HAL_RX_FILTER_PROM; 16973147Sxc151355 else 16981000Sxc151355 rfilt &= ~HAL_RX_FILTER_PROM; 16996235Sxc151355 asc->asc_promisc = on; 17003147Sxc151355 ATH_HAL_SETRXFILTER(ah, rfilt); 17013147Sxc151355 ATH_UNLOCK(asc); 17021000Sxc151355 17033147Sxc151355 return (0); 17041000Sxc151355 } 17051000Sxc151355 17061000Sxc151355 static int 17073147Sxc151355 ath_m_multicst(void *arg, boolean_t add, const uint8_t *mca) 17081000Sxc151355 { 17093147Sxc151355 ath_t *asc = arg; 17103147Sxc151355 struct ath_hal *ah = asc->asc_ah; 17116235Sxc151355 uint32_t val, index, bit; 17121000Sxc151355 uint8_t pos; 17136235Sxc151355 uint32_t *mfilt = asc->asc_mcast_hash; 17141000Sxc151355 17153147Sxc151355 ATH_LOCK(asc); 17161000Sxc151355 /* calculate XOR of eight 6bit values */ 17171000Sxc151355 val = ATH_LE_READ_4(mca + 0); 17181000Sxc151355 pos = (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val; 17191000Sxc151355 val = ATH_LE_READ_4(mca + 3); 17201000Sxc151355 pos ^= (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val; 17211000Sxc151355 pos &= 0x3f; 17226235Sxc151355 index = pos / 32; 17236235Sxc151355 bit = 1 << (pos % 32); 17246235Sxc151355 17256235Sxc151355 if (add) { /* enable multicast */ 17266235Sxc151355 asc->asc_mcast_refs[pos]++; 17276235Sxc151355 mfilt[index] |= bit; 17286235Sxc151355 } else { /* disable multicast */ 17296235Sxc151355 if (--asc->asc_mcast_refs[pos] == 0) 17306235Sxc151355 mfilt[index] &= ~bit; 17316235Sxc151355 } 17321000Sxc151355 ATH_HAL_SETMCASTFILTER(ah, mfilt[0], mfilt[1]); 17331000Sxc151355 17343147Sxc151355 ATH_UNLOCK(asc); 17353147Sxc151355 return (0); 17361000Sxc151355 } 17371000Sxc151355 17381000Sxc151355 static void 17393147Sxc151355 ath_m_ioctl(void *arg, queue_t *wq, mblk_t *mp) 17401000Sxc151355 { 17413147Sxc151355 ath_t *asc = arg; 17423147Sxc151355 int32_t err; 17431000Sxc151355 17443147Sxc151355 err = ieee80211_ioctl(&asc->asc_isc, wq, mp); 17453147Sxc151355 ATH_LOCK(asc); 17463147Sxc151355 if (err == ENETRESET) { 17473147Sxc151355 if (ATH_IS_RUNNING(asc)) { 17483147Sxc151355 ATH_UNLOCK(asc); 17493147Sxc151355 (void) ath_m_start(asc); 17503147Sxc151355 (void) ieee80211_new_state(&asc->asc_isc, 17513147Sxc151355 IEEE80211_S_SCAN, -1); 17523147Sxc151355 ATH_LOCK(asc); 17533147Sxc151355 } 17541000Sxc151355 } 17553147Sxc151355 ATH_UNLOCK(asc); 17561000Sxc151355 } 17571000Sxc151355 17581000Sxc151355 static int 17593147Sxc151355 ath_m_stat(void *arg, uint_t stat, uint64_t *val) 17601000Sxc151355 { 17613147Sxc151355 ath_t *asc = arg; 17623147Sxc151355 ieee80211com_t *ic = (ieee80211com_t *)asc; 17633147Sxc151355 struct ieee80211_node *in = ic->ic_bss; 17641000Sxc151355 struct ieee80211_rateset *rs = &in->in_rates; 17651000Sxc151355 17663147Sxc151355 ATH_LOCK(asc); 17673147Sxc151355 switch (stat) { 17683147Sxc151355 case MAC_STAT_IFSPEED: 17693147Sxc151355 *val = (rs->ir_rates[in->in_txrate] & IEEE80211_RATE_VAL) / 2 * 17703147Sxc151355 1000000ull; 17713147Sxc151355 break; 17723147Sxc151355 case MAC_STAT_NOXMTBUF: 17733147Sxc151355 *val = asc->asc_stats.ast_tx_nobuf + 17743147Sxc151355 asc->asc_stats.ast_tx_nobufmgt; 17753147Sxc151355 break; 17763147Sxc151355 case MAC_STAT_IERRORS: 17773147Sxc151355 *val = asc->asc_stats.ast_rx_tooshort; 17783147Sxc151355 break; 17793147Sxc151355 case MAC_STAT_RBYTES: 17803147Sxc151355 *val = ic->ic_stats.is_rx_bytes; 17813147Sxc151355 break; 17823147Sxc151355 case MAC_STAT_IPACKETS: 17833147Sxc151355 *val = ic->ic_stats.is_rx_frags; 17843147Sxc151355 break; 17853147Sxc151355 case MAC_STAT_OBYTES: 17863147Sxc151355 *val = ic->ic_stats.is_tx_bytes; 17873147Sxc151355 break; 17883147Sxc151355 case MAC_STAT_OPACKETS: 17893147Sxc151355 *val = ic->ic_stats.is_tx_frags; 17903147Sxc151355 break; 17913631Sxh158540 case MAC_STAT_OERRORS: 17923147Sxc151355 case WIFI_STAT_TX_FAILED: 17933147Sxc151355 *val = asc->asc_stats.ast_tx_fifoerr + 17943631Sxh158540 asc->asc_stats.ast_tx_xretries + 17953631Sxh158540 asc->asc_stats.ast_tx_discard; 17963147Sxc151355 break; 17973147Sxc151355 case WIFI_STAT_TX_RETRANS: 17983147Sxc151355 *val = asc->asc_stats.ast_tx_xretries; 17993147Sxc151355 break; 18003147Sxc151355 case WIFI_STAT_FCS_ERRORS: 18013147Sxc151355 *val = asc->asc_stats.ast_rx_crcerr; 18023147Sxc151355 break; 18033147Sxc151355 case WIFI_STAT_WEP_ERRORS: 18043147Sxc151355 *val = asc->asc_stats.ast_rx_badcrypt; 18053147Sxc151355 break; 18063147Sxc151355 case WIFI_STAT_TX_FRAGS: 18073147Sxc151355 case WIFI_STAT_MCAST_TX: 18083147Sxc151355 case WIFI_STAT_RTS_SUCCESS: 18093147Sxc151355 case WIFI_STAT_RTS_FAILURE: 18103147Sxc151355 case WIFI_STAT_ACK_FAILURE: 18113147Sxc151355 case WIFI_STAT_RX_FRAGS: 18123147Sxc151355 case WIFI_STAT_MCAST_RX: 18133147Sxc151355 case WIFI_STAT_RX_DUPS: 18143147Sxc151355 ATH_UNLOCK(asc); 18153147Sxc151355 return (ieee80211_stat(ic, stat, val)); 18163147Sxc151355 default: 18173147Sxc151355 ATH_UNLOCK(asc); 18183147Sxc151355 return (ENOTSUP); 18193147Sxc151355 } 18203147Sxc151355 ATH_UNLOCK(asc); 18211000Sxc151355 18223147Sxc151355 return (0); 18231000Sxc151355 } 18241000Sxc151355 18251000Sxc151355 static int 18266797Sxc151355 ath_pci_setup(ath_t *asc) 18276797Sxc151355 { 18286797Sxc151355 uint16_t command; 18296797Sxc151355 18306797Sxc151355 /* 18316797Sxc151355 * Enable memory mapping and bus mastering 18326797Sxc151355 */ 18336797Sxc151355 ASSERT(asc != NULL); 18346797Sxc151355 command = pci_config_get16(asc->asc_cfg_handle, PCI_CONF_COMM); 18356797Sxc151355 command |= PCI_COMM_MAE | PCI_COMM_ME; 18366797Sxc151355 pci_config_put16(asc->asc_cfg_handle, PCI_CONF_COMM, command); 18376797Sxc151355 command = pci_config_get16(asc->asc_cfg_handle, PCI_CONF_COMM); 18386797Sxc151355 if ((command & PCI_COMM_MAE) == 0) { 18396797Sxc151355 ath_problem("ath: ath_pci_setup(): " 18406797Sxc151355 "failed to enable memory mapping\n"); 18416797Sxc151355 return (EIO); 18426797Sxc151355 } 18436797Sxc151355 if ((command & PCI_COMM_ME) == 0) { 18446797Sxc151355 ath_problem("ath: ath_pci_setup(): " 18456797Sxc151355 "failed to enable bus mastering\n"); 18466797Sxc151355 return (EIO); 18476797Sxc151355 } 18486797Sxc151355 ATH_DEBUG((ATH_DBG_INIT, "ath: ath_pci_setup(): " 18496797Sxc151355 "set command reg to 0x%x \n", command)); 18506797Sxc151355 18516797Sxc151355 return (0); 18526797Sxc151355 } 18536797Sxc151355 18546797Sxc151355 static int 18556797Sxc151355 ath_resume(dev_info_t *devinfo) 18566797Sxc151355 { 18576797Sxc151355 ath_t *asc; 18586797Sxc151355 int ret = DDI_SUCCESS; 18596797Sxc151355 18606797Sxc151355 asc = ddi_get_soft_state(ath_soft_state_p, ddi_get_instance(devinfo)); 18616797Sxc151355 if (asc == NULL) { 18626797Sxc151355 ATH_DEBUG((ATH_DBG_SUSPEND, "ath: ath_resume(): " 18636797Sxc151355 "failed to get soft state\n")); 18646797Sxc151355 return (DDI_FAILURE); 18656797Sxc151355 } 18666797Sxc151355 18676797Sxc151355 ATH_LOCK(asc); 18686797Sxc151355 /* 18696797Sxc151355 * Set up config space command register(s). Refuse 18706797Sxc151355 * to resume on failure. 18716797Sxc151355 */ 18726797Sxc151355 if (ath_pci_setup(asc) != 0) { 18736797Sxc151355 ATH_DEBUG((ATH_DBG_SUSPEND, "ath: ath_resume(): " 18746797Sxc151355 "ath_pci_setup() failed\n")); 18756797Sxc151355 ATH_UNLOCK(asc); 18766797Sxc151355 return (DDI_FAILURE); 18776797Sxc151355 } 18786797Sxc151355 18796797Sxc151355 if (!asc->asc_invalid) 18806797Sxc151355 ret = ath_start_locked(asc); 18816797Sxc151355 ATH_UNLOCK(asc); 18826797Sxc151355 18836797Sxc151355 return (ret); 18846797Sxc151355 } 18856797Sxc151355 18866797Sxc151355 static int 18871000Sxc151355 ath_attach(dev_info_t *devinfo, ddi_attach_cmd_t cmd) 18881000Sxc151355 { 18891000Sxc151355 ath_t *asc; 18903147Sxc151355 ieee80211com_t *ic; 18911000Sxc151355 struct ath_hal *ah; 18921000Sxc151355 uint8_t csz; 18931000Sxc151355 HAL_STATUS status; 18941000Sxc151355 caddr_t regs; 18951000Sxc151355 uint32_t i, val; 18966797Sxc151355 uint16_t vendor_id, device_id; 18971000Sxc151355 const char *athname; 18981000Sxc151355 int32_t ath_countrycode = CTRY_DEFAULT; /* country code */ 18991000Sxc151355 int32_t err, ath_regdomain = 0; /* regulatory domain */ 19001000Sxc151355 char strbuf[32]; 19013147Sxc151355 int instance; 19023147Sxc151355 wifi_data_t wd = { 0 }; 19033147Sxc151355 mac_register_t *macp; 19041000Sxc151355 19056797Sxc151355 switch (cmd) { 19066797Sxc151355 case DDI_ATTACH: 19076797Sxc151355 break; 19086797Sxc151355 19096797Sxc151355 case DDI_RESUME: 19106797Sxc151355 return (ath_resume(devinfo)); 19116797Sxc151355 19126797Sxc151355 default: 19131000Sxc151355 return (DDI_FAILURE); 19146797Sxc151355 } 19151000Sxc151355 19163147Sxc151355 instance = ddi_get_instance(devinfo); 19173147Sxc151355 if (ddi_soft_state_zalloc(ath_soft_state_p, instance) != DDI_SUCCESS) { 19181000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 19191000Sxc151355 "Unable to alloc softstate\n")); 19201000Sxc151355 return (DDI_FAILURE); 19211000Sxc151355 } 19221000Sxc151355 19231000Sxc151355 asc = ddi_get_soft_state(ath_soft_state_p, ddi_get_instance(devinfo)); 19243147Sxc151355 ic = (ieee80211com_t *)asc; 19251000Sxc151355 asc->asc_dev = devinfo; 19261000Sxc151355 19271000Sxc151355 mutex_init(&asc->asc_genlock, NULL, MUTEX_DRIVER, NULL); 19281000Sxc151355 mutex_init(&asc->asc_txbuflock, NULL, MUTEX_DRIVER, NULL); 19291000Sxc151355 mutex_init(&asc->asc_rxbuflock, NULL, MUTEX_DRIVER, NULL); 19303147Sxc151355 mutex_init(&asc->asc_resched_lock, NULL, MUTEX_DRIVER, NULL); 19311000Sxc151355 19321000Sxc151355 err = pci_config_setup(devinfo, &asc->asc_cfg_handle); 19331000Sxc151355 if (err != DDI_SUCCESS) { 19341000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 19351000Sxc151355 "pci_config_setup() failed")); 19361000Sxc151355 goto attach_fail0; 19371000Sxc151355 } 19381000Sxc151355 19396797Sxc151355 if (ath_pci_setup(asc) != 0) 19406797Sxc151355 goto attach_fail1; 19416797Sxc151355 19425420Sxc151355 /* 19435420Sxc151355 * Cache line size is used to size and align various 19445420Sxc151355 * structures used to communicate with the hardware. 19455420Sxc151355 */ 19461000Sxc151355 csz = pci_config_get8(asc->asc_cfg_handle, PCI_CONF_CACHE_LINESZ); 19475420Sxc151355 if (csz == 0) { 19485420Sxc151355 /* 19495420Sxc151355 * We must have this setup properly for rx buffer 19505420Sxc151355 * DMA to work so force a reasonable value here if it 19515420Sxc151355 * comes up zero. 19525420Sxc151355 */ 19535420Sxc151355 csz = ATH_DEF_CACHE_BYTES / sizeof (uint32_t); 19545420Sxc151355 pci_config_put8(asc->asc_cfg_handle, PCI_CONF_CACHE_LINESZ, 19555420Sxc151355 csz); 19565420Sxc151355 } 19571000Sxc151355 asc->asc_cachelsz = csz << 2; 19581000Sxc151355 vendor_id = pci_config_get16(asc->asc_cfg_handle, PCI_CONF_VENID); 19591000Sxc151355 device_id = pci_config_get16(asc->asc_cfg_handle, PCI_CONF_DEVID); 19601000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): vendor 0x%x, " 19611000Sxc151355 "device id 0x%x, cache size %d\n", vendor_id, device_id, csz)); 19621000Sxc151355 19631000Sxc151355 athname = ath_hal_probe(vendor_id, device_id); 19641000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): athname: %s\n", 19651000Sxc151355 athname ? athname : "Atheros ???")); 19661000Sxc151355 19671000Sxc151355 pci_config_put8(asc->asc_cfg_handle, PCI_CONF_LATENCY_TIMER, 0xa8); 19681000Sxc151355 val = pci_config_get32(asc->asc_cfg_handle, 0x40); 19691000Sxc151355 if ((val & 0x0000ff00) != 0) 19701000Sxc151355 pci_config_put32(asc->asc_cfg_handle, 0x40, val & 0xffff00ff); 19711000Sxc151355 19721000Sxc151355 err = ddi_regs_map_setup(devinfo, 1, 19731000Sxc151355 ®s, 0, 0, &ath_reg_accattr, &asc->asc_io_handle); 19741000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 19751000Sxc151355 "regs map1 = %x err=%d\n", regs, err)); 19761000Sxc151355 if (err != DDI_SUCCESS) { 19771000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 19781000Sxc151355 "ddi_regs_map_setup() failed")); 19791000Sxc151355 goto attach_fail1; 19801000Sxc151355 } 19811000Sxc151355 19821000Sxc151355 ah = ath_hal_attach(device_id, asc, 0, regs, &status); 19831000Sxc151355 if (ah == NULL) { 19841000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 19856235Sxc151355 "unable to attach hw: '%s' (HAL status %u)\n", 19866235Sxc151355 ath_get_hal_status_desc(status), status)); 19871000Sxc151355 goto attach_fail2; 19881000Sxc151355 } 19891000Sxc151355 ATH_HAL_INTRSET(ah, 0); 19901000Sxc151355 asc->asc_ah = ah; 19911000Sxc151355 19921000Sxc151355 if (ah->ah_abi != HAL_ABI_VERSION) { 19931000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 19941000Sxc151355 "HAL ABI mismatch detected (0x%x != 0x%x)\n", 19951000Sxc151355 ah->ah_abi, HAL_ABI_VERSION)); 19961000Sxc151355 goto attach_fail3; 19971000Sxc151355 } 19981000Sxc151355 19991000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 20001000Sxc151355 "HAL ABI version 0x%x\n", ah->ah_abi)); 20011000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 20021000Sxc151355 "HAL mac version %d.%d, phy version %d.%d\n", 20031000Sxc151355 ah->ah_macVersion, ah->ah_macRev, 20041000Sxc151355 ah->ah_phyRev >> 4, ah->ah_phyRev & 0xf)); 20051000Sxc151355 if (ah->ah_analog5GhzRev) 20061000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 20071000Sxc151355 "HAL 5ghz radio version %d.%d\n", 20081000Sxc151355 ah->ah_analog5GhzRev >> 4, 20091000Sxc151355 ah->ah_analog5GhzRev & 0xf)); 20101000Sxc151355 if (ah->ah_analog2GhzRev) 20111000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 20121000Sxc151355 "HAL 2ghz radio version %d.%d\n", 20131000Sxc151355 ah->ah_analog2GhzRev >> 4, 20141000Sxc151355 ah->ah_analog2GhzRev & 0xf)); 20151000Sxc151355 20161000Sxc151355 /* 20171000Sxc151355 * Check if the MAC has multi-rate retry support. 20181000Sxc151355 * We do this by trying to setup a fake extended 20191000Sxc151355 * descriptor. MAC's that don't have support will 20201000Sxc151355 * return false w/o doing anything. MAC's that do 20211000Sxc151355 * support it will return true w/o doing anything. 20221000Sxc151355 */ 20231000Sxc151355 asc->asc_mrretry = ATH_HAL_SETUPXTXDESC(ah, NULL, 0, 0, 0, 0, 0, 0); 20241000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 20251000Sxc151355 "multi rate retry support=%x\n", 20261000Sxc151355 asc->asc_mrretry)); 20271000Sxc151355 20284126Szf162725 /* 20294126Szf162725 * Get the hardware key cache size. 20304126Szf162725 */ 20314126Szf162725 asc->asc_keymax = ATH_HAL_KEYCACHESIZE(ah); 20324126Szf162725 if (asc->asc_keymax > sizeof (asc->asc_keymap) * NBBY) { 20334126Szf162725 ATH_DEBUG((ATH_DBG_ATTACH, "ath_attach:" 20344126Szf162725 " Warning, using only %u entries in %u key cache\n", 20354126Szf162725 sizeof (asc->asc_keymap) * NBBY, asc->asc_keymax)); 20364126Szf162725 asc->asc_keymax = sizeof (asc->asc_keymap) * NBBY; 20374126Szf162725 } 20384126Szf162725 /* 20394126Szf162725 * Reset the key cache since some parts do not 20404126Szf162725 * reset the contents on initial power up. 20414126Szf162725 */ 20424126Szf162725 for (i = 0; i < asc->asc_keymax; i++) 20434126Szf162725 ATH_HAL_KEYRESET(ah, i); 20444126Szf162725 20454126Szf162725 for (i = 0; i < IEEE80211_WEP_NKID; i++) { 20464126Szf162725 setbit(asc->asc_keymap, i); 20474126Szf162725 setbit(asc->asc_keymap, i+32); 20484126Szf162725 setbit(asc->asc_keymap, i+64); 20494126Szf162725 setbit(asc->asc_keymap, i+32+64); 20504126Szf162725 } 20514126Szf162725 20521000Sxc151355 ATH_HAL_GETREGDOMAIN(ah, (uint32_t *)&ath_regdomain); 20531000Sxc151355 ATH_HAL_GETCOUNTRYCODE(ah, &ath_countrycode); 20541000Sxc151355 /* 20551000Sxc151355 * Collect the channel list using the default country 20561000Sxc151355 * code and including outdoor channels. The 802.11 layer 20571000Sxc151355 * is resposible for filtering this list to a set of 20581000Sxc151355 * channels that it considers ok to use. 20591000Sxc151355 */ 20601000Sxc151355 asc->asc_have11g = 0; 20611000Sxc151355 20621000Sxc151355 /* enable outdoor use, enable extended channels */ 20631000Sxc151355 err = ath_getchannels(asc, ath_countrycode, AH_FALSE, AH_TRUE); 20641000Sxc151355 if (err != 0) 20651000Sxc151355 goto attach_fail3; 20661000Sxc151355 20671000Sxc151355 /* 20681000Sxc151355 * Setup rate tables for all potential media types. 20691000Sxc151355 */ 20701000Sxc151355 ath_rate_setup(asc, IEEE80211_MODE_11A); 20711000Sxc151355 ath_rate_setup(asc, IEEE80211_MODE_11B); 20721000Sxc151355 ath_rate_setup(asc, IEEE80211_MODE_11G); 20733147Sxc151355 ath_rate_setup(asc, IEEE80211_MODE_TURBO_A); 20741000Sxc151355 20751000Sxc151355 /* Setup here so ath_rate_update is happy */ 20761000Sxc151355 ath_setcurmode(asc, IEEE80211_MODE_11A); 20771000Sxc151355 20781000Sxc151355 err = ath_desc_alloc(devinfo, asc); 20791000Sxc151355 if (err != DDI_SUCCESS) { 20801000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 20811000Sxc151355 "failed to allocate descriptors: %d\n", err)); 20821000Sxc151355 goto attach_fail3; 20831000Sxc151355 } 20841000Sxc151355 20851000Sxc151355 /* Setup transmit queues in the HAL */ 20861000Sxc151355 if (ath_txq_setup(asc)) 20871000Sxc151355 goto attach_fail4; 20881000Sxc151355 20893147Sxc151355 ATH_HAL_GETMAC(ah, ic->ic_macaddr); 20901000Sxc151355 20913147Sxc151355 /* 20923147Sxc151355 * Initialize pointers to device specific functions which 20933147Sxc151355 * will be used by the generic layer. 20943147Sxc151355 */ 20951000Sxc151355 /* 11g support is identified when we fetch the channel set */ 20961000Sxc151355 if (asc->asc_have11g) 20974206Szf162725 ic->ic_caps |= IEEE80211_C_SHPREAMBLE | 20984206Szf162725 IEEE80211_C_SHSLOT; /* short slot time */ 20993147Sxc151355 /* 21003147Sxc151355 * Query the hal to figure out h/w crypto support. 21013147Sxc151355 */ 21023147Sxc151355 if (ATH_HAL_CIPHERSUPPORTED(ah, HAL_CIPHER_WEP)) 21033147Sxc151355 ic->ic_caps |= IEEE80211_C_WEP; 21043147Sxc151355 if (ATH_HAL_CIPHERSUPPORTED(ah, HAL_CIPHER_AES_OCB)) 21053147Sxc151355 ic->ic_caps |= IEEE80211_C_AES; 21064126Szf162725 if (ATH_HAL_CIPHERSUPPORTED(ah, HAL_CIPHER_AES_CCM)) { 21074126Szf162725 ATH_DEBUG((ATH_DBG_ATTACH, "Atheros support H/W CCMP\n")); 21083147Sxc151355 ic->ic_caps |= IEEE80211_C_AES_CCM; 21094126Szf162725 } 21104126Szf162725 if (ATH_HAL_CIPHERSUPPORTED(ah, HAL_CIPHER_CKIP)) 21113147Sxc151355 ic->ic_caps |= IEEE80211_C_CKIP; 21124126Szf162725 if (ATH_HAL_CIPHERSUPPORTED(ah, HAL_CIPHER_TKIP)) { 21134126Szf162725 ATH_DEBUG((ATH_DBG_ATTACH, "Atheros support H/W TKIP\n")); 21144126Szf162725 ic->ic_caps |= IEEE80211_C_TKIP; 21153147Sxc151355 /* 21163147Sxc151355 * Check if h/w does the MIC and/or whether the 21173147Sxc151355 * separate key cache entries are required to 21183147Sxc151355 * handle both tx+rx MIC keys. 21193147Sxc151355 */ 21204126Szf162725 if (ATH_HAL_CIPHERSUPPORTED(ah, HAL_CIPHER_MIC)) { 21214126Szf162725 ATH_DEBUG((ATH_DBG_ATTACH, "Support H/W TKIP MIC\n")); 21223147Sxc151355 ic->ic_caps |= IEEE80211_C_TKIPMIC; 21234126Szf162725 } 21243147Sxc151355 if (ATH_HAL_TKIPSPLIT(ah)) 21253147Sxc151355 asc->asc_splitmic = 1; 21263147Sxc151355 } 21274126Szf162725 ic->ic_caps |= IEEE80211_C_WPA; /* Support WPA/WPA2 */ 21284126Szf162725 21293147Sxc151355 asc->asc_hasclrkey = ATH_HAL_CIPHERSUPPORTED(ah, HAL_CIPHER_CLR); 21303147Sxc151355 ic->ic_phytype = IEEE80211_T_OFDM; 21313147Sxc151355 ic->ic_opmode = IEEE80211_M_STA; 21323147Sxc151355 ic->ic_state = IEEE80211_S_INIT; 21333147Sxc151355 ic->ic_maxrssi = ATH_MAX_RSSI; 21343147Sxc151355 ic->ic_set_shortslot = ath_set_shortslot; 21353147Sxc151355 ic->ic_xmit = ath_xmit; 21363147Sxc151355 ieee80211_attach(ic); 21371000Sxc151355 21384126Szf162725 /* different instance has different WPA door */ 21394126Szf162725 (void) snprintf(ic->ic_wpadoor, MAX_IEEE80211STR, "%s_%s%d", WPA_DOOR, 21405420Sxc151355 ddi_driver_name(devinfo), 21415420Sxc151355 ddi_get_instance(devinfo)); 21424126Szf162725 21433147Sxc151355 /* Override 80211 default routines */ 21443147Sxc151355 ic->ic_reset = ath_reset; 21453147Sxc151355 asc->asc_newstate = ic->ic_newstate; 21463147Sxc151355 ic->ic_newstate = ath_newstate; 21473147Sxc151355 ic->ic_watchdog = ath_watchdog; 21483147Sxc151355 ic->ic_node_alloc = ath_node_alloc; 21493147Sxc151355 ic->ic_node_free = ath_node_free; 21503147Sxc151355 ic->ic_crypto.cs_key_alloc = ath_key_alloc; 21513147Sxc151355 ic->ic_crypto.cs_key_delete = ath_key_delete; 21523147Sxc151355 ic->ic_crypto.cs_key_set = ath_key_set; 21533147Sxc151355 ieee80211_media_init(ic); 21544296Szf162725 /* 21554296Szf162725 * initialize default tx key 21564296Szf162725 */ 21574296Szf162725 ic->ic_def_txkey = 0; 21581000Sxc151355 21591000Sxc151355 asc->asc_rx_pend = 0; 21601000Sxc151355 ATH_HAL_INTRSET(ah, 0); 21611000Sxc151355 err = ddi_add_softintr(devinfo, DDI_SOFTINT_LOW, 21621000Sxc151355 &asc->asc_softint_id, NULL, 0, ath_softint_handler, (caddr_t)asc); 21631000Sxc151355 if (err != DDI_SUCCESS) { 21641000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 21653147Sxc151355 "ddi_add_softintr() failed\n")); 21661000Sxc151355 goto attach_fail5; 21671000Sxc151355 } 21681000Sxc151355 21691000Sxc151355 if (ddi_get_iblock_cookie(devinfo, 0, &asc->asc_iblock) 21701000Sxc151355 != DDI_SUCCESS) { 21711000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 21721000Sxc151355 "Can not get iblock cookie for INT\n")); 21731000Sxc151355 goto attach_fail6; 21741000Sxc151355 } 21751000Sxc151355 21763147Sxc151355 if (ddi_add_intr(devinfo, 0, NULL, NULL, ath_intr, 21773147Sxc151355 (caddr_t)asc) != DDI_SUCCESS) { 21781000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 21791000Sxc151355 "Can not set intr for ATH driver\n")); 21801000Sxc151355 goto attach_fail6; 21811000Sxc151355 } 21823147Sxc151355 21833147Sxc151355 /* 21843147Sxc151355 * Provide initial settings for the WiFi plugin; whenever this 21853147Sxc151355 * information changes, we need to call mac_plugindata_update() 21863147Sxc151355 */ 21873147Sxc151355 wd.wd_opmode = ic->ic_opmode; 21883147Sxc151355 wd.wd_secalloc = WIFI_SEC_NONE; 21893147Sxc151355 IEEE80211_ADDR_COPY(wd.wd_bssid, ic->ic_bss->in_bssid); 21903147Sxc151355 21913147Sxc151355 if ((macp = mac_alloc(MAC_VERSION)) == NULL) { 21923147Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 21933147Sxc151355 "MAC version mismatch\n")); 21943147Sxc151355 goto attach_fail7; 21953147Sxc151355 } 21961000Sxc151355 21973147Sxc151355 macp->m_type_ident = MAC_PLUGIN_IDENT_WIFI; 21983147Sxc151355 macp->m_driver = asc; 21993147Sxc151355 macp->m_dip = devinfo; 22003147Sxc151355 macp->m_src_addr = ic->ic_macaddr; 22013147Sxc151355 macp->m_callbacks = &ath_m_callbacks; 22023147Sxc151355 macp->m_min_sdu = 0; 22033147Sxc151355 macp->m_max_sdu = IEEE80211_MTU; 22043147Sxc151355 macp->m_pdata = &wd; 22053147Sxc151355 macp->m_pdata_size = sizeof (wd); 22063147Sxc151355 22073147Sxc151355 err = mac_register(macp, &ic->ic_mach); 22083147Sxc151355 mac_free(macp); 22093147Sxc151355 if (err != 0) { 22101000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "ath: ath_attach(): " 22113147Sxc151355 "mac_register err %x\n", err)); 22121000Sxc151355 goto attach_fail7; 22131000Sxc151355 } 22141000Sxc151355 22151000Sxc151355 /* Create minor node of type DDI_NT_NET_WIFI */ 22161000Sxc151355 (void) snprintf(strbuf, sizeof (strbuf), "%s%d", 22173147Sxc151355 ATH_NODENAME, instance); 22181000Sxc151355 err = ddi_create_minor_node(devinfo, strbuf, S_IFCHR, 22193147Sxc151355 instance + 1, DDI_NT_NET_WIFI, 0); 22201000Sxc151355 if (err != DDI_SUCCESS) 22211000Sxc151355 ATH_DEBUG((ATH_DBG_ATTACH, "WARN: ath: ath_attach(): " 22221000Sxc151355 "Create minor node failed - %d\n", err)); 22231000Sxc151355 22243147Sxc151355 mac_link_update(ic->ic_mach, LINK_STATE_DOWN); 22251000Sxc151355 asc->asc_invalid = 1; 22266797Sxc151355 asc->asc_isrunning = 0; 22276235Sxc151355 asc->asc_promisc = B_FALSE; 22286235Sxc151355 bzero(asc->asc_mcast_refs, sizeof (asc->asc_mcast_refs)); 22296235Sxc151355 bzero(asc->asc_mcast_hash, sizeof (asc->asc_mcast_hash)); 22301000Sxc151355 return (DDI_SUCCESS); 22311000Sxc151355 attach_fail7: 22321000Sxc151355 ddi_remove_intr(devinfo, 0, asc->asc_iblock); 22331000Sxc151355 attach_fail6: 22341000Sxc151355 ddi_remove_softintr(asc->asc_softint_id); 22351000Sxc151355 attach_fail5: 22363147Sxc151355 (void) ieee80211_detach(ic); 22371000Sxc151355 attach_fail4: 22381000Sxc151355 ath_desc_free(asc); 22391000Sxc151355 attach_fail3: 22401000Sxc151355 ah->ah_detach(asc->asc_ah); 22411000Sxc151355 attach_fail2: 22421000Sxc151355 ddi_regs_map_free(&asc->asc_io_handle); 22431000Sxc151355 attach_fail1: 22441000Sxc151355 pci_config_teardown(&asc->asc_cfg_handle); 22451000Sxc151355 attach_fail0: 22461000Sxc151355 asc->asc_invalid = 1; 22471000Sxc151355 mutex_destroy(&asc->asc_txbuflock); 22481000Sxc151355 for (i = 0; i < HAL_NUM_TX_QUEUES; i++) { 22491000Sxc151355 if (ATH_TXQ_SETUP(asc, i)) { 22501000Sxc151355 struct ath_txq *txq = &asc->asc_txq[i]; 22511000Sxc151355 mutex_destroy(&txq->axq_lock); 22521000Sxc151355 } 22531000Sxc151355 } 22541000Sxc151355 mutex_destroy(&asc->asc_rxbuflock); 22551000Sxc151355 mutex_destroy(&asc->asc_genlock); 22563147Sxc151355 mutex_destroy(&asc->asc_resched_lock); 22573147Sxc151355 ddi_soft_state_free(ath_soft_state_p, instance); 22581000Sxc151355 22591000Sxc151355 return (DDI_FAILURE); 22601000Sxc151355 } 22611000Sxc151355 22626797Sxc151355 /* 22636797Sxc151355 * Suspend transmit/receive for powerdown 22646797Sxc151355 */ 22656797Sxc151355 static int 22666797Sxc151355 ath_suspend(ath_t *asc) 22676797Sxc151355 { 22686797Sxc151355 ATH_LOCK(asc); 22696797Sxc151355 ath_stop_locked(asc); 22706797Sxc151355 ATH_UNLOCK(asc); 22716797Sxc151355 ATH_DEBUG((ATH_DBG_SUSPEND, "ath: suspended.\n")); 22726797Sxc151355 22736797Sxc151355 return (DDI_SUCCESS); 22746797Sxc151355 } 22756797Sxc151355 22761000Sxc151355 static int32_t 22771000Sxc151355 ath_detach(dev_info_t *devinfo, ddi_detach_cmd_t cmd) 22781000Sxc151355 { 22791000Sxc151355 ath_t *asc; 22801000Sxc151355 22811000Sxc151355 asc = ddi_get_soft_state(ath_soft_state_p, ddi_get_instance(devinfo)); 22821000Sxc151355 ASSERT(asc != NULL); 22831000Sxc151355 22846797Sxc151355 switch (cmd) { 22856797Sxc151355 case DDI_DETACH: 22866797Sxc151355 break; 22876797Sxc151355 22886797Sxc151355 case DDI_SUSPEND: 22896797Sxc151355 return (ath_suspend(asc)); 22906797Sxc151355 22916797Sxc151355 default: 22921000Sxc151355 return (DDI_FAILURE); 22936797Sxc151355 } 22941000Sxc151355 22953147Sxc151355 ath_stop_scantimer(asc); 22961000Sxc151355 22971000Sxc151355 /* disable interrupts */ 22981000Sxc151355 ATH_HAL_INTRSET(asc->asc_ah, 0); 22991000Sxc151355 23003147Sxc151355 /* 23013147Sxc151355 * Unregister from the MAC layer subsystem 23023147Sxc151355 */ 23033147Sxc151355 if (mac_unregister(asc->asc_isc.ic_mach) != 0) 23043147Sxc151355 return (DDI_FAILURE); 23053147Sxc151355 23061000Sxc151355 /* free intterrupt resources */ 23071000Sxc151355 ddi_remove_intr(devinfo, 0, asc->asc_iblock); 23081000Sxc151355 ddi_remove_softintr(asc->asc_softint_id); 23091000Sxc151355 23103147Sxc151355 /* 23113147Sxc151355 * NB: the order of these is important: 23123147Sxc151355 * o call the 802.11 layer before detaching the hal to 23133147Sxc151355 * insure callbacks into the driver to delete global 23143147Sxc151355 * key cache entries can be handled 23153147Sxc151355 * o reclaim the tx queue data structures after calling 23163147Sxc151355 * the 802.11 layer as we'll get called back to reclaim 23173147Sxc151355 * node state and potentially want to use them 23183147Sxc151355 * o to cleanup the tx queues the hal is called, so detach 23193147Sxc151355 * it last 23203147Sxc151355 */ 23213147Sxc151355 ieee80211_detach(&asc->asc_isc); 23221000Sxc151355 ath_desc_free(asc); 23233147Sxc151355 ath_txq_cleanup(asc); 23241000Sxc151355 asc->asc_ah->ah_detach(asc->asc_ah); 23251000Sxc151355 23261000Sxc151355 /* free io handle */ 23271000Sxc151355 ddi_regs_map_free(&asc->asc_io_handle); 23281000Sxc151355 pci_config_teardown(&asc->asc_cfg_handle); 23291000Sxc151355 23301000Sxc151355 /* destroy locks */ 23311000Sxc151355 mutex_destroy(&asc->asc_rxbuflock); 23321000Sxc151355 mutex_destroy(&asc->asc_genlock); 23333147Sxc151355 mutex_destroy(&asc->asc_resched_lock); 23341000Sxc151355 23351000Sxc151355 ddi_remove_minor_node(devinfo, NULL); 23361000Sxc151355 ddi_soft_state_free(ath_soft_state_p, ddi_get_instance(devinfo)); 23371000Sxc151355 23381000Sxc151355 return (DDI_SUCCESS); 23391000Sxc151355 } 23401000Sxc151355 23413147Sxc151355 DDI_DEFINE_STREAM_OPS(ath_dev_ops, nulldev, nulldev, ath_attach, ath_detach, 23423147Sxc151355 nodev, NULL, D_MP, NULL); 23431000Sxc151355 23441000Sxc151355 static struct modldrv ath_modldrv = { 23451000Sxc151355 &mod_driverops, /* Type of module. This one is a driver */ 23466235Sxc151355 "ath driver 1.3.1/HAL 0.9.17.2", /* short description */ 23471000Sxc151355 &ath_dev_ops /* driver specific ops */ 23481000Sxc151355 }; 23491000Sxc151355 23501000Sxc151355 static struct modlinkage modlinkage = { 23511000Sxc151355 MODREV_1, (void *)&ath_modldrv, NULL 23521000Sxc151355 }; 23531000Sxc151355 23541000Sxc151355 23551000Sxc151355 int 23561000Sxc151355 _info(struct modinfo *modinfop) 23571000Sxc151355 { 23581000Sxc151355 return (mod_info(&modlinkage, modinfop)); 23591000Sxc151355 } 23601000Sxc151355 23611000Sxc151355 int 23621000Sxc151355 _init(void) 23631000Sxc151355 { 23641000Sxc151355 int status; 23651000Sxc151355 23661000Sxc151355 status = ddi_soft_state_init(&ath_soft_state_p, sizeof (ath_t), 1); 23671000Sxc151355 if (status != 0) 23681000Sxc151355 return (status); 23691000Sxc151355 23701000Sxc151355 mutex_init(&ath_loglock, NULL, MUTEX_DRIVER, NULL); 23713147Sxc151355 ath_halfix_init(); 23723147Sxc151355 mac_init_ops(&ath_dev_ops, "ath"); 23731000Sxc151355 status = mod_install(&modlinkage); 23741000Sxc151355 if (status != 0) { 23753147Sxc151355 mac_fini_ops(&ath_dev_ops); 23763147Sxc151355 ath_halfix_finit(); 23773147Sxc151355 mutex_destroy(&ath_loglock); 23781000Sxc151355 ddi_soft_state_fini(&ath_soft_state_p); 23791000Sxc151355 } 23801000Sxc151355 23811000Sxc151355 return (status); 23821000Sxc151355 } 23831000Sxc151355 23841000Sxc151355 int 23851000Sxc151355 _fini(void) 23861000Sxc151355 { 23871000Sxc151355 int status; 23881000Sxc151355 23891000Sxc151355 status = mod_remove(&modlinkage); 23901000Sxc151355 if (status == 0) { 23913147Sxc151355 mac_fini_ops(&ath_dev_ops); 23923147Sxc151355 ath_halfix_finit(); 23933147Sxc151355 mutex_destroy(&ath_loglock); 23941000Sxc151355 ddi_soft_state_fini(&ath_soft_state_p); 23951000Sxc151355 } 23961000Sxc151355 return (status); 23971000Sxc151355 } 2398