Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1 | /* |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 2 | * drivers/net/wireless/mwl8k.c |
| 3 | * Driver for Marvell TOPDOG 802.11 Wireless cards |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4 | * |
Lennert Buytenhek | a5fb297 | 2010-01-12 13:51:38 +0100 | [diff] [blame] | 5 | * Copyright (C) 2008, 2009, 2010 Marvell Semiconductor Inc. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 6 | * |
| 7 | * This file is licensed under the terms of the GNU General Public |
| 8 | * License version 2. This program is licensed "as is" without any |
| 9 | * warranty of any kind, whether express or implied. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/kernel.h> |
Lennert Buytenhek | 3d76e82 | 2009-10-22 20:20:16 +0200 | [diff] [blame] | 15 | #include <linux/sched.h> |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 16 | #include <linux/spinlock.h> |
| 17 | #include <linux/list.h> |
| 18 | #include <linux/pci.h> |
| 19 | #include <linux/delay.h> |
| 20 | #include <linux/completion.h> |
| 21 | #include <linux/etherdevice.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/slab.h> |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 23 | #include <net/mac80211.h> |
| 24 | #include <linux/moduleparam.h> |
| 25 | #include <linux/firmware.h> |
| 26 | #include <linux/workqueue.h> |
| 27 | |
| 28 | #define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver" |
| 29 | #define MWL8K_NAME KBUILD_MODNAME |
Lennert Buytenhek | a5fb297 | 2010-01-12 13:51:38 +0100 | [diff] [blame] | 30 | #define MWL8K_VERSION "0.12" |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 31 | |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 32 | /* Module parameters */ |
| 33 | static unsigned ap_mode_default; |
| 34 | module_param(ap_mode_default, bool, 0); |
| 35 | MODULE_PARM_DESC(ap_mode_default, |
| 36 | "Set to 1 to make ap mode the default instead of sta mode"); |
| 37 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 38 | /* Register definitions */ |
| 39 | #define MWL8K_HIU_GEN_PTR 0x00000c10 |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 40 | #define MWL8K_MODE_STA 0x0000005a |
| 41 | #define MWL8K_MODE_AP 0x000000a5 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 42 | #define MWL8K_HIU_INT_CODE 0x00000c14 |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 43 | #define MWL8K_FWSTA_READY 0xf0f1f2f4 |
| 44 | #define MWL8K_FWAP_READY 0xf1f2f4a5 |
| 45 | #define MWL8K_INT_CODE_CMD_FINISHED 0x00000005 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 46 | #define MWL8K_HIU_SCRATCH 0x00000c40 |
| 47 | |
| 48 | /* Host->device communications */ |
| 49 | #define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18 |
| 50 | #define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c |
| 51 | #define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20 |
| 52 | #define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24 |
| 53 | #define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28 |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 54 | #define MWL8K_H2A_INT_DUMMY (1 << 20) |
| 55 | #define MWL8K_H2A_INT_RESET (1 << 15) |
| 56 | #define MWL8K_H2A_INT_DOORBELL (1 << 1) |
| 57 | #define MWL8K_H2A_INT_PPA_READY (1 << 0) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 58 | |
| 59 | /* Device->host communications */ |
| 60 | #define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c |
| 61 | #define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30 |
| 62 | #define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34 |
| 63 | #define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38 |
| 64 | #define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 65 | #define MWL8K_A2H_INT_DUMMY (1 << 20) |
Nishant Sarmukadam | 3aefc37 | 2011-03-17 11:58:47 -0700 | [diff] [blame] | 66 | #define MWL8K_A2H_INT_BA_WATCHDOG (1 << 14) |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 67 | #define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11) |
| 68 | #define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10) |
| 69 | #define MWL8K_A2H_INT_RADAR_DETECT (1 << 7) |
| 70 | #define MWL8K_A2H_INT_RADIO_ON (1 << 6) |
| 71 | #define MWL8K_A2H_INT_RADIO_OFF (1 << 5) |
| 72 | #define MWL8K_A2H_INT_MAC_EVENT (1 << 3) |
| 73 | #define MWL8K_A2H_INT_OPC_DONE (1 << 2) |
| 74 | #define MWL8K_A2H_INT_RX_READY (1 << 1) |
| 75 | #define MWL8K_A2H_INT_TX_DONE (1 << 0) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 76 | |
Pradeep Nemavat | 566875d | 2011-04-21 16:34:57 +0530 | [diff] [blame] | 77 | /* HW micro second timer register |
| 78 | * located at offset 0xA600. This |
| 79 | * will be used to timestamp tx |
| 80 | * packets. |
| 81 | */ |
| 82 | |
| 83 | #define MWL8K_HW_TIMER_REGISTER 0x0000a600 |
| 84 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 85 | #define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \ |
| 86 | MWL8K_A2H_INT_CHNL_SWITCHED | \ |
| 87 | MWL8K_A2H_INT_QUEUE_EMPTY | \ |
| 88 | MWL8K_A2H_INT_RADAR_DETECT | \ |
| 89 | MWL8K_A2H_INT_RADIO_ON | \ |
| 90 | MWL8K_A2H_INT_RADIO_OFF | \ |
| 91 | MWL8K_A2H_INT_MAC_EVENT | \ |
| 92 | MWL8K_A2H_INT_OPC_DONE | \ |
| 93 | MWL8K_A2H_INT_RX_READY | \ |
Nishant Sarmukadam | 3aefc37 | 2011-03-17 11:58:47 -0700 | [diff] [blame] | 94 | MWL8K_A2H_INT_TX_DONE | \ |
| 95 | MWL8K_A2H_INT_BA_WATCHDOG) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 96 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 97 | #define MWL8K_RX_QUEUES 1 |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 98 | #define MWL8K_TX_WMM_QUEUES 4 |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 99 | #define MWL8K_MAX_AMPDU_QUEUES 8 |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 100 | #define MWL8K_MAX_TX_QUEUES (MWL8K_TX_WMM_QUEUES + MWL8K_MAX_AMPDU_QUEUES) |
| 101 | #define mwl8k_tx_queues(priv) (MWL8K_TX_WMM_QUEUES + (priv)->num_ampdu_queues) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 102 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 103 | struct rxd_ops { |
| 104 | int rxd_size; |
| 105 | void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr); |
| 106 | void (*rxd_refill)(void *rxd, dma_addr_t addr, int len); |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 107 | int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status, |
John W. Linville | 0d462bb | 2010-07-28 14:04:24 -0400 | [diff] [blame] | 108 | __le16 *qos, s8 *noise); |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 109 | }; |
| 110 | |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 111 | struct mwl8k_device_info { |
Lennert Buytenhek | a74b295 | 2009-10-22 20:20:50 +0200 | [diff] [blame] | 112 | char *part_name; |
| 113 | char *helper_image; |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 114 | char *fw_image_sta; |
| 115 | char *fw_image_ap; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 116 | struct rxd_ops *ap_rxd_ops; |
Brian Cavagnolo | 952a0e9 | 2010-11-12 17:23:51 -0800 | [diff] [blame] | 117 | u32 fw_api_ap; |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 118 | }; |
| 119 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 120 | struct mwl8k_rx_queue { |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 121 | int rxd_count; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 122 | |
| 123 | /* hw receives here */ |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 124 | int head; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 125 | |
| 126 | /* refill descs here */ |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 127 | int tail; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 128 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 129 | void *rxd; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 130 | dma_addr_t rxd_dma; |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 131 | struct { |
| 132 | struct sk_buff *skb; |
FUJITA Tomonori | 53b1b3e | 2010-04-02 13:10:38 +0900 | [diff] [blame] | 133 | DEFINE_DMA_UNMAP_ADDR(dma); |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 134 | } *buf; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 135 | }; |
| 136 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 137 | struct mwl8k_tx_queue { |
| 138 | /* hw transmits here */ |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 139 | int head; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 140 | |
| 141 | /* sw appends here */ |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 142 | int tail; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 143 | |
Kalle Valo | 8ccbc3b | 2010-02-07 10:20:52 +0200 | [diff] [blame] | 144 | unsigned int len; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 145 | struct mwl8k_tx_desc *txd; |
| 146 | dma_addr_t txd_dma; |
| 147 | struct sk_buff **skb; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 148 | }; |
| 149 | |
Brian Cavagnolo | ac109fd | 2011-03-17 11:58:45 -0700 | [diff] [blame] | 150 | enum { |
| 151 | AMPDU_NO_STREAM, |
| 152 | AMPDU_STREAM_NEW, |
| 153 | AMPDU_STREAM_IN_PROGRESS, |
| 154 | AMPDU_STREAM_ACTIVE, |
| 155 | }; |
| 156 | |
Nishant Sarmukadam | 5faa1af | 2011-03-17 11:58:43 -0700 | [diff] [blame] | 157 | struct mwl8k_ampdu_stream { |
| 158 | struct ieee80211_sta *sta; |
| 159 | u8 tid; |
| 160 | u8 state; |
| 161 | u8 idx; |
| 162 | u8 txq_idx; /* index of this stream in priv->txq */ |
| 163 | }; |
| 164 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 165 | struct mwl8k_priv { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 166 | struct ieee80211_hw *hw; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 167 | struct pci_dev *pdev; |
Brian Cavagnolo | bf3ca7f | 2011-04-06 14:18:46 +0530 | [diff] [blame] | 168 | int irq; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 169 | |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 170 | struct mwl8k_device_info *device_info; |
| 171 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 172 | void __iomem *sram; |
| 173 | void __iomem *regs; |
| 174 | |
| 175 | /* firmware */ |
Brian Cavagnolo | d1f9e41 | 2010-11-12 17:23:53 -0800 | [diff] [blame] | 176 | const struct firmware *fw_helper; |
| 177 | const struct firmware *fw_ucode; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 178 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 179 | /* hardware/firmware parameters */ |
| 180 | bool ap_fw; |
| 181 | struct rxd_ops *rxd_ops; |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 182 | struct ieee80211_supported_band band_24; |
| 183 | struct ieee80211_channel channels_24[14]; |
| 184 | struct ieee80211_rate rates_24[14]; |
Lennert Buytenhek | 4eae9ed | 2010-01-12 13:48:32 +0100 | [diff] [blame] | 185 | struct ieee80211_supported_band band_50; |
| 186 | struct ieee80211_channel channels_50[4]; |
| 187 | struct ieee80211_rate rates_50[9]; |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 188 | u32 ap_macids_supported; |
| 189 | u32 sta_macids_supported; |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 190 | |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 191 | /* Ampdu stream information */ |
| 192 | u8 num_ampdu_queues; |
Brian Cavagnolo | ac109fd | 2011-03-17 11:58:45 -0700 | [diff] [blame] | 193 | spinlock_t stream_lock; |
| 194 | struct mwl8k_ampdu_stream ampdu[MWL8K_MAX_AMPDU_QUEUES]; |
Nishant Sarmukadam | 3aefc37 | 2011-03-17 11:58:47 -0700 | [diff] [blame] | 195 | struct work_struct watchdog_ba_handle; |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 196 | |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 197 | /* firmware access */ |
| 198 | struct mutex fw_mutex; |
| 199 | struct task_struct *fw_mutex_owner; |
| 200 | int fw_mutex_depth; |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 201 | struct completion *hostcmd_wait; |
| 202 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 203 | /* lock held over TX and TX reap */ |
| 204 | spinlock_t tx_lock; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 205 | |
Lennert Buytenhek | 88de754a | 2009-10-22 20:19:37 +0200 | [diff] [blame] | 206 | /* TX quiesce completion, protected by fw_mutex and tx_lock */ |
| 207 | struct completion *tx_wait; |
| 208 | |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 209 | /* List of interfaces. */ |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 210 | u32 macids_used; |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 211 | struct list_head vif_list; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 212 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 213 | /* power management status cookie from firmware */ |
| 214 | u32 *cookie; |
| 215 | dma_addr_t cookie_dma; |
| 216 | |
| 217 | u16 num_mcaddrs; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 218 | u8 hw_rev; |
Lennert Buytenhek | 2aa7b01 | 2009-08-24 15:48:07 +0200 | [diff] [blame] | 219 | u32 fw_rev; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 220 | |
| 221 | /* |
| 222 | * Running count of TX packets in flight, to avoid |
| 223 | * iterating over the transmit rings each time. |
| 224 | */ |
| 225 | int pending_tx_pkts; |
| 226 | |
| 227 | struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES]; |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 228 | struct mwl8k_tx_queue txq[MWL8K_MAX_TX_QUEUES]; |
| 229 | u32 txq_offset[MWL8K_MAX_TX_QUEUES]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 230 | |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 231 | bool radio_on; |
Lennert Buytenhek | 68ce388 | 2009-07-16 12:26:57 +0200 | [diff] [blame] | 232 | bool radio_short_preamble; |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 233 | bool sniffer_enabled; |
Lennert Buytenhek | 0439b1f | 2009-07-16 12:34:02 +0200 | [diff] [blame] | 234 | bool wmm_enabled; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 235 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 236 | /* XXX need to convert this to handle multiple interfaces */ |
| 237 | bool capture_beacon; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 238 | u8 capture_bssid[ETH_ALEN]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 239 | struct sk_buff *beacon_skb; |
| 240 | |
| 241 | /* |
| 242 | * This FJ worker has to be global as it is scheduled from the |
| 243 | * RX handler. At this point we don't know which interface it |
| 244 | * belongs to until the list of bssids waiting to complete join |
| 245 | * is checked. |
| 246 | */ |
| 247 | struct work_struct finalize_join_worker; |
| 248 | |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 249 | /* Tasklet to perform TX reclaim. */ |
| 250 | struct tasklet_struct poll_tx_task; |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 251 | |
| 252 | /* Tasklet to perform RX. */ |
| 253 | struct tasklet_struct poll_rx_task; |
John W. Linville | 0d462bb | 2010-07-28 14:04:24 -0400 | [diff] [blame] | 254 | |
| 255 | /* Most recently reported noise in dBm */ |
| 256 | s8 noise; |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 257 | |
| 258 | /* |
| 259 | * preserve the queue configurations so they can be restored if/when |
| 260 | * the firmware image is swapped. |
| 261 | */ |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 262 | struct ieee80211_tx_queue_params wmm_params[MWL8K_TX_WMM_QUEUES]; |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 263 | |
| 264 | /* async firmware loading state */ |
| 265 | unsigned fw_state; |
| 266 | char *fw_pref; |
| 267 | char *fw_alt; |
| 268 | struct completion firmware_loading_complete; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 269 | }; |
| 270 | |
Nishant Sarmukadam | e53d9b9 | 2010-12-30 11:23:32 -0800 | [diff] [blame] | 271 | #define MAX_WEP_KEY_LEN 13 |
| 272 | #define NUM_WEP_KEYS 4 |
| 273 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 274 | /* Per interface specific private data */ |
| 275 | struct mwl8k_vif { |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 276 | struct list_head list; |
| 277 | struct ieee80211_vif *vif; |
| 278 | |
Lennert Buytenhek | f57ca9c | 2010-01-12 13:50:14 +0100 | [diff] [blame] | 279 | /* Firmware macid for this vif. */ |
| 280 | int macid; |
| 281 | |
Lennert Buytenhek | c2c2b12 | 2010-01-08 18:27:59 +0100 | [diff] [blame] | 282 | /* Non AMPDU sequence number assigned by driver. */ |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 283 | u16 seqno; |
Nishant Sarmukadam | e53d9b9 | 2010-12-30 11:23:32 -0800 | [diff] [blame] | 284 | |
| 285 | /* Saved WEP keys */ |
| 286 | struct { |
| 287 | u8 enabled; |
| 288 | u8 key[sizeof(struct ieee80211_key_conf) + MAX_WEP_KEY_LEN]; |
| 289 | } wep_key_conf[NUM_WEP_KEYS]; |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 290 | |
| 291 | /* BSSID */ |
| 292 | u8 bssid[ETH_ALEN]; |
| 293 | |
| 294 | /* A flag to indicate is HW crypto is enabled for this bssid */ |
| 295 | bool is_hw_crypto_enabled; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 296 | }; |
Lennert Buytenhek | a94cc97 | 2009-08-03 21:58:57 +0200 | [diff] [blame] | 297 | #define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv)) |
Nishant Sarmukadam | fcdc403 | 2010-12-30 11:23:34 -0800 | [diff] [blame] | 298 | #define IEEE80211_KEY_CONF(_u8) ((struct ieee80211_key_conf *)(_u8)) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 299 | |
Brian Cavagnolo | d0805c1 | 2011-04-12 11:06:28 -0700 | [diff] [blame] | 300 | struct tx_traffic_info { |
| 301 | u32 start_time; |
| 302 | u32 pkts; |
| 303 | }; |
| 304 | |
| 305 | #define MWL8K_MAX_TID 8 |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 306 | struct mwl8k_sta { |
| 307 | /* Index into station database. Returned by UPDATE_STADB. */ |
| 308 | u8 peer_id; |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 309 | u8 is_ampdu_allowed; |
Brian Cavagnolo | d0805c1 | 2011-04-12 11:06:28 -0700 | [diff] [blame] | 310 | struct tx_traffic_info tx_stats[MWL8K_MAX_TID]; |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 311 | }; |
| 312 | #define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv)) |
| 313 | |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 314 | static const struct ieee80211_channel mwl8k_channels_24[] = { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 315 | { .center_freq = 2412, .hw_value = 1, }, |
| 316 | { .center_freq = 2417, .hw_value = 2, }, |
| 317 | { .center_freq = 2422, .hw_value = 3, }, |
| 318 | { .center_freq = 2427, .hw_value = 4, }, |
| 319 | { .center_freq = 2432, .hw_value = 5, }, |
| 320 | { .center_freq = 2437, .hw_value = 6, }, |
| 321 | { .center_freq = 2442, .hw_value = 7, }, |
| 322 | { .center_freq = 2447, .hw_value = 8, }, |
| 323 | { .center_freq = 2452, .hw_value = 9, }, |
| 324 | { .center_freq = 2457, .hw_value = 10, }, |
| 325 | { .center_freq = 2462, .hw_value = 11, }, |
Lennert Buytenhek | 647ca6b | 2009-11-30 18:32:20 +0100 | [diff] [blame] | 326 | { .center_freq = 2467, .hw_value = 12, }, |
| 327 | { .center_freq = 2472, .hw_value = 13, }, |
| 328 | { .center_freq = 2484, .hw_value = 14, }, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 329 | }; |
| 330 | |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 331 | static const struct ieee80211_rate mwl8k_rates_24[] = { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 332 | { .bitrate = 10, .hw_value = 2, }, |
| 333 | { .bitrate = 20, .hw_value = 4, }, |
| 334 | { .bitrate = 55, .hw_value = 11, }, |
Lennert Buytenhek | 5dfd3e2 | 2009-10-22 20:20:29 +0200 | [diff] [blame] | 335 | { .bitrate = 110, .hw_value = 22, }, |
| 336 | { .bitrate = 220, .hw_value = 44, }, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 337 | { .bitrate = 60, .hw_value = 12, }, |
| 338 | { .bitrate = 90, .hw_value = 18, }, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 339 | { .bitrate = 120, .hw_value = 24, }, |
| 340 | { .bitrate = 180, .hw_value = 36, }, |
| 341 | { .bitrate = 240, .hw_value = 48, }, |
| 342 | { .bitrate = 360, .hw_value = 72, }, |
| 343 | { .bitrate = 480, .hw_value = 96, }, |
| 344 | { .bitrate = 540, .hw_value = 108, }, |
Lennert Buytenhek | 140eb5e | 2009-11-30 18:11:44 +0100 | [diff] [blame] | 345 | { .bitrate = 720, .hw_value = 144, }, |
| 346 | }; |
| 347 | |
Lennert Buytenhek | 4eae9ed | 2010-01-12 13:48:32 +0100 | [diff] [blame] | 348 | static const struct ieee80211_channel mwl8k_channels_50[] = { |
| 349 | { .center_freq = 5180, .hw_value = 36, }, |
| 350 | { .center_freq = 5200, .hw_value = 40, }, |
| 351 | { .center_freq = 5220, .hw_value = 44, }, |
| 352 | { .center_freq = 5240, .hw_value = 48, }, |
| 353 | }; |
| 354 | |
| 355 | static const struct ieee80211_rate mwl8k_rates_50[] = { |
| 356 | { .bitrate = 60, .hw_value = 12, }, |
| 357 | { .bitrate = 90, .hw_value = 18, }, |
| 358 | { .bitrate = 120, .hw_value = 24, }, |
| 359 | { .bitrate = 180, .hw_value = 36, }, |
| 360 | { .bitrate = 240, .hw_value = 48, }, |
| 361 | { .bitrate = 360, .hw_value = 72, }, |
| 362 | { .bitrate = 480, .hw_value = 96, }, |
| 363 | { .bitrate = 540, .hw_value = 108, }, |
| 364 | { .bitrate = 720, .hw_value = 144, }, |
| 365 | }; |
| 366 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 367 | /* Set or get info from Firmware */ |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 368 | #define MWL8K_CMD_GET 0x0000 |
Nishant Sarmukadam | 41fdf09 | 2010-11-12 17:23:48 -0800 | [diff] [blame] | 369 | #define MWL8K_CMD_SET 0x0001 |
| 370 | #define MWL8K_CMD_SET_LIST 0x0002 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 371 | |
| 372 | /* Firmware command codes */ |
| 373 | #define MWL8K_CMD_CODE_DNLD 0x0001 |
| 374 | #define MWL8K_CMD_GET_HW_SPEC 0x0003 |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 375 | #define MWL8K_CMD_SET_HW_SPEC 0x0004 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 376 | #define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010 |
| 377 | #define MWL8K_CMD_GET_STAT 0x0014 |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 378 | #define MWL8K_CMD_RADIO_CONTROL 0x001c |
| 379 | #define MWL8K_CMD_RF_TX_POWER 0x001e |
Nishant Sarmukadam | 41fdf09 | 2010-11-12 17:23:48 -0800 | [diff] [blame] | 380 | #define MWL8K_CMD_TX_POWER 0x001f |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 381 | #define MWL8K_CMD_RF_ANTENNA 0x0020 |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 382 | #define MWL8K_CMD_SET_BEACON 0x0100 /* per-vif */ |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 383 | #define MWL8K_CMD_SET_PRE_SCAN 0x0107 |
| 384 | #define MWL8K_CMD_SET_POST_SCAN 0x0108 |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 385 | #define MWL8K_CMD_SET_RF_CHANNEL 0x010a |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 386 | #define MWL8K_CMD_SET_AID 0x010d |
| 387 | #define MWL8K_CMD_SET_RATE 0x0110 |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 388 | #define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 389 | #define MWL8K_CMD_RTS_THRESHOLD 0x0113 |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 390 | #define MWL8K_CMD_SET_SLOT 0x0114 |
| 391 | #define MWL8K_CMD_SET_EDCA_PARAMS 0x0115 |
| 392 | #define MWL8K_CMD_SET_WMM_MODE 0x0123 |
| 393 | #define MWL8K_CMD_MIMO_CONFIG 0x0125 |
| 394 | #define MWL8K_CMD_USE_FIXED_RATE 0x0126 |
| 395 | #define MWL8K_CMD_ENABLE_SNIFFER 0x0150 |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 396 | #define MWL8K_CMD_SET_MAC_ADDR 0x0202 /* per-vif */ |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 397 | #define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203 |
Nishant Sarmukadam | 3aefc37 | 2011-03-17 11:58:47 -0700 | [diff] [blame] | 398 | #define MWL8K_CMD_GET_WATCHDOG_BITMAP 0x0205 |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 399 | #define MWL8K_CMD_BSS_START 0x1100 /* per-vif */ |
| 400 | #define MWL8K_CMD_SET_NEW_STN 0x1111 /* per-vif */ |
Nishant Sarmukadam | fcdc403 | 2010-12-30 11:23:34 -0800 | [diff] [blame] | 401 | #define MWL8K_CMD_UPDATE_ENCRYPTION 0x1122 /* per-vif */ |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 402 | #define MWL8K_CMD_UPDATE_STADB 0x1123 |
Nishant Sarmukadam | 5faa1af | 2011-03-17 11:58:43 -0700 | [diff] [blame] | 403 | #define MWL8K_CMD_BASTREAM 0x1125 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 404 | |
John W. Linville | b603742 | 2010-07-20 13:55:00 -0400 | [diff] [blame] | 405 | static const char *mwl8k_cmd_name(__le16 cmd, char *buf, int bufsize) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 406 | { |
John W. Linville | b603742 | 2010-07-20 13:55:00 -0400 | [diff] [blame] | 407 | u16 command = le16_to_cpu(cmd); |
| 408 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 409 | #define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\ |
| 410 | snprintf(buf, bufsize, "%s", #x);\ |
| 411 | return buf;\ |
| 412 | } while (0) |
John W. Linville | b603742 | 2010-07-20 13:55:00 -0400 | [diff] [blame] | 413 | switch (command & ~0x8000) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 414 | MWL8K_CMDNAME(CODE_DNLD); |
| 415 | MWL8K_CMDNAME(GET_HW_SPEC); |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 416 | MWL8K_CMDNAME(SET_HW_SPEC); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 417 | MWL8K_CMDNAME(MAC_MULTICAST_ADR); |
| 418 | MWL8K_CMDNAME(GET_STAT); |
| 419 | MWL8K_CMDNAME(RADIO_CONTROL); |
| 420 | MWL8K_CMDNAME(RF_TX_POWER); |
Nishant Sarmukadam | 41fdf09 | 2010-11-12 17:23:48 -0800 | [diff] [blame] | 421 | MWL8K_CMDNAME(TX_POWER); |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 422 | MWL8K_CMDNAME(RF_ANTENNA); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 423 | MWL8K_CMDNAME(SET_BEACON); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 424 | MWL8K_CMDNAME(SET_PRE_SCAN); |
| 425 | MWL8K_CMDNAME(SET_POST_SCAN); |
| 426 | MWL8K_CMDNAME(SET_RF_CHANNEL); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 427 | MWL8K_CMDNAME(SET_AID); |
| 428 | MWL8K_CMDNAME(SET_RATE); |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 429 | MWL8K_CMDNAME(SET_FINALIZE_JOIN); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 430 | MWL8K_CMDNAME(RTS_THRESHOLD); |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 431 | MWL8K_CMDNAME(SET_SLOT); |
| 432 | MWL8K_CMDNAME(SET_EDCA_PARAMS); |
| 433 | MWL8K_CMDNAME(SET_WMM_MODE); |
| 434 | MWL8K_CMDNAME(MIMO_CONFIG); |
| 435 | MWL8K_CMDNAME(USE_FIXED_RATE); |
| 436 | MWL8K_CMDNAME(ENABLE_SNIFFER); |
Lennert Buytenhek | 32060e1 | 2009-10-22 20:20:04 +0200 | [diff] [blame] | 437 | MWL8K_CMDNAME(SET_MAC_ADDR); |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 438 | MWL8K_CMDNAME(SET_RATEADAPT_MODE); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 439 | MWL8K_CMDNAME(BSS_START); |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 440 | MWL8K_CMDNAME(SET_NEW_STN); |
Nishant Sarmukadam | fcdc403 | 2010-12-30 11:23:34 -0800 | [diff] [blame] | 441 | MWL8K_CMDNAME(UPDATE_ENCRYPTION); |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 442 | MWL8K_CMDNAME(UPDATE_STADB); |
Nishant Sarmukadam | 5faa1af | 2011-03-17 11:58:43 -0700 | [diff] [blame] | 443 | MWL8K_CMDNAME(BASTREAM); |
Nishant Sarmukadam | 3aefc37 | 2011-03-17 11:58:47 -0700 | [diff] [blame] | 444 | MWL8K_CMDNAME(GET_WATCHDOG_BITMAP); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 445 | default: |
| 446 | snprintf(buf, bufsize, "0x%x", cmd); |
| 447 | } |
| 448 | #undef MWL8K_CMDNAME |
| 449 | |
| 450 | return buf; |
| 451 | } |
| 452 | |
| 453 | /* Hardware and firmware reset */ |
| 454 | static void mwl8k_hw_reset(struct mwl8k_priv *priv) |
| 455 | { |
| 456 | iowrite32(MWL8K_H2A_INT_RESET, |
| 457 | priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 458 | iowrite32(MWL8K_H2A_INT_RESET, |
| 459 | priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 460 | msleep(20); |
| 461 | } |
| 462 | |
| 463 | /* Release fw image */ |
Brian Cavagnolo | d1f9e41 | 2010-11-12 17:23:53 -0800 | [diff] [blame] | 464 | static void mwl8k_release_fw(const struct firmware **fw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 465 | { |
| 466 | if (*fw == NULL) |
| 467 | return; |
| 468 | release_firmware(*fw); |
| 469 | *fw = NULL; |
| 470 | } |
| 471 | |
| 472 | static void mwl8k_release_firmware(struct mwl8k_priv *priv) |
| 473 | { |
Lennert Buytenhek | 22be40d | 2009-11-30 18:32:38 +0100 | [diff] [blame] | 474 | mwl8k_release_fw(&priv->fw_ucode); |
| 475 | mwl8k_release_fw(&priv->fw_helper); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 476 | } |
| 477 | |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 478 | /* states for asynchronous f/w loading */ |
| 479 | static void mwl8k_fw_state_machine(const struct firmware *fw, void *context); |
| 480 | enum { |
| 481 | FW_STATE_INIT = 0, |
| 482 | FW_STATE_LOADING_PREF, |
| 483 | FW_STATE_LOADING_ALT, |
| 484 | FW_STATE_ERROR, |
| 485 | }; |
| 486 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 487 | /* Request fw image */ |
| 488 | static int mwl8k_request_fw(struct mwl8k_priv *priv, |
Brian Cavagnolo | d1f9e41 | 2010-11-12 17:23:53 -0800 | [diff] [blame] | 489 | const char *fname, const struct firmware **fw, |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 490 | bool nowait) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 491 | { |
| 492 | /* release current image */ |
| 493 | if (*fw != NULL) |
| 494 | mwl8k_release_fw(fw); |
| 495 | |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 496 | if (nowait) |
| 497 | return request_firmware_nowait(THIS_MODULE, 1, fname, |
| 498 | &priv->pdev->dev, GFP_KERNEL, |
| 499 | priv, mwl8k_fw_state_machine); |
| 500 | else |
Brian Cavagnolo | d1f9e41 | 2010-11-12 17:23:53 -0800 | [diff] [blame] | 501 | return request_firmware(fw, fname, &priv->pdev->dev); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 502 | } |
| 503 | |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 504 | static int mwl8k_request_firmware(struct mwl8k_priv *priv, char *fw_image, |
| 505 | bool nowait) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 506 | { |
Lennert Buytenhek | a74b295 | 2009-10-22 20:20:50 +0200 | [diff] [blame] | 507 | struct mwl8k_device_info *di = priv->device_info; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 508 | int rc; |
| 509 | |
Lennert Buytenhek | a74b295 | 2009-10-22 20:20:50 +0200 | [diff] [blame] | 510 | if (di->helper_image != NULL) { |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 511 | if (nowait) |
| 512 | rc = mwl8k_request_fw(priv, di->helper_image, |
| 513 | &priv->fw_helper, true); |
| 514 | else |
| 515 | rc = mwl8k_request_fw(priv, di->helper_image, |
| 516 | &priv->fw_helper, false); |
| 517 | if (rc) |
| 518 | printk(KERN_ERR "%s: Error requesting helper fw %s\n", |
| 519 | pci_name(priv->pdev), di->helper_image); |
| 520 | |
| 521 | if (rc || nowait) |
Lennert Buytenhek | a74b295 | 2009-10-22 20:20:50 +0200 | [diff] [blame] | 522 | return rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 523 | } |
| 524 | |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 525 | if (nowait) { |
| 526 | /* |
| 527 | * if we get here, no helper image is needed. Skip the |
| 528 | * FW_STATE_INIT state. |
| 529 | */ |
| 530 | priv->fw_state = FW_STATE_LOADING_PREF; |
| 531 | rc = mwl8k_request_fw(priv, fw_image, |
| 532 | &priv->fw_ucode, |
| 533 | true); |
| 534 | } else |
| 535 | rc = mwl8k_request_fw(priv, fw_image, |
| 536 | &priv->fw_ucode, false); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 537 | if (rc) { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 538 | printk(KERN_ERR "%s: Error requesting firmware file %s\n", |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 539 | pci_name(priv->pdev), fw_image); |
Lennert Buytenhek | 22be40d | 2009-11-30 18:32:38 +0100 | [diff] [blame] | 540 | mwl8k_release_fw(&priv->fw_helper); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 541 | return rc; |
| 542 | } |
| 543 | |
| 544 | return 0; |
| 545 | } |
| 546 | |
| 547 | struct mwl8k_cmd_pkt { |
| 548 | __le16 code; |
| 549 | __le16 length; |
Lennert Buytenhek | f57ca9c | 2010-01-12 13:50:14 +0100 | [diff] [blame] | 550 | __u8 seq_num; |
| 551 | __u8 macid; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 552 | __le16 result; |
| 553 | char payload[0]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 554 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 555 | |
| 556 | /* |
| 557 | * Firmware loading. |
| 558 | */ |
| 559 | static int |
| 560 | mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length) |
| 561 | { |
| 562 | void __iomem *regs = priv->regs; |
| 563 | dma_addr_t dma_addr; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 564 | int loops; |
| 565 | |
| 566 | dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE); |
| 567 | if (pci_dma_mapping_error(priv->pdev, dma_addr)) |
| 568 | return -ENOMEM; |
| 569 | |
| 570 | iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR); |
| 571 | iowrite32(0, regs + MWL8K_HIU_INT_CODE); |
| 572 | iowrite32(MWL8K_H2A_INT_DOORBELL, |
| 573 | regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 574 | iowrite32(MWL8K_H2A_INT_DUMMY, |
| 575 | regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 576 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 577 | loops = 1000; |
| 578 | do { |
| 579 | u32 int_code; |
| 580 | |
| 581 | int_code = ioread32(regs + MWL8K_HIU_INT_CODE); |
| 582 | if (int_code == MWL8K_INT_CODE_CMD_FINISHED) { |
| 583 | iowrite32(0, regs + MWL8K_HIU_INT_CODE); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 584 | break; |
| 585 | } |
| 586 | |
Lennert Buytenhek | 3d76e82 | 2009-10-22 20:20:16 +0200 | [diff] [blame] | 587 | cond_resched(); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 588 | udelay(1); |
| 589 | } while (--loops); |
| 590 | |
| 591 | pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE); |
| 592 | |
Lennert Buytenhek | d4b7057 | 2009-07-16 12:44:45 +0200 | [diff] [blame] | 593 | return loops ? 0 : -ETIMEDOUT; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | static int mwl8k_load_fw_image(struct mwl8k_priv *priv, |
| 597 | const u8 *data, size_t length) |
| 598 | { |
| 599 | struct mwl8k_cmd_pkt *cmd; |
| 600 | int done; |
| 601 | int rc = 0; |
| 602 | |
| 603 | cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL); |
| 604 | if (cmd == NULL) |
| 605 | return -ENOMEM; |
| 606 | |
| 607 | cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD); |
| 608 | cmd->seq_num = 0; |
Lennert Buytenhek | f57ca9c | 2010-01-12 13:50:14 +0100 | [diff] [blame] | 609 | cmd->macid = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 610 | cmd->result = 0; |
| 611 | |
| 612 | done = 0; |
| 613 | while (length) { |
| 614 | int block_size = length > 256 ? 256 : length; |
| 615 | |
| 616 | memcpy(cmd->payload, data + done, block_size); |
| 617 | cmd->length = cpu_to_le16(block_size); |
| 618 | |
| 619 | rc = mwl8k_send_fw_load_cmd(priv, cmd, |
| 620 | sizeof(*cmd) + block_size); |
| 621 | if (rc) |
| 622 | break; |
| 623 | |
| 624 | done += block_size; |
| 625 | length -= block_size; |
| 626 | } |
| 627 | |
| 628 | if (!rc) { |
| 629 | cmd->length = 0; |
| 630 | rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd)); |
| 631 | } |
| 632 | |
| 633 | kfree(cmd); |
| 634 | |
| 635 | return rc; |
| 636 | } |
| 637 | |
| 638 | static int mwl8k_feed_fw_image(struct mwl8k_priv *priv, |
| 639 | const u8 *data, size_t length) |
| 640 | { |
| 641 | unsigned char *buffer; |
| 642 | int may_continue, rc = 0; |
| 643 | u32 done, prev_block_size; |
| 644 | |
| 645 | buffer = kmalloc(1024, GFP_KERNEL); |
| 646 | if (buffer == NULL) |
| 647 | return -ENOMEM; |
| 648 | |
| 649 | done = 0; |
| 650 | prev_block_size = 0; |
| 651 | may_continue = 1000; |
| 652 | while (may_continue > 0) { |
| 653 | u32 block_size; |
| 654 | |
| 655 | block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH); |
| 656 | if (block_size & 1) { |
| 657 | block_size &= ~1; |
| 658 | may_continue--; |
| 659 | } else { |
| 660 | done += prev_block_size; |
| 661 | length -= prev_block_size; |
| 662 | } |
| 663 | |
| 664 | if (block_size > 1024 || block_size > length) { |
| 665 | rc = -EOVERFLOW; |
| 666 | break; |
| 667 | } |
| 668 | |
| 669 | if (length == 0) { |
| 670 | rc = 0; |
| 671 | break; |
| 672 | } |
| 673 | |
| 674 | if (block_size == 0) { |
| 675 | rc = -EPROTO; |
| 676 | may_continue--; |
| 677 | udelay(1); |
| 678 | continue; |
| 679 | } |
| 680 | |
| 681 | prev_block_size = block_size; |
| 682 | memcpy(buffer, data + done, block_size); |
| 683 | |
| 684 | rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size); |
| 685 | if (rc) |
| 686 | break; |
| 687 | } |
| 688 | |
| 689 | if (!rc && length != 0) |
| 690 | rc = -EREMOTEIO; |
| 691 | |
| 692 | kfree(buffer); |
| 693 | |
| 694 | return rc; |
| 695 | } |
| 696 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 697 | static int mwl8k_load_firmware(struct ieee80211_hw *hw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 698 | { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 699 | struct mwl8k_priv *priv = hw->priv; |
Brian Cavagnolo | d1f9e41 | 2010-11-12 17:23:53 -0800 | [diff] [blame] | 700 | const struct firmware *fw = priv->fw_ucode; |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 701 | int rc; |
| 702 | int loops; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 703 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 704 | if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) { |
Brian Cavagnolo | d1f9e41 | 2010-11-12 17:23:53 -0800 | [diff] [blame] | 705 | const struct firmware *helper = priv->fw_helper; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 706 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 707 | if (helper == NULL) { |
| 708 | printk(KERN_ERR "%s: helper image needed but none " |
| 709 | "given\n", pci_name(priv->pdev)); |
| 710 | return -EINVAL; |
| 711 | } |
| 712 | |
| 713 | rc = mwl8k_load_fw_image(priv, helper->data, helper->size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 714 | if (rc) { |
| 715 | printk(KERN_ERR "%s: unable to load firmware " |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 716 | "helper image\n", pci_name(priv->pdev)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 717 | return rc; |
| 718 | } |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 719 | msleep(20); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 720 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 721 | rc = mwl8k_feed_fw_image(priv, fw->data, fw->size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 722 | } else { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 723 | rc = mwl8k_load_fw_image(priv, fw->data, fw->size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | if (rc) { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 727 | printk(KERN_ERR "%s: unable to load firmware image\n", |
| 728 | pci_name(priv->pdev)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 729 | return rc; |
| 730 | } |
| 731 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 732 | iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 733 | |
Lennert Buytenhek | 89b872e | 2009-11-30 18:13:20 +0100 | [diff] [blame] | 734 | loops = 500000; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 735 | do { |
Lennert Buytenhek | eae74e6 | 2009-10-22 20:20:53 +0200 | [diff] [blame] | 736 | u32 ready_code; |
| 737 | |
| 738 | ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE); |
| 739 | if (ready_code == MWL8K_FWAP_READY) { |
| 740 | priv->ap_fw = 1; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 741 | break; |
Lennert Buytenhek | eae74e6 | 2009-10-22 20:20:53 +0200 | [diff] [blame] | 742 | } else if (ready_code == MWL8K_FWSTA_READY) { |
| 743 | priv->ap_fw = 0; |
| 744 | break; |
| 745 | } |
| 746 | |
| 747 | cond_resched(); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 748 | udelay(1); |
| 749 | } while (--loops); |
| 750 | |
| 751 | return loops ? 0 : -ETIMEDOUT; |
| 752 | } |
| 753 | |
| 754 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 755 | /* DMA header used by firmware and hardware. */ |
| 756 | struct mwl8k_dma_data { |
| 757 | __le16 fwlen; |
| 758 | struct ieee80211_hdr wh; |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 759 | char data[0]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 760 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 761 | |
| 762 | /* Routines to add/remove DMA header from skb. */ |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 763 | static inline void mwl8k_remove_dma_header(struct sk_buff *skb, __le16 qos) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 764 | { |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 765 | struct mwl8k_dma_data *tr; |
| 766 | int hdrlen; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 767 | |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 768 | tr = (struct mwl8k_dma_data *)skb->data; |
| 769 | hdrlen = ieee80211_hdrlen(tr->wh.frame_control); |
| 770 | |
| 771 | if (hdrlen != sizeof(tr->wh)) { |
| 772 | if (ieee80211_is_data_qos(tr->wh.frame_control)) { |
| 773 | memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2); |
| 774 | *((__le16 *)(tr->data - 2)) = qos; |
| 775 | } else { |
| 776 | memmove(tr->data - hdrlen, &tr->wh, hdrlen); |
| 777 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 778 | } |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 779 | |
| 780 | if (hdrlen != sizeof(*tr)) |
| 781 | skb_pull(skb, sizeof(*tr) - hdrlen); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 782 | } |
| 783 | |
Nishant Sarmukadam | 252486a | 2010-12-30 11:23:31 -0800 | [diff] [blame] | 784 | static void |
| 785 | mwl8k_add_dma_header(struct sk_buff *skb, int tail_pad) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 786 | { |
| 787 | struct ieee80211_hdr *wh; |
Lennert Buytenhek | ca00930 | 2009-11-30 18:12:20 +0100 | [diff] [blame] | 788 | int hdrlen; |
Nishant Sarmukadam | 252486a | 2010-12-30 11:23:31 -0800 | [diff] [blame] | 789 | int reqd_hdrlen; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 790 | struct mwl8k_dma_data *tr; |
| 791 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 792 | /* |
Lennert Buytenhek | ca00930 | 2009-11-30 18:12:20 +0100 | [diff] [blame] | 793 | * Add a firmware DMA header; the firmware requires that we |
| 794 | * present a 2-byte payload length followed by a 4-address |
| 795 | * header (without QoS field), followed (optionally) by any |
| 796 | * WEP/ExtIV header (but only filled in for CCMP). |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 797 | */ |
Lennert Buytenhek | ca00930 | 2009-11-30 18:12:20 +0100 | [diff] [blame] | 798 | wh = (struct ieee80211_hdr *)skb->data; |
| 799 | |
| 800 | hdrlen = ieee80211_hdrlen(wh->frame_control); |
Nishant Sarmukadam | 252486a | 2010-12-30 11:23:31 -0800 | [diff] [blame] | 801 | reqd_hdrlen = sizeof(*tr); |
| 802 | |
| 803 | if (hdrlen != reqd_hdrlen) |
| 804 | skb_push(skb, reqd_hdrlen - hdrlen); |
Lennert Buytenhek | ca00930 | 2009-11-30 18:12:20 +0100 | [diff] [blame] | 805 | |
| 806 | if (ieee80211_is_data_qos(wh->frame_control)) |
Nishant Sarmukadam | 252486a | 2010-12-30 11:23:31 -0800 | [diff] [blame] | 807 | hdrlen -= IEEE80211_QOS_CTL_LEN; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 808 | |
| 809 | tr = (struct mwl8k_dma_data *)skb->data; |
| 810 | if (wh != &tr->wh) |
| 811 | memmove(&tr->wh, wh, hdrlen); |
Lennert Buytenhek | ca00930 | 2009-11-30 18:12:20 +0100 | [diff] [blame] | 812 | if (hdrlen != sizeof(tr->wh)) |
| 813 | memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 814 | |
| 815 | /* |
| 816 | * Firmware length is the length of the fully formed "802.11 |
| 817 | * payload". That is, everything except for the 802.11 header. |
| 818 | * This includes all crypto material including the MIC. |
| 819 | */ |
Nishant Sarmukadam | 252486a | 2010-12-30 11:23:31 -0800 | [diff] [blame] | 820 | tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr) + tail_pad); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 821 | } |
| 822 | |
Nishant Sarmukadam | e53d9b9 | 2010-12-30 11:23:32 -0800 | [diff] [blame] | 823 | static void mwl8k_encapsulate_tx_frame(struct sk_buff *skb) |
| 824 | { |
| 825 | struct ieee80211_hdr *wh; |
| 826 | struct ieee80211_tx_info *tx_info; |
| 827 | struct ieee80211_key_conf *key_conf; |
| 828 | int data_pad; |
| 829 | |
| 830 | wh = (struct ieee80211_hdr *)skb->data; |
| 831 | |
| 832 | tx_info = IEEE80211_SKB_CB(skb); |
| 833 | |
| 834 | key_conf = NULL; |
| 835 | if (ieee80211_is_data(wh->frame_control)) |
| 836 | key_conf = tx_info->control.hw_key; |
| 837 | |
| 838 | /* |
| 839 | * Make sure the packet header is in the DMA header format (4-address |
| 840 | * without QoS), the necessary crypto padding between the header and the |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 841 | * payload has already been provided by mac80211, but it doesn't add |
| 842 | * tail padding when HW crypto is enabled. |
Nishant Sarmukadam | e53d9b9 | 2010-12-30 11:23:32 -0800 | [diff] [blame] | 843 | * |
| 844 | * We have the following trailer padding requirements: |
| 845 | * - WEP: 4 trailer bytes (ICV) |
| 846 | * - TKIP: 12 trailer bytes (8 MIC + 4 ICV) |
| 847 | * - CCMP: 8 trailer bytes (MIC) |
| 848 | */ |
| 849 | data_pad = 0; |
| 850 | if (key_conf != NULL) { |
| 851 | switch (key_conf->cipher) { |
| 852 | case WLAN_CIPHER_SUITE_WEP40: |
| 853 | case WLAN_CIPHER_SUITE_WEP104: |
| 854 | data_pad = 4; |
| 855 | break; |
| 856 | case WLAN_CIPHER_SUITE_TKIP: |
| 857 | data_pad = 12; |
| 858 | break; |
| 859 | case WLAN_CIPHER_SUITE_CCMP: |
| 860 | data_pad = 8; |
| 861 | break; |
| 862 | } |
| 863 | } |
| 864 | mwl8k_add_dma_header(skb, data_pad); |
| 865 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 866 | |
| 867 | /* |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 868 | * Packet reception for 88w8366 AP firmware. |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 869 | */ |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 870 | struct mwl8k_rxd_8366_ap { |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 871 | __le16 pkt_len; |
| 872 | __u8 sq2; |
| 873 | __u8 rate; |
| 874 | __le32 pkt_phys_addr; |
| 875 | __le32 next_rxd_phys_addr; |
| 876 | __le16 qos_control; |
| 877 | __le16 htsig2; |
| 878 | __le32 hw_rssi_info; |
| 879 | __le32 hw_noise_floor_info; |
| 880 | __u8 noise_floor; |
| 881 | __u8 pad0[3]; |
| 882 | __u8 rssi; |
| 883 | __u8 rx_status; |
| 884 | __u8 channel; |
| 885 | __u8 rx_ctrl; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 886 | } __packed; |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 887 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 888 | #define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80 |
| 889 | #define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40 |
| 890 | #define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f) |
Lennert Buytenhek | 8e9f33f | 2009-11-30 18:12:35 +0100 | [diff] [blame] | 891 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 892 | #define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80 |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 893 | |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 894 | /* 8366 AP rx_status bits */ |
| 895 | #define MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK 0x80 |
| 896 | #define MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR 0xFF |
| 897 | #define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR 0x02 |
| 898 | #define MWL8K_8366_AP_RXSTAT_WEP_DECRYPT_ICV_ERR 0x04 |
| 899 | #define MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_ICV_ERR 0x08 |
| 900 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 901 | static void mwl8k_rxd_8366_ap_init(void *_rxd, dma_addr_t next_dma_addr) |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 902 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 903 | struct mwl8k_rxd_8366_ap *rxd = _rxd; |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 904 | |
| 905 | rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr); |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 906 | rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST; |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 907 | } |
| 908 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 909 | static void mwl8k_rxd_8366_ap_refill(void *_rxd, dma_addr_t addr, int len) |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 910 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 911 | struct mwl8k_rxd_8366_ap *rxd = _rxd; |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 912 | |
| 913 | rxd->pkt_len = cpu_to_le16(len); |
| 914 | rxd->pkt_phys_addr = cpu_to_le32(addr); |
| 915 | wmb(); |
| 916 | rxd->rx_ctrl = 0; |
| 917 | } |
| 918 | |
| 919 | static int |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 920 | mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status, |
John W. Linville | 0d462bb | 2010-07-28 14:04:24 -0400 | [diff] [blame] | 921 | __le16 *qos, s8 *noise) |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 922 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 923 | struct mwl8k_rxd_8366_ap *rxd = _rxd; |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 924 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 925 | if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST)) |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 926 | return -1; |
| 927 | rmb(); |
| 928 | |
| 929 | memset(status, 0, sizeof(*status)); |
| 930 | |
| 931 | status->signal = -rxd->rssi; |
John W. Linville | 0d462bb | 2010-07-28 14:04:24 -0400 | [diff] [blame] | 932 | *noise = -rxd->noise_floor; |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 933 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 934 | if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) { |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 935 | status->flag |= RX_FLAG_HT; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 936 | if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ) |
Lennert Buytenhek | 8e9f33f | 2009-11-30 18:12:35 +0100 | [diff] [blame] | 937 | status->flag |= RX_FLAG_40MHZ; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 938 | status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate); |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 939 | } else { |
| 940 | int i; |
| 941 | |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 942 | for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) { |
| 943 | if (mwl8k_rates_24[i].hw_value == rxd->rate) { |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 944 | status->rate_idx = i; |
| 945 | break; |
| 946 | } |
| 947 | } |
| 948 | } |
| 949 | |
Lennert Buytenhek | 8547834 | 2010-01-12 13:48:56 +0100 | [diff] [blame] | 950 | if (rxd->channel > 14) { |
| 951 | status->band = IEEE80211_BAND_5GHZ; |
| 952 | if (!(status->flag & RX_FLAG_HT)) |
| 953 | status->rate_idx -= 5; |
| 954 | } else { |
| 955 | status->band = IEEE80211_BAND_2GHZ; |
| 956 | } |
Bruno Randolf | 59eb21a | 2011-01-17 13:37:28 +0900 | [diff] [blame] | 957 | status->freq = ieee80211_channel_to_frequency(rxd->channel, |
| 958 | status->band); |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 959 | |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 960 | *qos = rxd->qos_control; |
| 961 | |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 962 | if ((rxd->rx_status != MWL8K_8366_AP_RXSTAT_GENERAL_DECRYPT_ERR) && |
| 963 | (rxd->rx_status & MWL8K_8366_AP_RXSTAT_DECRYPT_ERR_MASK) && |
| 964 | (rxd->rx_status & MWL8K_8366_AP_RXSTAT_TKIP_DECRYPT_MIC_ERR)) |
| 965 | status->flag |= RX_FLAG_MMIC_ERROR; |
| 966 | |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 967 | return le16_to_cpu(rxd->pkt_len); |
| 968 | } |
| 969 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 970 | static struct rxd_ops rxd_8366_ap_ops = { |
| 971 | .rxd_size = sizeof(struct mwl8k_rxd_8366_ap), |
| 972 | .rxd_init = mwl8k_rxd_8366_ap_init, |
| 973 | .rxd_refill = mwl8k_rxd_8366_ap_refill, |
| 974 | .rxd_process = mwl8k_rxd_8366_ap_process, |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 975 | }; |
| 976 | |
| 977 | /* |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 978 | * Packet reception for STA firmware. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 979 | */ |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 980 | struct mwl8k_rxd_sta { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 981 | __le16 pkt_len; |
| 982 | __u8 link_quality; |
| 983 | __u8 noise_level; |
| 984 | __le32 pkt_phys_addr; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 985 | __le32 next_rxd_phys_addr; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 986 | __le16 qos_control; |
| 987 | __le16 rate_info; |
| 988 | __le32 pad0[4]; |
| 989 | __u8 rssi; |
| 990 | __u8 channel; |
| 991 | __le16 pad1; |
| 992 | __u8 rx_ctrl; |
| 993 | __u8 rx_status; |
| 994 | __u8 pad2[2]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 995 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 996 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 997 | #define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000 |
| 998 | #define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3) |
| 999 | #define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f) |
| 1000 | #define MWL8K_STA_RATE_INFO_40MHZ 0x0004 |
| 1001 | #define MWL8K_STA_RATE_INFO_SHORTGI 0x0002 |
| 1002 | #define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001 |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1003 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1004 | #define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02 |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 1005 | #define MWL8K_STA_RX_CTRL_DECRYPT_ERROR 0x04 |
| 1006 | /* ICV=0 or MIC=1 */ |
| 1007 | #define MWL8K_STA_RX_CTRL_DEC_ERR_TYPE 0x08 |
| 1008 | /* Key is uploaded only in failure case */ |
| 1009 | #define MWL8K_STA_RX_CTRL_KEY_INDEX 0x30 |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1010 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1011 | static void mwl8k_rxd_sta_init(void *_rxd, dma_addr_t next_dma_addr) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1012 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1013 | struct mwl8k_rxd_sta *rxd = _rxd; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1014 | |
| 1015 | rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr); |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1016 | rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1017 | } |
| 1018 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1019 | static void mwl8k_rxd_sta_refill(void *_rxd, dma_addr_t addr, int len) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1020 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1021 | struct mwl8k_rxd_sta *rxd = _rxd; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1022 | |
| 1023 | rxd->pkt_len = cpu_to_le16(len); |
| 1024 | rxd->pkt_phys_addr = cpu_to_le32(addr); |
| 1025 | wmb(); |
| 1026 | rxd->rx_ctrl = 0; |
| 1027 | } |
| 1028 | |
| 1029 | static int |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1030 | mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status, |
John W. Linville | 0d462bb | 2010-07-28 14:04:24 -0400 | [diff] [blame] | 1031 | __le16 *qos, s8 *noise) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1032 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1033 | struct mwl8k_rxd_sta *rxd = _rxd; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1034 | u16 rate_info; |
| 1035 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1036 | if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST)) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1037 | return -1; |
| 1038 | rmb(); |
| 1039 | |
| 1040 | rate_info = le16_to_cpu(rxd->rate_info); |
| 1041 | |
| 1042 | memset(status, 0, sizeof(*status)); |
| 1043 | |
| 1044 | status->signal = -rxd->rssi; |
John W. Linville | 0d462bb | 2010-07-28 14:04:24 -0400 | [diff] [blame] | 1045 | *noise = -rxd->noise_level; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1046 | status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info); |
| 1047 | status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info); |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1048 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1049 | if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1050 | status->flag |= RX_FLAG_SHORTPRE; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1051 | if (rate_info & MWL8K_STA_RATE_INFO_40MHZ) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1052 | status->flag |= RX_FLAG_40MHZ; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1053 | if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1054 | status->flag |= RX_FLAG_SHORT_GI; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1055 | if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1056 | status->flag |= RX_FLAG_HT; |
| 1057 | |
Lennert Buytenhek | 8547834 | 2010-01-12 13:48:56 +0100 | [diff] [blame] | 1058 | if (rxd->channel > 14) { |
| 1059 | status->band = IEEE80211_BAND_5GHZ; |
| 1060 | if (!(status->flag & RX_FLAG_HT)) |
| 1061 | status->rate_idx -= 5; |
| 1062 | } else { |
| 1063 | status->band = IEEE80211_BAND_2GHZ; |
| 1064 | } |
Bruno Randolf | 59eb21a | 2011-01-17 13:37:28 +0900 | [diff] [blame] | 1065 | status->freq = ieee80211_channel_to_frequency(rxd->channel, |
| 1066 | status->band); |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1067 | |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 1068 | *qos = rxd->qos_control; |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 1069 | if ((rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DECRYPT_ERROR) && |
| 1070 | (rxd->rx_ctrl & MWL8K_STA_RX_CTRL_DEC_ERR_TYPE)) |
| 1071 | status->flag |= RX_FLAG_MMIC_ERROR; |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 1072 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1073 | return le16_to_cpu(rxd->pkt_len); |
| 1074 | } |
| 1075 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 1076 | static struct rxd_ops rxd_sta_ops = { |
| 1077 | .rxd_size = sizeof(struct mwl8k_rxd_sta), |
| 1078 | .rxd_init = mwl8k_rxd_sta_init, |
| 1079 | .rxd_refill = mwl8k_rxd_sta_refill, |
| 1080 | .rxd_process = mwl8k_rxd_sta_process, |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1081 | }; |
| 1082 | |
| 1083 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1084 | #define MWL8K_RX_DESCS 256 |
| 1085 | #define MWL8K_RX_MAXSZ 3800 |
| 1086 | |
| 1087 | static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index) |
| 1088 | { |
| 1089 | struct mwl8k_priv *priv = hw->priv; |
| 1090 | struct mwl8k_rx_queue *rxq = priv->rxq + index; |
| 1091 | int size; |
| 1092 | int i; |
| 1093 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1094 | rxq->rxd_count = 0; |
| 1095 | rxq->head = 0; |
| 1096 | rxq->tail = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1097 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1098 | size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1099 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1100 | rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma); |
| 1101 | if (rxq->rxd == NULL) { |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1102 | wiphy_err(hw->wiphy, "failed to alloc RX descriptors\n"); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1103 | return -ENOMEM; |
| 1104 | } |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1105 | memset(rxq->rxd, 0, size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1106 | |
Shan Wei | b9ede5f | 2011-03-08 11:02:03 +0800 | [diff] [blame] | 1107 | rxq->buf = kcalloc(MWL8K_RX_DESCS, sizeof(*rxq->buf), GFP_KERNEL); |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1108 | if (rxq->buf == NULL) { |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1109 | wiphy_err(hw->wiphy, "failed to alloc RX skbuff list\n"); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1110 | pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1111 | return -ENOMEM; |
| 1112 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1113 | |
| 1114 | for (i = 0; i < MWL8K_RX_DESCS; i++) { |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1115 | int desc_size; |
| 1116 | void *rxd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1117 | int nexti; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1118 | dma_addr_t next_dma_addr; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1119 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1120 | desc_size = priv->rxd_ops->rxd_size; |
| 1121 | rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1122 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1123 | nexti = i + 1; |
| 1124 | if (nexti == MWL8K_RX_DESCS) |
| 1125 | nexti = 0; |
| 1126 | next_dma_addr = rxq->rxd_dma + (nexti * desc_size); |
| 1127 | |
| 1128 | priv->rxd_ops->rxd_init(rxd, next_dma_addr); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1129 | } |
| 1130 | |
| 1131 | return 0; |
| 1132 | } |
| 1133 | |
| 1134 | static int rxq_refill(struct ieee80211_hw *hw, int index, int limit) |
| 1135 | { |
| 1136 | struct mwl8k_priv *priv = hw->priv; |
| 1137 | struct mwl8k_rx_queue *rxq = priv->rxq + index; |
| 1138 | int refilled; |
| 1139 | |
| 1140 | refilled = 0; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1141 | while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1142 | struct sk_buff *skb; |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1143 | dma_addr_t addr; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1144 | int rx; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1145 | void *rxd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1146 | |
| 1147 | skb = dev_alloc_skb(MWL8K_RX_MAXSZ); |
| 1148 | if (skb == NULL) |
| 1149 | break; |
| 1150 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1151 | addr = pci_map_single(priv->pdev, skb->data, |
| 1152 | MWL8K_RX_MAXSZ, DMA_FROM_DEVICE); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1153 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1154 | rxq->rxd_count++; |
| 1155 | rx = rxq->tail++; |
| 1156 | if (rxq->tail == MWL8K_RX_DESCS) |
| 1157 | rxq->tail = 0; |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1158 | rxq->buf[rx].skb = skb; |
FUJITA Tomonori | 53b1b3e | 2010-04-02 13:10:38 +0900 | [diff] [blame] | 1159 | dma_unmap_addr_set(&rxq->buf[rx], dma, addr); |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1160 | |
| 1161 | rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size); |
| 1162 | priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1163 | |
| 1164 | refilled++; |
| 1165 | } |
| 1166 | |
| 1167 | return refilled; |
| 1168 | } |
| 1169 | |
| 1170 | /* Must be called only when the card's reception is completely halted */ |
| 1171 | static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index) |
| 1172 | { |
| 1173 | struct mwl8k_priv *priv = hw->priv; |
| 1174 | struct mwl8k_rx_queue *rxq = priv->rxq + index; |
| 1175 | int i; |
| 1176 | |
Brian Cavagnolo | 73b4632 | 2011-03-17 11:58:41 -0700 | [diff] [blame] | 1177 | if (rxq->rxd == NULL) |
| 1178 | return; |
| 1179 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1180 | for (i = 0; i < MWL8K_RX_DESCS; i++) { |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1181 | if (rxq->buf[i].skb != NULL) { |
| 1182 | pci_unmap_single(priv->pdev, |
FUJITA Tomonori | 53b1b3e | 2010-04-02 13:10:38 +0900 | [diff] [blame] | 1183 | dma_unmap_addr(&rxq->buf[i], dma), |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1184 | MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE); |
FUJITA Tomonori | 53b1b3e | 2010-04-02 13:10:38 +0900 | [diff] [blame] | 1185 | dma_unmap_addr_set(&rxq->buf[i], dma, 0); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1186 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1187 | kfree_skb(rxq->buf[i].skb); |
| 1188 | rxq->buf[i].skb = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1189 | } |
| 1190 | } |
| 1191 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1192 | kfree(rxq->buf); |
| 1193 | rxq->buf = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1194 | |
| 1195 | pci_free_consistent(priv->pdev, |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1196 | MWL8K_RX_DESCS * priv->rxd_ops->rxd_size, |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1197 | rxq->rxd, rxq->rxd_dma); |
| 1198 | rxq->rxd = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1199 | } |
| 1200 | |
| 1201 | |
| 1202 | /* |
| 1203 | * Scan a list of BSSIDs to process for finalize join. |
| 1204 | * Allows for extension to process multiple BSSIDs. |
| 1205 | */ |
| 1206 | static inline int |
| 1207 | mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh) |
| 1208 | { |
| 1209 | return priv->capture_beacon && |
| 1210 | ieee80211_is_beacon(wh->frame_control) && |
| 1211 | !compare_ether_addr(wh->addr3, priv->capture_bssid); |
| 1212 | } |
| 1213 | |
Lennert Buytenhek | 3779752 | 2009-10-22 20:19:45 +0200 | [diff] [blame] | 1214 | static inline void mwl8k_save_beacon(struct ieee80211_hw *hw, |
| 1215 | struct sk_buff *skb) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1216 | { |
Lennert Buytenhek | 3779752 | 2009-10-22 20:19:45 +0200 | [diff] [blame] | 1217 | struct mwl8k_priv *priv = hw->priv; |
| 1218 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1219 | priv->capture_beacon = false; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 1220 | memset(priv->capture_bssid, 0, ETH_ALEN); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1221 | |
| 1222 | /* |
| 1223 | * Use GFP_ATOMIC as rxq_process is called from |
| 1224 | * the primary interrupt handler, memory allocation call |
| 1225 | * must not sleep. |
| 1226 | */ |
| 1227 | priv->beacon_skb = skb_copy(skb, GFP_ATOMIC); |
| 1228 | if (priv->beacon_skb != NULL) |
Lennert Buytenhek | 3779752 | 2009-10-22 20:19:45 +0200 | [diff] [blame] | 1229 | ieee80211_queue_work(hw, &priv->finalize_join_worker); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1230 | } |
| 1231 | |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 1232 | static inline struct mwl8k_vif *mwl8k_find_vif_bss(struct list_head *vif_list, |
| 1233 | u8 *bssid) |
| 1234 | { |
| 1235 | struct mwl8k_vif *mwl8k_vif; |
| 1236 | |
| 1237 | list_for_each_entry(mwl8k_vif, |
| 1238 | vif_list, list) { |
| 1239 | if (memcmp(bssid, mwl8k_vif->bssid, |
| 1240 | ETH_ALEN) == 0) |
| 1241 | return mwl8k_vif; |
| 1242 | } |
| 1243 | |
| 1244 | return NULL; |
| 1245 | } |
| 1246 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1247 | static int rxq_process(struct ieee80211_hw *hw, int index, int limit) |
| 1248 | { |
| 1249 | struct mwl8k_priv *priv = hw->priv; |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 1250 | struct mwl8k_vif *mwl8k_vif = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1251 | struct mwl8k_rx_queue *rxq = priv->rxq + index; |
| 1252 | int processed; |
| 1253 | |
| 1254 | processed = 0; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1255 | while (rxq->rxd_count && limit--) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1256 | struct sk_buff *skb; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1257 | void *rxd; |
| 1258 | int pkt_len; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1259 | struct ieee80211_rx_status status; |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 1260 | struct ieee80211_hdr *wh; |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 1261 | __le16 qos; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1262 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1263 | skb = rxq->buf[rxq->head].skb; |
Lennert Buytenhek | d25f9f1 | 2009-08-03 21:58:26 +0200 | [diff] [blame] | 1264 | if (skb == NULL) |
| 1265 | break; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1266 | |
| 1267 | rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size); |
| 1268 | |
John W. Linville | 0d462bb | 2010-07-28 14:04:24 -0400 | [diff] [blame] | 1269 | pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos, |
| 1270 | &priv->noise); |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1271 | if (pkt_len < 0) |
| 1272 | break; |
| 1273 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1274 | rxq->buf[rxq->head].skb = NULL; |
| 1275 | |
| 1276 | pci_unmap_single(priv->pdev, |
FUJITA Tomonori | 53b1b3e | 2010-04-02 13:10:38 +0900 | [diff] [blame] | 1277 | dma_unmap_addr(&rxq->buf[rxq->head], dma), |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1278 | MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE); |
FUJITA Tomonori | 53b1b3e | 2010-04-02 13:10:38 +0900 | [diff] [blame] | 1279 | dma_unmap_addr_set(&rxq->buf[rxq->head], dma, 0); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1280 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1281 | rxq->head++; |
| 1282 | if (rxq->head == MWL8K_RX_DESCS) |
| 1283 | rxq->head = 0; |
| 1284 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1285 | rxq->rxd_count--; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1286 | |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 1287 | wh = &((struct mwl8k_dma_data *)skb->data)->wh; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1288 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1289 | /* |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 1290 | * Check for a pending join operation. Save a |
| 1291 | * copy of the beacon and schedule a tasklet to |
| 1292 | * send a FINALIZE_JOIN command to the firmware. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1293 | */ |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1294 | if (mwl8k_capture_bssid(priv, (void *)skb->data)) |
Lennert Buytenhek | 3779752 | 2009-10-22 20:19:45 +0200 | [diff] [blame] | 1295 | mwl8k_save_beacon(hw, skb); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1296 | |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 1297 | if (ieee80211_has_protected(wh->frame_control)) { |
| 1298 | |
| 1299 | /* Check if hw crypto has been enabled for |
| 1300 | * this bss. If yes, set the status flags |
| 1301 | * accordingly |
| 1302 | */ |
| 1303 | mwl8k_vif = mwl8k_find_vif_bss(&priv->vif_list, |
| 1304 | wh->addr1); |
| 1305 | |
| 1306 | if (mwl8k_vif != NULL && |
| 1307 | mwl8k_vif->is_hw_crypto_enabled == true) { |
| 1308 | /* |
| 1309 | * When MMIC ERROR is encountered |
| 1310 | * by the firmware, payload is |
| 1311 | * dropped and only 32 bytes of |
| 1312 | * mwl8k Firmware header is sent |
| 1313 | * to the host. |
| 1314 | * |
| 1315 | * We need to add four bytes of |
| 1316 | * key information. In it |
| 1317 | * MAC80211 expects keyidx set to |
| 1318 | * 0 for triggering Counter |
| 1319 | * Measure of MMIC failure. |
| 1320 | */ |
| 1321 | if (status.flag & RX_FLAG_MMIC_ERROR) { |
| 1322 | struct mwl8k_dma_data *tr; |
| 1323 | tr = (struct mwl8k_dma_data *)skb->data; |
| 1324 | memset((void *)&(tr->data), 0, 4); |
| 1325 | pkt_len += 4; |
| 1326 | } |
| 1327 | |
| 1328 | if (!ieee80211_is_auth(wh->frame_control)) |
| 1329 | status.flag |= RX_FLAG_IV_STRIPPED | |
| 1330 | RX_FLAG_DECRYPTED | |
| 1331 | RX_FLAG_MMIC_STRIPPED; |
| 1332 | } |
| 1333 | } |
| 1334 | |
| 1335 | skb_put(skb, pkt_len); |
| 1336 | mwl8k_remove_dma_header(skb, qos); |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 1337 | memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status)); |
| 1338 | ieee80211_rx_irqsafe(hw, skb); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1339 | |
| 1340 | processed++; |
| 1341 | } |
| 1342 | |
| 1343 | return processed; |
| 1344 | } |
| 1345 | |
| 1346 | |
| 1347 | /* |
| 1348 | * Packet transmission. |
| 1349 | */ |
| 1350 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1351 | #define MWL8K_TXD_STATUS_OK 0x00000001 |
| 1352 | #define MWL8K_TXD_STATUS_OK_RETRY 0x00000002 |
| 1353 | #define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004 |
| 1354 | #define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1355 | #define MWL8K_TXD_STATUS_FW_OWNED 0x80000000 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1356 | |
Lennert Buytenhek | e0493a8 | 2009-11-30 18:32:00 +0100 | [diff] [blame] | 1357 | #define MWL8K_QOS_QLEN_UNSPEC 0xff00 |
| 1358 | #define MWL8K_QOS_ACK_POLICY_MASK 0x0060 |
| 1359 | #define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000 |
| 1360 | #define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060 |
| 1361 | #define MWL8K_QOS_EOSP 0x0010 |
| 1362 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1363 | struct mwl8k_tx_desc { |
| 1364 | __le32 status; |
| 1365 | __u8 data_rate; |
| 1366 | __u8 tx_priority; |
| 1367 | __le16 qos_control; |
| 1368 | __le32 pkt_phys_addr; |
| 1369 | __le16 pkt_len; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 1370 | __u8 dest_MAC_addr[ETH_ALEN]; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1371 | __le32 next_txd_phys_addr; |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 1372 | __le32 timestamp; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1373 | __le16 rate_info; |
| 1374 | __u8 peer_id; |
Brian Cavagnolo | a1fe24b | 2010-11-12 17:23:47 -0800 | [diff] [blame] | 1375 | __u8 tx_frag_cnt; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 1376 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1377 | |
| 1378 | #define MWL8K_TX_DESCS 128 |
| 1379 | |
| 1380 | static int mwl8k_txq_init(struct ieee80211_hw *hw, int index) |
| 1381 | { |
| 1382 | struct mwl8k_priv *priv = hw->priv; |
| 1383 | struct mwl8k_tx_queue *txq = priv->txq + index; |
| 1384 | int size; |
| 1385 | int i; |
| 1386 | |
Kalle Valo | 8ccbc3b | 2010-02-07 10:20:52 +0200 | [diff] [blame] | 1387 | txq->len = 0; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1388 | txq->head = 0; |
| 1389 | txq->tail = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1390 | |
| 1391 | size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc); |
| 1392 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1393 | txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma); |
| 1394 | if (txq->txd == NULL) { |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1395 | wiphy_err(hw->wiphy, "failed to alloc TX descriptors\n"); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1396 | return -ENOMEM; |
| 1397 | } |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1398 | memset(txq->txd, 0, size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1399 | |
Shan Wei | b9ede5f | 2011-03-08 11:02:03 +0800 | [diff] [blame] | 1400 | txq->skb = kcalloc(MWL8K_TX_DESCS, sizeof(*txq->skb), GFP_KERNEL); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1401 | if (txq->skb == NULL) { |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1402 | wiphy_err(hw->wiphy, "failed to alloc TX skbuff list\n"); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1403 | pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1404 | return -ENOMEM; |
| 1405 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1406 | |
| 1407 | for (i = 0; i < MWL8K_TX_DESCS; i++) { |
| 1408 | struct mwl8k_tx_desc *tx_desc; |
| 1409 | int nexti; |
| 1410 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1411 | tx_desc = txq->txd + i; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1412 | nexti = (i + 1) % MWL8K_TX_DESCS; |
| 1413 | |
| 1414 | tx_desc->status = 0; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1415 | tx_desc->next_txd_phys_addr = |
| 1416 | cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1417 | } |
| 1418 | |
| 1419 | return 0; |
| 1420 | } |
| 1421 | |
| 1422 | static inline void mwl8k_tx_start(struct mwl8k_priv *priv) |
| 1423 | { |
| 1424 | iowrite32(MWL8K_H2A_INT_PPA_READY, |
| 1425 | priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 1426 | iowrite32(MWL8K_H2A_INT_DUMMY, |
| 1427 | priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 1428 | ioread32(priv->regs + MWL8K_HIU_INT_CODE); |
| 1429 | } |
| 1430 | |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1431 | static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1432 | { |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1433 | struct mwl8k_priv *priv = hw->priv; |
| 1434 | int i; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1435 | |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 1436 | for (i = 0; i < mwl8k_tx_queues(priv); i++) { |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1437 | struct mwl8k_tx_queue *txq = priv->txq + i; |
| 1438 | int fw_owned = 0; |
| 1439 | int drv_owned = 0; |
| 1440 | int unused = 0; |
| 1441 | int desc; |
Lennert Buytenhek | c3f967d | 2009-08-18 04:15:22 +0200 | [diff] [blame] | 1442 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1443 | for (desc = 0; desc < MWL8K_TX_DESCS; desc++) { |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1444 | struct mwl8k_tx_desc *tx_desc = txq->txd + desc; |
| 1445 | u32 status; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1446 | |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1447 | status = le32_to_cpu(tx_desc->status); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1448 | if (status & MWL8K_TXD_STATUS_FW_OWNED) |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1449 | fw_owned++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1450 | else |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1451 | drv_owned++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1452 | |
| 1453 | if (tx_desc->pkt_len == 0) |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1454 | unused++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1455 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1456 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1457 | wiphy_err(hw->wiphy, |
| 1458 | "txq[%d] len=%d head=%d tail=%d " |
| 1459 | "fw_owned=%d drv_owned=%d unused=%d\n", |
| 1460 | i, |
| 1461 | txq->len, txq->head, txq->tail, |
| 1462 | fw_owned, drv_owned, unused); |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1463 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1464 | } |
| 1465 | |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 1466 | /* |
Lennert Buytenhek | 88de754a | 2009-10-22 20:19:37 +0200 | [diff] [blame] | 1467 | * Must be called with priv->fw_mutex held and tx queues stopped. |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 1468 | */ |
Lennert Buytenhek | 62abd3c | 2010-01-08 18:28:34 +0100 | [diff] [blame] | 1469 | #define MWL8K_TX_WAIT_TIMEOUT_MS 5000 |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1470 | |
Lennert Buytenhek | 950d5b0 | 2009-07-17 01:48:41 +0200 | [diff] [blame] | 1471 | static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1472 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1473 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | 88de754a | 2009-10-22 20:19:37 +0200 | [diff] [blame] | 1474 | DECLARE_COMPLETION_ONSTACK(tx_wait); |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1475 | int retry; |
| 1476 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1477 | |
| 1478 | might_sleep(); |
| 1479 | |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1480 | /* |
| 1481 | * The TX queues are stopped at this point, so this test |
| 1482 | * doesn't need to take ->tx_lock. |
| 1483 | */ |
| 1484 | if (!priv->pending_tx_pkts) |
| 1485 | return 0; |
| 1486 | |
| 1487 | retry = 0; |
| 1488 | rc = 0; |
| 1489 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1490 | spin_lock_bh(&priv->tx_lock); |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1491 | priv->tx_wait = &tx_wait; |
| 1492 | while (!rc) { |
| 1493 | int oldcount; |
| 1494 | unsigned long timeout; |
| 1495 | |
| 1496 | oldcount = priv->pending_tx_pkts; |
| 1497 | |
| 1498 | spin_unlock_bh(&priv->tx_lock); |
| 1499 | timeout = wait_for_completion_timeout(&tx_wait, |
| 1500 | msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS)); |
| 1501 | spin_lock_bh(&priv->tx_lock); |
| 1502 | |
| 1503 | if (timeout) { |
| 1504 | WARN_ON(priv->pending_tx_pkts); |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 1505 | if (retry) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1506 | wiphy_notice(hw->wiphy, "tx rings drained\n"); |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1507 | break; |
| 1508 | } |
| 1509 | |
| 1510 | if (priv->pending_tx_pkts < oldcount) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1511 | wiphy_notice(hw->wiphy, |
| 1512 | "waiting for tx rings to drain (%d -> %d pkts)\n", |
| 1513 | oldcount, priv->pending_tx_pkts); |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1514 | retry = 1; |
| 1515 | continue; |
| 1516 | } |
| 1517 | |
| 1518 | priv->tx_wait = NULL; |
| 1519 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1520 | wiphy_err(hw->wiphy, "tx rings stuck for %d ms\n", |
| 1521 | MWL8K_TX_WAIT_TIMEOUT_MS); |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1522 | mwl8k_dump_tx_rings(hw); |
| 1523 | |
| 1524 | rc = -ETIMEDOUT; |
| 1525 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1526 | spin_unlock_bh(&priv->tx_lock); |
| 1527 | |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1528 | return rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1529 | } |
| 1530 | |
Lennert Buytenhek | c23b5a6 | 2009-07-16 13:49:55 +0200 | [diff] [blame] | 1531 | #define MWL8K_TXD_SUCCESS(status) \ |
| 1532 | ((status) & (MWL8K_TXD_STATUS_OK | \ |
| 1533 | MWL8K_TXD_STATUS_OK_RETRY | \ |
| 1534 | MWL8K_TXD_STATUS_OK_MORE_RETRY)) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1535 | |
Nishant Sarmukadam | a0e7c6c | 2011-03-17 11:58:49 -0700 | [diff] [blame] | 1536 | static int mwl8k_tid_queue_mapping(u8 tid) |
| 1537 | { |
| 1538 | BUG_ON(tid > 7); |
| 1539 | |
| 1540 | switch (tid) { |
| 1541 | case 0: |
| 1542 | case 3: |
| 1543 | return IEEE80211_AC_BE; |
| 1544 | break; |
| 1545 | case 1: |
| 1546 | case 2: |
| 1547 | return IEEE80211_AC_BK; |
| 1548 | break; |
| 1549 | case 4: |
| 1550 | case 5: |
| 1551 | return IEEE80211_AC_VI; |
| 1552 | break; |
| 1553 | case 6: |
| 1554 | case 7: |
| 1555 | return IEEE80211_AC_VO; |
| 1556 | break; |
| 1557 | default: |
| 1558 | return -1; |
| 1559 | break; |
| 1560 | } |
| 1561 | } |
| 1562 | |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 1563 | /* The firmware will fill in the rate information |
| 1564 | * for each packet that gets queued in the hardware |
John W. Linville | 49adc5c | 2011-04-27 15:04:28 -0400 | [diff] [blame^] | 1565 | * and these macros will interpret that info. |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 1566 | */ |
| 1567 | |
John W. Linville | 49adc5c | 2011-04-27 15:04:28 -0400 | [diff] [blame^] | 1568 | #define RI_FORMAT(a) (a & 0x0001) |
| 1569 | #define RI_RATE_ID_MCS(a) ((a & 0x01f8) >> 3) |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 1570 | |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1571 | static int |
| 1572 | mwl8k_txq_reclaim(struct ieee80211_hw *hw, int index, int limit, int force) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1573 | { |
| 1574 | struct mwl8k_priv *priv = hw->priv; |
| 1575 | struct mwl8k_tx_queue *txq = priv->txq + index; |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1576 | int processed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1577 | |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1578 | processed = 0; |
Kalle Valo | 8ccbc3b | 2010-02-07 10:20:52 +0200 | [diff] [blame] | 1579 | while (txq->len > 0 && limit--) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1580 | int tx; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1581 | struct mwl8k_tx_desc *tx_desc; |
| 1582 | unsigned long addr; |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1583 | int size; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1584 | struct sk_buff *skb; |
| 1585 | struct ieee80211_tx_info *info; |
| 1586 | u32 status; |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 1587 | struct ieee80211_sta *sta; |
| 1588 | struct mwl8k_sta *sta_info = NULL; |
| 1589 | u16 rate_info; |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 1590 | struct ieee80211_hdr *wh; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1591 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1592 | tx = txq->head; |
| 1593 | tx_desc = txq->txd + tx; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1594 | |
| 1595 | status = le32_to_cpu(tx_desc->status); |
| 1596 | |
| 1597 | if (status & MWL8K_TXD_STATUS_FW_OWNED) { |
| 1598 | if (!force) |
| 1599 | break; |
| 1600 | tx_desc->status &= |
| 1601 | ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED); |
| 1602 | } |
| 1603 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1604 | txq->head = (tx + 1) % MWL8K_TX_DESCS; |
Kalle Valo | 8ccbc3b | 2010-02-07 10:20:52 +0200 | [diff] [blame] | 1605 | BUG_ON(txq->len == 0); |
| 1606 | txq->len--; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1607 | priv->pending_tx_pkts--; |
| 1608 | |
| 1609 | addr = le32_to_cpu(tx_desc->pkt_phys_addr); |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1610 | size = le16_to_cpu(tx_desc->pkt_len); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1611 | skb = txq->skb[tx]; |
| 1612 | txq->skb[tx] = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1613 | |
| 1614 | BUG_ON(skb == NULL); |
| 1615 | pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE); |
| 1616 | |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 1617 | mwl8k_remove_dma_header(skb, tx_desc->qos_control); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1618 | |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 1619 | wh = (struct ieee80211_hdr *) skb->data; |
| 1620 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1621 | /* Mark descriptor as unused */ |
| 1622 | tx_desc->pkt_phys_addr = 0; |
| 1623 | tx_desc->pkt_len = 0; |
| 1624 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1625 | info = IEEE80211_SKB_CB(skb); |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 1626 | if (ieee80211_is_data(wh->frame_control)) { |
| 1627 | sta = info->control.sta; |
| 1628 | if (sta) { |
| 1629 | sta_info = MWL8K_STA(sta); |
| 1630 | BUG_ON(sta_info == NULL); |
| 1631 | rate_info = le16_to_cpu(tx_desc->rate_info); |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 1632 | /* If rate is < 6.5 Mpbs for an ht station |
| 1633 | * do not form an ampdu. If the station is a |
| 1634 | * legacy station (format = 0), do not form an |
| 1635 | * ampdu |
| 1636 | */ |
John W. Linville | 49adc5c | 2011-04-27 15:04:28 -0400 | [diff] [blame^] | 1637 | if (RI_RATE_ID_MCS(rate_info) < 1 || |
| 1638 | RI_FORMAT(rate_info) == 0) { |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 1639 | sta_info->is_ampdu_allowed = false; |
| 1640 | } else { |
| 1641 | sta_info->is_ampdu_allowed = true; |
| 1642 | } |
| 1643 | } |
| 1644 | } |
| 1645 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1646 | ieee80211_tx_info_clear_status(info); |
Nishant Sarmukadam | 0bf22c3 | 2011-02-17 14:45:17 -0800 | [diff] [blame] | 1647 | |
| 1648 | /* Rate control is happening in the firmware. |
| 1649 | * Ensure no tx rate is being reported. |
| 1650 | */ |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 1651 | info->status.rates[0].idx = -1; |
| 1652 | info->status.rates[0].count = 1; |
Nishant Sarmukadam | 0bf22c3 | 2011-02-17 14:45:17 -0800 | [diff] [blame] | 1653 | |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1654 | if (MWL8K_TXD_SUCCESS(status)) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1655 | info->flags |= IEEE80211_TX_STAT_ACK; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1656 | |
| 1657 | ieee80211_tx_status_irqsafe(hw, skb); |
| 1658 | |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1659 | processed++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1660 | } |
| 1661 | |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1662 | return processed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1663 | } |
| 1664 | |
| 1665 | /* must be called only when the card's transmit is completely halted */ |
| 1666 | static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index) |
| 1667 | { |
| 1668 | struct mwl8k_priv *priv = hw->priv; |
| 1669 | struct mwl8k_tx_queue *txq = priv->txq + index; |
| 1670 | |
Brian Cavagnolo | 73b4632 | 2011-03-17 11:58:41 -0700 | [diff] [blame] | 1671 | if (txq->txd == NULL) |
| 1672 | return; |
| 1673 | |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1674 | mwl8k_txq_reclaim(hw, index, INT_MAX, 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1675 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1676 | kfree(txq->skb); |
| 1677 | txq->skb = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1678 | |
| 1679 | pci_free_consistent(priv->pdev, |
| 1680 | MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc), |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1681 | txq->txd, txq->txd_dma); |
| 1682 | txq->txd = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1683 | } |
| 1684 | |
Brian Cavagnolo | ac109fd | 2011-03-17 11:58:45 -0700 | [diff] [blame] | 1685 | /* caller must hold priv->stream_lock when calling the stream functions */ |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 1686 | static struct mwl8k_ampdu_stream * |
Brian Cavagnolo | ac109fd | 2011-03-17 11:58:45 -0700 | [diff] [blame] | 1687 | mwl8k_add_stream(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u8 tid) |
| 1688 | { |
| 1689 | struct mwl8k_ampdu_stream *stream; |
| 1690 | struct mwl8k_priv *priv = hw->priv; |
| 1691 | int i; |
| 1692 | |
| 1693 | for (i = 0; i < priv->num_ampdu_queues; i++) { |
| 1694 | stream = &priv->ampdu[i]; |
| 1695 | if (stream->state == AMPDU_NO_STREAM) { |
| 1696 | stream->sta = sta; |
| 1697 | stream->state = AMPDU_STREAM_NEW; |
| 1698 | stream->tid = tid; |
| 1699 | stream->idx = i; |
| 1700 | stream->txq_idx = MWL8K_TX_WMM_QUEUES + i; |
| 1701 | wiphy_debug(hw->wiphy, "Added a new stream for %pM %d", |
| 1702 | sta->addr, tid); |
| 1703 | return stream; |
| 1704 | } |
| 1705 | } |
| 1706 | return NULL; |
| 1707 | } |
| 1708 | |
| 1709 | static int |
| 1710 | mwl8k_start_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream) |
| 1711 | { |
| 1712 | int ret; |
| 1713 | |
| 1714 | /* if the stream has already been started, don't start it again */ |
| 1715 | if (stream->state != AMPDU_STREAM_NEW) |
| 1716 | return 0; |
| 1717 | ret = ieee80211_start_tx_ba_session(stream->sta, stream->tid, 0); |
| 1718 | if (ret) |
| 1719 | wiphy_debug(hw->wiphy, "Failed to start stream for %pM %d: " |
| 1720 | "%d\n", stream->sta->addr, stream->tid, ret); |
| 1721 | else |
| 1722 | wiphy_debug(hw->wiphy, "Started stream for %pM %d\n", |
| 1723 | stream->sta->addr, stream->tid); |
| 1724 | return ret; |
| 1725 | } |
| 1726 | |
| 1727 | static void |
| 1728 | mwl8k_remove_stream(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream) |
| 1729 | { |
| 1730 | wiphy_debug(hw->wiphy, "Remove stream for %pM %d\n", stream->sta->addr, |
| 1731 | stream->tid); |
| 1732 | memset(stream, 0, sizeof(*stream)); |
| 1733 | } |
| 1734 | |
| 1735 | static struct mwl8k_ampdu_stream * |
| 1736 | mwl8k_lookup_stream(struct ieee80211_hw *hw, u8 *addr, u8 tid) |
| 1737 | { |
| 1738 | struct mwl8k_priv *priv = hw->priv; |
| 1739 | int i; |
| 1740 | |
| 1741 | for (i = 0 ; i < priv->num_ampdu_queues; i++) { |
| 1742 | struct mwl8k_ampdu_stream *stream; |
| 1743 | stream = &priv->ampdu[i]; |
| 1744 | if (stream->state == AMPDU_NO_STREAM) |
| 1745 | continue; |
| 1746 | if (!memcmp(stream->sta->addr, addr, ETH_ALEN) && |
| 1747 | stream->tid == tid) |
| 1748 | return stream; |
| 1749 | } |
| 1750 | return NULL; |
| 1751 | } |
| 1752 | |
Brian Cavagnolo | d0805c1 | 2011-04-12 11:06:28 -0700 | [diff] [blame] | 1753 | #define MWL8K_AMPDU_PACKET_THRESHOLD 64 |
| 1754 | static inline bool mwl8k_ampdu_allowed(struct ieee80211_sta *sta, u8 tid) |
| 1755 | { |
| 1756 | struct mwl8k_sta *sta_info = MWL8K_STA(sta); |
| 1757 | struct tx_traffic_info *tx_stats; |
| 1758 | |
| 1759 | BUG_ON(tid >= MWL8K_MAX_TID); |
| 1760 | tx_stats = &sta_info->tx_stats[tid]; |
| 1761 | |
| 1762 | return sta_info->is_ampdu_allowed && |
| 1763 | tx_stats->pkts > MWL8K_AMPDU_PACKET_THRESHOLD; |
| 1764 | } |
| 1765 | |
| 1766 | static inline void mwl8k_tx_count_packet(struct ieee80211_sta *sta, u8 tid) |
| 1767 | { |
| 1768 | struct mwl8k_sta *sta_info = MWL8K_STA(sta); |
| 1769 | struct tx_traffic_info *tx_stats; |
| 1770 | |
| 1771 | BUG_ON(tid >= MWL8K_MAX_TID); |
| 1772 | tx_stats = &sta_info->tx_stats[tid]; |
| 1773 | |
| 1774 | if (tx_stats->start_time == 0) |
| 1775 | tx_stats->start_time = jiffies; |
| 1776 | |
| 1777 | /* reset the packet count after each second elapses. If the number of |
| 1778 | * packets ever exceeds the ampdu_min_traffic threshold, we will allow |
| 1779 | * an ampdu stream to be started. |
| 1780 | */ |
| 1781 | if (jiffies - tx_stats->start_time > HZ) { |
| 1782 | tx_stats->pkts = 0; |
| 1783 | tx_stats->start_time = 0; |
| 1784 | } else |
| 1785 | tx_stats->pkts++; |
| 1786 | } |
| 1787 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1788 | static void |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1789 | mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb) |
| 1790 | { |
| 1791 | struct mwl8k_priv *priv = hw->priv; |
| 1792 | struct ieee80211_tx_info *tx_info; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1793 | struct mwl8k_vif *mwl8k_vif; |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 1794 | struct ieee80211_sta *sta; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1795 | struct ieee80211_hdr *wh; |
| 1796 | struct mwl8k_tx_queue *txq; |
| 1797 | struct mwl8k_tx_desc *tx; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1798 | dma_addr_t dma; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1799 | u32 txstatus; |
| 1800 | u8 txdatarate; |
| 1801 | u16 qos; |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 1802 | int txpriority; |
| 1803 | u8 tid = 0; |
| 1804 | struct mwl8k_ampdu_stream *stream = NULL; |
| 1805 | bool start_ba_session = false; |
Nishant Sarmukadam | 3a76988 | 2011-04-21 16:34:58 +0530 | [diff] [blame] | 1806 | bool mgmtframe = false; |
Nishant Sarmukadam | a0e7c6c | 2011-03-17 11:58:49 -0700 | [diff] [blame] | 1807 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1808 | |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1809 | wh = (struct ieee80211_hdr *)skb->data; |
| 1810 | if (ieee80211_is_data_qos(wh->frame_control)) |
| 1811 | qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh))); |
| 1812 | else |
| 1813 | qos = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1814 | |
Nishant Sarmukadam | 3a76988 | 2011-04-21 16:34:58 +0530 | [diff] [blame] | 1815 | if (ieee80211_is_mgmt(wh->frame_control)) |
| 1816 | mgmtframe = true; |
| 1817 | |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 1818 | if (priv->ap_fw) |
| 1819 | mwl8k_encapsulate_tx_frame(skb); |
| 1820 | else |
| 1821 | mwl8k_add_dma_header(skb, 0); |
| 1822 | |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1823 | wh = &((struct mwl8k_dma_data *)skb->data)->wh; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1824 | |
| 1825 | tx_info = IEEE80211_SKB_CB(skb); |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 1826 | sta = tx_info->control.sta; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1827 | mwl8k_vif = MWL8K_VIF(tx_info->control.vif); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1828 | |
| 1829 | if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1830 | wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG); |
Lennert Buytenhek | 657232b | 2010-01-12 13:47:47 +0100 | [diff] [blame] | 1831 | wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno); |
| 1832 | mwl8k_vif->seqno += 0x10; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1833 | } |
| 1834 | |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1835 | /* Setup firmware control bit fields for each frame type. */ |
| 1836 | txstatus = 0; |
| 1837 | txdatarate = 0; |
| 1838 | if (ieee80211_is_mgmt(wh->frame_control) || |
| 1839 | ieee80211_is_ctl(wh->frame_control)) { |
| 1840 | txdatarate = 0; |
Lennert Buytenhek | e0493a8 | 2009-11-30 18:32:00 +0100 | [diff] [blame] | 1841 | qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1842 | } else if (ieee80211_is_data(wh->frame_control)) { |
| 1843 | txdatarate = 1; |
| 1844 | if (is_multicast_ether_addr(wh->addr1)) |
| 1845 | txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX; |
| 1846 | |
Lennert Buytenhek | e0493a8 | 2009-11-30 18:32:00 +0100 | [diff] [blame] | 1847 | qos &= ~MWL8K_QOS_ACK_POLICY_MASK; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1848 | if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) |
Lennert Buytenhek | e0493a8 | 2009-11-30 18:32:00 +0100 | [diff] [blame] | 1849 | qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1850 | else |
Lennert Buytenhek | e0493a8 | 2009-11-30 18:32:00 +0100 | [diff] [blame] | 1851 | qos |= MWL8K_QOS_ACK_POLICY_NORMAL; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1852 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1853 | |
Nishant Sarmukadam | a0e7c6c | 2011-03-17 11:58:49 -0700 | [diff] [blame] | 1854 | /* Queue ADDBA request in the respective data queue. While setting up |
| 1855 | * the ampdu stream, mac80211 queues further packets for that |
| 1856 | * particular ra/tid pair. However, packets piled up in the hardware |
| 1857 | * for that ra/tid pair will still go out. ADDBA request and the |
| 1858 | * related data packets going out from different queues asynchronously |
| 1859 | * will cause a shift in the receiver window which might result in |
| 1860 | * ampdu packets getting dropped at the receiver after the stream has |
| 1861 | * been setup. |
| 1862 | */ |
| 1863 | if (unlikely(ieee80211_is_action(wh->frame_control) && |
| 1864 | mgmt->u.action.category == WLAN_CATEGORY_BACK && |
| 1865 | mgmt->u.action.u.addba_req.action_code == WLAN_ACTION_ADDBA_REQ && |
| 1866 | priv->ap_fw)) { |
| 1867 | u16 capab = le16_to_cpu(mgmt->u.action.u.addba_req.capab); |
| 1868 | tid = (capab & IEEE80211_ADDBA_PARAM_TID_MASK) >> 2; |
| 1869 | index = mwl8k_tid_queue_mapping(tid); |
| 1870 | } |
| 1871 | |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 1872 | txpriority = index; |
| 1873 | |
| 1874 | if (ieee80211_is_data_qos(wh->frame_control) && |
| 1875 | skb->protocol != cpu_to_be16(ETH_P_PAE) && |
| 1876 | sta->ht_cap.ht_supported && priv->ap_fw) { |
| 1877 | tid = qos & 0xf; |
Brian Cavagnolo | d0805c1 | 2011-04-12 11:06:28 -0700 | [diff] [blame] | 1878 | mwl8k_tx_count_packet(sta, tid); |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 1879 | spin_lock(&priv->stream_lock); |
| 1880 | stream = mwl8k_lookup_stream(hw, sta->addr, tid); |
| 1881 | if (stream != NULL) { |
| 1882 | if (stream->state == AMPDU_STREAM_ACTIVE) { |
| 1883 | txpriority = stream->txq_idx; |
| 1884 | index = stream->txq_idx; |
| 1885 | } else if (stream->state == AMPDU_STREAM_NEW) { |
| 1886 | /* We get here if the driver sends us packets |
| 1887 | * after we've initiated a stream, but before |
| 1888 | * our ampdu_action routine has been called |
| 1889 | * with IEEE80211_AMPDU_TX_START to get the SSN |
| 1890 | * for the ADDBA request. So this packet can |
| 1891 | * go out with no risk of sequence number |
| 1892 | * mismatch. No special handling is required. |
| 1893 | */ |
| 1894 | } else { |
| 1895 | /* Drop packets that would go out after the |
| 1896 | * ADDBA request was sent but before the ADDBA |
| 1897 | * response is received. If we don't do this, |
| 1898 | * the recipient would probably receive it |
| 1899 | * after the ADDBA request with SSN 0. This |
| 1900 | * will cause the recipient's BA receive window |
| 1901 | * to shift, which would cause the subsequent |
| 1902 | * packets in the BA stream to be discarded. |
| 1903 | * mac80211 queues our packets for us in this |
| 1904 | * case, so this is really just a safety check. |
| 1905 | */ |
| 1906 | wiphy_warn(hw->wiphy, |
| 1907 | "Cannot send packet while ADDBA " |
| 1908 | "dialog is underway.\n"); |
| 1909 | spin_unlock(&priv->stream_lock); |
| 1910 | dev_kfree_skb(skb); |
| 1911 | return; |
| 1912 | } |
| 1913 | } else { |
| 1914 | /* Defer calling mwl8k_start_stream so that the current |
| 1915 | * skb can go out before the ADDBA request. This |
| 1916 | * prevents sequence number mismatch at the recepient |
| 1917 | * as described above. |
| 1918 | */ |
Brian Cavagnolo | d0805c1 | 2011-04-12 11:06:28 -0700 | [diff] [blame] | 1919 | if (mwl8k_ampdu_allowed(sta, tid)) { |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 1920 | stream = mwl8k_add_stream(hw, sta, tid); |
| 1921 | if (stream != NULL) |
| 1922 | start_ba_session = true; |
| 1923 | } |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 1924 | } |
| 1925 | spin_unlock(&priv->stream_lock); |
| 1926 | } |
| 1927 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1928 | dma = pci_map_single(priv->pdev, skb->data, |
| 1929 | skb->len, PCI_DMA_TODEVICE); |
| 1930 | |
| 1931 | if (pci_dma_mapping_error(priv->pdev, dma)) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1932 | wiphy_debug(hw->wiphy, |
| 1933 | "failed to dma map skb, dropping TX frame.\n"); |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 1934 | if (start_ba_session) { |
| 1935 | spin_lock(&priv->stream_lock); |
| 1936 | mwl8k_remove_stream(hw, stream); |
| 1937 | spin_unlock(&priv->stream_lock); |
| 1938 | } |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1939 | dev_kfree_skb(skb); |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1940 | return; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1941 | } |
| 1942 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1943 | spin_lock_bh(&priv->tx_lock); |
| 1944 | |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1945 | txq = priv->txq + index; |
| 1946 | |
Nishant Sarmukadam | 3a76988 | 2011-04-21 16:34:58 +0530 | [diff] [blame] | 1947 | /* Mgmt frames that go out frequently are probe |
| 1948 | * responses. Other mgmt frames got out relatively |
| 1949 | * infrequently. Hence reserve 2 buffers so that |
| 1950 | * other mgmt frames do not get dropped due to an |
| 1951 | * already queued probe response in one of the |
| 1952 | * reserved buffers. |
| 1953 | */ |
| 1954 | |
| 1955 | if (txq->len >= MWL8K_TX_DESCS - 2) { |
| 1956 | if (mgmtframe == false || |
| 1957 | txq->len == MWL8K_TX_DESCS) { |
| 1958 | if (start_ba_session) { |
| 1959 | spin_lock(&priv->stream_lock); |
| 1960 | mwl8k_remove_stream(hw, stream); |
| 1961 | spin_unlock(&priv->stream_lock); |
| 1962 | } |
| 1963 | spin_unlock_bh(&priv->tx_lock); |
| 1964 | dev_kfree_skb(skb); |
| 1965 | return; |
Pradeep Nemavat | 3a7dbc3 | 2011-04-21 16:34:56 +0530 | [diff] [blame] | 1966 | } |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 1967 | } |
| 1968 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1969 | BUG_ON(txq->skb[txq->tail] != NULL); |
| 1970 | txq->skb[txq->tail] = skb; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1971 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1972 | tx = txq->txd + txq->tail; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1973 | tx->data_rate = txdatarate; |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 1974 | tx->tx_priority = txpriority; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1975 | tx->qos_control = cpu_to_le16(qos); |
| 1976 | tx->pkt_phys_addr = cpu_to_le32(dma); |
| 1977 | tx->pkt_len = cpu_to_le16(skb->len); |
| 1978 | tx->rate_info = 0; |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 1979 | if (!priv->ap_fw && tx_info->control.sta != NULL) |
| 1980 | tx->peer_id = MWL8K_STA(tx_info->control.sta)->peer_id; |
| 1981 | else |
| 1982 | tx->peer_id = 0; |
Pradeep Nemavat | 566875d | 2011-04-21 16:34:57 +0530 | [diff] [blame] | 1983 | |
| 1984 | if (priv->ap_fw) |
| 1985 | tx->timestamp = cpu_to_le32(ioread32(priv->regs + |
| 1986 | MWL8K_HW_TIMER_REGISTER)); |
| 1987 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1988 | wmb(); |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1989 | tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus); |
| 1990 | |
Kalle Valo | 8ccbc3b | 2010-02-07 10:20:52 +0200 | [diff] [blame] | 1991 | txq->len++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1992 | priv->pending_tx_pkts++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1993 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1994 | txq->tail++; |
| 1995 | if (txq->tail == MWL8K_TX_DESCS) |
| 1996 | txq->tail = 0; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1997 | |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1998 | mwl8k_tx_start(priv); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1999 | |
| 2000 | spin_unlock_bh(&priv->tx_lock); |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 2001 | |
| 2002 | /* Initiate the ampdu session here */ |
| 2003 | if (start_ba_session) { |
| 2004 | spin_lock(&priv->stream_lock); |
| 2005 | if (mwl8k_start_stream(hw, stream)) |
| 2006 | mwl8k_remove_stream(hw, stream); |
| 2007 | spin_unlock(&priv->stream_lock); |
| 2008 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2009 | } |
| 2010 | |
| 2011 | |
| 2012 | /* |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 2013 | * Firmware access. |
| 2014 | * |
| 2015 | * We have the following requirements for issuing firmware commands: |
| 2016 | * - Some commands require that the packet transmit path is idle when |
| 2017 | * the command is issued. (For simplicity, we'll just quiesce the |
| 2018 | * transmit path for every command.) |
| 2019 | * - There are certain sequences of commands that need to be issued to |
| 2020 | * the hardware sequentially, with no other intervening commands. |
| 2021 | * |
| 2022 | * This leads to an implementation of a "firmware lock" as a mutex that |
| 2023 | * can be taken recursively, and which is taken by both the low-level |
| 2024 | * command submission function (mwl8k_post_cmd) as well as any users of |
| 2025 | * that function that require issuing of an atomic sequence of commands, |
| 2026 | * and quiesces the transmit path whenever it's taken. |
| 2027 | */ |
| 2028 | static int mwl8k_fw_lock(struct ieee80211_hw *hw) |
| 2029 | { |
| 2030 | struct mwl8k_priv *priv = hw->priv; |
| 2031 | |
| 2032 | if (priv->fw_mutex_owner != current) { |
| 2033 | int rc; |
| 2034 | |
| 2035 | mutex_lock(&priv->fw_mutex); |
| 2036 | ieee80211_stop_queues(hw); |
| 2037 | |
| 2038 | rc = mwl8k_tx_wait_empty(hw); |
| 2039 | if (rc) { |
| 2040 | ieee80211_wake_queues(hw); |
| 2041 | mutex_unlock(&priv->fw_mutex); |
| 2042 | |
| 2043 | return rc; |
| 2044 | } |
| 2045 | |
| 2046 | priv->fw_mutex_owner = current; |
| 2047 | } |
| 2048 | |
| 2049 | priv->fw_mutex_depth++; |
| 2050 | |
| 2051 | return 0; |
| 2052 | } |
| 2053 | |
| 2054 | static void mwl8k_fw_unlock(struct ieee80211_hw *hw) |
| 2055 | { |
| 2056 | struct mwl8k_priv *priv = hw->priv; |
| 2057 | |
| 2058 | if (!--priv->fw_mutex_depth) { |
| 2059 | ieee80211_wake_queues(hw); |
| 2060 | priv->fw_mutex_owner = NULL; |
| 2061 | mutex_unlock(&priv->fw_mutex); |
| 2062 | } |
| 2063 | } |
| 2064 | |
| 2065 | |
| 2066 | /* |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2067 | * Command processing. |
| 2068 | */ |
| 2069 | |
Lennert Buytenhek | 0c9cc640 | 2009-11-30 18:12:49 +0100 | [diff] [blame] | 2070 | /* Timeout firmware commands after 10s */ |
| 2071 | #define MWL8K_CMD_TIMEOUT_MS 10000 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2072 | |
| 2073 | static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd) |
| 2074 | { |
| 2075 | DECLARE_COMPLETION_ONSTACK(cmd_wait); |
| 2076 | struct mwl8k_priv *priv = hw->priv; |
| 2077 | void __iomem *regs = priv->regs; |
| 2078 | dma_addr_t dma_addr; |
| 2079 | unsigned int dma_size; |
| 2080 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2081 | unsigned long timeout = 0; |
| 2082 | u8 buf[32]; |
| 2083 | |
John W. Linville | b603742 | 2010-07-20 13:55:00 -0400 | [diff] [blame] | 2084 | cmd->result = (__force __le16) 0xffff; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2085 | dma_size = le16_to_cpu(cmd->length); |
| 2086 | dma_addr = pci_map_single(priv->pdev, cmd, dma_size, |
| 2087 | PCI_DMA_BIDIRECTIONAL); |
| 2088 | if (pci_dma_mapping_error(priv->pdev, dma_addr)) |
| 2089 | return -ENOMEM; |
| 2090 | |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 2091 | rc = mwl8k_fw_lock(hw); |
Lennert Buytenhek | 39a1e42 | 2009-08-24 15:42:46 +0200 | [diff] [blame] | 2092 | if (rc) { |
| 2093 | pci_unmap_single(priv->pdev, dma_addr, dma_size, |
| 2094 | PCI_DMA_BIDIRECTIONAL); |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 2095 | return rc; |
Lennert Buytenhek | 39a1e42 | 2009-08-24 15:42:46 +0200 | [diff] [blame] | 2096 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2097 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2098 | priv->hostcmd_wait = &cmd_wait; |
| 2099 | iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR); |
| 2100 | iowrite32(MWL8K_H2A_INT_DOORBELL, |
| 2101 | regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 2102 | iowrite32(MWL8K_H2A_INT_DUMMY, |
| 2103 | regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2104 | |
| 2105 | timeout = wait_for_completion_timeout(&cmd_wait, |
| 2106 | msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS)); |
| 2107 | |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 2108 | priv->hostcmd_wait = NULL; |
| 2109 | |
| 2110 | mwl8k_fw_unlock(hw); |
| 2111 | |
Lennert Buytenhek | 37055bd | 2009-08-03 21:58:47 +0200 | [diff] [blame] | 2112 | pci_unmap_single(priv->pdev, dma_addr, dma_size, |
| 2113 | PCI_DMA_BIDIRECTIONAL); |
| 2114 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2115 | if (!timeout) { |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 2116 | wiphy_err(hw->wiphy, "Command %s timeout after %u ms\n", |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 2117 | mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), |
| 2118 | MWL8K_CMD_TIMEOUT_MS); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2119 | rc = -ETIMEDOUT; |
| 2120 | } else { |
Lennert Buytenhek | 0c9cc640 | 2009-11-30 18:12:49 +0100 | [diff] [blame] | 2121 | int ms; |
| 2122 | |
| 2123 | ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout); |
| 2124 | |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 2125 | rc = cmd->result ? -EINVAL : 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2126 | if (rc) |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 2127 | wiphy_err(hw->wiphy, "Command %s error 0x%x\n", |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 2128 | mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), |
| 2129 | le16_to_cpu(cmd->result)); |
Lennert Buytenhek | 0c9cc640 | 2009-11-30 18:12:49 +0100 | [diff] [blame] | 2130 | else if (ms > 2000) |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 2131 | wiphy_notice(hw->wiphy, "Command %s took %d ms\n", |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 2132 | mwl8k_cmd_name(cmd->code, |
| 2133 | buf, sizeof(buf)), |
| 2134 | ms); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2135 | } |
| 2136 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2137 | return rc; |
| 2138 | } |
| 2139 | |
Lennert Buytenhek | f57ca9c | 2010-01-12 13:50:14 +0100 | [diff] [blame] | 2140 | static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw, |
| 2141 | struct ieee80211_vif *vif, |
| 2142 | struct mwl8k_cmd_pkt *cmd) |
| 2143 | { |
| 2144 | if (vif != NULL) |
| 2145 | cmd->macid = MWL8K_VIF(vif)->macid; |
| 2146 | return mwl8k_post_cmd(hw, cmd); |
| 2147 | } |
| 2148 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2149 | /* |
Lennert Buytenhek | 1349ad2 | 2010-01-12 13:48:17 +0100 | [diff] [blame] | 2150 | * Setup code shared between STA and AP firmware images. |
| 2151 | */ |
| 2152 | static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw) |
| 2153 | { |
| 2154 | struct mwl8k_priv *priv = hw->priv; |
| 2155 | |
| 2156 | BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24)); |
| 2157 | memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24)); |
| 2158 | |
| 2159 | BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24)); |
| 2160 | memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24)); |
| 2161 | |
| 2162 | priv->band_24.band = IEEE80211_BAND_2GHZ; |
| 2163 | priv->band_24.channels = priv->channels_24; |
| 2164 | priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24); |
| 2165 | priv->band_24.bitrates = priv->rates_24; |
| 2166 | priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24); |
| 2167 | |
| 2168 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24; |
| 2169 | } |
| 2170 | |
Lennert Buytenhek | 4eae9ed | 2010-01-12 13:48:32 +0100 | [diff] [blame] | 2171 | static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw) |
| 2172 | { |
| 2173 | struct mwl8k_priv *priv = hw->priv; |
| 2174 | |
| 2175 | BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50)); |
| 2176 | memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50)); |
| 2177 | |
| 2178 | BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50)); |
| 2179 | memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50)); |
| 2180 | |
| 2181 | priv->band_50.band = IEEE80211_BAND_5GHZ; |
| 2182 | priv->band_50.channels = priv->channels_50; |
| 2183 | priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50); |
| 2184 | priv->band_50.bitrates = priv->rates_50; |
| 2185 | priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50); |
| 2186 | |
| 2187 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50; |
| 2188 | } |
| 2189 | |
Lennert Buytenhek | 1349ad2 | 2010-01-12 13:48:17 +0100 | [diff] [blame] | 2190 | /* |
Lennert Buytenhek | 04b147b1 | 2009-10-22 20:21:05 +0200 | [diff] [blame] | 2191 | * CMD_GET_HW_SPEC (STA version). |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2192 | */ |
Lennert Buytenhek | 04b147b1 | 2009-10-22 20:21:05 +0200 | [diff] [blame] | 2193 | struct mwl8k_cmd_get_hw_spec_sta { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2194 | struct mwl8k_cmd_pkt header; |
| 2195 | __u8 hw_rev; |
| 2196 | __u8 host_interface; |
| 2197 | __le16 num_mcaddrs; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 2198 | __u8 perm_addr[ETH_ALEN]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2199 | __le16 region_code; |
| 2200 | __le32 fw_rev; |
| 2201 | __le32 ps_cookie; |
| 2202 | __le32 caps; |
| 2203 | __u8 mcs_bitmap[16]; |
| 2204 | __le32 rx_queue_ptr; |
| 2205 | __le32 num_tx_queues; |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 2206 | __le32 tx_queue_ptrs[MWL8K_TX_WMM_QUEUES]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2207 | __le32 caps2; |
| 2208 | __le32 num_tx_desc_per_queue; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 2209 | __le32 total_rxd; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2210 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2211 | |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2212 | #define MWL8K_CAP_MAX_AMSDU 0x20000000 |
| 2213 | #define MWL8K_CAP_GREENFIELD 0x08000000 |
| 2214 | #define MWL8K_CAP_AMPDU 0x04000000 |
| 2215 | #define MWL8K_CAP_RX_STBC 0x01000000 |
| 2216 | #define MWL8K_CAP_TX_STBC 0x00800000 |
| 2217 | #define MWL8K_CAP_SHORTGI_40MHZ 0x00400000 |
| 2218 | #define MWL8K_CAP_SHORTGI_20MHZ 0x00200000 |
| 2219 | #define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000 |
| 2220 | #define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000 |
| 2221 | #define MWL8K_CAP_DELAY_BA 0x00003000 |
| 2222 | #define MWL8K_CAP_MIMO 0x00000200 |
| 2223 | #define MWL8K_CAP_40MHZ 0x00000100 |
Lennert Buytenhek | 0695323 | 2010-01-12 13:49:41 +0100 | [diff] [blame] | 2224 | #define MWL8K_CAP_BAND_MASK 0x00000007 |
| 2225 | #define MWL8K_CAP_5GHZ 0x00000004 |
| 2226 | #define MWL8K_CAP_2GHZ4 0x00000001 |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2227 | |
Lennert Buytenhek | 0695323 | 2010-01-12 13:49:41 +0100 | [diff] [blame] | 2228 | static void |
| 2229 | mwl8k_set_ht_caps(struct ieee80211_hw *hw, |
| 2230 | struct ieee80211_supported_band *band, u32 cap) |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2231 | { |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2232 | int rx_streams; |
| 2233 | int tx_streams; |
| 2234 | |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2235 | band->ht_cap.ht_supported = 1; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2236 | |
| 2237 | if (cap & MWL8K_CAP_MAX_AMSDU) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2238 | band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2239 | if (cap & MWL8K_CAP_GREENFIELD) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2240 | band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2241 | if (cap & MWL8K_CAP_AMPDU) { |
| 2242 | hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION; |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2243 | band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; |
| 2244 | band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2245 | } |
| 2246 | if (cap & MWL8K_CAP_RX_STBC) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2247 | band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2248 | if (cap & MWL8K_CAP_TX_STBC) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2249 | band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2250 | if (cap & MWL8K_CAP_SHORTGI_40MHZ) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2251 | band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2252 | if (cap & MWL8K_CAP_SHORTGI_20MHZ) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2253 | band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2254 | if (cap & MWL8K_CAP_DELAY_BA) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2255 | band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2256 | if (cap & MWL8K_CAP_40MHZ) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2257 | band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2258 | |
| 2259 | rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK); |
| 2260 | tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK); |
| 2261 | |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2262 | band->ht_cap.mcs.rx_mask[0] = 0xff; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2263 | if (rx_streams >= 2) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2264 | band->ht_cap.mcs.rx_mask[1] = 0xff; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2265 | if (rx_streams >= 3) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2266 | band->ht_cap.mcs.rx_mask[2] = 0xff; |
| 2267 | band->ht_cap.mcs.rx_mask[4] = 0x01; |
| 2268 | band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2269 | |
| 2270 | if (rx_streams != tx_streams) { |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2271 | band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF; |
| 2272 | band->ht_cap.mcs.tx_params |= (tx_streams - 1) << |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 2273 | IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT; |
| 2274 | } |
| 2275 | } |
| 2276 | |
Lennert Buytenhek | 0695323 | 2010-01-12 13:49:41 +0100 | [diff] [blame] | 2277 | static void |
| 2278 | mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps) |
| 2279 | { |
| 2280 | struct mwl8k_priv *priv = hw->priv; |
| 2281 | |
| 2282 | if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) { |
| 2283 | mwl8k_setup_2ghz_band(hw); |
| 2284 | if (caps & MWL8K_CAP_MIMO) |
| 2285 | mwl8k_set_ht_caps(hw, &priv->band_24, caps); |
| 2286 | } |
| 2287 | |
| 2288 | if (caps & MWL8K_CAP_5GHZ) { |
| 2289 | mwl8k_setup_5ghz_band(hw); |
| 2290 | if (caps & MWL8K_CAP_MIMO) |
| 2291 | mwl8k_set_ht_caps(hw, &priv->band_50, caps); |
| 2292 | } |
| 2293 | } |
| 2294 | |
Lennert Buytenhek | 04b147b1 | 2009-10-22 20:21:05 +0200 | [diff] [blame] | 2295 | static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2296 | { |
| 2297 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | 04b147b1 | 2009-10-22 20:21:05 +0200 | [diff] [blame] | 2298 | struct mwl8k_cmd_get_hw_spec_sta *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2299 | int rc; |
| 2300 | int i; |
| 2301 | |
| 2302 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2303 | if (cmd == NULL) |
| 2304 | return -ENOMEM; |
| 2305 | |
| 2306 | cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC); |
| 2307 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2308 | |
| 2309 | memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr)); |
| 2310 | cmd->ps_cookie = cpu_to_le32(priv->cookie_dma); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 2311 | cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma); |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 2312 | cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv)); |
| 2313 | for (i = 0; i < mwl8k_tx_queues(priv); i++) |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 2314 | cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma); |
Lennert Buytenhek | 4ff6432 | 2009-08-03 21:58:39 +0200 | [diff] [blame] | 2315 | cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 2316 | cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2317 | |
| 2318 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2319 | |
| 2320 | if (!rc) { |
| 2321 | SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr); |
| 2322 | priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs); |
Lennert Buytenhek | 4ff6432 | 2009-08-03 21:58:39 +0200 | [diff] [blame] | 2323 | priv->fw_rev = le32_to_cpu(cmd->fw_rev); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2324 | priv->hw_rev = cmd->hw_rev; |
Lennert Buytenhek | 0695323 | 2010-01-12 13:49:41 +0100 | [diff] [blame] | 2325 | mwl8k_set_caps(hw, le32_to_cpu(cmd->caps)); |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 2326 | priv->ap_macids_supported = 0x00000000; |
| 2327 | priv->sta_macids_supported = 0x00000001; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2328 | } |
| 2329 | |
| 2330 | kfree(cmd); |
| 2331 | return rc; |
| 2332 | } |
| 2333 | |
| 2334 | /* |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2335 | * CMD_GET_HW_SPEC (AP version). |
| 2336 | */ |
| 2337 | struct mwl8k_cmd_get_hw_spec_ap { |
| 2338 | struct mwl8k_cmd_pkt header; |
| 2339 | __u8 hw_rev; |
| 2340 | __u8 host_interface; |
| 2341 | __le16 num_wcb; |
| 2342 | __le16 num_mcaddrs; |
| 2343 | __u8 perm_addr[ETH_ALEN]; |
| 2344 | __le16 region_code; |
| 2345 | __le16 num_antenna; |
| 2346 | __le32 fw_rev; |
| 2347 | __le32 wcbbase0; |
| 2348 | __le32 rxwrptr; |
| 2349 | __le32 rxrdptr; |
| 2350 | __le32 ps_cookie; |
| 2351 | __le32 wcbbase1; |
| 2352 | __le32 wcbbase2; |
| 2353 | __le32 wcbbase3; |
Brian Cavagnolo | 952a0e9 | 2010-11-12 17:23:51 -0800 | [diff] [blame] | 2354 | __le32 fw_api_version; |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 2355 | __le32 caps; |
| 2356 | __le32 num_of_ampdu_queues; |
| 2357 | __le32 wcbbase_ampdu[MWL8K_MAX_AMPDU_QUEUES]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2358 | } __packed; |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2359 | |
| 2360 | static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw) |
| 2361 | { |
| 2362 | struct mwl8k_priv *priv = hw->priv; |
| 2363 | struct mwl8k_cmd_get_hw_spec_ap *cmd; |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 2364 | int rc, i; |
Brian Cavagnolo | 952a0e9 | 2010-11-12 17:23:51 -0800 | [diff] [blame] | 2365 | u32 api_version; |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2366 | |
| 2367 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2368 | if (cmd == NULL) |
| 2369 | return -ENOMEM; |
| 2370 | |
| 2371 | cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC); |
| 2372 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2373 | |
| 2374 | memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr)); |
| 2375 | cmd->ps_cookie = cpu_to_le32(priv->cookie_dma); |
| 2376 | |
| 2377 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2378 | |
| 2379 | if (!rc) { |
| 2380 | int off; |
| 2381 | |
Brian Cavagnolo | 952a0e9 | 2010-11-12 17:23:51 -0800 | [diff] [blame] | 2382 | api_version = le32_to_cpu(cmd->fw_api_version); |
| 2383 | if (priv->device_info->fw_api_ap != api_version) { |
| 2384 | printk(KERN_ERR "%s: Unsupported fw API version for %s." |
| 2385 | " Expected %d got %d.\n", MWL8K_NAME, |
| 2386 | priv->device_info->part_name, |
| 2387 | priv->device_info->fw_api_ap, |
| 2388 | api_version); |
| 2389 | rc = -EINVAL; |
| 2390 | goto done; |
| 2391 | } |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2392 | SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr); |
| 2393 | priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs); |
| 2394 | priv->fw_rev = le32_to_cpu(cmd->fw_rev); |
| 2395 | priv->hw_rev = cmd->hw_rev; |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 2396 | mwl8k_set_caps(hw, le32_to_cpu(cmd->caps)); |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 2397 | priv->ap_macids_supported = 0x000000ff; |
| 2398 | priv->sta_macids_supported = 0x00000000; |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 2399 | priv->num_ampdu_queues = le32_to_cpu(cmd->num_of_ampdu_queues); |
| 2400 | if (priv->num_ampdu_queues > MWL8K_MAX_AMPDU_QUEUES) { |
| 2401 | wiphy_warn(hw->wiphy, "fw reported %d ampdu queues" |
| 2402 | " but we only support %d.\n", |
| 2403 | priv->num_ampdu_queues, |
| 2404 | MWL8K_MAX_AMPDU_QUEUES); |
| 2405 | priv->num_ampdu_queues = MWL8K_MAX_AMPDU_QUEUES; |
| 2406 | } |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2407 | off = le32_to_cpu(cmd->rxwrptr) & 0xffff; |
John W. Linville | b603742 | 2010-07-20 13:55:00 -0400 | [diff] [blame] | 2408 | iowrite32(priv->rxq[0].rxd_dma, priv->sram + off); |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2409 | |
| 2410 | off = le32_to_cpu(cmd->rxrdptr) & 0xffff; |
John W. Linville | b603742 | 2010-07-20 13:55:00 -0400 | [diff] [blame] | 2411 | iowrite32(priv->rxq[0].rxd_dma, priv->sram + off); |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2412 | |
Brian Cavagnolo | 73b4632 | 2011-03-17 11:58:41 -0700 | [diff] [blame] | 2413 | priv->txq_offset[0] = le32_to_cpu(cmd->wcbbase0) & 0xffff; |
| 2414 | priv->txq_offset[1] = le32_to_cpu(cmd->wcbbase1) & 0xffff; |
| 2415 | priv->txq_offset[2] = le32_to_cpu(cmd->wcbbase2) & 0xffff; |
| 2416 | priv->txq_offset[3] = le32_to_cpu(cmd->wcbbase3) & 0xffff; |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 2417 | |
| 2418 | for (i = 0; i < priv->num_ampdu_queues; i++) |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 2419 | priv->txq_offset[i + MWL8K_TX_WMM_QUEUES] = |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 2420 | le32_to_cpu(cmd->wcbbase_ampdu[i]) & 0xffff; |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2421 | } |
| 2422 | |
Brian Cavagnolo | 952a0e9 | 2010-11-12 17:23:51 -0800 | [diff] [blame] | 2423 | done: |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2424 | kfree(cmd); |
| 2425 | return rc; |
| 2426 | } |
| 2427 | |
| 2428 | /* |
| 2429 | * CMD_SET_HW_SPEC. |
| 2430 | */ |
| 2431 | struct mwl8k_cmd_set_hw_spec { |
| 2432 | struct mwl8k_cmd_pkt header; |
| 2433 | __u8 hw_rev; |
| 2434 | __u8 host_interface; |
| 2435 | __le16 num_mcaddrs; |
| 2436 | __u8 perm_addr[ETH_ALEN]; |
| 2437 | __le16 region_code; |
| 2438 | __le32 fw_rev; |
| 2439 | __le32 ps_cookie; |
| 2440 | __le32 caps; |
| 2441 | __le32 rx_queue_ptr; |
| 2442 | __le32 num_tx_queues; |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 2443 | __le32 tx_queue_ptrs[MWL8K_MAX_TX_QUEUES]; |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2444 | __le32 flags; |
| 2445 | __le32 num_tx_desc_per_queue; |
| 2446 | __le32 total_rxd; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2447 | } __packed; |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2448 | |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 2449 | /* If enabled, MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY will cause |
| 2450 | * packets to expire 500 ms after the timestamp in the tx descriptor. That is, |
| 2451 | * the packets that are queued for more than 500ms, will be dropped in the |
| 2452 | * hardware. This helps minimizing the issues caused due to head-of-line |
| 2453 | * blocking where a slow client can hog the bandwidth and affect traffic to a |
| 2454 | * faster client. |
| 2455 | */ |
| 2456 | #define MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY 0x00000400 |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 2457 | #define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080 |
| 2458 | #define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020 |
| 2459 | #define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010 |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2460 | |
| 2461 | static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw) |
| 2462 | { |
| 2463 | struct mwl8k_priv *priv = hw->priv; |
| 2464 | struct mwl8k_cmd_set_hw_spec *cmd; |
| 2465 | int rc; |
| 2466 | int i; |
| 2467 | |
| 2468 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2469 | if (cmd == NULL) |
| 2470 | return -ENOMEM; |
| 2471 | |
| 2472 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC); |
| 2473 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2474 | |
| 2475 | cmd->ps_cookie = cpu_to_le32(priv->cookie_dma); |
| 2476 | cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma); |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 2477 | cmd->num_tx_queues = cpu_to_le32(mwl8k_tx_queues(priv)); |
Nishant Sarmukadam | 85c9205 | 2011-02-17 14:45:18 -0800 | [diff] [blame] | 2478 | |
| 2479 | /* |
| 2480 | * Mac80211 stack has Q0 as highest priority and Q3 as lowest in |
| 2481 | * that order. Firmware has Q3 as highest priority and Q0 as lowest |
| 2482 | * in that order. Map Q3 of mac80211 to Q0 of firmware so that the |
| 2483 | * priority is interpreted the right way in firmware. |
| 2484 | */ |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 2485 | for (i = 0; i < mwl8k_tx_queues(priv); i++) { |
| 2486 | int j = mwl8k_tx_queues(priv) - 1 - i; |
Nishant Sarmukadam | 85c9205 | 2011-02-17 14:45:18 -0800 | [diff] [blame] | 2487 | cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[j].txd_dma); |
| 2488 | } |
| 2489 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 2490 | cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT | |
| 2491 | MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP | |
Nishant Sarmukadam | 31d291a | 2011-04-21 16:34:59 +0530 | [diff] [blame] | 2492 | MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON | |
| 2493 | MWL8K_SET_HW_SPEC_FLAG_ENABLE_LIFE_TIME_EXPIRY); |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 2494 | cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS); |
| 2495 | cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS); |
| 2496 | |
| 2497 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2498 | kfree(cmd); |
| 2499 | |
| 2500 | return rc; |
| 2501 | } |
| 2502 | |
| 2503 | /* |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2504 | * CMD_MAC_MULTICAST_ADR. |
| 2505 | */ |
| 2506 | struct mwl8k_cmd_mac_multicast_adr { |
| 2507 | struct mwl8k_cmd_pkt header; |
| 2508 | __le16 action; |
| 2509 | __le16 numaddr; |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 2510 | __u8 addr[0][ETH_ALEN]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2511 | }; |
| 2512 | |
Lennert Buytenhek | d5e3084 | 2009-10-22 20:19:41 +0200 | [diff] [blame] | 2513 | #define MWL8K_ENABLE_RX_DIRECTED 0x0001 |
| 2514 | #define MWL8K_ENABLE_RX_MULTICAST 0x0002 |
| 2515 | #define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004 |
| 2516 | #define MWL8K_ENABLE_RX_BROADCAST 0x0008 |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 2517 | |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 2518 | static struct mwl8k_cmd_pkt * |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 2519 | __mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti, |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2520 | struct netdev_hw_addr_list *mc_list) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2521 | { |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 2522 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2523 | struct mwl8k_cmd_mac_multicast_adr *cmd; |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 2524 | int size; |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2525 | int mc_count = 0; |
| 2526 | |
| 2527 | if (mc_list) |
| 2528 | mc_count = netdev_hw_addr_list_count(mc_list); |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 2529 | |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 2530 | if (allmulti || mc_count > priv->num_mcaddrs) { |
Lennert Buytenhek | d5e3084 | 2009-10-22 20:19:41 +0200 | [diff] [blame] | 2531 | allmulti = 1; |
| 2532 | mc_count = 0; |
| 2533 | } |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 2534 | |
| 2535 | size = sizeof(*cmd) + mc_count * ETH_ALEN; |
| 2536 | |
| 2537 | cmd = kzalloc(size, GFP_ATOMIC); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2538 | if (cmd == NULL) |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 2539 | return NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2540 | |
| 2541 | cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR); |
| 2542 | cmd->header.length = cpu_to_le16(size); |
Lennert Buytenhek | d5e3084 | 2009-10-22 20:19:41 +0200 | [diff] [blame] | 2543 | cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED | |
| 2544 | MWL8K_ENABLE_RX_BROADCAST); |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 2545 | |
Lennert Buytenhek | d5e3084 | 2009-10-22 20:19:41 +0200 | [diff] [blame] | 2546 | if (allmulti) { |
| 2547 | cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST); |
| 2548 | } else if (mc_count) { |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2549 | struct netdev_hw_addr *ha; |
| 2550 | int i = 0; |
Lennert Buytenhek | d5e3084 | 2009-10-22 20:19:41 +0200 | [diff] [blame] | 2551 | |
| 2552 | cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST); |
| 2553 | cmd->numaddr = cpu_to_le16(mc_count); |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2554 | netdev_hw_addr_list_for_each(ha, mc_list) { |
| 2555 | memcpy(cmd->addr[i], ha->addr, ETH_ALEN); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2556 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2557 | } |
| 2558 | |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 2559 | return &cmd->header; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2560 | } |
| 2561 | |
| 2562 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2563 | * CMD_GET_STAT. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2564 | */ |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2565 | struct mwl8k_cmd_get_stat { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2566 | struct mwl8k_cmd_pkt header; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2567 | __le32 stats[64]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2568 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2569 | |
| 2570 | #define MWL8K_STAT_ACK_FAILURE 9 |
| 2571 | #define MWL8K_STAT_RTS_FAILURE 12 |
| 2572 | #define MWL8K_STAT_FCS_ERROR 24 |
| 2573 | #define MWL8K_STAT_RTS_SUCCESS 11 |
| 2574 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2575 | static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw, |
| 2576 | struct ieee80211_low_level_stats *stats) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2577 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2578 | struct mwl8k_cmd_get_stat *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2579 | int rc; |
| 2580 | |
| 2581 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2582 | if (cmd == NULL) |
| 2583 | return -ENOMEM; |
| 2584 | |
| 2585 | cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT); |
| 2586 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2587 | |
| 2588 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2589 | if (!rc) { |
| 2590 | stats->dot11ACKFailureCount = |
| 2591 | le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]); |
| 2592 | stats->dot11RTSFailureCount = |
| 2593 | le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]); |
| 2594 | stats->dot11FCSErrorCount = |
| 2595 | le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]); |
| 2596 | stats->dot11RTSSuccessCount = |
| 2597 | le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]); |
| 2598 | } |
| 2599 | kfree(cmd); |
| 2600 | |
| 2601 | return rc; |
| 2602 | } |
| 2603 | |
| 2604 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2605 | * CMD_RADIO_CONTROL. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2606 | */ |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2607 | struct mwl8k_cmd_radio_control { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2608 | struct mwl8k_cmd_pkt header; |
| 2609 | __le16 action; |
| 2610 | __le16 control; |
| 2611 | __le16 radio_on; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2612 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2613 | |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2614 | static int |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2615 | mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2616 | { |
| 2617 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2618 | struct mwl8k_cmd_radio_control *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2619 | int rc; |
| 2620 | |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2621 | if (enable == priv->radio_on && !force) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2622 | return 0; |
| 2623 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2624 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2625 | if (cmd == NULL) |
| 2626 | return -ENOMEM; |
| 2627 | |
| 2628 | cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL); |
| 2629 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2630 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
Lennert Buytenhek | 68ce388 | 2009-07-16 12:26:57 +0200 | [diff] [blame] | 2631 | cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2632 | cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000); |
| 2633 | |
| 2634 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2635 | kfree(cmd); |
| 2636 | |
| 2637 | if (!rc) |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2638 | priv->radio_on = enable; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2639 | |
| 2640 | return rc; |
| 2641 | } |
| 2642 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2643 | static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw) |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2644 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2645 | return mwl8k_cmd_radio_control(hw, 0, 0); |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2646 | } |
| 2647 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2648 | static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw) |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2649 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2650 | return mwl8k_cmd_radio_control(hw, 1, 0); |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2651 | } |
| 2652 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2653 | static int |
| 2654 | mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble) |
| 2655 | { |
Lennert Buytenhek | 99200a99 | 2009-11-30 18:31:40 +0100 | [diff] [blame] | 2656 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2657 | |
Lennert Buytenhek | 68ce388 | 2009-07-16 12:26:57 +0200 | [diff] [blame] | 2658 | priv->radio_short_preamble = short_preamble; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2659 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2660 | return mwl8k_cmd_radio_control(hw, 1, 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2661 | } |
| 2662 | |
| 2663 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2664 | * CMD_RF_TX_POWER. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2665 | */ |
Nishant Sarmukadam | 41fdf09 | 2010-11-12 17:23:48 -0800 | [diff] [blame] | 2666 | #define MWL8K_RF_TX_POWER_LEVEL_TOTAL 8 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2667 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2668 | struct mwl8k_cmd_rf_tx_power { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2669 | struct mwl8k_cmd_pkt header; |
| 2670 | __le16 action; |
| 2671 | __le16 support_level; |
| 2672 | __le16 current_level; |
| 2673 | __le16 reserved; |
Nishant Sarmukadam | 41fdf09 | 2010-11-12 17:23:48 -0800 | [diff] [blame] | 2674 | __le16 power_level_list[MWL8K_RF_TX_POWER_LEVEL_TOTAL]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2675 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2676 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2677 | static int mwl8k_cmd_rf_tx_power(struct ieee80211_hw *hw, int dBm) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2678 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2679 | struct mwl8k_cmd_rf_tx_power *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2680 | int rc; |
| 2681 | |
| 2682 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2683 | if (cmd == NULL) |
| 2684 | return -ENOMEM; |
| 2685 | |
| 2686 | cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER); |
| 2687 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2688 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
| 2689 | cmd->support_level = cpu_to_le16(dBm); |
| 2690 | |
| 2691 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2692 | kfree(cmd); |
| 2693 | |
| 2694 | return rc; |
| 2695 | } |
| 2696 | |
| 2697 | /* |
Nishant Sarmukadam | 41fdf09 | 2010-11-12 17:23:48 -0800 | [diff] [blame] | 2698 | * CMD_TX_POWER. |
| 2699 | */ |
| 2700 | #define MWL8K_TX_POWER_LEVEL_TOTAL 12 |
| 2701 | |
| 2702 | struct mwl8k_cmd_tx_power { |
| 2703 | struct mwl8k_cmd_pkt header; |
| 2704 | __le16 action; |
| 2705 | __le16 band; |
| 2706 | __le16 channel; |
| 2707 | __le16 bw; |
| 2708 | __le16 sub_ch; |
| 2709 | __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL]; |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 2710 | } __packed; |
Nishant Sarmukadam | 41fdf09 | 2010-11-12 17:23:48 -0800 | [diff] [blame] | 2711 | |
| 2712 | static int mwl8k_cmd_tx_power(struct ieee80211_hw *hw, |
| 2713 | struct ieee80211_conf *conf, |
| 2714 | unsigned short pwr) |
| 2715 | { |
| 2716 | struct ieee80211_channel *channel = conf->channel; |
| 2717 | struct mwl8k_cmd_tx_power *cmd; |
| 2718 | int rc; |
| 2719 | int i; |
| 2720 | |
| 2721 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2722 | if (cmd == NULL) |
| 2723 | return -ENOMEM; |
| 2724 | |
| 2725 | cmd->header.code = cpu_to_le16(MWL8K_CMD_TX_POWER); |
| 2726 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2727 | cmd->action = cpu_to_le16(MWL8K_CMD_SET_LIST); |
| 2728 | |
| 2729 | if (channel->band == IEEE80211_BAND_2GHZ) |
| 2730 | cmd->band = cpu_to_le16(0x1); |
| 2731 | else if (channel->band == IEEE80211_BAND_5GHZ) |
| 2732 | cmd->band = cpu_to_le16(0x4); |
| 2733 | |
| 2734 | cmd->channel = channel->hw_value; |
| 2735 | |
| 2736 | if (conf->channel_type == NL80211_CHAN_NO_HT || |
| 2737 | conf->channel_type == NL80211_CHAN_HT20) { |
| 2738 | cmd->bw = cpu_to_le16(0x2); |
| 2739 | } else { |
| 2740 | cmd->bw = cpu_to_le16(0x4); |
| 2741 | if (conf->channel_type == NL80211_CHAN_HT40MINUS) |
| 2742 | cmd->sub_ch = cpu_to_le16(0x3); |
| 2743 | else if (conf->channel_type == NL80211_CHAN_HT40PLUS) |
| 2744 | cmd->sub_ch = cpu_to_le16(0x1); |
| 2745 | } |
| 2746 | |
| 2747 | for (i = 0; i < MWL8K_TX_POWER_LEVEL_TOTAL; i++) |
| 2748 | cmd->power_level_list[i] = cpu_to_le16(pwr); |
| 2749 | |
| 2750 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2751 | kfree(cmd); |
| 2752 | |
| 2753 | return rc; |
| 2754 | } |
| 2755 | |
| 2756 | /* |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 2757 | * CMD_RF_ANTENNA. |
| 2758 | */ |
| 2759 | struct mwl8k_cmd_rf_antenna { |
| 2760 | struct mwl8k_cmd_pkt header; |
| 2761 | __le16 antenna; |
| 2762 | __le16 mode; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2763 | } __packed; |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 2764 | |
| 2765 | #define MWL8K_RF_ANTENNA_RX 1 |
| 2766 | #define MWL8K_RF_ANTENNA_TX 2 |
| 2767 | |
| 2768 | static int |
| 2769 | mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask) |
| 2770 | { |
| 2771 | struct mwl8k_cmd_rf_antenna *cmd; |
| 2772 | int rc; |
| 2773 | |
| 2774 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2775 | if (cmd == NULL) |
| 2776 | return -ENOMEM; |
| 2777 | |
| 2778 | cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA); |
| 2779 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2780 | cmd->antenna = cpu_to_le16(antenna); |
| 2781 | cmd->mode = cpu_to_le16(mask); |
| 2782 | |
| 2783 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2784 | kfree(cmd); |
| 2785 | |
| 2786 | return rc; |
| 2787 | } |
| 2788 | |
| 2789 | /* |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 2790 | * CMD_SET_BEACON. |
| 2791 | */ |
| 2792 | struct mwl8k_cmd_set_beacon { |
| 2793 | struct mwl8k_cmd_pkt header; |
| 2794 | __le16 beacon_len; |
| 2795 | __u8 beacon[0]; |
| 2796 | }; |
| 2797 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 2798 | static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw, |
| 2799 | struct ieee80211_vif *vif, u8 *beacon, int len) |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 2800 | { |
| 2801 | struct mwl8k_cmd_set_beacon *cmd; |
| 2802 | int rc; |
| 2803 | |
| 2804 | cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL); |
| 2805 | if (cmd == NULL) |
| 2806 | return -ENOMEM; |
| 2807 | |
| 2808 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON); |
| 2809 | cmd->header.length = cpu_to_le16(sizeof(*cmd) + len); |
| 2810 | cmd->beacon_len = cpu_to_le16(len); |
| 2811 | memcpy(cmd->beacon, beacon, len); |
| 2812 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 2813 | rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 2814 | kfree(cmd); |
| 2815 | |
| 2816 | return rc; |
| 2817 | } |
| 2818 | |
| 2819 | /* |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2820 | * CMD_SET_PRE_SCAN. |
| 2821 | */ |
| 2822 | struct mwl8k_cmd_set_pre_scan { |
| 2823 | struct mwl8k_cmd_pkt header; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2824 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2825 | |
| 2826 | static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw) |
| 2827 | { |
| 2828 | struct mwl8k_cmd_set_pre_scan *cmd; |
| 2829 | int rc; |
| 2830 | |
| 2831 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2832 | if (cmd == NULL) |
| 2833 | return -ENOMEM; |
| 2834 | |
| 2835 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN); |
| 2836 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2837 | |
| 2838 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2839 | kfree(cmd); |
| 2840 | |
| 2841 | return rc; |
| 2842 | } |
| 2843 | |
| 2844 | /* |
| 2845 | * CMD_SET_POST_SCAN. |
| 2846 | */ |
| 2847 | struct mwl8k_cmd_set_post_scan { |
| 2848 | struct mwl8k_cmd_pkt header; |
| 2849 | __le32 isibss; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 2850 | __u8 bssid[ETH_ALEN]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2851 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2852 | |
| 2853 | static int |
Lennert Buytenhek | 0a11dfc | 2010-01-04 21:55:21 +0100 | [diff] [blame] | 2854 | mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2855 | { |
| 2856 | struct mwl8k_cmd_set_post_scan *cmd; |
| 2857 | int rc; |
| 2858 | |
| 2859 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2860 | if (cmd == NULL) |
| 2861 | return -ENOMEM; |
| 2862 | |
| 2863 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN); |
| 2864 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2865 | cmd->isibss = 0; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 2866 | memcpy(cmd->bssid, mac, ETH_ALEN); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2867 | |
| 2868 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2869 | kfree(cmd); |
| 2870 | |
| 2871 | return rc; |
| 2872 | } |
| 2873 | |
| 2874 | /* |
| 2875 | * CMD_SET_RF_CHANNEL. |
| 2876 | */ |
| 2877 | struct mwl8k_cmd_set_rf_channel { |
| 2878 | struct mwl8k_cmd_pkt header; |
| 2879 | __le16 action; |
| 2880 | __u8 current_channel; |
| 2881 | __le32 channel_flags; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2882 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2883 | |
| 2884 | static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw, |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 2885 | struct ieee80211_conf *conf) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2886 | { |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 2887 | struct ieee80211_channel *channel = conf->channel; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2888 | struct mwl8k_cmd_set_rf_channel *cmd; |
| 2889 | int rc; |
| 2890 | |
| 2891 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2892 | if (cmd == NULL) |
| 2893 | return -ENOMEM; |
| 2894 | |
| 2895 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL); |
| 2896 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2897 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
| 2898 | cmd->current_channel = channel->hw_value; |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 2899 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2900 | if (channel->band == IEEE80211_BAND_2GHZ) |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 2901 | cmd->channel_flags |= cpu_to_le32(0x00000001); |
Lennert Buytenhek | 42574ea | 2010-01-12 13:49:18 +0100 | [diff] [blame] | 2902 | else if (channel->band == IEEE80211_BAND_5GHZ) |
| 2903 | cmd->channel_flags |= cpu_to_le32(0x00000004); |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 2904 | |
| 2905 | if (conf->channel_type == NL80211_CHAN_NO_HT || |
| 2906 | conf->channel_type == NL80211_CHAN_HT20) |
| 2907 | cmd->channel_flags |= cpu_to_le32(0x00000080); |
| 2908 | else if (conf->channel_type == NL80211_CHAN_HT40MINUS) |
| 2909 | cmd->channel_flags |= cpu_to_le32(0x000001900); |
| 2910 | else if (conf->channel_type == NL80211_CHAN_HT40PLUS) |
| 2911 | cmd->channel_flags |= cpu_to_le32(0x000000900); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2912 | |
| 2913 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2914 | kfree(cmd); |
| 2915 | |
| 2916 | return rc; |
| 2917 | } |
| 2918 | |
| 2919 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2920 | * CMD_SET_AID. |
| 2921 | */ |
| 2922 | #define MWL8K_FRAME_PROT_DISABLED 0x00 |
| 2923 | #define MWL8K_FRAME_PROT_11G 0x07 |
| 2924 | #define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02 |
| 2925 | #define MWL8K_FRAME_PROT_11N_HT_ALL 0x06 |
| 2926 | |
| 2927 | struct mwl8k_cmd_update_set_aid { |
| 2928 | struct mwl8k_cmd_pkt header; |
| 2929 | __le16 aid; |
| 2930 | |
| 2931 | /* AP's MAC address (BSSID) */ |
| 2932 | __u8 bssid[ETH_ALEN]; |
| 2933 | __le16 protection_mode; |
| 2934 | __u8 supp_rates[14]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 2935 | } __packed; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2936 | |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 2937 | static void legacy_rate_mask_to_array(u8 *rates, u32 mask) |
| 2938 | { |
| 2939 | int i; |
| 2940 | int j; |
| 2941 | |
| 2942 | /* |
| 2943 | * Clear nonstandard rates 4 and 13. |
| 2944 | */ |
| 2945 | mask &= 0x1fef; |
| 2946 | |
| 2947 | for (i = 0, j = 0; i < 14; i++) { |
| 2948 | if (mask & (1 << i)) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2949 | rates[j++] = mwl8k_rates_24[i].hw_value; |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 2950 | } |
| 2951 | } |
| 2952 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2953 | static int |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 2954 | mwl8k_cmd_set_aid(struct ieee80211_hw *hw, |
| 2955 | struct ieee80211_vif *vif, u32 legacy_rate_mask) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2956 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2957 | struct mwl8k_cmd_update_set_aid *cmd; |
| 2958 | u16 prot_mode; |
| 2959 | int rc; |
| 2960 | |
| 2961 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2962 | if (cmd == NULL) |
| 2963 | return -ENOMEM; |
| 2964 | |
| 2965 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID); |
| 2966 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 2967 | cmd->aid = cpu_to_le16(vif->bss_conf.aid); |
Lennert Buytenhek | 0a11dfc | 2010-01-04 21:55:21 +0100 | [diff] [blame] | 2968 | memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2969 | |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 2970 | if (vif->bss_conf.use_cts_prot) { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2971 | prot_mode = MWL8K_FRAME_PROT_11G; |
| 2972 | } else { |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 2973 | switch (vif->bss_conf.ht_operation_mode & |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2974 | IEEE80211_HT_OP_MODE_PROTECTION) { |
| 2975 | case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ: |
| 2976 | prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY; |
| 2977 | break; |
| 2978 | case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED: |
| 2979 | prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL; |
| 2980 | break; |
| 2981 | default: |
| 2982 | prot_mode = MWL8K_FRAME_PROT_DISABLED; |
| 2983 | break; |
| 2984 | } |
| 2985 | } |
| 2986 | cmd->protection_mode = cpu_to_le16(prot_mode); |
| 2987 | |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 2988 | legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2989 | |
| 2990 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2991 | kfree(cmd); |
| 2992 | |
| 2993 | return rc; |
| 2994 | } |
| 2995 | |
| 2996 | /* |
| 2997 | * CMD_SET_RATE. |
| 2998 | */ |
| 2999 | struct mwl8k_cmd_set_rate { |
| 3000 | struct mwl8k_cmd_pkt header; |
| 3001 | __u8 legacy_rates[14]; |
| 3002 | |
| 3003 | /* Bitmap for supported MCS codes. */ |
| 3004 | __u8 mcs_set[16]; |
| 3005 | __u8 reserved[16]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3006 | } __packed; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3007 | |
| 3008 | static int |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 3009 | mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3010 | u32 legacy_rate_mask, u8 *mcs_rates) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3011 | { |
| 3012 | struct mwl8k_cmd_set_rate *cmd; |
| 3013 | int rc; |
| 3014 | |
| 3015 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3016 | if (cmd == NULL) |
| 3017 | return -ENOMEM; |
| 3018 | |
| 3019 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE); |
| 3020 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 3021 | legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask); |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3022 | memcpy(cmd->mcs_set, mcs_rates, 16); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3023 | |
| 3024 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3025 | kfree(cmd); |
| 3026 | |
| 3027 | return rc; |
| 3028 | } |
| 3029 | |
| 3030 | /* |
| 3031 | * CMD_FINALIZE_JOIN. |
| 3032 | */ |
| 3033 | #define MWL8K_FJ_BEACON_MAXLEN 128 |
| 3034 | |
| 3035 | struct mwl8k_cmd_finalize_join { |
| 3036 | struct mwl8k_cmd_pkt header; |
| 3037 | __le32 sleep_interval; /* Number of beacon periods to sleep */ |
| 3038 | __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3039 | } __packed; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3040 | |
| 3041 | static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame, |
| 3042 | int framelen, int dtim) |
| 3043 | { |
| 3044 | struct mwl8k_cmd_finalize_join *cmd; |
| 3045 | struct ieee80211_mgmt *payload = frame; |
| 3046 | int payload_len; |
| 3047 | int rc; |
| 3048 | |
| 3049 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3050 | if (cmd == NULL) |
| 3051 | return -ENOMEM; |
| 3052 | |
| 3053 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN); |
| 3054 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3055 | cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1); |
| 3056 | |
| 3057 | payload_len = framelen - ieee80211_hdrlen(payload->frame_control); |
| 3058 | if (payload_len < 0) |
| 3059 | payload_len = 0; |
| 3060 | else if (payload_len > MWL8K_FJ_BEACON_MAXLEN) |
| 3061 | payload_len = MWL8K_FJ_BEACON_MAXLEN; |
| 3062 | |
| 3063 | memcpy(cmd->beacon_data, &payload->u.beacon, payload_len); |
| 3064 | |
| 3065 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3066 | kfree(cmd); |
| 3067 | |
| 3068 | return rc; |
| 3069 | } |
| 3070 | |
| 3071 | /* |
| 3072 | * CMD_SET_RTS_THRESHOLD. |
| 3073 | */ |
| 3074 | struct mwl8k_cmd_set_rts_threshold { |
| 3075 | struct mwl8k_cmd_pkt header; |
| 3076 | __le16 action; |
| 3077 | __le16 threshold; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3078 | } __packed; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3079 | |
Lennert Buytenhek | c2c2b12 | 2010-01-08 18:27:59 +0100 | [diff] [blame] | 3080 | static int |
| 3081 | mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3082 | { |
| 3083 | struct mwl8k_cmd_set_rts_threshold *cmd; |
| 3084 | int rc; |
| 3085 | |
| 3086 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3087 | if (cmd == NULL) |
| 3088 | return -ENOMEM; |
| 3089 | |
| 3090 | cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD); |
| 3091 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | c2c2b12 | 2010-01-08 18:27:59 +0100 | [diff] [blame] | 3092 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
| 3093 | cmd->threshold = cpu_to_le16(rts_thresh); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3094 | |
| 3095 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3096 | kfree(cmd); |
| 3097 | |
| 3098 | return rc; |
| 3099 | } |
| 3100 | |
| 3101 | /* |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3102 | * CMD_SET_SLOT. |
| 3103 | */ |
| 3104 | struct mwl8k_cmd_set_slot { |
| 3105 | struct mwl8k_cmd_pkt header; |
| 3106 | __le16 action; |
| 3107 | __u8 short_slot; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3108 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3109 | |
Lennert Buytenhek | 5539bb5 | 2009-07-16 16:06:53 +0200 | [diff] [blame] | 3110 | static int mwl8k_cmd_set_slot(struct ieee80211_hw *hw, bool short_slot_time) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3111 | { |
| 3112 | struct mwl8k_cmd_set_slot *cmd; |
| 3113 | int rc; |
| 3114 | |
| 3115 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3116 | if (cmd == NULL) |
| 3117 | return -ENOMEM; |
| 3118 | |
| 3119 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT); |
| 3120 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3121 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
Lennert Buytenhek | 5539bb5 | 2009-07-16 16:06:53 +0200 | [diff] [blame] | 3122 | cmd->short_slot = short_slot_time; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3123 | |
| 3124 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3125 | kfree(cmd); |
| 3126 | |
| 3127 | return rc; |
| 3128 | } |
| 3129 | |
| 3130 | /* |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3131 | * CMD_SET_EDCA_PARAMS. |
| 3132 | */ |
| 3133 | struct mwl8k_cmd_set_edca_params { |
| 3134 | struct mwl8k_cmd_pkt header; |
| 3135 | |
| 3136 | /* See MWL8K_SET_EDCA_XXX below */ |
| 3137 | __le16 action; |
| 3138 | |
| 3139 | /* TX opportunity in units of 32 us */ |
| 3140 | __le16 txop; |
| 3141 | |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 3142 | union { |
| 3143 | struct { |
| 3144 | /* Log exponent of max contention period: 0...15 */ |
| 3145 | __le32 log_cw_max; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3146 | |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 3147 | /* Log exponent of min contention period: 0...15 */ |
| 3148 | __le32 log_cw_min; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3149 | |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 3150 | /* Adaptive interframe spacing in units of 32us */ |
| 3151 | __u8 aifs; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3152 | |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 3153 | /* TX queue to configure */ |
| 3154 | __u8 txq; |
| 3155 | } ap; |
| 3156 | struct { |
| 3157 | /* Log exponent of max contention period: 0...15 */ |
| 3158 | __u8 log_cw_max; |
| 3159 | |
| 3160 | /* Log exponent of min contention period: 0...15 */ |
| 3161 | __u8 log_cw_min; |
| 3162 | |
| 3163 | /* Adaptive interframe spacing in units of 32us */ |
| 3164 | __u8 aifs; |
| 3165 | |
| 3166 | /* TX queue to configure */ |
| 3167 | __u8 txq; |
| 3168 | } sta; |
| 3169 | }; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3170 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3171 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3172 | #define MWL8K_SET_EDCA_CW 0x01 |
| 3173 | #define MWL8K_SET_EDCA_TXOP 0x02 |
| 3174 | #define MWL8K_SET_EDCA_AIFS 0x04 |
| 3175 | |
| 3176 | #define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \ |
| 3177 | MWL8K_SET_EDCA_TXOP | \ |
| 3178 | MWL8K_SET_EDCA_AIFS) |
| 3179 | |
| 3180 | static int |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3181 | mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum, |
| 3182 | __u16 cw_min, __u16 cw_max, |
| 3183 | __u8 aifs, __u16 txop) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3184 | { |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 3185 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3186 | struct mwl8k_cmd_set_edca_params *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3187 | int rc; |
| 3188 | |
| 3189 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3190 | if (cmd == NULL) |
| 3191 | return -ENOMEM; |
| 3192 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3193 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS); |
| 3194 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3195 | cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL); |
| 3196 | cmd->txop = cpu_to_le16(txop); |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 3197 | if (priv->ap_fw) { |
| 3198 | cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1)); |
| 3199 | cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1)); |
| 3200 | cmd->ap.aifs = aifs; |
| 3201 | cmd->ap.txq = qnum; |
| 3202 | } else { |
| 3203 | cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1); |
| 3204 | cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1); |
| 3205 | cmd->sta.aifs = aifs; |
| 3206 | cmd->sta.txq = qnum; |
| 3207 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3208 | |
| 3209 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3210 | kfree(cmd); |
| 3211 | |
| 3212 | return rc; |
| 3213 | } |
| 3214 | |
| 3215 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3216 | * CMD_SET_WMM_MODE. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3217 | */ |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3218 | struct mwl8k_cmd_set_wmm_mode { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3219 | struct mwl8k_cmd_pkt header; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3220 | __le16 action; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3221 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3222 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3223 | static int mwl8k_cmd_set_wmm_mode(struct ieee80211_hw *hw, bool enable) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3224 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3225 | struct mwl8k_priv *priv = hw->priv; |
| 3226 | struct mwl8k_cmd_set_wmm_mode *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3227 | int rc; |
| 3228 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3229 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3230 | if (cmd == NULL) |
| 3231 | return -ENOMEM; |
| 3232 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3233 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3234 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3235 | cmd->action = cpu_to_le16(!!enable); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3236 | |
| 3237 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3238 | kfree(cmd); |
Lennert Buytenhek | 16cec43 | 2009-11-30 18:14:23 +0100 | [diff] [blame] | 3239 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3240 | if (!rc) |
| 3241 | priv->wmm_enabled = enable; |
| 3242 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3243 | return rc; |
| 3244 | } |
| 3245 | |
| 3246 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3247 | * CMD_MIMO_CONFIG. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3248 | */ |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3249 | struct mwl8k_cmd_mimo_config { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3250 | struct mwl8k_cmd_pkt header; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3251 | __le32 action; |
| 3252 | __u8 rx_antenna_map; |
| 3253 | __u8 tx_antenna_map; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3254 | } __packed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3255 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3256 | static int mwl8k_cmd_mimo_config(struct ieee80211_hw *hw, __u8 rx, __u8 tx) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3257 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3258 | struct mwl8k_cmd_mimo_config *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3259 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3260 | |
| 3261 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3262 | if (cmd == NULL) |
| 3263 | return -ENOMEM; |
| 3264 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3265 | cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3266 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3267 | cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET); |
| 3268 | cmd->rx_antenna_map = rx; |
| 3269 | cmd->tx_antenna_map = tx; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3270 | |
| 3271 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3272 | kfree(cmd); |
| 3273 | |
| 3274 | return rc; |
| 3275 | } |
| 3276 | |
| 3277 | /* |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 3278 | * CMD_USE_FIXED_RATE (STA version). |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3279 | */ |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 3280 | struct mwl8k_cmd_use_fixed_rate_sta { |
| 3281 | struct mwl8k_cmd_pkt header; |
| 3282 | __le32 action; |
| 3283 | __le32 allow_rate_drop; |
| 3284 | __le32 num_rates; |
| 3285 | struct { |
| 3286 | __le32 is_ht_rate; |
| 3287 | __le32 enable_retry; |
| 3288 | __le32 rate; |
| 3289 | __le32 retry_count; |
| 3290 | } rate_entry[8]; |
| 3291 | __le32 rate_type; |
| 3292 | __le32 reserved1; |
| 3293 | __le32 reserved2; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3294 | } __packed; |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 3295 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3296 | #define MWL8K_USE_AUTO_RATE 0x0002 |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 3297 | #define MWL8K_UCAST_RATE 0 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3298 | |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 3299 | static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3300 | { |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 3301 | struct mwl8k_cmd_use_fixed_rate_sta *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3302 | int rc; |
| 3303 | |
| 3304 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3305 | if (cmd == NULL) |
| 3306 | return -ENOMEM; |
| 3307 | |
| 3308 | cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE); |
| 3309 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 3310 | cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE); |
| 3311 | cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3312 | |
| 3313 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3314 | kfree(cmd); |
| 3315 | |
| 3316 | return rc; |
| 3317 | } |
| 3318 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3319 | /* |
Lennert Buytenhek | 088aab8 | 2010-01-08 18:30:36 +0100 | [diff] [blame] | 3320 | * CMD_USE_FIXED_RATE (AP version). |
| 3321 | */ |
| 3322 | struct mwl8k_cmd_use_fixed_rate_ap { |
| 3323 | struct mwl8k_cmd_pkt header; |
| 3324 | __le32 action; |
| 3325 | __le32 allow_rate_drop; |
| 3326 | __le32 num_rates; |
| 3327 | struct mwl8k_rate_entry_ap { |
| 3328 | __le32 is_ht_rate; |
| 3329 | __le32 enable_retry; |
| 3330 | __le32 rate; |
| 3331 | __le32 retry_count; |
| 3332 | } rate_entry[4]; |
| 3333 | u8 multicast_rate; |
| 3334 | u8 multicast_rate_type; |
| 3335 | u8 management_rate; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3336 | } __packed; |
Lennert Buytenhek | 088aab8 | 2010-01-08 18:30:36 +0100 | [diff] [blame] | 3337 | |
| 3338 | static int |
| 3339 | mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt) |
| 3340 | { |
| 3341 | struct mwl8k_cmd_use_fixed_rate_ap *cmd; |
| 3342 | int rc; |
| 3343 | |
| 3344 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3345 | if (cmd == NULL) |
| 3346 | return -ENOMEM; |
| 3347 | |
| 3348 | cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE); |
| 3349 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3350 | cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE); |
| 3351 | cmd->multicast_rate = mcast; |
| 3352 | cmd->management_rate = mgmt; |
| 3353 | |
| 3354 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3355 | kfree(cmd); |
| 3356 | |
| 3357 | return rc; |
| 3358 | } |
| 3359 | |
| 3360 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3361 | * CMD_ENABLE_SNIFFER. |
| 3362 | */ |
| 3363 | struct mwl8k_cmd_enable_sniffer { |
| 3364 | struct mwl8k_cmd_pkt header; |
| 3365 | __le32 action; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3366 | } __packed; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3367 | |
| 3368 | static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable) |
| 3369 | { |
| 3370 | struct mwl8k_cmd_enable_sniffer *cmd; |
| 3371 | int rc; |
| 3372 | |
| 3373 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3374 | if (cmd == NULL) |
| 3375 | return -ENOMEM; |
| 3376 | |
| 3377 | cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER); |
| 3378 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3379 | cmd->action = cpu_to_le32(!!enable); |
| 3380 | |
| 3381 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3382 | kfree(cmd); |
| 3383 | |
| 3384 | return rc; |
| 3385 | } |
| 3386 | |
| 3387 | /* |
| 3388 | * CMD_SET_MAC_ADDR. |
| 3389 | */ |
| 3390 | struct mwl8k_cmd_set_mac_addr { |
| 3391 | struct mwl8k_cmd_pkt header; |
| 3392 | union { |
| 3393 | struct { |
| 3394 | __le16 mac_type; |
| 3395 | __u8 mac_addr[ETH_ALEN]; |
| 3396 | } mbss; |
| 3397 | __u8 mac_addr[ETH_ALEN]; |
| 3398 | }; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3399 | } __packed; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3400 | |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 3401 | #define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0 |
| 3402 | #define MWL8K_MAC_TYPE_SECONDARY_CLIENT 1 |
| 3403 | #define MWL8K_MAC_TYPE_PRIMARY_AP 2 |
| 3404 | #define MWL8K_MAC_TYPE_SECONDARY_AP 3 |
Lennert Buytenhek | a9e00b1 | 2010-01-08 18:31:30 +0100 | [diff] [blame] | 3405 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 3406 | static int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw, |
| 3407 | struct ieee80211_vif *vif, u8 *mac) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3408 | { |
| 3409 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 3410 | struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3411 | struct mwl8k_cmd_set_mac_addr *cmd; |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 3412 | int mac_type; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3413 | int rc; |
| 3414 | |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 3415 | mac_type = MWL8K_MAC_TYPE_PRIMARY_AP; |
| 3416 | if (vif != NULL && vif->type == NL80211_IFTYPE_STATION) { |
| 3417 | if (mwl8k_vif->macid + 1 == ffs(priv->sta_macids_supported)) |
| 3418 | mac_type = MWL8K_MAC_TYPE_PRIMARY_CLIENT; |
| 3419 | else |
| 3420 | mac_type = MWL8K_MAC_TYPE_SECONDARY_CLIENT; |
| 3421 | } else if (vif != NULL && vif->type == NL80211_IFTYPE_AP) { |
| 3422 | if (mwl8k_vif->macid + 1 == ffs(priv->ap_macids_supported)) |
| 3423 | mac_type = MWL8K_MAC_TYPE_PRIMARY_AP; |
| 3424 | else |
| 3425 | mac_type = MWL8K_MAC_TYPE_SECONDARY_AP; |
| 3426 | } |
| 3427 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3428 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3429 | if (cmd == NULL) |
| 3430 | return -ENOMEM; |
| 3431 | |
| 3432 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR); |
| 3433 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3434 | if (priv->ap_fw) { |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 3435 | cmd->mbss.mac_type = cpu_to_le16(mac_type); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3436 | memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN); |
| 3437 | } else { |
| 3438 | memcpy(cmd->mac_addr, mac, ETH_ALEN); |
| 3439 | } |
| 3440 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 3441 | rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3442 | kfree(cmd); |
| 3443 | |
| 3444 | return rc; |
| 3445 | } |
| 3446 | |
| 3447 | /* |
| 3448 | * CMD_SET_RATEADAPT_MODE. |
| 3449 | */ |
| 3450 | struct mwl8k_cmd_set_rate_adapt_mode { |
| 3451 | struct mwl8k_cmd_pkt header; |
| 3452 | __le16 action; |
| 3453 | __le16 mode; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3454 | } __packed; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3455 | |
| 3456 | static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode) |
| 3457 | { |
| 3458 | struct mwl8k_cmd_set_rate_adapt_mode *cmd; |
| 3459 | int rc; |
| 3460 | |
| 3461 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3462 | if (cmd == NULL) |
| 3463 | return -ENOMEM; |
| 3464 | |
| 3465 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE); |
| 3466 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3467 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
| 3468 | cmd->mode = cpu_to_le16(mode); |
| 3469 | |
| 3470 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3471 | kfree(cmd); |
| 3472 | |
| 3473 | return rc; |
| 3474 | } |
| 3475 | |
| 3476 | /* |
Nishant Sarmukadam | 3aefc37 | 2011-03-17 11:58:47 -0700 | [diff] [blame] | 3477 | * CMD_GET_WATCHDOG_BITMAP. |
| 3478 | */ |
| 3479 | struct mwl8k_cmd_get_watchdog_bitmap { |
| 3480 | struct mwl8k_cmd_pkt header; |
| 3481 | u8 bitmap; |
| 3482 | } __packed; |
| 3483 | |
| 3484 | static int mwl8k_cmd_get_watchdog_bitmap(struct ieee80211_hw *hw, u8 *bitmap) |
| 3485 | { |
| 3486 | struct mwl8k_cmd_get_watchdog_bitmap *cmd; |
| 3487 | int rc; |
| 3488 | |
| 3489 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3490 | if (cmd == NULL) |
| 3491 | return -ENOMEM; |
| 3492 | |
| 3493 | cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_WATCHDOG_BITMAP); |
| 3494 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3495 | |
| 3496 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3497 | if (!rc) |
| 3498 | *bitmap = cmd->bitmap; |
| 3499 | |
| 3500 | kfree(cmd); |
| 3501 | |
| 3502 | return rc; |
| 3503 | } |
| 3504 | |
| 3505 | #define INVALID_BA 0xAA |
| 3506 | static void mwl8k_watchdog_ba_events(struct work_struct *work) |
| 3507 | { |
| 3508 | int rc; |
| 3509 | u8 bitmap = 0, stream_index; |
| 3510 | struct mwl8k_ampdu_stream *streams; |
| 3511 | struct mwl8k_priv *priv = |
| 3512 | container_of(work, struct mwl8k_priv, watchdog_ba_handle); |
| 3513 | |
| 3514 | rc = mwl8k_cmd_get_watchdog_bitmap(priv->hw, &bitmap); |
| 3515 | if (rc) |
| 3516 | return; |
| 3517 | |
| 3518 | if (bitmap == INVALID_BA) |
| 3519 | return; |
| 3520 | |
| 3521 | /* the bitmap is the hw queue number. Map it to the ampdu queue. */ |
| 3522 | stream_index = bitmap - MWL8K_TX_WMM_QUEUES; |
| 3523 | |
| 3524 | BUG_ON(stream_index >= priv->num_ampdu_queues); |
| 3525 | |
| 3526 | streams = &priv->ampdu[stream_index]; |
| 3527 | |
| 3528 | if (streams->state == AMPDU_STREAM_ACTIVE) |
| 3529 | ieee80211_stop_tx_ba_session(streams->sta, streams->tid); |
| 3530 | |
| 3531 | return; |
| 3532 | } |
| 3533 | |
| 3534 | |
| 3535 | /* |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3536 | * CMD_BSS_START. |
| 3537 | */ |
| 3538 | struct mwl8k_cmd_bss_start { |
| 3539 | struct mwl8k_cmd_pkt header; |
| 3540 | __le32 enable; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3541 | } __packed; |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3542 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 3543 | static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw, |
| 3544 | struct ieee80211_vif *vif, int enable) |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3545 | { |
| 3546 | struct mwl8k_cmd_bss_start *cmd; |
| 3547 | int rc; |
| 3548 | |
| 3549 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3550 | if (cmd == NULL) |
| 3551 | return -ENOMEM; |
| 3552 | |
| 3553 | cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START); |
| 3554 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3555 | cmd->enable = cpu_to_le32(enable); |
| 3556 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 3557 | rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3558 | kfree(cmd); |
| 3559 | |
| 3560 | return rc; |
| 3561 | } |
| 3562 | |
| 3563 | /* |
Nishant Sarmukadam | 5faa1af | 2011-03-17 11:58:43 -0700 | [diff] [blame] | 3564 | * CMD_BASTREAM. |
| 3565 | */ |
| 3566 | |
| 3567 | /* |
| 3568 | * UPSTREAM is tx direction |
| 3569 | */ |
| 3570 | #define BASTREAM_FLAG_DIRECTION_UPSTREAM 0x00 |
| 3571 | #define BASTREAM_FLAG_IMMEDIATE_TYPE 0x01 |
| 3572 | |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 3573 | enum ba_stream_action_type { |
Nishant Sarmukadam | 5faa1af | 2011-03-17 11:58:43 -0700 | [diff] [blame] | 3574 | MWL8K_BA_CREATE, |
| 3575 | MWL8K_BA_UPDATE, |
| 3576 | MWL8K_BA_DESTROY, |
| 3577 | MWL8K_BA_FLUSH, |
| 3578 | MWL8K_BA_CHECK, |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 3579 | }; |
Nishant Sarmukadam | 5faa1af | 2011-03-17 11:58:43 -0700 | [diff] [blame] | 3580 | |
| 3581 | |
| 3582 | struct mwl8k_create_ba_stream { |
| 3583 | __le32 flags; |
| 3584 | __le32 idle_thrs; |
| 3585 | __le32 bar_thrs; |
| 3586 | __le32 window_size; |
| 3587 | u8 peer_mac_addr[6]; |
| 3588 | u8 dialog_token; |
| 3589 | u8 tid; |
| 3590 | u8 queue_id; |
| 3591 | u8 param_info; |
| 3592 | __le32 ba_context; |
| 3593 | u8 reset_seq_no_flag; |
| 3594 | __le16 curr_seq_no; |
| 3595 | u8 sta_src_mac_addr[6]; |
| 3596 | } __packed; |
| 3597 | |
| 3598 | struct mwl8k_destroy_ba_stream { |
| 3599 | __le32 flags; |
| 3600 | __le32 ba_context; |
| 3601 | } __packed; |
| 3602 | |
| 3603 | struct mwl8k_cmd_bastream { |
| 3604 | struct mwl8k_cmd_pkt header; |
| 3605 | __le32 action; |
| 3606 | union { |
| 3607 | struct mwl8k_create_ba_stream create_params; |
| 3608 | struct mwl8k_destroy_ba_stream destroy_params; |
| 3609 | }; |
| 3610 | } __packed; |
| 3611 | |
| 3612 | static int |
| 3613 | mwl8k_check_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream) |
| 3614 | { |
| 3615 | struct mwl8k_cmd_bastream *cmd; |
| 3616 | int rc; |
| 3617 | |
| 3618 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3619 | if (cmd == NULL) |
| 3620 | return -ENOMEM; |
| 3621 | |
| 3622 | cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM); |
| 3623 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3624 | |
| 3625 | cmd->action = cpu_to_le32(MWL8K_BA_CHECK); |
| 3626 | |
| 3627 | cmd->create_params.queue_id = stream->idx; |
| 3628 | memcpy(&cmd->create_params.peer_mac_addr[0], stream->sta->addr, |
| 3629 | ETH_ALEN); |
| 3630 | cmd->create_params.tid = stream->tid; |
| 3631 | |
| 3632 | cmd->create_params.flags = |
| 3633 | cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE) | |
| 3634 | cpu_to_le32(BASTREAM_FLAG_DIRECTION_UPSTREAM); |
| 3635 | |
| 3636 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3637 | |
| 3638 | kfree(cmd); |
| 3639 | |
| 3640 | return rc; |
| 3641 | } |
| 3642 | |
| 3643 | static int |
| 3644 | mwl8k_create_ba(struct ieee80211_hw *hw, struct mwl8k_ampdu_stream *stream, |
| 3645 | u8 buf_size) |
| 3646 | { |
| 3647 | struct mwl8k_cmd_bastream *cmd; |
| 3648 | int rc; |
| 3649 | |
| 3650 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3651 | if (cmd == NULL) |
| 3652 | return -ENOMEM; |
| 3653 | |
| 3654 | |
| 3655 | cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM); |
| 3656 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3657 | |
| 3658 | cmd->action = cpu_to_le32(MWL8K_BA_CREATE); |
| 3659 | |
| 3660 | cmd->create_params.bar_thrs = cpu_to_le32((u32)buf_size); |
| 3661 | cmd->create_params.window_size = cpu_to_le32((u32)buf_size); |
| 3662 | cmd->create_params.queue_id = stream->idx; |
| 3663 | |
| 3664 | memcpy(cmd->create_params.peer_mac_addr, stream->sta->addr, ETH_ALEN); |
| 3665 | cmd->create_params.tid = stream->tid; |
| 3666 | cmd->create_params.curr_seq_no = cpu_to_le16(0); |
| 3667 | cmd->create_params.reset_seq_no_flag = 1; |
| 3668 | |
| 3669 | cmd->create_params.param_info = |
| 3670 | (stream->sta->ht_cap.ampdu_factor & |
| 3671 | IEEE80211_HT_AMPDU_PARM_FACTOR) | |
| 3672 | ((stream->sta->ht_cap.ampdu_density << 2) & |
| 3673 | IEEE80211_HT_AMPDU_PARM_DENSITY); |
| 3674 | |
| 3675 | cmd->create_params.flags = |
| 3676 | cpu_to_le32(BASTREAM_FLAG_IMMEDIATE_TYPE | |
| 3677 | BASTREAM_FLAG_DIRECTION_UPSTREAM); |
| 3678 | |
| 3679 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3680 | |
| 3681 | wiphy_debug(hw->wiphy, "Created a BA stream for %pM : tid %d\n", |
| 3682 | stream->sta->addr, stream->tid); |
| 3683 | kfree(cmd); |
| 3684 | |
| 3685 | return rc; |
| 3686 | } |
| 3687 | |
| 3688 | static void mwl8k_destroy_ba(struct ieee80211_hw *hw, |
| 3689 | struct mwl8k_ampdu_stream *stream) |
| 3690 | { |
| 3691 | struct mwl8k_cmd_bastream *cmd; |
| 3692 | |
| 3693 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3694 | if (cmd == NULL) |
| 3695 | return; |
| 3696 | |
| 3697 | cmd->header.code = cpu_to_le16(MWL8K_CMD_BASTREAM); |
| 3698 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3699 | cmd->action = cpu_to_le32(MWL8K_BA_DESTROY); |
| 3700 | |
| 3701 | cmd->destroy_params.ba_context = cpu_to_le32(stream->idx); |
| 3702 | mwl8k_post_cmd(hw, &cmd->header); |
| 3703 | |
| 3704 | wiphy_debug(hw->wiphy, "Deleted BA stream index %d\n", stream->idx); |
| 3705 | |
| 3706 | kfree(cmd); |
| 3707 | } |
| 3708 | |
| 3709 | /* |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 3710 | * CMD_SET_NEW_STN. |
| 3711 | */ |
| 3712 | struct mwl8k_cmd_set_new_stn { |
| 3713 | struct mwl8k_cmd_pkt header; |
| 3714 | __le16 aid; |
| 3715 | __u8 mac_addr[6]; |
| 3716 | __le16 stn_id; |
| 3717 | __le16 action; |
| 3718 | __le16 rsvd; |
| 3719 | __le32 legacy_rates; |
| 3720 | __u8 ht_rates[4]; |
| 3721 | __le16 cap_info; |
| 3722 | __le16 ht_capabilities_info; |
| 3723 | __u8 mac_ht_param_info; |
| 3724 | __u8 rev; |
| 3725 | __u8 control_channel; |
| 3726 | __u8 add_channel; |
| 3727 | __le16 op_mode; |
| 3728 | __le16 stbc; |
| 3729 | __u8 add_qos_info; |
| 3730 | __u8 is_qos_sta; |
| 3731 | __le32 fw_sta_ptr; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 3732 | } __packed; |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 3733 | |
| 3734 | #define MWL8K_STA_ACTION_ADD 0 |
| 3735 | #define MWL8K_STA_ACTION_REMOVE 2 |
| 3736 | |
| 3737 | static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw, |
| 3738 | struct ieee80211_vif *vif, |
| 3739 | struct ieee80211_sta *sta) |
| 3740 | { |
| 3741 | struct mwl8k_cmd_set_new_stn *cmd; |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 3742 | u32 rates; |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 3743 | int rc; |
| 3744 | |
| 3745 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3746 | if (cmd == NULL) |
| 3747 | return -ENOMEM; |
| 3748 | |
| 3749 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN); |
| 3750 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3751 | cmd->aid = cpu_to_le16(sta->aid); |
| 3752 | memcpy(cmd->mac_addr, sta->addr, ETH_ALEN); |
| 3753 | cmd->stn_id = cpu_to_le16(sta->aid); |
| 3754 | cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD); |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 3755 | if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) |
| 3756 | rates = sta->supp_rates[IEEE80211_BAND_2GHZ]; |
| 3757 | else |
| 3758 | rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5; |
| 3759 | cmd->legacy_rates = cpu_to_le32(rates); |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 3760 | if (sta->ht_cap.ht_supported) { |
| 3761 | cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0]; |
| 3762 | cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1]; |
| 3763 | cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2]; |
| 3764 | cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3]; |
| 3765 | cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap); |
| 3766 | cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) | |
| 3767 | ((sta->ht_cap.ampdu_density & 7) << 2); |
| 3768 | cmd->is_qos_sta = 1; |
| 3769 | } |
| 3770 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 3771 | rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header); |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 3772 | kfree(cmd); |
| 3773 | |
| 3774 | return rc; |
| 3775 | } |
| 3776 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3777 | static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw, |
| 3778 | struct ieee80211_vif *vif) |
| 3779 | { |
| 3780 | struct mwl8k_cmd_set_new_stn *cmd; |
| 3781 | int rc; |
| 3782 | |
| 3783 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3784 | if (cmd == NULL) |
| 3785 | return -ENOMEM; |
| 3786 | |
| 3787 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN); |
| 3788 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3789 | memcpy(cmd->mac_addr, vif->addr, ETH_ALEN); |
| 3790 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 3791 | rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3792 | kfree(cmd); |
| 3793 | |
| 3794 | return rc; |
| 3795 | } |
| 3796 | |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 3797 | static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw, |
| 3798 | struct ieee80211_vif *vif, u8 *addr) |
| 3799 | { |
| 3800 | struct mwl8k_cmd_set_new_stn *cmd; |
| 3801 | int rc; |
| 3802 | |
| 3803 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3804 | if (cmd == NULL) |
| 3805 | return -ENOMEM; |
| 3806 | |
| 3807 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN); |
| 3808 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3809 | memcpy(cmd->mac_addr, addr, ETH_ALEN); |
| 3810 | cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE); |
| 3811 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 3812 | rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header); |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 3813 | kfree(cmd); |
| 3814 | |
| 3815 | return rc; |
| 3816 | } |
| 3817 | |
| 3818 | /* |
Nishant Sarmukadam | fcdc403 | 2010-12-30 11:23:34 -0800 | [diff] [blame] | 3819 | * CMD_UPDATE_ENCRYPTION. |
| 3820 | */ |
| 3821 | |
| 3822 | #define MAX_ENCR_KEY_LENGTH 16 |
| 3823 | #define MIC_KEY_LENGTH 8 |
| 3824 | |
| 3825 | struct mwl8k_cmd_update_encryption { |
| 3826 | struct mwl8k_cmd_pkt header; |
| 3827 | |
| 3828 | __le32 action; |
| 3829 | __le32 reserved; |
| 3830 | __u8 mac_addr[6]; |
| 3831 | __u8 encr_type; |
| 3832 | |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 3833 | } __packed; |
Nishant Sarmukadam | fcdc403 | 2010-12-30 11:23:34 -0800 | [diff] [blame] | 3834 | |
| 3835 | struct mwl8k_cmd_set_key { |
| 3836 | struct mwl8k_cmd_pkt header; |
| 3837 | |
| 3838 | __le32 action; |
| 3839 | __le32 reserved; |
| 3840 | __le16 length; |
| 3841 | __le16 key_type_id; |
| 3842 | __le32 key_info; |
| 3843 | __le32 key_id; |
| 3844 | __le16 key_len; |
| 3845 | __u8 key_material[MAX_ENCR_KEY_LENGTH]; |
| 3846 | __u8 tkip_tx_mic_key[MIC_KEY_LENGTH]; |
| 3847 | __u8 tkip_rx_mic_key[MIC_KEY_LENGTH]; |
| 3848 | __le16 tkip_rsc_low; |
| 3849 | __le32 tkip_rsc_high; |
| 3850 | __le16 tkip_tsc_low; |
| 3851 | __le32 tkip_tsc_high; |
| 3852 | __u8 mac_addr[6]; |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 3853 | } __packed; |
Nishant Sarmukadam | fcdc403 | 2010-12-30 11:23:34 -0800 | [diff] [blame] | 3854 | |
| 3855 | enum { |
| 3856 | MWL8K_ENCR_ENABLE, |
| 3857 | MWL8K_ENCR_SET_KEY, |
| 3858 | MWL8K_ENCR_REMOVE_KEY, |
| 3859 | MWL8K_ENCR_SET_GROUP_KEY, |
| 3860 | }; |
| 3861 | |
| 3862 | #define MWL8K_UPDATE_ENCRYPTION_TYPE_WEP 0 |
| 3863 | #define MWL8K_UPDATE_ENCRYPTION_TYPE_DISABLE 1 |
| 3864 | #define MWL8K_UPDATE_ENCRYPTION_TYPE_TKIP 4 |
| 3865 | #define MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED 7 |
| 3866 | #define MWL8K_UPDATE_ENCRYPTION_TYPE_AES 8 |
| 3867 | |
| 3868 | enum { |
| 3869 | MWL8K_ALG_WEP, |
| 3870 | MWL8K_ALG_TKIP, |
| 3871 | MWL8K_ALG_CCMP, |
| 3872 | }; |
| 3873 | |
| 3874 | #define MWL8K_KEY_FLAG_TXGROUPKEY 0x00000004 |
| 3875 | #define MWL8K_KEY_FLAG_PAIRWISE 0x00000008 |
| 3876 | #define MWL8K_KEY_FLAG_TSC_VALID 0x00000040 |
| 3877 | #define MWL8K_KEY_FLAG_WEP_TXKEY 0x01000000 |
| 3878 | #define MWL8K_KEY_FLAG_MICKEY_VALID 0x02000000 |
| 3879 | |
| 3880 | static int mwl8k_cmd_update_encryption_enable(struct ieee80211_hw *hw, |
| 3881 | struct ieee80211_vif *vif, |
| 3882 | u8 *addr, |
| 3883 | u8 encr_type) |
| 3884 | { |
| 3885 | struct mwl8k_cmd_update_encryption *cmd; |
| 3886 | int rc; |
| 3887 | |
| 3888 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3889 | if (cmd == NULL) |
| 3890 | return -ENOMEM; |
| 3891 | |
| 3892 | cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION); |
| 3893 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3894 | cmd->action = cpu_to_le32(MWL8K_ENCR_ENABLE); |
| 3895 | memcpy(cmd->mac_addr, addr, ETH_ALEN); |
| 3896 | cmd->encr_type = encr_type; |
| 3897 | |
| 3898 | rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header); |
| 3899 | kfree(cmd); |
| 3900 | |
| 3901 | return rc; |
| 3902 | } |
| 3903 | |
| 3904 | static int mwl8k_encryption_set_cmd_info(struct mwl8k_cmd_set_key *cmd, |
| 3905 | u8 *addr, |
| 3906 | struct ieee80211_key_conf *key) |
| 3907 | { |
| 3908 | cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_ENCRYPTION); |
| 3909 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3910 | cmd->length = cpu_to_le16(sizeof(*cmd) - |
| 3911 | offsetof(struct mwl8k_cmd_set_key, length)); |
| 3912 | cmd->key_id = cpu_to_le32(key->keyidx); |
| 3913 | cmd->key_len = cpu_to_le16(key->keylen); |
| 3914 | memcpy(cmd->mac_addr, addr, ETH_ALEN); |
| 3915 | |
| 3916 | switch (key->cipher) { |
| 3917 | case WLAN_CIPHER_SUITE_WEP40: |
| 3918 | case WLAN_CIPHER_SUITE_WEP104: |
| 3919 | cmd->key_type_id = cpu_to_le16(MWL8K_ALG_WEP); |
| 3920 | if (key->keyidx == 0) |
| 3921 | cmd->key_info = cpu_to_le32(MWL8K_KEY_FLAG_WEP_TXKEY); |
| 3922 | |
| 3923 | break; |
| 3924 | case WLAN_CIPHER_SUITE_TKIP: |
| 3925 | cmd->key_type_id = cpu_to_le16(MWL8K_ALG_TKIP); |
| 3926 | cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) |
| 3927 | ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE) |
| 3928 | : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY); |
| 3929 | cmd->key_info |= cpu_to_le32(MWL8K_KEY_FLAG_MICKEY_VALID |
| 3930 | | MWL8K_KEY_FLAG_TSC_VALID); |
| 3931 | break; |
| 3932 | case WLAN_CIPHER_SUITE_CCMP: |
| 3933 | cmd->key_type_id = cpu_to_le16(MWL8K_ALG_CCMP); |
| 3934 | cmd->key_info = (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) |
| 3935 | ? cpu_to_le32(MWL8K_KEY_FLAG_PAIRWISE) |
| 3936 | : cpu_to_le32(MWL8K_KEY_FLAG_TXGROUPKEY); |
| 3937 | break; |
| 3938 | default: |
| 3939 | return -ENOTSUPP; |
| 3940 | } |
| 3941 | |
| 3942 | return 0; |
| 3943 | } |
| 3944 | |
| 3945 | static int mwl8k_cmd_encryption_set_key(struct ieee80211_hw *hw, |
| 3946 | struct ieee80211_vif *vif, |
| 3947 | u8 *addr, |
| 3948 | struct ieee80211_key_conf *key) |
| 3949 | { |
| 3950 | struct mwl8k_cmd_set_key *cmd; |
| 3951 | int rc; |
| 3952 | int keymlen; |
| 3953 | u32 action; |
| 3954 | u8 idx; |
| 3955 | struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif); |
| 3956 | |
| 3957 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3958 | if (cmd == NULL) |
| 3959 | return -ENOMEM; |
| 3960 | |
| 3961 | rc = mwl8k_encryption_set_cmd_info(cmd, addr, key); |
| 3962 | if (rc < 0) |
| 3963 | goto done; |
| 3964 | |
| 3965 | idx = key->keyidx; |
| 3966 | |
| 3967 | if (key->flags & IEEE80211_KEY_FLAG_PAIRWISE) |
| 3968 | action = MWL8K_ENCR_SET_KEY; |
| 3969 | else |
| 3970 | action = MWL8K_ENCR_SET_GROUP_KEY; |
| 3971 | |
| 3972 | switch (key->cipher) { |
| 3973 | case WLAN_CIPHER_SUITE_WEP40: |
| 3974 | case WLAN_CIPHER_SUITE_WEP104: |
| 3975 | if (!mwl8k_vif->wep_key_conf[idx].enabled) { |
| 3976 | memcpy(mwl8k_vif->wep_key_conf[idx].key, key, |
| 3977 | sizeof(*key) + key->keylen); |
| 3978 | mwl8k_vif->wep_key_conf[idx].enabled = 1; |
| 3979 | } |
| 3980 | |
| 3981 | keymlen = 0; |
| 3982 | action = MWL8K_ENCR_SET_KEY; |
| 3983 | break; |
| 3984 | case WLAN_CIPHER_SUITE_TKIP: |
| 3985 | keymlen = MAX_ENCR_KEY_LENGTH + 2 * MIC_KEY_LENGTH; |
| 3986 | break; |
| 3987 | case WLAN_CIPHER_SUITE_CCMP: |
| 3988 | keymlen = key->keylen; |
| 3989 | break; |
| 3990 | default: |
| 3991 | rc = -ENOTSUPP; |
| 3992 | goto done; |
| 3993 | } |
| 3994 | |
| 3995 | memcpy(cmd->key_material, key->key, keymlen); |
| 3996 | cmd->action = cpu_to_le32(action); |
| 3997 | |
| 3998 | rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header); |
| 3999 | done: |
| 4000 | kfree(cmd); |
| 4001 | |
| 4002 | return rc; |
| 4003 | } |
| 4004 | |
| 4005 | static int mwl8k_cmd_encryption_remove_key(struct ieee80211_hw *hw, |
| 4006 | struct ieee80211_vif *vif, |
| 4007 | u8 *addr, |
| 4008 | struct ieee80211_key_conf *key) |
| 4009 | { |
| 4010 | struct mwl8k_cmd_set_key *cmd; |
| 4011 | int rc; |
| 4012 | struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif); |
| 4013 | |
| 4014 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 4015 | if (cmd == NULL) |
| 4016 | return -ENOMEM; |
| 4017 | |
| 4018 | rc = mwl8k_encryption_set_cmd_info(cmd, addr, key); |
| 4019 | if (rc < 0) |
| 4020 | goto done; |
| 4021 | |
| 4022 | if (key->cipher == WLAN_CIPHER_SUITE_WEP40 || |
| 4023 | WLAN_CIPHER_SUITE_WEP104) |
| 4024 | mwl8k_vif->wep_key_conf[key->keyidx].enabled = 0; |
| 4025 | |
| 4026 | cmd->action = cpu_to_le32(MWL8K_ENCR_REMOVE_KEY); |
| 4027 | |
| 4028 | rc = mwl8k_post_pervif_cmd(hw, vif, &cmd->header); |
| 4029 | done: |
| 4030 | kfree(cmd); |
| 4031 | |
| 4032 | return rc; |
| 4033 | } |
| 4034 | |
| 4035 | static int mwl8k_set_key(struct ieee80211_hw *hw, |
| 4036 | enum set_key_cmd cmd_param, |
| 4037 | struct ieee80211_vif *vif, |
| 4038 | struct ieee80211_sta *sta, |
| 4039 | struct ieee80211_key_conf *key) |
| 4040 | { |
| 4041 | int rc = 0; |
| 4042 | u8 encr_type; |
| 4043 | u8 *addr; |
| 4044 | struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif); |
| 4045 | |
| 4046 | if (vif->type == NL80211_IFTYPE_STATION) |
| 4047 | return -EOPNOTSUPP; |
| 4048 | |
| 4049 | if (sta == NULL) |
| 4050 | addr = hw->wiphy->perm_addr; |
| 4051 | else |
| 4052 | addr = sta->addr; |
| 4053 | |
| 4054 | if (cmd_param == SET_KEY) { |
| 4055 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 4056 | rc = mwl8k_cmd_encryption_set_key(hw, vif, addr, key); |
| 4057 | if (rc) |
| 4058 | goto out; |
| 4059 | |
| 4060 | if ((key->cipher == WLAN_CIPHER_SUITE_WEP40) |
| 4061 | || (key->cipher == WLAN_CIPHER_SUITE_WEP104)) |
| 4062 | encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_WEP; |
| 4063 | else |
| 4064 | encr_type = MWL8K_UPDATE_ENCRYPTION_TYPE_MIXED; |
| 4065 | |
| 4066 | rc = mwl8k_cmd_update_encryption_enable(hw, vif, addr, |
| 4067 | encr_type); |
| 4068 | if (rc) |
| 4069 | goto out; |
| 4070 | |
| 4071 | mwl8k_vif->is_hw_crypto_enabled = true; |
| 4072 | |
| 4073 | } else { |
| 4074 | rc = mwl8k_cmd_encryption_remove_key(hw, vif, addr, key); |
| 4075 | |
| 4076 | if (rc) |
| 4077 | goto out; |
| 4078 | |
| 4079 | mwl8k_vif->is_hw_crypto_enabled = false; |
| 4080 | |
| 4081 | } |
| 4082 | out: |
| 4083 | return rc; |
| 4084 | } |
| 4085 | |
| 4086 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4087 | * CMD_UPDATE_STADB. |
| 4088 | */ |
Lennert Buytenhek | 25d81b1 | 2010-01-04 21:54:41 +0100 | [diff] [blame] | 4089 | struct ewc_ht_info { |
| 4090 | __le16 control1; |
| 4091 | __le16 control2; |
| 4092 | __le16 control3; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 4093 | } __packed; |
Lennert Buytenhek | 25d81b1 | 2010-01-04 21:54:41 +0100 | [diff] [blame] | 4094 | |
| 4095 | struct peer_capability_info { |
| 4096 | /* Peer type - AP vs. STA. */ |
| 4097 | __u8 peer_type; |
| 4098 | |
| 4099 | /* Basic 802.11 capabilities from assoc resp. */ |
| 4100 | __le16 basic_caps; |
| 4101 | |
| 4102 | /* Set if peer supports 802.11n high throughput (HT). */ |
| 4103 | __u8 ht_support; |
| 4104 | |
| 4105 | /* Valid if HT is supported. */ |
| 4106 | __le16 ht_caps; |
| 4107 | __u8 extended_ht_caps; |
| 4108 | struct ewc_ht_info ewc_info; |
| 4109 | |
| 4110 | /* Legacy rate table. Intersection of our rates and peer rates. */ |
| 4111 | __u8 legacy_rates[12]; |
| 4112 | |
| 4113 | /* HT rate table. Intersection of our rates and peer rates. */ |
| 4114 | __u8 ht_rates[16]; |
| 4115 | __u8 pad[16]; |
| 4116 | |
| 4117 | /* If set, interoperability mode, no proprietary extensions. */ |
| 4118 | __u8 interop; |
| 4119 | __u8 pad2; |
| 4120 | __u8 station_id; |
| 4121 | __le16 amsdu_enabled; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 4122 | } __packed; |
Lennert Buytenhek | 25d81b1 | 2010-01-04 21:54:41 +0100 | [diff] [blame] | 4123 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4124 | struct mwl8k_cmd_update_stadb { |
| 4125 | struct mwl8k_cmd_pkt header; |
| 4126 | |
| 4127 | /* See STADB_ACTION_TYPE */ |
| 4128 | __le32 action; |
| 4129 | |
| 4130 | /* Peer MAC address */ |
| 4131 | __u8 peer_addr[ETH_ALEN]; |
| 4132 | |
| 4133 | __le32 reserved; |
| 4134 | |
| 4135 | /* Peer info - valid during add/update. */ |
| 4136 | struct peer_capability_info peer_info; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 4137 | } __packed; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4138 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 4139 | #define MWL8K_STA_DB_MODIFY_ENTRY 1 |
| 4140 | #define MWL8K_STA_DB_DEL_ENTRY 2 |
| 4141 | |
| 4142 | /* Peer Entry flags - used to define the type of the peer node */ |
| 4143 | #define MWL8K_PEER_TYPE_ACCESSPOINT 2 |
| 4144 | |
| 4145 | static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw, |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 4146 | struct ieee80211_vif *vif, |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 4147 | struct ieee80211_sta *sta) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4148 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4149 | struct mwl8k_cmd_update_stadb *cmd; |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 4150 | struct peer_capability_info *p; |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 4151 | u32 rates; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4152 | int rc; |
| 4153 | |
| 4154 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 4155 | if (cmd == NULL) |
| 4156 | return -ENOMEM; |
| 4157 | |
| 4158 | cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB); |
| 4159 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 4160 | cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY); |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 4161 | memcpy(cmd->peer_addr, sta->addr, ETH_ALEN); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4162 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 4163 | p = &cmd->peer_info; |
| 4164 | p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT; |
| 4165 | p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability); |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 4166 | p->ht_support = sta->ht_cap.ht_supported; |
John W. Linville | b603742 | 2010-07-20 13:55:00 -0400 | [diff] [blame] | 4167 | p->ht_caps = cpu_to_le16(sta->ht_cap.cap); |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 4168 | p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) | |
| 4169 | ((sta->ht_cap.ampdu_density & 7) << 2); |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 4170 | if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) |
| 4171 | rates = sta->supp_rates[IEEE80211_BAND_2GHZ]; |
| 4172 | else |
| 4173 | rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5; |
| 4174 | legacy_rate_mask_to_array(p->legacy_rates, rates); |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 4175 | memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16); |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 4176 | p->interop = 1; |
| 4177 | p->amsdu_enabled = 0; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4178 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 4179 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 4180 | kfree(cmd); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4181 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 4182 | return rc ? rc : p->station_id; |
| 4183 | } |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4184 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 4185 | static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw, |
| 4186 | struct ieee80211_vif *vif, u8 *addr) |
| 4187 | { |
| 4188 | struct mwl8k_cmd_update_stadb *cmd; |
| 4189 | int rc; |
| 4190 | |
| 4191 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 4192 | if (cmd == NULL) |
| 4193 | return -ENOMEM; |
| 4194 | |
| 4195 | cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB); |
| 4196 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 4197 | cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY); |
| 4198 | memcpy(cmd->peer_addr, addr, ETH_ALEN); |
| 4199 | |
| 4200 | rc = mwl8k_post_cmd(hw, &cmd->header); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4201 | kfree(cmd); |
| 4202 | |
| 4203 | return rc; |
| 4204 | } |
| 4205 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4206 | |
| 4207 | /* |
| 4208 | * Interrupt handling. |
| 4209 | */ |
| 4210 | static irqreturn_t mwl8k_interrupt(int irq, void *dev_id) |
| 4211 | { |
| 4212 | struct ieee80211_hw *hw = dev_id; |
| 4213 | struct mwl8k_priv *priv = hw->priv; |
| 4214 | u32 status; |
| 4215 | |
| 4216 | status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4217 | if (!status) |
| 4218 | return IRQ_NONE; |
| 4219 | |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 4220 | if (status & MWL8K_A2H_INT_TX_DONE) { |
| 4221 | status &= ~MWL8K_A2H_INT_TX_DONE; |
| 4222 | tasklet_schedule(&priv->poll_tx_task); |
| 4223 | } |
| 4224 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4225 | if (status & MWL8K_A2H_INT_RX_READY) { |
| 4226 | status &= ~MWL8K_A2H_INT_RX_READY; |
| 4227 | tasklet_schedule(&priv->poll_rx_task); |
| 4228 | } |
| 4229 | |
Nishant Sarmukadam | 3aefc37 | 2011-03-17 11:58:47 -0700 | [diff] [blame] | 4230 | if (status & MWL8K_A2H_INT_BA_WATCHDOG) { |
| 4231 | status &= ~MWL8K_A2H_INT_BA_WATCHDOG; |
| 4232 | ieee80211_queue_work(hw, &priv->watchdog_ba_handle); |
| 4233 | } |
| 4234 | |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 4235 | if (status) |
| 4236 | iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4237 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4238 | if (status & MWL8K_A2H_INT_OPC_DONE) { |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 4239 | if (priv->hostcmd_wait != NULL) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4240 | complete(priv->hostcmd_wait); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4241 | } |
| 4242 | |
| 4243 | if (status & MWL8K_A2H_INT_QUEUE_EMPTY) { |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 4244 | if (!mutex_is_locked(&priv->fw_mutex) && |
Lennert Buytenhek | 88de754a | 2009-10-22 20:19:37 +0200 | [diff] [blame] | 4245 | priv->radio_on && priv->pending_tx_pkts) |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 4246 | mwl8k_tx_start(priv); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4247 | } |
| 4248 | |
| 4249 | return IRQ_HANDLED; |
| 4250 | } |
| 4251 | |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 4252 | static void mwl8k_tx_poll(unsigned long data) |
| 4253 | { |
| 4254 | struct ieee80211_hw *hw = (struct ieee80211_hw *)data; |
| 4255 | struct mwl8k_priv *priv = hw->priv; |
| 4256 | int limit; |
| 4257 | int i; |
| 4258 | |
| 4259 | limit = 32; |
| 4260 | |
| 4261 | spin_lock_bh(&priv->tx_lock); |
| 4262 | |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 4263 | for (i = 0; i < mwl8k_tx_queues(priv); i++) |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 4264 | limit -= mwl8k_txq_reclaim(hw, i, limit, 0); |
| 4265 | |
| 4266 | if (!priv->pending_tx_pkts && priv->tx_wait != NULL) { |
| 4267 | complete(priv->tx_wait); |
| 4268 | priv->tx_wait = NULL; |
| 4269 | } |
| 4270 | |
| 4271 | spin_unlock_bh(&priv->tx_lock); |
| 4272 | |
| 4273 | if (limit) { |
| 4274 | writel(~MWL8K_A2H_INT_TX_DONE, |
| 4275 | priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS); |
| 4276 | } else { |
| 4277 | tasklet_schedule(&priv->poll_tx_task); |
| 4278 | } |
| 4279 | } |
| 4280 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4281 | static void mwl8k_rx_poll(unsigned long data) |
| 4282 | { |
| 4283 | struct ieee80211_hw *hw = (struct ieee80211_hw *)data; |
| 4284 | struct mwl8k_priv *priv = hw->priv; |
| 4285 | int limit; |
| 4286 | |
| 4287 | limit = 32; |
| 4288 | limit -= rxq_process(hw, 0, limit); |
| 4289 | limit -= rxq_refill(hw, 0, limit); |
| 4290 | |
| 4291 | if (limit) { |
| 4292 | writel(~MWL8K_A2H_INT_RX_READY, |
| 4293 | priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS); |
| 4294 | } else { |
| 4295 | tasklet_schedule(&priv->poll_rx_task); |
| 4296 | } |
| 4297 | } |
| 4298 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4299 | |
| 4300 | /* |
| 4301 | * Core driver operations. |
| 4302 | */ |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 4303 | static void mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4304 | { |
| 4305 | struct mwl8k_priv *priv = hw->priv; |
| 4306 | int index = skb_get_queue_mapping(skb); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4307 | |
Lennert Buytenhek | 9189c10 | 2010-01-12 13:47:32 +0100 | [diff] [blame] | 4308 | if (!priv->radio_on) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 4309 | wiphy_debug(hw->wiphy, |
| 4310 | "dropped TX frame since radio disabled\n"); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4311 | dev_kfree_skb(skb); |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 4312 | return; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4313 | } |
| 4314 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 4315 | mwl8k_txq_xmit(hw, index, skb); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4316 | } |
| 4317 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4318 | static int mwl8k_start(struct ieee80211_hw *hw) |
| 4319 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4320 | struct mwl8k_priv *priv = hw->priv; |
| 4321 | int rc; |
| 4322 | |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 4323 | rc = request_irq(priv->pdev->irq, mwl8k_interrupt, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4324 | IRQF_SHARED, MWL8K_NAME, hw); |
| 4325 | if (rc) { |
Brian Cavagnolo | bf3ca7f | 2011-04-06 14:18:46 +0530 | [diff] [blame] | 4326 | priv->irq = -1; |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 4327 | wiphy_err(hw->wiphy, "failed to register IRQ handler\n"); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4328 | return -EIO; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4329 | } |
Brian Cavagnolo | bf3ca7f | 2011-04-06 14:18:46 +0530 | [diff] [blame] | 4330 | priv->irq = priv->pdev->irq; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4331 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4332 | /* Enable TX reclaim and RX tasklets. */ |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 4333 | tasklet_enable(&priv->poll_tx_task); |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4334 | tasklet_enable(&priv->poll_rx_task); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4335 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4336 | /* Enable interrupts */ |
Lennert Buytenhek | c23b5a6 | 2009-07-16 13:49:55 +0200 | [diff] [blame] | 4337 | iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
Nishant Sarmukadam | 12488e0 | 2011-04-08 14:38:27 +0530 | [diff] [blame] | 4338 | iowrite32(MWL8K_A2H_EVENTS, |
| 4339 | priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4340 | |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4341 | rc = mwl8k_fw_lock(hw); |
| 4342 | if (!rc) { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4343 | rc = mwl8k_cmd_radio_enable(hw); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4344 | |
Lennert Buytenhek | 5e4cf16 | 2009-10-22 20:21:38 +0200 | [diff] [blame] | 4345 | if (!priv->ap_fw) { |
| 4346 | if (!rc) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4347 | rc = mwl8k_cmd_enable_sniffer(hw, 0); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4348 | |
Lennert Buytenhek | 5e4cf16 | 2009-10-22 20:21:38 +0200 | [diff] [blame] | 4349 | if (!rc) |
| 4350 | rc = mwl8k_cmd_set_pre_scan(hw); |
| 4351 | |
| 4352 | if (!rc) |
| 4353 | rc = mwl8k_cmd_set_post_scan(hw, |
| 4354 | "\x00\x00\x00\x00\x00\x00"); |
| 4355 | } |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4356 | |
| 4357 | if (!rc) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4358 | rc = mwl8k_cmd_set_rateadapt_mode(hw, 0); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4359 | |
| 4360 | if (!rc) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4361 | rc = mwl8k_cmd_set_wmm_mode(hw, 0); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4362 | |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4363 | mwl8k_fw_unlock(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4364 | } |
| 4365 | |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4366 | if (rc) { |
| 4367 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
| 4368 | free_irq(priv->pdev->irq, hw); |
Brian Cavagnolo | bf3ca7f | 2011-04-06 14:18:46 +0530 | [diff] [blame] | 4369 | priv->irq = -1; |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 4370 | tasklet_disable(&priv->poll_tx_task); |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4371 | tasklet_disable(&priv->poll_rx_task); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 4372 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4373 | |
| 4374 | return rc; |
| 4375 | } |
| 4376 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4377 | static void mwl8k_stop(struct ieee80211_hw *hw) |
| 4378 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4379 | struct mwl8k_priv *priv = hw->priv; |
| 4380 | int i; |
| 4381 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4382 | mwl8k_cmd_radio_disable(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4383 | |
| 4384 | ieee80211_stop_queues(hw); |
| 4385 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4386 | /* Disable interrupts */ |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4387 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
Brian Cavagnolo | bf3ca7f | 2011-04-06 14:18:46 +0530 | [diff] [blame] | 4388 | if (priv->irq != -1) { |
| 4389 | free_irq(priv->pdev->irq, hw); |
| 4390 | priv->irq = -1; |
| 4391 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4392 | |
| 4393 | /* Stop finalize join worker */ |
| 4394 | cancel_work_sync(&priv->finalize_join_worker); |
Nishant Sarmukadam | 3aefc37 | 2011-03-17 11:58:47 -0700 | [diff] [blame] | 4395 | cancel_work_sync(&priv->watchdog_ba_handle); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4396 | if (priv->beacon_skb != NULL) |
| 4397 | dev_kfree_skb(priv->beacon_skb); |
| 4398 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4399 | /* Stop TX reclaim and RX tasklets. */ |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 4400 | tasklet_disable(&priv->poll_tx_task); |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4401 | tasklet_disable(&priv->poll_rx_task); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4402 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4403 | /* Return all skbs to mac80211 */ |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 4404 | for (i = 0; i < mwl8k_tx_queues(priv); i++) |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 4405 | mwl8k_txq_reclaim(hw, i, INT_MAX, 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4406 | } |
| 4407 | |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 4408 | static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image); |
| 4409 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4410 | static int mwl8k_add_interface(struct ieee80211_hw *hw, |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4411 | struct ieee80211_vif *vif) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4412 | { |
| 4413 | struct mwl8k_priv *priv = hw->priv; |
| 4414 | struct mwl8k_vif *mwl8k_vif; |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 4415 | u32 macids_supported; |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 4416 | int macid, rc; |
| 4417 | struct mwl8k_device_info *di; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4418 | |
| 4419 | /* |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4420 | * Reject interface creation if sniffer mode is active, as |
| 4421 | * STA operation is mutually exclusive with hardware sniffer |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 4422 | * mode. (Sniffer mode is only used on STA firmware.) |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4423 | */ |
| 4424 | if (priv->sniffer_enabled) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 4425 | wiphy_info(hw->wiphy, |
| 4426 | "unable to create STA interface because sniffer mode is enabled\n"); |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4427 | return -EINVAL; |
| 4428 | } |
| 4429 | |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 4430 | di = priv->device_info; |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 4431 | switch (vif->type) { |
| 4432 | case NL80211_IFTYPE_AP: |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 4433 | if (!priv->ap_fw && di->fw_image_ap) { |
| 4434 | /* we must load the ap fw to meet this request */ |
| 4435 | if (!list_empty(&priv->vif_list)) |
| 4436 | return -EBUSY; |
| 4437 | rc = mwl8k_reload_firmware(hw, di->fw_image_ap); |
| 4438 | if (rc) |
| 4439 | return rc; |
| 4440 | } |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 4441 | macids_supported = priv->ap_macids_supported; |
| 4442 | break; |
| 4443 | case NL80211_IFTYPE_STATION: |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 4444 | if (priv->ap_fw && di->fw_image_sta) { |
| 4445 | /* we must load the sta fw to meet this request */ |
| 4446 | if (!list_empty(&priv->vif_list)) |
| 4447 | return -EBUSY; |
| 4448 | rc = mwl8k_reload_firmware(hw, di->fw_image_sta); |
| 4449 | if (rc) |
| 4450 | return rc; |
| 4451 | } |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 4452 | macids_supported = priv->sta_macids_supported; |
| 4453 | break; |
| 4454 | default: |
| 4455 | return -EINVAL; |
| 4456 | } |
| 4457 | |
| 4458 | macid = ffs(macids_supported & ~priv->macids_used); |
| 4459 | if (!macid--) |
| 4460 | return -EBUSY; |
| 4461 | |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4462 | /* Setup driver private area. */ |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 4463 | mwl8k_vif = MWL8K_VIF(vif); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4464 | memset(mwl8k_vif, 0, sizeof(*mwl8k_vif)); |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4465 | mwl8k_vif->vif = vif; |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 4466 | mwl8k_vif->macid = macid; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4467 | mwl8k_vif->seqno = 0; |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 4468 | memcpy(mwl8k_vif->bssid, vif->addr, ETH_ALEN); |
| 4469 | mwl8k_vif->is_hw_crypto_enabled = false; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4470 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 4471 | /* Set the mac address. */ |
| 4472 | mwl8k_cmd_set_mac_addr(hw, vif, vif->addr); |
| 4473 | |
| 4474 | if (priv->ap_fw) |
| 4475 | mwl8k_cmd_set_new_stn_add_self(hw, vif); |
| 4476 | |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 4477 | priv->macids_used |= 1 << mwl8k_vif->macid; |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4478 | list_add_tail(&mwl8k_vif->list, &priv->vif_list); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4479 | |
| 4480 | return 0; |
| 4481 | } |
| 4482 | |
| 4483 | static void mwl8k_remove_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 4484 | struct ieee80211_vif *vif) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4485 | { |
| 4486 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4487 | struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4488 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 4489 | if (priv->ap_fw) |
| 4490 | mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr); |
| 4491 | |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 4492 | mwl8k_cmd_set_mac_addr(hw, vif, "\x00\x00\x00\x00\x00\x00"); |
Lennert Buytenhek | 32060e1 | 2009-10-22 20:20:04 +0200 | [diff] [blame] | 4493 | |
Lennert Buytenhek | ee0ddf1 | 2010-01-12 13:51:30 +0100 | [diff] [blame] | 4494 | priv->macids_used &= ~(1 << mwl8k_vif->macid); |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4495 | list_del(&mwl8k_vif->list); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4496 | } |
| 4497 | |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 4498 | static int mwl8k_config(struct ieee80211_hw *hw, u32 changed) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4499 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4500 | struct ieee80211_conf *conf = &hw->conf; |
| 4501 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 4502 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4503 | |
Lennert Buytenhek | 7595d67 | 2009-08-17 23:59:40 +0200 | [diff] [blame] | 4504 | if (conf->flags & IEEE80211_CONF_IDLE) { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4505 | mwl8k_cmd_radio_disable(hw); |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 4506 | return 0; |
Lennert Buytenhek | 7595d67 | 2009-08-17 23:59:40 +0200 | [diff] [blame] | 4507 | } |
| 4508 | |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 4509 | rc = mwl8k_fw_lock(hw); |
| 4510 | if (rc) |
| 4511 | return rc; |
| 4512 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4513 | rc = mwl8k_cmd_radio_enable(hw); |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 4514 | if (rc) |
| 4515 | goto out; |
| 4516 | |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 4517 | rc = mwl8k_cmd_set_rf_channel(hw, conf); |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 4518 | if (rc) |
| 4519 | goto out; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4520 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4521 | if (conf->power_level > 18) |
| 4522 | conf->power_level = 18; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4523 | |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 4524 | if (priv->ap_fw) { |
Nishant Sarmukadam | 0321708 | 2011-04-05 14:18:09 +0530 | [diff] [blame] | 4525 | |
| 4526 | if (conf->flags & IEEE80211_CONF_CHANGE_POWER) { |
| 4527 | rc = mwl8k_cmd_tx_power(hw, conf, conf->power_level); |
| 4528 | if (rc) |
| 4529 | goto out; |
| 4530 | } |
Nishant Sarmukadam | 41fdf09 | 2010-11-12 17:23:48 -0800 | [diff] [blame] | 4531 | |
Nishant Sarmukadam | da62b76 | 2011-02-17 14:45:16 -0800 | [diff] [blame] | 4532 | rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x3); |
| 4533 | if (rc) |
| 4534 | wiphy_warn(hw->wiphy, "failed to set # of RX antennas"); |
| 4535 | rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7); |
| 4536 | if (rc) |
| 4537 | wiphy_warn(hw->wiphy, "failed to set # of TX antennas"); |
| 4538 | |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 4539 | } else { |
Nishant Sarmukadam | 41fdf09 | 2010-11-12 17:23:48 -0800 | [diff] [blame] | 4540 | rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level); |
| 4541 | if (rc) |
| 4542 | goto out; |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 4543 | rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7); |
| 4544 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4545 | |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 4546 | out: |
| 4547 | mwl8k_fw_unlock(hw); |
| 4548 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4549 | return rc; |
| 4550 | } |
| 4551 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 4552 | static void |
| 4553 | mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 4554 | struct ieee80211_bss_conf *info, u32 changed) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4555 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4556 | struct mwl8k_priv *priv = hw->priv; |
Yogesh Ashok Powar | ba30c4a | 2011-04-09 00:25:37 +0530 | [diff] [blame] | 4557 | u32 ap_legacy_rates = 0; |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 4558 | u8 ap_mcs_rates[16]; |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 4559 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4560 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4561 | if (mwl8k_fw_lock(hw)) |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 4562 | return; |
| 4563 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4564 | /* |
| 4565 | * No need to capture a beacon if we're no longer associated. |
| 4566 | */ |
| 4567 | if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc) |
| 4568 | priv->capture_beacon = false; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4569 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4570 | /* |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 4571 | * Get the AP's legacy and MCS rates. |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4572 | */ |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 4573 | if (vif->bss_conf.assoc) { |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 4574 | struct ieee80211_sta *ap; |
Lennert Buytenhek | c97470d | 2010-01-12 13:47:37 +0100 | [diff] [blame] | 4575 | |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 4576 | rcu_read_lock(); |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4577 | |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 4578 | ap = ieee80211_find_sta(vif, vif->bss_conf.bssid); |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4579 | if (ap == NULL) { |
| 4580 | rcu_read_unlock(); |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 4581 | goto out; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4582 | } |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 4583 | |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 4584 | if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) { |
| 4585 | ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ]; |
| 4586 | } else { |
| 4587 | ap_legacy_rates = |
| 4588 | ap->supp_rates[IEEE80211_BAND_5GHZ] << 5; |
| 4589 | } |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 4590 | memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16); |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4591 | |
| 4592 | rcu_read_unlock(); |
| 4593 | } |
| 4594 | |
| 4595 | if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) { |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 4596 | rc = mwl8k_cmd_set_rate(hw, vif, ap_legacy_rates, ap_mcs_rates); |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 4597 | if (rc) |
| 4598 | goto out; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4599 | |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 4600 | rc = mwl8k_cmd_use_fixed_rate_sta(hw); |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 4601 | if (rc) |
| 4602 | goto out; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4603 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4604 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4605 | if (changed & BSS_CHANGED_ERP_PREAMBLE) { |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 4606 | rc = mwl8k_set_radio_preamble(hw, |
| 4607 | vif->bss_conf.use_short_preamble); |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 4608 | if (rc) |
| 4609 | goto out; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4610 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4611 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4612 | if (changed & BSS_CHANGED_ERP_SLOT) { |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 4613 | rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot); |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 4614 | if (rc) |
| 4615 | goto out; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4616 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4617 | |
Lennert Buytenhek | c97470d | 2010-01-12 13:47:37 +0100 | [diff] [blame] | 4618 | if (vif->bss_conf.assoc && |
| 4619 | (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT | |
| 4620 | BSS_CHANGED_HT))) { |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4621 | rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates); |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 4622 | if (rc) |
| 4623 | goto out; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4624 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4625 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 4626 | if (vif->bss_conf.assoc && |
| 4627 | (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4628 | /* |
| 4629 | * Finalize the join. Tell rx handler to process |
| 4630 | * next beacon from our BSSID. |
| 4631 | */ |
Lennert Buytenhek | 0a11dfc | 2010-01-04 21:55:21 +0100 | [diff] [blame] | 4632 | memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4633 | priv->capture_beacon = true; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4634 | } |
| 4635 | |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 4636 | out: |
| 4637 | mwl8k_fw_unlock(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4638 | } |
| 4639 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 4640 | static void |
| 4641 | mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 4642 | struct ieee80211_bss_conf *info, u32 changed) |
| 4643 | { |
| 4644 | int rc; |
| 4645 | |
| 4646 | if (mwl8k_fw_lock(hw)) |
| 4647 | return; |
| 4648 | |
| 4649 | if (changed & BSS_CHANGED_ERP_PREAMBLE) { |
| 4650 | rc = mwl8k_set_radio_preamble(hw, |
| 4651 | vif->bss_conf.use_short_preamble); |
| 4652 | if (rc) |
| 4653 | goto out; |
| 4654 | } |
| 4655 | |
| 4656 | if (changed & BSS_CHANGED_BASIC_RATES) { |
| 4657 | int idx; |
| 4658 | int rate; |
| 4659 | |
| 4660 | /* |
| 4661 | * Use lowest supported basic rate for multicasts |
| 4662 | * and management frames (such as probe responses -- |
| 4663 | * beacons will always go out at 1 Mb/s). |
| 4664 | */ |
| 4665 | idx = ffs(vif->bss_conf.basic_rates); |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 4666 | if (idx) |
| 4667 | idx--; |
| 4668 | |
| 4669 | if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) |
| 4670 | rate = mwl8k_rates_24[idx].hw_value; |
| 4671 | else |
| 4672 | rate = mwl8k_rates_50[idx].hw_value; |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 4673 | |
| 4674 | mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate); |
| 4675 | } |
| 4676 | |
| 4677 | if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) { |
| 4678 | struct sk_buff *skb; |
| 4679 | |
| 4680 | skb = ieee80211_beacon_get(hw, vif); |
| 4681 | if (skb != NULL) { |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 4682 | mwl8k_cmd_set_beacon(hw, vif, skb->data, skb->len); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 4683 | kfree_skb(skb); |
| 4684 | } |
| 4685 | } |
| 4686 | |
| 4687 | if (changed & BSS_CHANGED_BEACON_ENABLED) |
Lennert Buytenhek | aa21d0f6 | 2010-01-12 13:50:36 +0100 | [diff] [blame] | 4688 | mwl8k_cmd_bss_start(hw, vif, info->enable_beacon); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 4689 | |
| 4690 | out: |
| 4691 | mwl8k_fw_unlock(hw); |
| 4692 | } |
| 4693 | |
| 4694 | static void |
| 4695 | mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 4696 | struct ieee80211_bss_conf *info, u32 changed) |
| 4697 | { |
| 4698 | struct mwl8k_priv *priv = hw->priv; |
| 4699 | |
| 4700 | if (!priv->ap_fw) |
| 4701 | mwl8k_bss_info_changed_sta(hw, vif, info, changed); |
| 4702 | else |
| 4703 | mwl8k_bss_info_changed_ap(hw, vif, info, changed); |
| 4704 | } |
| 4705 | |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 4706 | static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw, |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 4707 | struct netdev_hw_addr_list *mc_list) |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 4708 | { |
| 4709 | struct mwl8k_cmd_pkt *cmd; |
| 4710 | |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 4711 | /* |
| 4712 | * Synthesize and return a command packet that programs the |
| 4713 | * hardware multicast address filter. At this point we don't |
| 4714 | * know whether FIF_ALLMULTI is being requested, but if it is, |
| 4715 | * we'll end up throwing this packet away and creating a new |
| 4716 | * one in mwl8k_configure_filter(). |
| 4717 | */ |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 4718 | cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_list); |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 4719 | |
| 4720 | return (unsigned long)cmd; |
| 4721 | } |
| 4722 | |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4723 | static int |
| 4724 | mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw, |
| 4725 | unsigned int changed_flags, |
| 4726 | unsigned int *total_flags) |
| 4727 | { |
| 4728 | struct mwl8k_priv *priv = hw->priv; |
| 4729 | |
| 4730 | /* |
| 4731 | * Hardware sniffer mode is mutually exclusive with STA |
| 4732 | * operation, so refuse to enable sniffer mode if a STA |
| 4733 | * interface is active. |
| 4734 | */ |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4735 | if (!list_empty(&priv->vif_list)) { |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4736 | if (net_ratelimit()) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 4737 | wiphy_info(hw->wiphy, |
| 4738 | "not enabling sniffer mode because STA interface is active\n"); |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4739 | return 0; |
| 4740 | } |
| 4741 | |
| 4742 | if (!priv->sniffer_enabled) { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4743 | if (mwl8k_cmd_enable_sniffer(hw, 1)) |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4744 | return 0; |
| 4745 | priv->sniffer_enabled = true; |
| 4746 | } |
| 4747 | |
| 4748 | *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI | |
| 4749 | FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL | |
| 4750 | FIF_OTHER_BSS; |
| 4751 | |
| 4752 | return 1; |
| 4753 | } |
| 4754 | |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4755 | static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv) |
| 4756 | { |
| 4757 | if (!list_empty(&priv->vif_list)) |
| 4758 | return list_entry(priv->vif_list.next, struct mwl8k_vif, list); |
| 4759 | |
| 4760 | return NULL; |
| 4761 | } |
| 4762 | |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 4763 | static void mwl8k_configure_filter(struct ieee80211_hw *hw, |
| 4764 | unsigned int changed_flags, |
| 4765 | unsigned int *total_flags, |
| 4766 | u64 multicast) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4767 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4768 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4769 | struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast; |
| 4770 | |
| 4771 | /* |
Lennert Buytenhek | c0adae2 | 2009-10-22 20:21:36 +0200 | [diff] [blame] | 4772 | * AP firmware doesn't allow fine-grained control over |
| 4773 | * the receive filter. |
| 4774 | */ |
| 4775 | if (priv->ap_fw) { |
| 4776 | *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC; |
| 4777 | kfree(cmd); |
| 4778 | return; |
| 4779 | } |
| 4780 | |
| 4781 | /* |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4782 | * Enable hardware sniffer mode if FIF_CONTROL or |
| 4783 | * FIF_OTHER_BSS is requested. |
| 4784 | */ |
| 4785 | if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) && |
| 4786 | mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) { |
| 4787 | kfree(cmd); |
| 4788 | return; |
| 4789 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4790 | |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 4791 | /* Clear unsupported feature flags */ |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 4792 | *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC; |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 4793 | |
Lennert Buytenhek | 90852f7 | 2010-01-02 10:31:42 +0100 | [diff] [blame] | 4794 | if (mwl8k_fw_lock(hw)) { |
| 4795 | kfree(cmd); |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 4796 | return; |
Lennert Buytenhek | 90852f7 | 2010-01-02 10:31:42 +0100 | [diff] [blame] | 4797 | } |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 4798 | |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4799 | if (priv->sniffer_enabled) { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4800 | mwl8k_cmd_enable_sniffer(hw, 0); |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 4801 | priv->sniffer_enabled = false; |
| 4802 | } |
| 4803 | |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 4804 | if (changed_flags & FIF_BCN_PRBRESP_PROMISC) { |
Lennert Buytenhek | 77165d8 | 2009-10-22 20:19:53 +0200 | [diff] [blame] | 4805 | if (*total_flags & FIF_BCN_PRBRESP_PROMISC) { |
| 4806 | /* |
| 4807 | * Disable the BSS filter. |
| 4808 | */ |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 4809 | mwl8k_cmd_set_pre_scan(hw); |
Lennert Buytenhek | 77165d8 | 2009-10-22 20:19:53 +0200 | [diff] [blame] | 4810 | } else { |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4811 | struct mwl8k_vif *mwl8k_vif; |
Lennert Buytenhek | 0a11dfc | 2010-01-04 21:55:21 +0100 | [diff] [blame] | 4812 | const u8 *bssid; |
Lennert Buytenhek | a94cc97 | 2009-08-03 21:58:57 +0200 | [diff] [blame] | 4813 | |
Lennert Buytenhek | 77165d8 | 2009-10-22 20:19:53 +0200 | [diff] [blame] | 4814 | /* |
| 4815 | * Enable the BSS filter. |
| 4816 | * |
| 4817 | * If there is an active STA interface, use that |
| 4818 | * interface's BSSID, otherwise use a dummy one |
| 4819 | * (where the OUI part needs to be nonzero for |
| 4820 | * the BSSID to be accepted by POST_SCAN). |
| 4821 | */ |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4822 | mwl8k_vif = mwl8k_first_vif(priv); |
| 4823 | if (mwl8k_vif != NULL) |
| 4824 | bssid = mwl8k_vif->vif->bss_conf.bssid; |
| 4825 | else |
| 4826 | bssid = "\x01\x00\x00\x00\x00\x00"; |
Lennert Buytenhek | a94cc97 | 2009-08-03 21:58:57 +0200 | [diff] [blame] | 4827 | |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 4828 | mwl8k_cmd_set_post_scan(hw, bssid); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4829 | } |
| 4830 | } |
| 4831 | |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 4832 | /* |
| 4833 | * If FIF_ALLMULTI is being requested, throw away the command |
| 4834 | * packet that ->prepare_multicast() built and replace it with |
| 4835 | * a command packet that enables reception of all multicast |
| 4836 | * packets. |
| 4837 | */ |
| 4838 | if (*total_flags & FIF_ALLMULTI) { |
| 4839 | kfree(cmd); |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 4840 | cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, NULL); |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 4841 | } |
| 4842 | |
| 4843 | if (cmd != NULL) { |
| 4844 | mwl8k_post_cmd(hw, cmd); |
| 4845 | kfree(cmd); |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 4846 | } |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 4847 | |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 4848 | mwl8k_fw_unlock(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4849 | } |
| 4850 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4851 | static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value) |
| 4852 | { |
Lennert Buytenhek | c2c2b12 | 2010-01-08 18:27:59 +0100 | [diff] [blame] | 4853 | return mwl8k_cmd_set_rts_threshold(hw, value); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4854 | } |
| 4855 | |
Johannes Berg | 4a6967b | 2010-02-19 19:18:37 +0100 | [diff] [blame] | 4856 | static int mwl8k_sta_remove(struct ieee80211_hw *hw, |
| 4857 | struct ieee80211_vif *vif, |
| 4858 | struct ieee80211_sta *sta) |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 4859 | { |
| 4860 | struct mwl8k_priv *priv = hw->priv; |
| 4861 | |
Johannes Berg | 4a6967b | 2010-02-19 19:18:37 +0100 | [diff] [blame] | 4862 | if (priv->ap_fw) |
| 4863 | return mwl8k_cmd_set_new_stn_del(hw, vif, sta->addr); |
| 4864 | else |
| 4865 | return mwl8k_cmd_update_stadb_del(hw, vif, sta->addr); |
| 4866 | } |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 4867 | |
Johannes Berg | 4a6967b | 2010-02-19 19:18:37 +0100 | [diff] [blame] | 4868 | static int mwl8k_sta_add(struct ieee80211_hw *hw, |
| 4869 | struct ieee80211_vif *vif, |
| 4870 | struct ieee80211_sta *sta) |
| 4871 | { |
| 4872 | struct mwl8k_priv *priv = hw->priv; |
| 4873 | int ret; |
Nishant Sarmukadam | fcdc403 | 2010-12-30 11:23:34 -0800 | [diff] [blame] | 4874 | int i; |
| 4875 | struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif); |
| 4876 | struct ieee80211_key_conf *key; |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 4877 | |
Johannes Berg | 4a6967b | 2010-02-19 19:18:37 +0100 | [diff] [blame] | 4878 | if (!priv->ap_fw) { |
| 4879 | ret = mwl8k_cmd_update_stadb_add(hw, vif, sta); |
| 4880 | if (ret >= 0) { |
| 4881 | MWL8K_STA(sta)->peer_id = ret; |
Nishant Sarmukadam | 17033543 | 2011-03-17 11:58:48 -0700 | [diff] [blame] | 4882 | if (sta->ht_cap.ht_supported) |
| 4883 | MWL8K_STA(sta)->is_ampdu_allowed = true; |
Nishant Sarmukadam | fcdc403 | 2010-12-30 11:23:34 -0800 | [diff] [blame] | 4884 | ret = 0; |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 4885 | } |
Johannes Berg | 4a6967b | 2010-02-19 19:18:37 +0100 | [diff] [blame] | 4886 | |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 4887 | } else { |
| 4888 | ret = mwl8k_cmd_set_new_stn_add(hw, vif, sta); |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 4889 | } |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 4890 | |
Nishant Sarmukadam | d9a07d4 | 2010-12-30 11:23:33 -0800 | [diff] [blame] | 4891 | for (i = 0; i < NUM_WEP_KEYS; i++) { |
| 4892 | key = IEEE80211_KEY_CONF(mwl8k_vif->wep_key_conf[i].key); |
| 4893 | if (mwl8k_vif->wep_key_conf[i].enabled) |
| 4894 | mwl8k_set_key(hw, SET_KEY, vif, sta, key); |
| 4895 | } |
Nishant Sarmukadam | fcdc403 | 2010-12-30 11:23:34 -0800 | [diff] [blame] | 4896 | return ret; |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 4897 | } |
| 4898 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4899 | static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue, |
| 4900 | const struct ieee80211_tx_queue_params *params) |
| 4901 | { |
Lennert Buytenhek | 3e4f542 | 2009-07-17 07:25:59 +0200 | [diff] [blame] | 4902 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4903 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4904 | |
Lennert Buytenhek | 3e4f542 | 2009-07-17 07:25:59 +0200 | [diff] [blame] | 4905 | rc = mwl8k_fw_lock(hw); |
| 4906 | if (!rc) { |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 4907 | BUG_ON(queue > MWL8K_TX_WMM_QUEUES - 1); |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 4908 | memcpy(&priv->wmm_params[queue], params, sizeof(*params)); |
| 4909 | |
Lennert Buytenhek | 3e4f542 | 2009-07-17 07:25:59 +0200 | [diff] [blame] | 4910 | if (!priv->wmm_enabled) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4911 | rc = mwl8k_cmd_set_wmm_mode(hw, 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4912 | |
Nishant Sarmukadam | 85c9205 | 2011-02-17 14:45:18 -0800 | [diff] [blame] | 4913 | if (!rc) { |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 4914 | int q = MWL8K_TX_WMM_QUEUES - 1 - queue; |
Nishant Sarmukadam | 85c9205 | 2011-02-17 14:45:18 -0800 | [diff] [blame] | 4915 | rc = mwl8k_cmd_set_edca_params(hw, q, |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4916 | params->cw_min, |
| 4917 | params->cw_max, |
| 4918 | params->aifs, |
| 4919 | params->txop); |
Nishant Sarmukadam | 85c9205 | 2011-02-17 14:45:18 -0800 | [diff] [blame] | 4920 | } |
Lennert Buytenhek | 3e4f542 | 2009-07-17 07:25:59 +0200 | [diff] [blame] | 4921 | |
| 4922 | mwl8k_fw_unlock(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4923 | } |
Lennert Buytenhek | 3e4f542 | 2009-07-17 07:25:59 +0200 | [diff] [blame] | 4924 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4925 | return rc; |
| 4926 | } |
| 4927 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4928 | static int mwl8k_get_stats(struct ieee80211_hw *hw, |
| 4929 | struct ieee80211_low_level_stats *stats) |
| 4930 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4931 | return mwl8k_cmd_get_stat(hw, stats); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4932 | } |
| 4933 | |
John W. Linville | 0d462bb | 2010-07-28 14:04:24 -0400 | [diff] [blame] | 4934 | static int mwl8k_get_survey(struct ieee80211_hw *hw, int idx, |
| 4935 | struct survey_info *survey) |
| 4936 | { |
| 4937 | struct mwl8k_priv *priv = hw->priv; |
| 4938 | struct ieee80211_conf *conf = &hw->conf; |
| 4939 | |
| 4940 | if (idx != 0) |
| 4941 | return -ENOENT; |
| 4942 | |
| 4943 | survey->channel = conf->channel; |
| 4944 | survey->filled = SURVEY_INFO_NOISE_DBM; |
| 4945 | survey->noise = priv->noise; |
| 4946 | |
| 4947 | return 0; |
| 4948 | } |
| 4949 | |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 4950 | #define MAX_AMPDU_ATTEMPTS 5 |
| 4951 | |
Lennert Buytenhek | a2292d8 | 2010-01-04 21:58:12 +0100 | [diff] [blame] | 4952 | static int |
| 4953 | mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 4954 | enum ieee80211_ampdu_mlme_action action, |
Johannes Berg | 0b01f03 | 2011-01-18 13:51:05 +0100 | [diff] [blame] | 4955 | struct ieee80211_sta *sta, u16 tid, u16 *ssn, |
| 4956 | u8 buf_size) |
Lennert Buytenhek | a2292d8 | 2010-01-04 21:58:12 +0100 | [diff] [blame] | 4957 | { |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 4958 | |
| 4959 | int i, rc = 0; |
| 4960 | struct mwl8k_priv *priv = hw->priv; |
| 4961 | struct mwl8k_ampdu_stream *stream; |
| 4962 | u8 *addr = sta->addr; |
| 4963 | |
| 4964 | if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION)) |
| 4965 | return -ENOTSUPP; |
| 4966 | |
| 4967 | spin_lock(&priv->stream_lock); |
| 4968 | stream = mwl8k_lookup_stream(hw, addr, tid); |
| 4969 | |
Lennert Buytenhek | a2292d8 | 2010-01-04 21:58:12 +0100 | [diff] [blame] | 4970 | switch (action) { |
| 4971 | case IEEE80211_AMPDU_RX_START: |
| 4972 | case IEEE80211_AMPDU_RX_STOP: |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 4973 | break; |
| 4974 | case IEEE80211_AMPDU_TX_START: |
| 4975 | /* By the time we get here the hw queues may contain outgoing |
| 4976 | * packets for this RA/TID that are not part of this BA |
| 4977 | * session. The hw will assign sequence numbers to these |
| 4978 | * packets as they go out. So if we query the hw for its next |
| 4979 | * sequence number and use that for the SSN here, it may end up |
| 4980 | * being wrong, which will lead to sequence number mismatch at |
| 4981 | * the recipient. To avoid this, we reset the sequence number |
| 4982 | * to O for the first MPDU in this BA stream. |
| 4983 | */ |
| 4984 | *ssn = 0; |
| 4985 | if (stream == NULL) { |
| 4986 | /* This means that somebody outside this driver called |
| 4987 | * ieee80211_start_tx_ba_session. This is unexpected |
| 4988 | * because we do our own rate control. Just warn and |
| 4989 | * move on. |
| 4990 | */ |
| 4991 | wiphy_warn(hw->wiphy, "Unexpected call to %s. " |
| 4992 | "Proceeding anyway.\n", __func__); |
| 4993 | stream = mwl8k_add_stream(hw, sta, tid); |
| 4994 | } |
| 4995 | if (stream == NULL) { |
| 4996 | wiphy_debug(hw->wiphy, "no free AMPDU streams\n"); |
| 4997 | rc = -EBUSY; |
| 4998 | break; |
| 4999 | } |
| 5000 | stream->state = AMPDU_STREAM_IN_PROGRESS; |
| 5001 | |
| 5002 | /* Release the lock before we do the time consuming stuff */ |
| 5003 | spin_unlock(&priv->stream_lock); |
| 5004 | for (i = 0; i < MAX_AMPDU_ATTEMPTS; i++) { |
| 5005 | rc = mwl8k_check_ba(hw, stream); |
| 5006 | |
| 5007 | if (!rc) |
| 5008 | break; |
| 5009 | /* |
| 5010 | * HW queues take time to be flushed, give them |
| 5011 | * sufficient time |
| 5012 | */ |
| 5013 | |
| 5014 | msleep(1000); |
| 5015 | } |
| 5016 | spin_lock(&priv->stream_lock); |
| 5017 | if (rc) { |
| 5018 | wiphy_err(hw->wiphy, "Stream for tid %d busy after %d" |
| 5019 | " attempts\n", tid, MAX_AMPDU_ATTEMPTS); |
| 5020 | mwl8k_remove_stream(hw, stream); |
| 5021 | rc = -EBUSY; |
| 5022 | break; |
| 5023 | } |
| 5024 | ieee80211_start_tx_ba_cb_irqsafe(vif, addr, tid); |
| 5025 | break; |
| 5026 | case IEEE80211_AMPDU_TX_STOP: |
| 5027 | if (stream == NULL) |
| 5028 | break; |
| 5029 | if (stream->state == AMPDU_STREAM_ACTIVE) { |
| 5030 | spin_unlock(&priv->stream_lock); |
| 5031 | mwl8k_destroy_ba(hw, stream); |
| 5032 | spin_lock(&priv->stream_lock); |
| 5033 | } |
| 5034 | mwl8k_remove_stream(hw, stream); |
| 5035 | ieee80211_stop_tx_ba_cb_irqsafe(vif, addr, tid); |
| 5036 | break; |
| 5037 | case IEEE80211_AMPDU_TX_OPERATIONAL: |
| 5038 | BUG_ON(stream == NULL); |
| 5039 | BUG_ON(stream->state != AMPDU_STREAM_IN_PROGRESS); |
| 5040 | spin_unlock(&priv->stream_lock); |
| 5041 | rc = mwl8k_create_ba(hw, stream, buf_size); |
| 5042 | spin_lock(&priv->stream_lock); |
| 5043 | if (!rc) |
| 5044 | stream->state = AMPDU_STREAM_ACTIVE; |
| 5045 | else { |
| 5046 | spin_unlock(&priv->stream_lock); |
| 5047 | mwl8k_destroy_ba(hw, stream); |
| 5048 | spin_lock(&priv->stream_lock); |
| 5049 | wiphy_debug(hw->wiphy, |
| 5050 | "Failed adding stream for sta %pM tid %d\n", |
| 5051 | addr, tid); |
| 5052 | mwl8k_remove_stream(hw, stream); |
| 5053 | } |
| 5054 | break; |
| 5055 | |
Lennert Buytenhek | a2292d8 | 2010-01-04 21:58:12 +0100 | [diff] [blame] | 5056 | default: |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 5057 | rc = -ENOTSUPP; |
Lennert Buytenhek | a2292d8 | 2010-01-04 21:58:12 +0100 | [diff] [blame] | 5058 | } |
Nishant Sarmukadam | 65f3ddc | 2011-03-17 11:58:46 -0700 | [diff] [blame] | 5059 | |
| 5060 | spin_unlock(&priv->stream_lock); |
| 5061 | return rc; |
Lennert Buytenhek | a2292d8 | 2010-01-04 21:58:12 +0100 | [diff] [blame] | 5062 | } |
| 5063 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5064 | static const struct ieee80211_ops mwl8k_ops = { |
| 5065 | .tx = mwl8k_tx, |
| 5066 | .start = mwl8k_start, |
| 5067 | .stop = mwl8k_stop, |
| 5068 | .add_interface = mwl8k_add_interface, |
| 5069 | .remove_interface = mwl8k_remove_interface, |
| 5070 | .config = mwl8k_config, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5071 | .bss_info_changed = mwl8k_bss_info_changed, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 5072 | .prepare_multicast = mwl8k_prepare_multicast, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5073 | .configure_filter = mwl8k_configure_filter, |
Nishant Sarmukadam | fcdc403 | 2010-12-30 11:23:34 -0800 | [diff] [blame] | 5074 | .set_key = mwl8k_set_key, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5075 | .set_rts_threshold = mwl8k_set_rts_threshold, |
Johannes Berg | 4a6967b | 2010-02-19 19:18:37 +0100 | [diff] [blame] | 5076 | .sta_add = mwl8k_sta_add, |
| 5077 | .sta_remove = mwl8k_sta_remove, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5078 | .conf_tx = mwl8k_conf_tx, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5079 | .get_stats = mwl8k_get_stats, |
John W. Linville | 0d462bb | 2010-07-28 14:04:24 -0400 | [diff] [blame] | 5080 | .get_survey = mwl8k_get_survey, |
Lennert Buytenhek | a2292d8 | 2010-01-04 21:58:12 +0100 | [diff] [blame] | 5081 | .ampdu_action = mwl8k_ampdu_action, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5082 | }; |
| 5083 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5084 | static void mwl8k_finalize_join_worker(struct work_struct *work) |
| 5085 | { |
| 5086 | struct mwl8k_priv *priv = |
| 5087 | container_of(work, struct mwl8k_priv, finalize_join_worker); |
| 5088 | struct sk_buff *skb = priv->beacon_skb; |
Johannes Berg | 56007a0 | 2010-01-26 14:19:52 +0100 | [diff] [blame] | 5089 | struct ieee80211_mgmt *mgmt = (void *)skb->data; |
| 5090 | int len = skb->len - offsetof(struct ieee80211_mgmt, u.beacon.variable); |
| 5091 | const u8 *tim = cfg80211_find_ie(WLAN_EID_TIM, |
| 5092 | mgmt->u.beacon.variable, len); |
| 5093 | int dtim_period = 1; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5094 | |
Johannes Berg | 56007a0 | 2010-01-26 14:19:52 +0100 | [diff] [blame] | 5095 | if (tim && tim[1] >= 2) |
| 5096 | dtim_period = tim[3]; |
| 5097 | |
| 5098 | mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, dtim_period); |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 5099 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5100 | dev_kfree_skb(skb); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5101 | priv->beacon_skb = NULL; |
| 5102 | } |
| 5103 | |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 5104 | enum { |
Lennert Buytenhek | 9e1b17e | 2010-01-04 21:56:19 +0100 | [diff] [blame] | 5105 | MWL8363 = 0, |
| 5106 | MWL8687, |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 5107 | MWL8366, |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 5108 | }; |
| 5109 | |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 5110 | #define MWL8K_8366_AP_FW_API 2 |
Brian Cavagnolo | 952a0e9 | 2010-11-12 17:23:51 -0800 | [diff] [blame] | 5111 | #define _MWL8K_8366_AP_FW(api) "mwl8k/fmimage_8366_ap-" #api ".fw" |
| 5112 | #define MWL8K_8366_AP_FW(api) _MWL8K_8366_AP_FW(api) |
| 5113 | |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 5114 | static struct mwl8k_device_info mwl8k_info_tbl[] __devinitdata = { |
Lennert Buytenhek | 9e1b17e | 2010-01-04 21:56:19 +0100 | [diff] [blame] | 5115 | [MWL8363] = { |
| 5116 | .part_name = "88w8363", |
| 5117 | .helper_image = "mwl8k/helper_8363.fw", |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 5118 | .fw_image_sta = "mwl8k/fmimage_8363.fw", |
Lennert Buytenhek | 9e1b17e | 2010-01-04 21:56:19 +0100 | [diff] [blame] | 5119 | }, |
Lennert Buytenhek | 49eb691 | 2009-11-30 18:32:13 +0100 | [diff] [blame] | 5120 | [MWL8687] = { |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 5121 | .part_name = "88w8687", |
| 5122 | .helper_image = "mwl8k/helper_8687.fw", |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 5123 | .fw_image_sta = "mwl8k/fmimage_8687.fw", |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 5124 | }, |
Lennert Buytenhek | 49eb691 | 2009-11-30 18:32:13 +0100 | [diff] [blame] | 5125 | [MWL8366] = { |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 5126 | .part_name = "88w8366", |
| 5127 | .helper_image = "mwl8k/helper_8366.fw", |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 5128 | .fw_image_sta = "mwl8k/fmimage_8366.fw", |
Brian Cavagnolo | 952a0e9 | 2010-11-12 17:23:51 -0800 | [diff] [blame] | 5129 | .fw_image_ap = MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API), |
| 5130 | .fw_api_ap = MWL8K_8366_AP_FW_API, |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 5131 | .ap_rxd_ops = &rxd_8366_ap_ops, |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 5132 | }, |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 5133 | }; |
| 5134 | |
Lennert Buytenhek | c92d4ed | 2010-01-12 13:47:22 +0100 | [diff] [blame] | 5135 | MODULE_FIRMWARE("mwl8k/helper_8363.fw"); |
| 5136 | MODULE_FIRMWARE("mwl8k/fmimage_8363.fw"); |
| 5137 | MODULE_FIRMWARE("mwl8k/helper_8687.fw"); |
| 5138 | MODULE_FIRMWARE("mwl8k/fmimage_8687.fw"); |
| 5139 | MODULE_FIRMWARE("mwl8k/helper_8366.fw"); |
| 5140 | MODULE_FIRMWARE("mwl8k/fmimage_8366.fw"); |
Brian Cavagnolo | 952a0e9 | 2010-11-12 17:23:51 -0800 | [diff] [blame] | 5141 | MODULE_FIRMWARE(MWL8K_8366_AP_FW(MWL8K_8366_AP_FW_API)); |
Lennert Buytenhek | c92d4ed | 2010-01-12 13:47:22 +0100 | [diff] [blame] | 5142 | |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 5143 | static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = { |
Benjamin Larsson | e5868ba1 | 2010-03-19 01:46:10 +0100 | [diff] [blame] | 5144 | { PCI_VDEVICE(MARVELL, 0x2a0a), .driver_data = MWL8363, }, |
Lennert Buytenhek | 9e1b17e | 2010-01-04 21:56:19 +0100 | [diff] [blame] | 5145 | { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, }, |
| 5146 | { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, }, |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 5147 | { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, }, |
| 5148 | { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, }, |
| 5149 | { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, }, |
Lennert Buytenhek | ca66527 | 2010-01-12 13:47:53 +0100 | [diff] [blame] | 5150 | { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, }, |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 5151 | { }, |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 5152 | }; |
| 5153 | MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table); |
| 5154 | |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5155 | static int mwl8k_request_alt_fw(struct mwl8k_priv *priv) |
| 5156 | { |
| 5157 | int rc; |
| 5158 | printk(KERN_ERR "%s: Error requesting preferred fw %s.\n" |
| 5159 | "Trying alternative firmware %s\n", pci_name(priv->pdev), |
| 5160 | priv->fw_pref, priv->fw_alt); |
| 5161 | rc = mwl8k_request_fw(priv, priv->fw_alt, &priv->fw_ucode, true); |
| 5162 | if (rc) { |
| 5163 | printk(KERN_ERR "%s: Error requesting alt fw %s\n", |
| 5164 | pci_name(priv->pdev), priv->fw_alt); |
| 5165 | return rc; |
| 5166 | } |
| 5167 | return 0; |
| 5168 | } |
| 5169 | |
| 5170 | static int mwl8k_firmware_load_success(struct mwl8k_priv *priv); |
| 5171 | static void mwl8k_fw_state_machine(const struct firmware *fw, void *context) |
| 5172 | { |
| 5173 | struct mwl8k_priv *priv = context; |
| 5174 | struct mwl8k_device_info *di = priv->device_info; |
| 5175 | int rc; |
| 5176 | |
| 5177 | switch (priv->fw_state) { |
| 5178 | case FW_STATE_INIT: |
| 5179 | if (!fw) { |
| 5180 | printk(KERN_ERR "%s: Error requesting helper fw %s\n", |
| 5181 | pci_name(priv->pdev), di->helper_image); |
| 5182 | goto fail; |
| 5183 | } |
| 5184 | priv->fw_helper = fw; |
| 5185 | rc = mwl8k_request_fw(priv, priv->fw_pref, &priv->fw_ucode, |
| 5186 | true); |
| 5187 | if (rc && priv->fw_alt) { |
| 5188 | rc = mwl8k_request_alt_fw(priv); |
| 5189 | if (rc) |
| 5190 | goto fail; |
| 5191 | priv->fw_state = FW_STATE_LOADING_ALT; |
| 5192 | } else if (rc) |
| 5193 | goto fail; |
| 5194 | else |
| 5195 | priv->fw_state = FW_STATE_LOADING_PREF; |
| 5196 | break; |
| 5197 | |
| 5198 | case FW_STATE_LOADING_PREF: |
| 5199 | if (!fw) { |
| 5200 | if (priv->fw_alt) { |
| 5201 | rc = mwl8k_request_alt_fw(priv); |
| 5202 | if (rc) |
| 5203 | goto fail; |
| 5204 | priv->fw_state = FW_STATE_LOADING_ALT; |
| 5205 | } else |
| 5206 | goto fail; |
| 5207 | } else { |
| 5208 | priv->fw_ucode = fw; |
| 5209 | rc = mwl8k_firmware_load_success(priv); |
| 5210 | if (rc) |
| 5211 | goto fail; |
| 5212 | else |
| 5213 | complete(&priv->firmware_loading_complete); |
| 5214 | } |
| 5215 | break; |
| 5216 | |
| 5217 | case FW_STATE_LOADING_ALT: |
| 5218 | if (!fw) { |
| 5219 | printk(KERN_ERR "%s: Error requesting alt fw %s\n", |
| 5220 | pci_name(priv->pdev), di->helper_image); |
| 5221 | goto fail; |
| 5222 | } |
| 5223 | priv->fw_ucode = fw; |
| 5224 | rc = mwl8k_firmware_load_success(priv); |
| 5225 | if (rc) |
| 5226 | goto fail; |
| 5227 | else |
| 5228 | complete(&priv->firmware_loading_complete); |
| 5229 | break; |
| 5230 | |
| 5231 | default: |
| 5232 | printk(KERN_ERR "%s: Unexpected firmware loading state: %d\n", |
| 5233 | MWL8K_NAME, priv->fw_state); |
| 5234 | BUG_ON(1); |
| 5235 | } |
| 5236 | |
| 5237 | return; |
| 5238 | |
| 5239 | fail: |
| 5240 | priv->fw_state = FW_STATE_ERROR; |
| 5241 | complete(&priv->firmware_loading_complete); |
| 5242 | device_release_driver(&priv->pdev->dev); |
| 5243 | mwl8k_release_firmware(priv); |
| 5244 | } |
| 5245 | |
| 5246 | static int mwl8k_init_firmware(struct ieee80211_hw *hw, char *fw_image, |
| 5247 | bool nowait) |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5248 | { |
| 5249 | struct mwl8k_priv *priv = hw->priv; |
| 5250 | int rc; |
| 5251 | |
| 5252 | /* Reset firmware and hardware */ |
| 5253 | mwl8k_hw_reset(priv); |
| 5254 | |
| 5255 | /* Ask userland hotplug daemon for the device firmware */ |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5256 | rc = mwl8k_request_firmware(priv, fw_image, nowait); |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5257 | if (rc) { |
| 5258 | wiphy_err(hw->wiphy, "Firmware files not found\n"); |
| 5259 | return rc; |
| 5260 | } |
| 5261 | |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5262 | if (nowait) |
| 5263 | return rc; |
| 5264 | |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5265 | /* Load firmware into hardware */ |
| 5266 | rc = mwl8k_load_firmware(hw); |
| 5267 | if (rc) |
| 5268 | wiphy_err(hw->wiphy, "Cannot start firmware\n"); |
| 5269 | |
| 5270 | /* Reclaim memory once firmware is successfully loaded */ |
| 5271 | mwl8k_release_firmware(priv); |
| 5272 | |
| 5273 | return rc; |
| 5274 | } |
| 5275 | |
Brian Cavagnolo | 73b4632 | 2011-03-17 11:58:41 -0700 | [diff] [blame] | 5276 | static int mwl8k_init_txqs(struct ieee80211_hw *hw) |
| 5277 | { |
| 5278 | struct mwl8k_priv *priv = hw->priv; |
| 5279 | int rc = 0; |
| 5280 | int i; |
| 5281 | |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 5282 | for (i = 0; i < mwl8k_tx_queues(priv); i++) { |
Brian Cavagnolo | 73b4632 | 2011-03-17 11:58:41 -0700 | [diff] [blame] | 5283 | rc = mwl8k_txq_init(hw, i); |
| 5284 | if (rc) |
| 5285 | break; |
| 5286 | if (priv->ap_fw) |
| 5287 | iowrite32(priv->txq[i].txd_dma, |
| 5288 | priv->sram + priv->txq_offset[i]); |
| 5289 | } |
| 5290 | return rc; |
| 5291 | } |
| 5292 | |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5293 | /* initialize hw after successfully loading a firmware image */ |
| 5294 | static int mwl8k_probe_hw(struct ieee80211_hw *hw) |
| 5295 | { |
| 5296 | struct mwl8k_priv *priv = hw->priv; |
| 5297 | int rc = 0; |
| 5298 | int i; |
| 5299 | |
| 5300 | if (priv->ap_fw) { |
| 5301 | priv->rxd_ops = priv->device_info->ap_rxd_ops; |
| 5302 | if (priv->rxd_ops == NULL) { |
| 5303 | wiphy_err(hw->wiphy, |
| 5304 | "Driver does not have AP firmware image support for this hardware\n"); |
| 5305 | goto err_stop_firmware; |
| 5306 | } |
| 5307 | } else { |
| 5308 | priv->rxd_ops = &rxd_sta_ops; |
| 5309 | } |
| 5310 | |
| 5311 | priv->sniffer_enabled = false; |
| 5312 | priv->wmm_enabled = false; |
| 5313 | priv->pending_tx_pkts = 0; |
| 5314 | |
| 5315 | rc = mwl8k_rxq_init(hw, 0); |
| 5316 | if (rc) |
| 5317 | goto err_stop_firmware; |
| 5318 | rxq_refill(hw, 0, INT_MAX); |
| 5319 | |
Brian Cavagnolo | 73b4632 | 2011-03-17 11:58:41 -0700 | [diff] [blame] | 5320 | /* For the sta firmware, we need to know the dma addresses of tx queues |
| 5321 | * before sending MWL8K_CMD_GET_HW_SPEC. So we must initialize them |
| 5322 | * prior to issuing this command. But for the AP case, we learn the |
| 5323 | * total number of queues from the result CMD_GET_HW_SPEC, so for this |
| 5324 | * case we must initialize the tx queues after. |
| 5325 | */ |
Brian Cavagnolo | 8a7a578 | 2011-03-17 11:58:42 -0700 | [diff] [blame] | 5326 | priv->num_ampdu_queues = 0; |
Brian Cavagnolo | 73b4632 | 2011-03-17 11:58:41 -0700 | [diff] [blame] | 5327 | if (!priv->ap_fw) { |
| 5328 | rc = mwl8k_init_txqs(hw); |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5329 | if (rc) |
| 5330 | goto err_free_queues; |
| 5331 | } |
| 5332 | |
| 5333 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS); |
| 5334 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
Nishant Sarmukadam | 3aefc37 | 2011-03-17 11:58:47 -0700 | [diff] [blame] | 5335 | iowrite32(MWL8K_A2H_INT_TX_DONE|MWL8K_A2H_INT_RX_READY| |
| 5336 | MWL8K_A2H_INT_BA_WATCHDOG, |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5337 | priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL); |
Nishant Sarmukadam | 12488e0 | 2011-04-08 14:38:27 +0530 | [diff] [blame] | 5338 | iowrite32(MWL8K_A2H_INT_OPC_DONE, |
| 5339 | priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK); |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5340 | |
| 5341 | rc = request_irq(priv->pdev->irq, mwl8k_interrupt, |
| 5342 | IRQF_SHARED, MWL8K_NAME, hw); |
| 5343 | if (rc) { |
| 5344 | wiphy_err(hw->wiphy, "failed to register IRQ handler\n"); |
| 5345 | goto err_free_queues; |
| 5346 | } |
| 5347 | |
Brian Cavagnolo | ac109fd | 2011-03-17 11:58:45 -0700 | [diff] [blame] | 5348 | memset(priv->ampdu, 0, sizeof(priv->ampdu)); |
| 5349 | |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5350 | /* |
| 5351 | * Temporarily enable interrupts. Initial firmware host |
| 5352 | * commands use interrupts and avoid polling. Disable |
| 5353 | * interrupts when done. |
| 5354 | */ |
| 5355 | iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
| 5356 | |
| 5357 | /* Get config data, mac addrs etc */ |
| 5358 | if (priv->ap_fw) { |
| 5359 | rc = mwl8k_cmd_get_hw_spec_ap(hw); |
| 5360 | if (!rc) |
Brian Cavagnolo | 73b4632 | 2011-03-17 11:58:41 -0700 | [diff] [blame] | 5361 | rc = mwl8k_init_txqs(hw); |
| 5362 | if (!rc) |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5363 | rc = mwl8k_cmd_set_hw_spec(hw); |
| 5364 | } else { |
| 5365 | rc = mwl8k_cmd_get_hw_spec_sta(hw); |
| 5366 | } |
| 5367 | if (rc) { |
| 5368 | wiphy_err(hw->wiphy, "Cannot initialise firmware\n"); |
| 5369 | goto err_free_irq; |
| 5370 | } |
| 5371 | |
| 5372 | /* Turn radio off */ |
| 5373 | rc = mwl8k_cmd_radio_disable(hw); |
| 5374 | if (rc) { |
| 5375 | wiphy_err(hw->wiphy, "Cannot disable\n"); |
| 5376 | goto err_free_irq; |
| 5377 | } |
| 5378 | |
| 5379 | /* Clear MAC address */ |
| 5380 | rc = mwl8k_cmd_set_mac_addr(hw, NULL, "\x00\x00\x00\x00\x00\x00"); |
| 5381 | if (rc) { |
| 5382 | wiphy_err(hw->wiphy, "Cannot clear MAC address\n"); |
| 5383 | goto err_free_irq; |
| 5384 | } |
| 5385 | |
| 5386 | /* Disable interrupts */ |
| 5387 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
| 5388 | free_irq(priv->pdev->irq, hw); |
| 5389 | |
| 5390 | wiphy_info(hw->wiphy, "%s v%d, %pm, %s firmware %u.%u.%u.%u\n", |
| 5391 | priv->device_info->part_name, |
| 5392 | priv->hw_rev, hw->wiphy->perm_addr, |
| 5393 | priv->ap_fw ? "AP" : "STA", |
| 5394 | (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff, |
| 5395 | (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff); |
| 5396 | |
| 5397 | return 0; |
| 5398 | |
| 5399 | err_free_irq: |
| 5400 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
| 5401 | free_irq(priv->pdev->irq, hw); |
| 5402 | |
| 5403 | err_free_queues: |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 5404 | for (i = 0; i < mwl8k_tx_queues(priv); i++) |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5405 | mwl8k_txq_deinit(hw, i); |
| 5406 | mwl8k_rxq_deinit(hw, 0); |
| 5407 | |
| 5408 | err_stop_firmware: |
| 5409 | mwl8k_hw_reset(priv); |
| 5410 | |
| 5411 | return rc; |
| 5412 | } |
| 5413 | |
| 5414 | /* |
| 5415 | * invoke mwl8k_reload_firmware to change the firmware image after the device |
| 5416 | * has already been registered |
| 5417 | */ |
| 5418 | static int mwl8k_reload_firmware(struct ieee80211_hw *hw, char *fw_image) |
| 5419 | { |
| 5420 | int i, rc = 0; |
| 5421 | struct mwl8k_priv *priv = hw->priv; |
| 5422 | |
| 5423 | mwl8k_stop(hw); |
| 5424 | mwl8k_rxq_deinit(hw, 0); |
| 5425 | |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 5426 | for (i = 0; i < mwl8k_tx_queues(priv); i++) |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5427 | mwl8k_txq_deinit(hw, i); |
| 5428 | |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5429 | rc = mwl8k_init_firmware(hw, fw_image, false); |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5430 | if (rc) |
| 5431 | goto fail; |
| 5432 | |
| 5433 | rc = mwl8k_probe_hw(hw); |
| 5434 | if (rc) |
| 5435 | goto fail; |
| 5436 | |
| 5437 | rc = mwl8k_start(hw); |
| 5438 | if (rc) |
| 5439 | goto fail; |
| 5440 | |
| 5441 | rc = mwl8k_config(hw, ~0); |
| 5442 | if (rc) |
| 5443 | goto fail; |
| 5444 | |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 5445 | for (i = 0; i < MWL8K_TX_WMM_QUEUES; i++) { |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5446 | rc = mwl8k_conf_tx(hw, i, &priv->wmm_params[i]); |
| 5447 | if (rc) |
| 5448 | goto fail; |
| 5449 | } |
| 5450 | |
| 5451 | return rc; |
| 5452 | |
| 5453 | fail: |
| 5454 | printk(KERN_WARNING "mwl8k: Failed to reload firmware image.\n"); |
| 5455 | return rc; |
| 5456 | } |
| 5457 | |
| 5458 | static int mwl8k_firmware_load_success(struct mwl8k_priv *priv) |
| 5459 | { |
| 5460 | struct ieee80211_hw *hw = priv->hw; |
| 5461 | int i, rc; |
| 5462 | |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5463 | rc = mwl8k_load_firmware(hw); |
| 5464 | mwl8k_release_firmware(priv); |
| 5465 | if (rc) { |
| 5466 | wiphy_err(hw->wiphy, "Cannot start firmware\n"); |
| 5467 | return rc; |
| 5468 | } |
| 5469 | |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5470 | /* |
| 5471 | * Extra headroom is the size of the required DMA header |
| 5472 | * minus the size of the smallest 802.11 frame (CTS frame). |
| 5473 | */ |
| 5474 | hw->extra_tx_headroom = |
| 5475 | sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts); |
| 5476 | |
| 5477 | hw->channel_change_time = 10; |
| 5478 | |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 5479 | hw->queues = MWL8K_TX_WMM_QUEUES; |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5480 | |
| 5481 | /* Set rssi values to dBm */ |
Nishant Sarmukadam | 0bf22c3 | 2011-02-17 14:45:17 -0800 | [diff] [blame] | 5482 | hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_HAS_RATE_CONTROL; |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5483 | hw->vif_data_size = sizeof(struct mwl8k_vif); |
| 5484 | hw->sta_data_size = sizeof(struct mwl8k_sta); |
| 5485 | |
| 5486 | priv->macids_used = 0; |
| 5487 | INIT_LIST_HEAD(&priv->vif_list); |
| 5488 | |
| 5489 | /* Set default radio state and preamble */ |
| 5490 | priv->radio_on = 0; |
| 5491 | priv->radio_short_preamble = 0; |
| 5492 | |
| 5493 | /* Finalize join worker */ |
| 5494 | INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker); |
Nishant Sarmukadam | 3aefc37 | 2011-03-17 11:58:47 -0700 | [diff] [blame] | 5495 | /* Handle watchdog ba events */ |
| 5496 | INIT_WORK(&priv->watchdog_ba_handle, mwl8k_watchdog_ba_events); |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5497 | |
| 5498 | /* TX reclaim and RX tasklets. */ |
| 5499 | tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw); |
| 5500 | tasklet_disable(&priv->poll_tx_task); |
| 5501 | tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw); |
| 5502 | tasklet_disable(&priv->poll_rx_task); |
| 5503 | |
| 5504 | /* Power management cookie */ |
| 5505 | priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma); |
| 5506 | if (priv->cookie == NULL) |
| 5507 | return -ENOMEM; |
| 5508 | |
| 5509 | mutex_init(&priv->fw_mutex); |
| 5510 | priv->fw_mutex_owner = NULL; |
| 5511 | priv->fw_mutex_depth = 0; |
| 5512 | priv->hostcmd_wait = NULL; |
| 5513 | |
| 5514 | spin_lock_init(&priv->tx_lock); |
| 5515 | |
Brian Cavagnolo | ac109fd | 2011-03-17 11:58:45 -0700 | [diff] [blame] | 5516 | spin_lock_init(&priv->stream_lock); |
| 5517 | |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5518 | priv->tx_wait = NULL; |
| 5519 | |
| 5520 | rc = mwl8k_probe_hw(hw); |
| 5521 | if (rc) |
| 5522 | goto err_free_cookie; |
| 5523 | |
| 5524 | hw->wiphy->interface_modes = 0; |
| 5525 | if (priv->ap_macids_supported || priv->device_info->fw_image_ap) |
| 5526 | hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP); |
| 5527 | if (priv->sta_macids_supported || priv->device_info->fw_image_sta) |
| 5528 | hw->wiphy->interface_modes |= BIT(NL80211_IFTYPE_STATION); |
| 5529 | |
| 5530 | rc = ieee80211_register_hw(hw); |
| 5531 | if (rc) { |
| 5532 | wiphy_err(hw->wiphy, "Cannot register device\n"); |
| 5533 | goto err_unprobe_hw; |
| 5534 | } |
| 5535 | |
| 5536 | return 0; |
| 5537 | |
| 5538 | err_unprobe_hw: |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 5539 | for (i = 0; i < mwl8k_tx_queues(priv); i++) |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5540 | mwl8k_txq_deinit(hw, i); |
| 5541 | mwl8k_rxq_deinit(hw, 0); |
| 5542 | |
| 5543 | err_free_cookie: |
| 5544 | if (priv->cookie != NULL) |
| 5545 | pci_free_consistent(priv->pdev, 4, |
| 5546 | priv->cookie, priv->cookie_dma); |
| 5547 | |
| 5548 | return rc; |
| 5549 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5550 | static int __devinit mwl8k_probe(struct pci_dev *pdev, |
| 5551 | const struct pci_device_id *id) |
| 5552 | { |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5553 | static int printed_version; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5554 | struct ieee80211_hw *hw; |
| 5555 | struct mwl8k_priv *priv; |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 5556 | struct mwl8k_device_info *di; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5557 | int rc; |
Lennert Buytenhek | 2aa7b01 | 2009-08-24 15:48:07 +0200 | [diff] [blame] | 5558 | |
| 5559 | if (!printed_version) { |
| 5560 | printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION); |
| 5561 | printed_version = 1; |
| 5562 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5563 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 5564 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5565 | rc = pci_enable_device(pdev); |
| 5566 | if (rc) { |
| 5567 | printk(KERN_ERR "%s: Cannot enable new PCI device\n", |
| 5568 | MWL8K_NAME); |
| 5569 | return rc; |
| 5570 | } |
| 5571 | |
| 5572 | rc = pci_request_regions(pdev, MWL8K_NAME); |
| 5573 | if (rc) { |
| 5574 | printk(KERN_ERR "%s: Cannot obtain PCI resources\n", |
| 5575 | MWL8K_NAME); |
Lennert Buytenhek | 3db95e5 | 2009-11-30 18:13:34 +0100 | [diff] [blame] | 5576 | goto err_disable_device; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5577 | } |
| 5578 | |
| 5579 | pci_set_master(pdev); |
| 5580 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 5581 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5582 | hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops); |
| 5583 | if (hw == NULL) { |
| 5584 | printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME); |
| 5585 | rc = -ENOMEM; |
| 5586 | goto err_free_reg; |
| 5587 | } |
| 5588 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 5589 | SET_IEEE80211_DEV(hw, &pdev->dev); |
| 5590 | pci_set_drvdata(pdev, hw); |
| 5591 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5592 | priv = hw->priv; |
| 5593 | priv->hw = hw; |
| 5594 | priv->pdev = pdev; |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 5595 | priv->device_info = &mwl8k_info_tbl[id->driver_data]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5596 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5597 | |
Lennert Buytenhek | 5b9482d | 2009-10-22 20:20:43 +0200 | [diff] [blame] | 5598 | priv->sram = pci_iomap(pdev, 0, 0x10000); |
| 5599 | if (priv->sram == NULL) { |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 5600 | wiphy_err(hw->wiphy, "Cannot map device SRAM\n"); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5601 | goto err_iounmap; |
| 5602 | } |
| 5603 | |
Lennert Buytenhek | 5b9482d | 2009-10-22 20:20:43 +0200 | [diff] [blame] | 5604 | /* |
| 5605 | * If BAR0 is a 32 bit BAR, the register BAR will be BAR1. |
| 5606 | * If BAR0 is a 64 bit BAR, the register BAR will be BAR2. |
| 5607 | */ |
| 5608 | priv->regs = pci_iomap(pdev, 1, 0x10000); |
| 5609 | if (priv->regs == NULL) { |
| 5610 | priv->regs = pci_iomap(pdev, 2, 0x10000); |
| 5611 | if (priv->regs == NULL) { |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 5612 | wiphy_err(hw->wiphy, "Cannot map device registers\n"); |
Lennert Buytenhek | 5b9482d | 2009-10-22 20:20:43 +0200 | [diff] [blame] | 5613 | goto err_iounmap; |
| 5614 | } |
| 5615 | } |
| 5616 | |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 5617 | /* |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5618 | * Choose the initial fw image depending on user input. If a second |
| 5619 | * image is available, make it the alternative image that will be |
| 5620 | * loaded if the first one fails. |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 5621 | */ |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5622 | init_completion(&priv->firmware_loading_complete); |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 5623 | di = priv->device_info; |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5624 | if (ap_mode_default && di->fw_image_ap) { |
| 5625 | priv->fw_pref = di->fw_image_ap; |
| 5626 | priv->fw_alt = di->fw_image_sta; |
| 5627 | } else if (!ap_mode_default && di->fw_image_sta) { |
| 5628 | priv->fw_pref = di->fw_image_sta; |
| 5629 | priv->fw_alt = di->fw_image_ap; |
| 5630 | } else if (ap_mode_default && !di->fw_image_ap && di->fw_image_sta) { |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 5631 | printk(KERN_WARNING "AP fw is unavailable. Using STA fw."); |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5632 | priv->fw_pref = di->fw_image_sta; |
Brian Cavagnolo | 0863ade | 2010-11-12 17:23:50 -0800 | [diff] [blame] | 5633 | } else if (!ap_mode_default && !di->fw_image_sta && di->fw_image_ap) { |
| 5634 | printk(KERN_WARNING "STA fw is unavailable. Using AP fw."); |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5635 | priv->fw_pref = di->fw_image_ap; |
| 5636 | } |
| 5637 | rc = mwl8k_init_firmware(hw, priv->fw_pref, true); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5638 | if (rc) |
Brian Cavagnolo | 3cc7772 | 2010-11-12 17:23:49 -0800 | [diff] [blame] | 5639 | goto err_stop_firmware; |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5640 | return rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5641 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 5642 | err_stop_firmware: |
| 5643 | mwl8k_hw_reset(priv); |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 5644 | |
| 5645 | err_iounmap: |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5646 | if (priv->regs != NULL) |
| 5647 | pci_iounmap(pdev, priv->regs); |
| 5648 | |
Lennert Buytenhek | 5b9482d | 2009-10-22 20:20:43 +0200 | [diff] [blame] | 5649 | if (priv->sram != NULL) |
| 5650 | pci_iounmap(pdev, priv->sram); |
| 5651 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5652 | pci_set_drvdata(pdev, NULL); |
| 5653 | ieee80211_free_hw(hw); |
| 5654 | |
| 5655 | err_free_reg: |
| 5656 | pci_release_regions(pdev); |
Lennert Buytenhek | 3db95e5 | 2009-11-30 18:13:34 +0100 | [diff] [blame] | 5657 | |
| 5658 | err_disable_device: |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5659 | pci_disable_device(pdev); |
| 5660 | |
| 5661 | return rc; |
| 5662 | } |
| 5663 | |
Joerg Albert | 230f7af | 2009-04-18 02:10:45 +0200 | [diff] [blame] | 5664 | static void __devexit mwl8k_shutdown(struct pci_dev *pdev) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5665 | { |
| 5666 | printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__); |
| 5667 | } |
| 5668 | |
Joerg Albert | 230f7af | 2009-04-18 02:10:45 +0200 | [diff] [blame] | 5669 | static void __devexit mwl8k_remove(struct pci_dev *pdev) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5670 | { |
| 5671 | struct ieee80211_hw *hw = pci_get_drvdata(pdev); |
| 5672 | struct mwl8k_priv *priv; |
| 5673 | int i; |
| 5674 | |
| 5675 | if (hw == NULL) |
| 5676 | return; |
| 5677 | priv = hw->priv; |
| 5678 | |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5679 | wait_for_completion(&priv->firmware_loading_complete); |
| 5680 | |
| 5681 | if (priv->fw_state == FW_STATE_ERROR) { |
| 5682 | mwl8k_hw_reset(priv); |
| 5683 | goto unmap; |
| 5684 | } |
| 5685 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5686 | ieee80211_stop_queues(hw); |
| 5687 | |
Lennert Buytenhek | 60aa569 | 2009-08-03 21:59:09 +0200 | [diff] [blame] | 5688 | ieee80211_unregister_hw(hw); |
| 5689 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 5690 | /* Remove TX reclaim and RX tasklets. */ |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 5691 | tasklet_kill(&priv->poll_tx_task); |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 5692 | tasklet_kill(&priv->poll_rx_task); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5693 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5694 | /* Stop hardware */ |
| 5695 | mwl8k_hw_reset(priv); |
| 5696 | |
| 5697 | /* Return all skbs to mac80211 */ |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 5698 | for (i = 0; i < mwl8k_tx_queues(priv); i++) |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 5699 | mwl8k_txq_reclaim(hw, i, INT_MAX, 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5700 | |
Brian Cavagnolo | e600707 | 2011-03-17 11:58:44 -0700 | [diff] [blame] | 5701 | for (i = 0; i < mwl8k_tx_queues(priv); i++) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5702 | mwl8k_txq_deinit(hw, i); |
| 5703 | |
| 5704 | mwl8k_rxq_deinit(hw, 0); |
| 5705 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 5706 | pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5707 | |
Brian Cavagnolo | 9902047 | 2010-11-12 17:23:52 -0800 | [diff] [blame] | 5708 | unmap: |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5709 | pci_iounmap(pdev, priv->regs); |
Lennert Buytenhek | 5b9482d | 2009-10-22 20:20:43 +0200 | [diff] [blame] | 5710 | pci_iounmap(pdev, priv->sram); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5711 | pci_set_drvdata(pdev, NULL); |
| 5712 | ieee80211_free_hw(hw); |
| 5713 | pci_release_regions(pdev); |
| 5714 | pci_disable_device(pdev); |
| 5715 | } |
| 5716 | |
| 5717 | static struct pci_driver mwl8k_driver = { |
| 5718 | .name = MWL8K_NAME, |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 5719 | .id_table = mwl8k_pci_id_table, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 5720 | .probe = mwl8k_probe, |
| 5721 | .remove = __devexit_p(mwl8k_remove), |
| 5722 | .shutdown = __devexit_p(mwl8k_shutdown), |
| 5723 | }; |
| 5724 | |
| 5725 | static int __init mwl8k_init(void) |
| 5726 | { |
| 5727 | return pci_register_driver(&mwl8k_driver); |
| 5728 | } |
| 5729 | |
| 5730 | static void __exit mwl8k_exit(void) |
| 5731 | { |
| 5732 | pci_unregister_driver(&mwl8k_driver); |
| 5733 | } |
| 5734 | |
| 5735 | module_init(mwl8k_init); |
| 5736 | module_exit(mwl8k_exit); |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 5737 | |
| 5738 | MODULE_DESCRIPTION(MWL8K_DESC); |
| 5739 | MODULE_VERSION(MWL8K_VERSION); |
| 5740 | MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>"); |
| 5741 | MODULE_LICENSE("GPL"); |