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