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 | a145d57 | 2009-08-18 04:34:26 +0200 | [diff] [blame] | 5 | * Copyright (C) 2008-2009 Marvell Semiconductor Inc. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 6 | * |
| 7 | * This file is licensed under the terms of the GNU General Public |
| 8 | * License version 2. This program is licensed "as is" without any |
| 9 | * warranty of any kind, whether express or implied. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/kernel.h> |
Lennert Buytenhek | 3d76e82 | 2009-10-22 20:20:16 +0200 | [diff] [blame] | 15 | #include <linux/sched.h> |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 16 | #include <linux/spinlock.h> |
| 17 | #include <linux/list.h> |
| 18 | #include <linux/pci.h> |
| 19 | #include <linux/delay.h> |
| 20 | #include <linux/completion.h> |
| 21 | #include <linux/etherdevice.h> |
| 22 | #include <net/mac80211.h> |
| 23 | #include <linux/moduleparam.h> |
| 24 | #include <linux/firmware.h> |
| 25 | #include <linux/workqueue.h> |
| 26 | |
| 27 | #define MWL8K_DESC "Marvell TOPDOG(R) 802.11 Wireless Network Driver" |
| 28 | #define MWL8K_NAME KBUILD_MODNAME |
Lennert Buytenhek | 6976b66 | 2010-01-02 10:31:50 +0100 | [diff] [blame] | 29 | #define MWL8K_VERSION "0.11" |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 30 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 31 | /* Register definitions */ |
| 32 | #define MWL8K_HIU_GEN_PTR 0x00000c10 |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 33 | #define MWL8K_MODE_STA 0x0000005a |
| 34 | #define MWL8K_MODE_AP 0x000000a5 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 35 | #define MWL8K_HIU_INT_CODE 0x00000c14 |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 36 | #define MWL8K_FWSTA_READY 0xf0f1f2f4 |
| 37 | #define MWL8K_FWAP_READY 0xf1f2f4a5 |
| 38 | #define MWL8K_INT_CODE_CMD_FINISHED 0x00000005 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 39 | #define MWL8K_HIU_SCRATCH 0x00000c40 |
| 40 | |
| 41 | /* Host->device communications */ |
| 42 | #define MWL8K_HIU_H2A_INTERRUPT_EVENTS 0x00000c18 |
| 43 | #define MWL8K_HIU_H2A_INTERRUPT_STATUS 0x00000c1c |
| 44 | #define MWL8K_HIU_H2A_INTERRUPT_MASK 0x00000c20 |
| 45 | #define MWL8K_HIU_H2A_INTERRUPT_CLEAR_SEL 0x00000c24 |
| 46 | #define MWL8K_HIU_H2A_INTERRUPT_STATUS_MASK 0x00000c28 |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 47 | #define MWL8K_H2A_INT_DUMMY (1 << 20) |
| 48 | #define MWL8K_H2A_INT_RESET (1 << 15) |
| 49 | #define MWL8K_H2A_INT_DOORBELL (1 << 1) |
| 50 | #define MWL8K_H2A_INT_PPA_READY (1 << 0) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 51 | |
| 52 | /* Device->host communications */ |
| 53 | #define MWL8K_HIU_A2H_INTERRUPT_EVENTS 0x00000c2c |
| 54 | #define MWL8K_HIU_A2H_INTERRUPT_STATUS 0x00000c30 |
| 55 | #define MWL8K_HIU_A2H_INTERRUPT_MASK 0x00000c34 |
| 56 | #define MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL 0x00000c38 |
| 57 | #define MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK 0x00000c3c |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 58 | #define MWL8K_A2H_INT_DUMMY (1 << 20) |
| 59 | #define MWL8K_A2H_INT_CHNL_SWITCHED (1 << 11) |
| 60 | #define MWL8K_A2H_INT_QUEUE_EMPTY (1 << 10) |
| 61 | #define MWL8K_A2H_INT_RADAR_DETECT (1 << 7) |
| 62 | #define MWL8K_A2H_INT_RADIO_ON (1 << 6) |
| 63 | #define MWL8K_A2H_INT_RADIO_OFF (1 << 5) |
| 64 | #define MWL8K_A2H_INT_MAC_EVENT (1 << 3) |
| 65 | #define MWL8K_A2H_INT_OPC_DONE (1 << 2) |
| 66 | #define MWL8K_A2H_INT_RX_READY (1 << 1) |
| 67 | #define MWL8K_A2H_INT_TX_DONE (1 << 0) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 68 | |
| 69 | #define MWL8K_A2H_EVENTS (MWL8K_A2H_INT_DUMMY | \ |
| 70 | MWL8K_A2H_INT_CHNL_SWITCHED | \ |
| 71 | MWL8K_A2H_INT_QUEUE_EMPTY | \ |
| 72 | MWL8K_A2H_INT_RADAR_DETECT | \ |
| 73 | MWL8K_A2H_INT_RADIO_ON | \ |
| 74 | MWL8K_A2H_INT_RADIO_OFF | \ |
| 75 | MWL8K_A2H_INT_MAC_EVENT | \ |
| 76 | MWL8K_A2H_INT_OPC_DONE | \ |
| 77 | MWL8K_A2H_INT_RX_READY | \ |
| 78 | MWL8K_A2H_INT_TX_DONE) |
| 79 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 80 | #define MWL8K_RX_QUEUES 1 |
| 81 | #define MWL8K_TX_QUEUES 4 |
| 82 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 83 | struct rxd_ops { |
| 84 | int rxd_size; |
| 85 | void (*rxd_init)(void *rxd, dma_addr_t next_dma_addr); |
| 86 | void (*rxd_refill)(void *rxd, dma_addr_t addr, int len); |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 87 | int (*rxd_process)(void *rxd, struct ieee80211_rx_status *status, |
| 88 | __le16 *qos); |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 89 | }; |
| 90 | |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 91 | struct mwl8k_device_info { |
Lennert Buytenhek | a74b295 | 2009-10-22 20:20:50 +0200 | [diff] [blame] | 92 | char *part_name; |
| 93 | char *helper_image; |
| 94 | char *fw_image; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 95 | struct rxd_ops *ap_rxd_ops; |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 96 | }; |
| 97 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 98 | struct mwl8k_rx_queue { |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 99 | int rxd_count; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 100 | |
| 101 | /* hw receives here */ |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 102 | int head; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 103 | |
| 104 | /* refill descs here */ |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 105 | int tail; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 106 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 107 | void *rxd; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 108 | dma_addr_t rxd_dma; |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 109 | struct { |
| 110 | struct sk_buff *skb; |
| 111 | DECLARE_PCI_UNMAP_ADDR(dma) |
| 112 | } *buf; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 113 | }; |
| 114 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 115 | struct mwl8k_tx_queue { |
| 116 | /* hw transmits here */ |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 117 | int head; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 118 | |
| 119 | /* sw appends here */ |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 120 | int tail; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 121 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 122 | struct ieee80211_tx_queue_stats stats; |
| 123 | struct mwl8k_tx_desc *txd; |
| 124 | dma_addr_t txd_dma; |
| 125 | struct sk_buff **skb; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 126 | }; |
| 127 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 128 | struct mwl8k_priv { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 129 | struct ieee80211_hw *hw; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 130 | struct pci_dev *pdev; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 131 | |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 132 | struct mwl8k_device_info *device_info; |
| 133 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 134 | void __iomem *sram; |
| 135 | void __iomem *regs; |
| 136 | |
| 137 | /* firmware */ |
Lennert Buytenhek | 22be40d | 2009-11-30 18:32:38 +0100 | [diff] [blame] | 138 | struct firmware *fw_helper; |
| 139 | struct firmware *fw_ucode; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 140 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 141 | /* hardware/firmware parameters */ |
| 142 | bool ap_fw; |
| 143 | struct rxd_ops *rxd_ops; |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 144 | struct ieee80211_supported_band band_24; |
| 145 | struct ieee80211_channel channels_24[14]; |
| 146 | struct ieee80211_rate rates_24[14]; |
Lennert Buytenhek | 4eae9ed | 2010-01-12 13:48:32 +0100 | [diff] [blame] | 147 | struct ieee80211_supported_band band_50; |
| 148 | struct ieee80211_channel channels_50[4]; |
| 149 | struct ieee80211_rate rates_50[9]; |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 150 | |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 151 | /* firmware access */ |
| 152 | struct mutex fw_mutex; |
| 153 | struct task_struct *fw_mutex_owner; |
| 154 | int fw_mutex_depth; |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 155 | struct completion *hostcmd_wait; |
| 156 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 157 | /* lock held over TX and TX reap */ |
| 158 | spinlock_t tx_lock; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 159 | |
Lennert Buytenhek | 88de754a | 2009-10-22 20:19:37 +0200 | [diff] [blame] | 160 | /* TX quiesce completion, protected by fw_mutex and tx_lock */ |
| 161 | struct completion *tx_wait; |
| 162 | |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 163 | /* List of interfaces. */ |
| 164 | struct list_head vif_list; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 165 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 166 | /* power management status cookie from firmware */ |
| 167 | u32 *cookie; |
| 168 | dma_addr_t cookie_dma; |
| 169 | |
| 170 | u16 num_mcaddrs; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 171 | u8 hw_rev; |
Lennert Buytenhek | 2aa7b01 | 2009-08-24 15:48:07 +0200 | [diff] [blame] | 172 | u32 fw_rev; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 173 | |
| 174 | /* |
| 175 | * Running count of TX packets in flight, to avoid |
| 176 | * iterating over the transmit rings each time. |
| 177 | */ |
| 178 | int pending_tx_pkts; |
| 179 | |
| 180 | struct mwl8k_rx_queue rxq[MWL8K_RX_QUEUES]; |
| 181 | struct mwl8k_tx_queue txq[MWL8K_TX_QUEUES]; |
| 182 | |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 183 | bool radio_on; |
Lennert Buytenhek | 68ce388 | 2009-07-16 12:26:57 +0200 | [diff] [blame] | 184 | bool radio_short_preamble; |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 185 | bool sniffer_enabled; |
Lennert Buytenhek | 0439b1f | 2009-07-16 12:34:02 +0200 | [diff] [blame] | 186 | bool wmm_enabled; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 187 | |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 188 | struct work_struct sta_notify_worker; |
| 189 | spinlock_t sta_notify_list_lock; |
| 190 | struct list_head sta_notify_list; |
| 191 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 192 | /* XXX need to convert this to handle multiple interfaces */ |
| 193 | bool capture_beacon; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 194 | u8 capture_bssid[ETH_ALEN]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 195 | struct sk_buff *beacon_skb; |
| 196 | |
| 197 | /* |
| 198 | * This FJ worker has to be global as it is scheduled from the |
| 199 | * RX handler. At this point we don't know which interface it |
| 200 | * belongs to until the list of bssids waiting to complete join |
| 201 | * is checked. |
| 202 | */ |
| 203 | struct work_struct finalize_join_worker; |
| 204 | |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 205 | /* Tasklet to perform TX reclaim. */ |
| 206 | struct tasklet_struct poll_tx_task; |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 207 | |
| 208 | /* Tasklet to perform RX. */ |
| 209 | struct tasklet_struct poll_rx_task; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 210 | }; |
| 211 | |
| 212 | /* Per interface specific private data */ |
| 213 | struct mwl8k_vif { |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 214 | struct list_head list; |
| 215 | struct ieee80211_vif *vif; |
| 216 | |
Lennert Buytenhek | f57ca9c | 2010-01-12 13:50:14 +0100 | [diff] [blame^] | 217 | /* Firmware macid for this vif. */ |
| 218 | int macid; |
| 219 | |
Lennert Buytenhek | c2c2b12 | 2010-01-08 18:27:59 +0100 | [diff] [blame] | 220 | /* Non AMPDU sequence number assigned by driver. */ |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 221 | u16 seqno; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 222 | }; |
Lennert Buytenhek | a94cc97 | 2009-08-03 21:58:57 +0200 | [diff] [blame] | 223 | #define MWL8K_VIF(_vif) ((struct mwl8k_vif *)&((_vif)->drv_priv)) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 224 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 225 | struct mwl8k_sta { |
| 226 | /* Index into station database. Returned by UPDATE_STADB. */ |
| 227 | u8 peer_id; |
| 228 | }; |
| 229 | #define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv)) |
| 230 | |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 231 | static const struct ieee80211_channel mwl8k_channels_24[] = { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 232 | { .center_freq = 2412, .hw_value = 1, }, |
| 233 | { .center_freq = 2417, .hw_value = 2, }, |
| 234 | { .center_freq = 2422, .hw_value = 3, }, |
| 235 | { .center_freq = 2427, .hw_value = 4, }, |
| 236 | { .center_freq = 2432, .hw_value = 5, }, |
| 237 | { .center_freq = 2437, .hw_value = 6, }, |
| 238 | { .center_freq = 2442, .hw_value = 7, }, |
| 239 | { .center_freq = 2447, .hw_value = 8, }, |
| 240 | { .center_freq = 2452, .hw_value = 9, }, |
| 241 | { .center_freq = 2457, .hw_value = 10, }, |
| 242 | { .center_freq = 2462, .hw_value = 11, }, |
Lennert Buytenhek | 647ca6b | 2009-11-30 18:32:20 +0100 | [diff] [blame] | 243 | { .center_freq = 2467, .hw_value = 12, }, |
| 244 | { .center_freq = 2472, .hw_value = 13, }, |
| 245 | { .center_freq = 2484, .hw_value = 14, }, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 246 | }; |
| 247 | |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 248 | static const struct ieee80211_rate mwl8k_rates_24[] = { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 249 | { .bitrate = 10, .hw_value = 2, }, |
| 250 | { .bitrate = 20, .hw_value = 4, }, |
| 251 | { .bitrate = 55, .hw_value = 11, }, |
Lennert Buytenhek | 5dfd3e2 | 2009-10-22 20:20:29 +0200 | [diff] [blame] | 252 | { .bitrate = 110, .hw_value = 22, }, |
| 253 | { .bitrate = 220, .hw_value = 44, }, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 254 | { .bitrate = 60, .hw_value = 12, }, |
| 255 | { .bitrate = 90, .hw_value = 18, }, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 256 | { .bitrate = 120, .hw_value = 24, }, |
| 257 | { .bitrate = 180, .hw_value = 36, }, |
| 258 | { .bitrate = 240, .hw_value = 48, }, |
| 259 | { .bitrate = 360, .hw_value = 72, }, |
| 260 | { .bitrate = 480, .hw_value = 96, }, |
| 261 | { .bitrate = 540, .hw_value = 108, }, |
Lennert Buytenhek | 140eb5e | 2009-11-30 18:11:44 +0100 | [diff] [blame] | 262 | { .bitrate = 720, .hw_value = 144, }, |
| 263 | }; |
| 264 | |
Lennert Buytenhek | 4eae9ed | 2010-01-12 13:48:32 +0100 | [diff] [blame] | 265 | static const struct ieee80211_channel mwl8k_channels_50[] = { |
| 266 | { .center_freq = 5180, .hw_value = 36, }, |
| 267 | { .center_freq = 5200, .hw_value = 40, }, |
| 268 | { .center_freq = 5220, .hw_value = 44, }, |
| 269 | { .center_freq = 5240, .hw_value = 48, }, |
| 270 | }; |
| 271 | |
| 272 | static const struct ieee80211_rate mwl8k_rates_50[] = { |
| 273 | { .bitrate = 60, .hw_value = 12, }, |
| 274 | { .bitrate = 90, .hw_value = 18, }, |
| 275 | { .bitrate = 120, .hw_value = 24, }, |
| 276 | { .bitrate = 180, .hw_value = 36, }, |
| 277 | { .bitrate = 240, .hw_value = 48, }, |
| 278 | { .bitrate = 360, .hw_value = 72, }, |
| 279 | { .bitrate = 480, .hw_value = 96, }, |
| 280 | { .bitrate = 540, .hw_value = 108, }, |
| 281 | { .bitrate = 720, .hw_value = 144, }, |
| 282 | }; |
| 283 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 284 | /* Set or get info from Firmware */ |
| 285 | #define MWL8K_CMD_SET 0x0001 |
| 286 | #define MWL8K_CMD_GET 0x0000 |
| 287 | |
| 288 | /* Firmware command codes */ |
| 289 | #define MWL8K_CMD_CODE_DNLD 0x0001 |
| 290 | #define MWL8K_CMD_GET_HW_SPEC 0x0003 |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 291 | #define MWL8K_CMD_SET_HW_SPEC 0x0004 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 292 | #define MWL8K_CMD_MAC_MULTICAST_ADR 0x0010 |
| 293 | #define MWL8K_CMD_GET_STAT 0x0014 |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 294 | #define MWL8K_CMD_RADIO_CONTROL 0x001c |
| 295 | #define MWL8K_CMD_RF_TX_POWER 0x001e |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 296 | #define MWL8K_CMD_RF_ANTENNA 0x0020 |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 297 | #define MWL8K_CMD_SET_BEACON 0x0100 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 298 | #define MWL8K_CMD_SET_PRE_SCAN 0x0107 |
| 299 | #define MWL8K_CMD_SET_POST_SCAN 0x0108 |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 300 | #define MWL8K_CMD_SET_RF_CHANNEL 0x010a |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 301 | #define MWL8K_CMD_SET_AID 0x010d |
| 302 | #define MWL8K_CMD_SET_RATE 0x0110 |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 303 | #define MWL8K_CMD_SET_FINALIZE_JOIN 0x0111 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 304 | #define MWL8K_CMD_RTS_THRESHOLD 0x0113 |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 305 | #define MWL8K_CMD_SET_SLOT 0x0114 |
| 306 | #define MWL8K_CMD_SET_EDCA_PARAMS 0x0115 |
| 307 | #define MWL8K_CMD_SET_WMM_MODE 0x0123 |
| 308 | #define MWL8K_CMD_MIMO_CONFIG 0x0125 |
| 309 | #define MWL8K_CMD_USE_FIXED_RATE 0x0126 |
| 310 | #define MWL8K_CMD_ENABLE_SNIFFER 0x0150 |
Lennert Buytenhek | 32060e1 | 2009-10-22 20:20:04 +0200 | [diff] [blame] | 311 | #define MWL8K_CMD_SET_MAC_ADDR 0x0202 |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 312 | #define MWL8K_CMD_SET_RATEADAPT_MODE 0x0203 |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 313 | #define MWL8K_CMD_BSS_START 0x1100 |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 314 | #define MWL8K_CMD_SET_NEW_STN 0x1111 |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 315 | #define MWL8K_CMD_UPDATE_STADB 0x1123 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 316 | |
| 317 | static const char *mwl8k_cmd_name(u16 cmd, char *buf, int bufsize) |
| 318 | { |
| 319 | #define MWL8K_CMDNAME(x) case MWL8K_CMD_##x: do {\ |
| 320 | snprintf(buf, bufsize, "%s", #x);\ |
| 321 | return buf;\ |
| 322 | } while (0) |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 323 | switch (cmd & ~0x8000) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 324 | MWL8K_CMDNAME(CODE_DNLD); |
| 325 | MWL8K_CMDNAME(GET_HW_SPEC); |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 326 | MWL8K_CMDNAME(SET_HW_SPEC); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 327 | MWL8K_CMDNAME(MAC_MULTICAST_ADR); |
| 328 | MWL8K_CMDNAME(GET_STAT); |
| 329 | MWL8K_CMDNAME(RADIO_CONTROL); |
| 330 | MWL8K_CMDNAME(RF_TX_POWER); |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 331 | MWL8K_CMDNAME(RF_ANTENNA); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 332 | MWL8K_CMDNAME(SET_BEACON); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 333 | MWL8K_CMDNAME(SET_PRE_SCAN); |
| 334 | MWL8K_CMDNAME(SET_POST_SCAN); |
| 335 | MWL8K_CMDNAME(SET_RF_CHANNEL); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 336 | MWL8K_CMDNAME(SET_AID); |
| 337 | MWL8K_CMDNAME(SET_RATE); |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 338 | MWL8K_CMDNAME(SET_FINALIZE_JOIN); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 339 | MWL8K_CMDNAME(RTS_THRESHOLD); |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 340 | MWL8K_CMDNAME(SET_SLOT); |
| 341 | MWL8K_CMDNAME(SET_EDCA_PARAMS); |
| 342 | MWL8K_CMDNAME(SET_WMM_MODE); |
| 343 | MWL8K_CMDNAME(MIMO_CONFIG); |
| 344 | MWL8K_CMDNAME(USE_FIXED_RATE); |
| 345 | MWL8K_CMDNAME(ENABLE_SNIFFER); |
Lennert Buytenhek | 32060e1 | 2009-10-22 20:20:04 +0200 | [diff] [blame] | 346 | MWL8K_CMDNAME(SET_MAC_ADDR); |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 347 | MWL8K_CMDNAME(SET_RATEADAPT_MODE); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 348 | MWL8K_CMDNAME(BSS_START); |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 349 | MWL8K_CMDNAME(SET_NEW_STN); |
Lennert Buytenhek | ff45fc6 | 2009-07-16 11:50:36 +0200 | [diff] [blame] | 350 | MWL8K_CMDNAME(UPDATE_STADB); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 351 | default: |
| 352 | snprintf(buf, bufsize, "0x%x", cmd); |
| 353 | } |
| 354 | #undef MWL8K_CMDNAME |
| 355 | |
| 356 | return buf; |
| 357 | } |
| 358 | |
| 359 | /* Hardware and firmware reset */ |
| 360 | static void mwl8k_hw_reset(struct mwl8k_priv *priv) |
| 361 | { |
| 362 | iowrite32(MWL8K_H2A_INT_RESET, |
| 363 | priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 364 | iowrite32(MWL8K_H2A_INT_RESET, |
| 365 | priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 366 | msleep(20); |
| 367 | } |
| 368 | |
| 369 | /* Release fw image */ |
| 370 | static void mwl8k_release_fw(struct firmware **fw) |
| 371 | { |
| 372 | if (*fw == NULL) |
| 373 | return; |
| 374 | release_firmware(*fw); |
| 375 | *fw = NULL; |
| 376 | } |
| 377 | |
| 378 | static void mwl8k_release_firmware(struct mwl8k_priv *priv) |
| 379 | { |
Lennert Buytenhek | 22be40d | 2009-11-30 18:32:38 +0100 | [diff] [blame] | 380 | mwl8k_release_fw(&priv->fw_ucode); |
| 381 | mwl8k_release_fw(&priv->fw_helper); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | /* Request fw image */ |
| 385 | static int mwl8k_request_fw(struct mwl8k_priv *priv, |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 386 | const char *fname, struct firmware **fw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 387 | { |
| 388 | /* release current image */ |
| 389 | if (*fw != NULL) |
| 390 | mwl8k_release_fw(fw); |
| 391 | |
| 392 | return request_firmware((const struct firmware **)fw, |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 393 | fname, &priv->pdev->dev); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 394 | } |
| 395 | |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 396 | static int mwl8k_request_firmware(struct mwl8k_priv *priv) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 397 | { |
Lennert Buytenhek | a74b295 | 2009-10-22 20:20:50 +0200 | [diff] [blame] | 398 | struct mwl8k_device_info *di = priv->device_info; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 399 | int rc; |
| 400 | |
Lennert Buytenhek | a74b295 | 2009-10-22 20:20:50 +0200 | [diff] [blame] | 401 | if (di->helper_image != NULL) { |
Lennert Buytenhek | 22be40d | 2009-11-30 18:32:38 +0100 | [diff] [blame] | 402 | rc = mwl8k_request_fw(priv, di->helper_image, &priv->fw_helper); |
Lennert Buytenhek | a74b295 | 2009-10-22 20:20:50 +0200 | [diff] [blame] | 403 | if (rc) { |
| 404 | printk(KERN_ERR "%s: Error requesting helper " |
| 405 | "firmware file %s\n", pci_name(priv->pdev), |
| 406 | di->helper_image); |
| 407 | return rc; |
| 408 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 409 | } |
| 410 | |
Lennert Buytenhek | 22be40d | 2009-11-30 18:32:38 +0100 | [diff] [blame] | 411 | rc = mwl8k_request_fw(priv, di->fw_image, &priv->fw_ucode); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 412 | if (rc) { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 413 | printk(KERN_ERR "%s: Error requesting firmware file %s\n", |
Lennert Buytenhek | a74b295 | 2009-10-22 20:20:50 +0200 | [diff] [blame] | 414 | pci_name(priv->pdev), di->fw_image); |
Lennert Buytenhek | 22be40d | 2009-11-30 18:32:38 +0100 | [diff] [blame] | 415 | mwl8k_release_fw(&priv->fw_helper); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 416 | return rc; |
| 417 | } |
| 418 | |
| 419 | return 0; |
| 420 | } |
| 421 | |
| 422 | struct mwl8k_cmd_pkt { |
| 423 | __le16 code; |
| 424 | __le16 length; |
Lennert Buytenhek | f57ca9c | 2010-01-12 13:50:14 +0100 | [diff] [blame^] | 425 | __u8 seq_num; |
| 426 | __u8 macid; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 427 | __le16 result; |
| 428 | char payload[0]; |
| 429 | } __attribute__((packed)); |
| 430 | |
| 431 | /* |
| 432 | * Firmware loading. |
| 433 | */ |
| 434 | static int |
| 435 | mwl8k_send_fw_load_cmd(struct mwl8k_priv *priv, void *data, int length) |
| 436 | { |
| 437 | void __iomem *regs = priv->regs; |
| 438 | dma_addr_t dma_addr; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 439 | int loops; |
| 440 | |
| 441 | dma_addr = pci_map_single(priv->pdev, data, length, PCI_DMA_TODEVICE); |
| 442 | if (pci_dma_mapping_error(priv->pdev, dma_addr)) |
| 443 | return -ENOMEM; |
| 444 | |
| 445 | iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR); |
| 446 | iowrite32(0, regs + MWL8K_HIU_INT_CODE); |
| 447 | iowrite32(MWL8K_H2A_INT_DOORBELL, |
| 448 | regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 449 | iowrite32(MWL8K_H2A_INT_DUMMY, |
| 450 | regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 451 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 452 | loops = 1000; |
| 453 | do { |
| 454 | u32 int_code; |
| 455 | |
| 456 | int_code = ioread32(regs + MWL8K_HIU_INT_CODE); |
| 457 | if (int_code == MWL8K_INT_CODE_CMD_FINISHED) { |
| 458 | iowrite32(0, regs + MWL8K_HIU_INT_CODE); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 459 | break; |
| 460 | } |
| 461 | |
Lennert Buytenhek | 3d76e82 | 2009-10-22 20:20:16 +0200 | [diff] [blame] | 462 | cond_resched(); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 463 | udelay(1); |
| 464 | } while (--loops); |
| 465 | |
| 466 | pci_unmap_single(priv->pdev, dma_addr, length, PCI_DMA_TODEVICE); |
| 467 | |
Lennert Buytenhek | d4b7057 | 2009-07-16 12:44:45 +0200 | [diff] [blame] | 468 | return loops ? 0 : -ETIMEDOUT; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | static int mwl8k_load_fw_image(struct mwl8k_priv *priv, |
| 472 | const u8 *data, size_t length) |
| 473 | { |
| 474 | struct mwl8k_cmd_pkt *cmd; |
| 475 | int done; |
| 476 | int rc = 0; |
| 477 | |
| 478 | cmd = kmalloc(sizeof(*cmd) + 256, GFP_KERNEL); |
| 479 | if (cmd == NULL) |
| 480 | return -ENOMEM; |
| 481 | |
| 482 | cmd->code = cpu_to_le16(MWL8K_CMD_CODE_DNLD); |
| 483 | cmd->seq_num = 0; |
Lennert Buytenhek | f57ca9c | 2010-01-12 13:50:14 +0100 | [diff] [blame^] | 484 | cmd->macid = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 485 | cmd->result = 0; |
| 486 | |
| 487 | done = 0; |
| 488 | while (length) { |
| 489 | int block_size = length > 256 ? 256 : length; |
| 490 | |
| 491 | memcpy(cmd->payload, data + done, block_size); |
| 492 | cmd->length = cpu_to_le16(block_size); |
| 493 | |
| 494 | rc = mwl8k_send_fw_load_cmd(priv, cmd, |
| 495 | sizeof(*cmd) + block_size); |
| 496 | if (rc) |
| 497 | break; |
| 498 | |
| 499 | done += block_size; |
| 500 | length -= block_size; |
| 501 | } |
| 502 | |
| 503 | if (!rc) { |
| 504 | cmd->length = 0; |
| 505 | rc = mwl8k_send_fw_load_cmd(priv, cmd, sizeof(*cmd)); |
| 506 | } |
| 507 | |
| 508 | kfree(cmd); |
| 509 | |
| 510 | return rc; |
| 511 | } |
| 512 | |
| 513 | static int mwl8k_feed_fw_image(struct mwl8k_priv *priv, |
| 514 | const u8 *data, size_t length) |
| 515 | { |
| 516 | unsigned char *buffer; |
| 517 | int may_continue, rc = 0; |
| 518 | u32 done, prev_block_size; |
| 519 | |
| 520 | buffer = kmalloc(1024, GFP_KERNEL); |
| 521 | if (buffer == NULL) |
| 522 | return -ENOMEM; |
| 523 | |
| 524 | done = 0; |
| 525 | prev_block_size = 0; |
| 526 | may_continue = 1000; |
| 527 | while (may_continue > 0) { |
| 528 | u32 block_size; |
| 529 | |
| 530 | block_size = ioread32(priv->regs + MWL8K_HIU_SCRATCH); |
| 531 | if (block_size & 1) { |
| 532 | block_size &= ~1; |
| 533 | may_continue--; |
| 534 | } else { |
| 535 | done += prev_block_size; |
| 536 | length -= prev_block_size; |
| 537 | } |
| 538 | |
| 539 | if (block_size > 1024 || block_size > length) { |
| 540 | rc = -EOVERFLOW; |
| 541 | break; |
| 542 | } |
| 543 | |
| 544 | if (length == 0) { |
| 545 | rc = 0; |
| 546 | break; |
| 547 | } |
| 548 | |
| 549 | if (block_size == 0) { |
| 550 | rc = -EPROTO; |
| 551 | may_continue--; |
| 552 | udelay(1); |
| 553 | continue; |
| 554 | } |
| 555 | |
| 556 | prev_block_size = block_size; |
| 557 | memcpy(buffer, data + done, block_size); |
| 558 | |
| 559 | rc = mwl8k_send_fw_load_cmd(priv, buffer, block_size); |
| 560 | if (rc) |
| 561 | break; |
| 562 | } |
| 563 | |
| 564 | if (!rc && length != 0) |
| 565 | rc = -EREMOTEIO; |
| 566 | |
| 567 | kfree(buffer); |
| 568 | |
| 569 | return rc; |
| 570 | } |
| 571 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 572 | static int mwl8k_load_firmware(struct ieee80211_hw *hw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 573 | { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 574 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | 22be40d | 2009-11-30 18:32:38 +0100 | [diff] [blame] | 575 | struct firmware *fw = priv->fw_ucode; |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 576 | int rc; |
| 577 | int loops; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 578 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 579 | if (!memcmp(fw->data, "\x01\x00\x00\x00", 4)) { |
Lennert Buytenhek | 22be40d | 2009-11-30 18:32:38 +0100 | [diff] [blame] | 580 | struct firmware *helper = priv->fw_helper; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 581 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 582 | if (helper == NULL) { |
| 583 | printk(KERN_ERR "%s: helper image needed but none " |
| 584 | "given\n", pci_name(priv->pdev)); |
| 585 | return -EINVAL; |
| 586 | } |
| 587 | |
| 588 | rc = mwl8k_load_fw_image(priv, helper->data, helper->size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 589 | if (rc) { |
| 590 | printk(KERN_ERR "%s: unable to load firmware " |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 591 | "helper image\n", pci_name(priv->pdev)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 592 | return rc; |
| 593 | } |
Lennert Buytenhek | 89b872e | 2009-11-30 18:13:20 +0100 | [diff] [blame] | 594 | msleep(5); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 595 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 596 | rc = mwl8k_feed_fw_image(priv, fw->data, fw->size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 597 | } else { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 598 | rc = mwl8k_load_fw_image(priv, fw->data, fw->size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | if (rc) { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 602 | printk(KERN_ERR "%s: unable to load firmware image\n", |
| 603 | pci_name(priv->pdev)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 604 | return rc; |
| 605 | } |
| 606 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 607 | iowrite32(MWL8K_MODE_STA, priv->regs + MWL8K_HIU_GEN_PTR); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 608 | |
Lennert Buytenhek | 89b872e | 2009-11-30 18:13:20 +0100 | [diff] [blame] | 609 | loops = 500000; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 610 | do { |
Lennert Buytenhek | eae74e6 | 2009-10-22 20:20:53 +0200 | [diff] [blame] | 611 | u32 ready_code; |
| 612 | |
| 613 | ready_code = ioread32(priv->regs + MWL8K_HIU_INT_CODE); |
| 614 | if (ready_code == MWL8K_FWAP_READY) { |
| 615 | priv->ap_fw = 1; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 616 | break; |
Lennert Buytenhek | eae74e6 | 2009-10-22 20:20:53 +0200 | [diff] [blame] | 617 | } else if (ready_code == MWL8K_FWSTA_READY) { |
| 618 | priv->ap_fw = 0; |
| 619 | break; |
| 620 | } |
| 621 | |
| 622 | cond_resched(); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 623 | udelay(1); |
| 624 | } while (--loops); |
| 625 | |
| 626 | return loops ? 0 : -ETIMEDOUT; |
| 627 | } |
| 628 | |
| 629 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 630 | /* DMA header used by firmware and hardware. */ |
| 631 | struct mwl8k_dma_data { |
| 632 | __le16 fwlen; |
| 633 | struct ieee80211_hdr wh; |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 634 | char data[0]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 635 | } __attribute__((packed)); |
| 636 | |
| 637 | /* Routines to add/remove DMA header from skb. */ |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 638 | 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] | 639 | { |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 640 | struct mwl8k_dma_data *tr; |
| 641 | int hdrlen; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 642 | |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 643 | tr = (struct mwl8k_dma_data *)skb->data; |
| 644 | hdrlen = ieee80211_hdrlen(tr->wh.frame_control); |
| 645 | |
| 646 | if (hdrlen != sizeof(tr->wh)) { |
| 647 | if (ieee80211_is_data_qos(tr->wh.frame_control)) { |
| 648 | memmove(tr->data - hdrlen, &tr->wh, hdrlen - 2); |
| 649 | *((__le16 *)(tr->data - 2)) = qos; |
| 650 | } else { |
| 651 | memmove(tr->data - hdrlen, &tr->wh, hdrlen); |
| 652 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 653 | } |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 654 | |
| 655 | if (hdrlen != sizeof(*tr)) |
| 656 | skb_pull(skb, sizeof(*tr) - hdrlen); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 657 | } |
| 658 | |
Lennert Buytenhek | 76266b2 | 2009-07-16 11:07:09 +0200 | [diff] [blame] | 659 | static inline void mwl8k_add_dma_header(struct sk_buff *skb) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 660 | { |
| 661 | struct ieee80211_hdr *wh; |
Lennert Buytenhek | ca00930 | 2009-11-30 18:12:20 +0100 | [diff] [blame] | 662 | int hdrlen; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 663 | struct mwl8k_dma_data *tr; |
| 664 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 665 | /* |
Lennert Buytenhek | ca00930 | 2009-11-30 18:12:20 +0100 | [diff] [blame] | 666 | * Add a firmware DMA header; the firmware requires that we |
| 667 | * present a 2-byte payload length followed by a 4-address |
| 668 | * header (without QoS field), followed (optionally) by any |
| 669 | * WEP/ExtIV header (but only filled in for CCMP). |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 670 | */ |
Lennert Buytenhek | ca00930 | 2009-11-30 18:12:20 +0100 | [diff] [blame] | 671 | wh = (struct ieee80211_hdr *)skb->data; |
| 672 | |
| 673 | hdrlen = ieee80211_hdrlen(wh->frame_control); |
| 674 | if (hdrlen != sizeof(*tr)) |
| 675 | skb_push(skb, sizeof(*tr) - hdrlen); |
| 676 | |
| 677 | if (ieee80211_is_data_qos(wh->frame_control)) |
| 678 | hdrlen -= 2; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 679 | |
| 680 | tr = (struct mwl8k_dma_data *)skb->data; |
| 681 | if (wh != &tr->wh) |
| 682 | memmove(&tr->wh, wh, hdrlen); |
Lennert Buytenhek | ca00930 | 2009-11-30 18:12:20 +0100 | [diff] [blame] | 683 | if (hdrlen != sizeof(tr->wh)) |
| 684 | memset(((void *)&tr->wh) + hdrlen, 0, sizeof(tr->wh) - hdrlen); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 685 | |
| 686 | /* |
| 687 | * Firmware length is the length of the fully formed "802.11 |
| 688 | * payload". That is, everything except for the 802.11 header. |
| 689 | * This includes all crypto material including the MIC. |
| 690 | */ |
Lennert Buytenhek | ca00930 | 2009-11-30 18:12:20 +0100 | [diff] [blame] | 691 | tr->fwlen = cpu_to_le16(skb->len - sizeof(*tr)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | |
| 695 | /* |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 696 | * Packet reception for 88w8366 AP firmware. |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 697 | */ |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 698 | struct mwl8k_rxd_8366_ap { |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 699 | __le16 pkt_len; |
| 700 | __u8 sq2; |
| 701 | __u8 rate; |
| 702 | __le32 pkt_phys_addr; |
| 703 | __le32 next_rxd_phys_addr; |
| 704 | __le16 qos_control; |
| 705 | __le16 htsig2; |
| 706 | __le32 hw_rssi_info; |
| 707 | __le32 hw_noise_floor_info; |
| 708 | __u8 noise_floor; |
| 709 | __u8 pad0[3]; |
| 710 | __u8 rssi; |
| 711 | __u8 rx_status; |
| 712 | __u8 channel; |
| 713 | __u8 rx_ctrl; |
| 714 | } __attribute__((packed)); |
| 715 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 716 | #define MWL8K_8366_AP_RATE_INFO_MCS_FORMAT 0x80 |
| 717 | #define MWL8K_8366_AP_RATE_INFO_40MHZ 0x40 |
| 718 | #define MWL8K_8366_AP_RATE_INFO_RATEID(x) ((x) & 0x3f) |
Lennert Buytenhek | 8e9f33f | 2009-11-30 18:12:35 +0100 | [diff] [blame] | 719 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 720 | #define MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST 0x80 |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 721 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 722 | 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] | 723 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 724 | struct mwl8k_rxd_8366_ap *rxd = _rxd; |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 725 | |
| 726 | rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr); |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 727 | rxd->rx_ctrl = MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST; |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 728 | } |
| 729 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 730 | 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] | 731 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 732 | struct mwl8k_rxd_8366_ap *rxd = _rxd; |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 733 | |
| 734 | rxd->pkt_len = cpu_to_le16(len); |
| 735 | rxd->pkt_phys_addr = cpu_to_le32(addr); |
| 736 | wmb(); |
| 737 | rxd->rx_ctrl = 0; |
| 738 | } |
| 739 | |
| 740 | static int |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 741 | mwl8k_rxd_8366_ap_process(void *_rxd, struct ieee80211_rx_status *status, |
| 742 | __le16 *qos) |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 743 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 744 | struct mwl8k_rxd_8366_ap *rxd = _rxd; |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 745 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 746 | if (!(rxd->rx_ctrl & MWL8K_8366_AP_RX_CTRL_OWNED_BY_HOST)) |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 747 | return -1; |
| 748 | rmb(); |
| 749 | |
| 750 | memset(status, 0, sizeof(*status)); |
| 751 | |
| 752 | status->signal = -rxd->rssi; |
| 753 | status->noise = -rxd->noise_floor; |
| 754 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 755 | if (rxd->rate & MWL8K_8366_AP_RATE_INFO_MCS_FORMAT) { |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 756 | status->flag |= RX_FLAG_HT; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 757 | if (rxd->rate & MWL8K_8366_AP_RATE_INFO_40MHZ) |
Lennert Buytenhek | 8e9f33f | 2009-11-30 18:12:35 +0100 | [diff] [blame] | 758 | status->flag |= RX_FLAG_40MHZ; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 759 | status->rate_idx = MWL8K_8366_AP_RATE_INFO_RATEID(rxd->rate); |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 760 | } else { |
| 761 | int i; |
| 762 | |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 763 | for (i = 0; i < ARRAY_SIZE(mwl8k_rates_24); i++) { |
| 764 | if (mwl8k_rates_24[i].hw_value == rxd->rate) { |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 765 | status->rate_idx = i; |
| 766 | break; |
| 767 | } |
| 768 | } |
| 769 | } |
| 770 | |
Lennert Buytenhek | 8547834 | 2010-01-12 13:48:56 +0100 | [diff] [blame] | 771 | if (rxd->channel > 14) { |
| 772 | status->band = IEEE80211_BAND_5GHZ; |
| 773 | if (!(status->flag & RX_FLAG_HT)) |
| 774 | status->rate_idx -= 5; |
| 775 | } else { |
| 776 | status->band = IEEE80211_BAND_2GHZ; |
| 777 | } |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 778 | status->freq = ieee80211_channel_to_frequency(rxd->channel); |
| 779 | |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 780 | *qos = rxd->qos_control; |
| 781 | |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 782 | return le16_to_cpu(rxd->pkt_len); |
| 783 | } |
| 784 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 785 | static struct rxd_ops rxd_8366_ap_ops = { |
| 786 | .rxd_size = sizeof(struct mwl8k_rxd_8366_ap), |
| 787 | .rxd_init = mwl8k_rxd_8366_ap_init, |
| 788 | .rxd_refill = mwl8k_rxd_8366_ap_refill, |
| 789 | .rxd_process = mwl8k_rxd_8366_ap_process, |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 790 | }; |
| 791 | |
| 792 | /* |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 793 | * Packet reception for STA firmware. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 794 | */ |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 795 | struct mwl8k_rxd_sta { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 796 | __le16 pkt_len; |
| 797 | __u8 link_quality; |
| 798 | __u8 noise_level; |
| 799 | __le32 pkt_phys_addr; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 800 | __le32 next_rxd_phys_addr; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 801 | __le16 qos_control; |
| 802 | __le16 rate_info; |
| 803 | __le32 pad0[4]; |
| 804 | __u8 rssi; |
| 805 | __u8 channel; |
| 806 | __le16 pad1; |
| 807 | __u8 rx_ctrl; |
| 808 | __u8 rx_status; |
| 809 | __u8 pad2[2]; |
| 810 | } __attribute__((packed)); |
| 811 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 812 | #define MWL8K_STA_RATE_INFO_SHORTPRE 0x8000 |
| 813 | #define MWL8K_STA_RATE_INFO_ANTSELECT(x) (((x) >> 11) & 0x3) |
| 814 | #define MWL8K_STA_RATE_INFO_RATEID(x) (((x) >> 3) & 0x3f) |
| 815 | #define MWL8K_STA_RATE_INFO_40MHZ 0x0004 |
| 816 | #define MWL8K_STA_RATE_INFO_SHORTGI 0x0002 |
| 817 | #define MWL8K_STA_RATE_INFO_MCS_FORMAT 0x0001 |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 818 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 819 | #define MWL8K_STA_RX_CTRL_OWNED_BY_HOST 0x02 |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 820 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 821 | 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] | 822 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 823 | struct mwl8k_rxd_sta *rxd = _rxd; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 824 | |
| 825 | rxd->next_rxd_phys_addr = cpu_to_le32(next_dma_addr); |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 826 | rxd->rx_ctrl = MWL8K_STA_RX_CTRL_OWNED_BY_HOST; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 827 | } |
| 828 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 829 | 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] | 830 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 831 | struct mwl8k_rxd_sta *rxd = _rxd; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 832 | |
| 833 | rxd->pkt_len = cpu_to_le16(len); |
| 834 | rxd->pkt_phys_addr = cpu_to_le32(addr); |
| 835 | wmb(); |
| 836 | rxd->rx_ctrl = 0; |
| 837 | } |
| 838 | |
| 839 | static int |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 840 | mwl8k_rxd_sta_process(void *_rxd, struct ieee80211_rx_status *status, |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 841 | __le16 *qos) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 842 | { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 843 | struct mwl8k_rxd_sta *rxd = _rxd; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 844 | u16 rate_info; |
| 845 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 846 | if (!(rxd->rx_ctrl & MWL8K_STA_RX_CTRL_OWNED_BY_HOST)) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 847 | return -1; |
| 848 | rmb(); |
| 849 | |
| 850 | rate_info = le16_to_cpu(rxd->rate_info); |
| 851 | |
| 852 | memset(status, 0, sizeof(*status)); |
| 853 | |
| 854 | status->signal = -rxd->rssi; |
| 855 | status->noise = -rxd->noise_level; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 856 | status->antenna = MWL8K_STA_RATE_INFO_ANTSELECT(rate_info); |
| 857 | status->rate_idx = MWL8K_STA_RATE_INFO_RATEID(rate_info); |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 858 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 859 | if (rate_info & MWL8K_STA_RATE_INFO_SHORTPRE) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 860 | status->flag |= RX_FLAG_SHORTPRE; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 861 | if (rate_info & MWL8K_STA_RATE_INFO_40MHZ) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 862 | status->flag |= RX_FLAG_40MHZ; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 863 | if (rate_info & MWL8K_STA_RATE_INFO_SHORTGI) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 864 | status->flag |= RX_FLAG_SHORT_GI; |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 865 | if (rate_info & MWL8K_STA_RATE_INFO_MCS_FORMAT) |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 866 | status->flag |= RX_FLAG_HT; |
| 867 | |
Lennert Buytenhek | 8547834 | 2010-01-12 13:48:56 +0100 | [diff] [blame] | 868 | if (rxd->channel > 14) { |
| 869 | status->band = IEEE80211_BAND_5GHZ; |
| 870 | if (!(status->flag & RX_FLAG_HT)) |
| 871 | status->rate_idx -= 5; |
| 872 | } else { |
| 873 | status->band = IEEE80211_BAND_2GHZ; |
| 874 | } |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 875 | status->freq = ieee80211_channel_to_frequency(rxd->channel); |
| 876 | |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 877 | *qos = rxd->qos_control; |
| 878 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 879 | return le16_to_cpu(rxd->pkt_len); |
| 880 | } |
| 881 | |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 882 | static struct rxd_ops rxd_sta_ops = { |
| 883 | .rxd_size = sizeof(struct mwl8k_rxd_sta), |
| 884 | .rxd_init = mwl8k_rxd_sta_init, |
| 885 | .rxd_refill = mwl8k_rxd_sta_refill, |
| 886 | .rxd_process = mwl8k_rxd_sta_process, |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 887 | }; |
| 888 | |
| 889 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 890 | #define MWL8K_RX_DESCS 256 |
| 891 | #define MWL8K_RX_MAXSZ 3800 |
| 892 | |
| 893 | static int mwl8k_rxq_init(struct ieee80211_hw *hw, int index) |
| 894 | { |
| 895 | struct mwl8k_priv *priv = hw->priv; |
| 896 | struct mwl8k_rx_queue *rxq = priv->rxq + index; |
| 897 | int size; |
| 898 | int i; |
| 899 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 900 | rxq->rxd_count = 0; |
| 901 | rxq->head = 0; |
| 902 | rxq->tail = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 903 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 904 | size = MWL8K_RX_DESCS * priv->rxd_ops->rxd_size; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 905 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 906 | rxq->rxd = pci_alloc_consistent(priv->pdev, size, &rxq->rxd_dma); |
| 907 | if (rxq->rxd == NULL) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 908 | printk(KERN_ERR "%s: failed to alloc RX descriptors\n", |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 909 | wiphy_name(hw->wiphy)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 910 | return -ENOMEM; |
| 911 | } |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 912 | memset(rxq->rxd, 0, size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 913 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 914 | rxq->buf = kmalloc(MWL8K_RX_DESCS * sizeof(*rxq->buf), GFP_KERNEL); |
| 915 | if (rxq->buf == NULL) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 916 | printk(KERN_ERR "%s: failed to alloc RX skbuff list\n", |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 917 | wiphy_name(hw->wiphy)); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 918 | pci_free_consistent(priv->pdev, size, rxq->rxd, rxq->rxd_dma); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 919 | return -ENOMEM; |
| 920 | } |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 921 | memset(rxq->buf, 0, MWL8K_RX_DESCS * sizeof(*rxq->buf)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 922 | |
| 923 | for (i = 0; i < MWL8K_RX_DESCS; i++) { |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 924 | int desc_size; |
| 925 | void *rxd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 926 | int nexti; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 927 | dma_addr_t next_dma_addr; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 928 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 929 | desc_size = priv->rxd_ops->rxd_size; |
| 930 | rxd = rxq->rxd + (i * priv->rxd_ops->rxd_size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 931 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 932 | nexti = i + 1; |
| 933 | if (nexti == MWL8K_RX_DESCS) |
| 934 | nexti = 0; |
| 935 | next_dma_addr = rxq->rxd_dma + (nexti * desc_size); |
| 936 | |
| 937 | priv->rxd_ops->rxd_init(rxd, next_dma_addr); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 938 | } |
| 939 | |
| 940 | return 0; |
| 941 | } |
| 942 | |
| 943 | static int rxq_refill(struct ieee80211_hw *hw, int index, int limit) |
| 944 | { |
| 945 | struct mwl8k_priv *priv = hw->priv; |
| 946 | struct mwl8k_rx_queue *rxq = priv->rxq + index; |
| 947 | int refilled; |
| 948 | |
| 949 | refilled = 0; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 950 | while (rxq->rxd_count < MWL8K_RX_DESCS && limit--) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 951 | struct sk_buff *skb; |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 952 | dma_addr_t addr; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 953 | int rx; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 954 | void *rxd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 955 | |
| 956 | skb = dev_alloc_skb(MWL8K_RX_MAXSZ); |
| 957 | if (skb == NULL) |
| 958 | break; |
| 959 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 960 | addr = pci_map_single(priv->pdev, skb->data, |
| 961 | MWL8K_RX_MAXSZ, DMA_FROM_DEVICE); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 962 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 963 | rxq->rxd_count++; |
| 964 | rx = rxq->tail++; |
| 965 | if (rxq->tail == MWL8K_RX_DESCS) |
| 966 | rxq->tail = 0; |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 967 | rxq->buf[rx].skb = skb; |
| 968 | pci_unmap_addr_set(&rxq->buf[rx], dma, addr); |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 969 | |
| 970 | rxd = rxq->rxd + (rx * priv->rxd_ops->rxd_size); |
| 971 | priv->rxd_ops->rxd_refill(rxd, addr, MWL8K_RX_MAXSZ); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 972 | |
| 973 | refilled++; |
| 974 | } |
| 975 | |
| 976 | return refilled; |
| 977 | } |
| 978 | |
| 979 | /* Must be called only when the card's reception is completely halted */ |
| 980 | static void mwl8k_rxq_deinit(struct ieee80211_hw *hw, int index) |
| 981 | { |
| 982 | struct mwl8k_priv *priv = hw->priv; |
| 983 | struct mwl8k_rx_queue *rxq = priv->rxq + index; |
| 984 | int i; |
| 985 | |
| 986 | for (i = 0; i < MWL8K_RX_DESCS; i++) { |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 987 | if (rxq->buf[i].skb != NULL) { |
| 988 | pci_unmap_single(priv->pdev, |
| 989 | pci_unmap_addr(&rxq->buf[i], dma), |
| 990 | MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE); |
| 991 | pci_unmap_addr_set(&rxq->buf[i], dma, 0); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 992 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 993 | kfree_skb(rxq->buf[i].skb); |
| 994 | rxq->buf[i].skb = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 995 | } |
| 996 | } |
| 997 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 998 | kfree(rxq->buf); |
| 999 | rxq->buf = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1000 | |
| 1001 | pci_free_consistent(priv->pdev, |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1002 | MWL8K_RX_DESCS * priv->rxd_ops->rxd_size, |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1003 | rxq->rxd, rxq->rxd_dma); |
| 1004 | rxq->rxd = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1005 | } |
| 1006 | |
| 1007 | |
| 1008 | /* |
| 1009 | * Scan a list of BSSIDs to process for finalize join. |
| 1010 | * Allows for extension to process multiple BSSIDs. |
| 1011 | */ |
| 1012 | static inline int |
| 1013 | mwl8k_capture_bssid(struct mwl8k_priv *priv, struct ieee80211_hdr *wh) |
| 1014 | { |
| 1015 | return priv->capture_beacon && |
| 1016 | ieee80211_is_beacon(wh->frame_control) && |
| 1017 | !compare_ether_addr(wh->addr3, priv->capture_bssid); |
| 1018 | } |
| 1019 | |
Lennert Buytenhek | 3779752 | 2009-10-22 20:19:45 +0200 | [diff] [blame] | 1020 | static inline void mwl8k_save_beacon(struct ieee80211_hw *hw, |
| 1021 | struct sk_buff *skb) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1022 | { |
Lennert Buytenhek | 3779752 | 2009-10-22 20:19:45 +0200 | [diff] [blame] | 1023 | struct mwl8k_priv *priv = hw->priv; |
| 1024 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1025 | priv->capture_beacon = false; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 1026 | memset(priv->capture_bssid, 0, ETH_ALEN); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1027 | |
| 1028 | /* |
| 1029 | * Use GFP_ATOMIC as rxq_process is called from |
| 1030 | * the primary interrupt handler, memory allocation call |
| 1031 | * must not sleep. |
| 1032 | */ |
| 1033 | priv->beacon_skb = skb_copy(skb, GFP_ATOMIC); |
| 1034 | if (priv->beacon_skb != NULL) |
Lennert Buytenhek | 3779752 | 2009-10-22 20:19:45 +0200 | [diff] [blame] | 1035 | ieee80211_queue_work(hw, &priv->finalize_join_worker); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1036 | } |
| 1037 | |
| 1038 | static int rxq_process(struct ieee80211_hw *hw, int index, int limit) |
| 1039 | { |
| 1040 | struct mwl8k_priv *priv = hw->priv; |
| 1041 | struct mwl8k_rx_queue *rxq = priv->rxq + index; |
| 1042 | int processed; |
| 1043 | |
| 1044 | processed = 0; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1045 | while (rxq->rxd_count && limit--) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1046 | struct sk_buff *skb; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1047 | void *rxd; |
| 1048 | int pkt_len; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1049 | struct ieee80211_rx_status status; |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 1050 | __le16 qos; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1051 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1052 | skb = rxq->buf[rxq->head].skb; |
Lennert Buytenhek | d25f9f1 | 2009-08-03 21:58:26 +0200 | [diff] [blame] | 1053 | if (skb == NULL) |
| 1054 | break; |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1055 | |
| 1056 | rxd = rxq->rxd + (rxq->head * priv->rxd_ops->rxd_size); |
| 1057 | |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 1058 | pkt_len = priv->rxd_ops->rxd_process(rxd, &status, &qos); |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1059 | if (pkt_len < 0) |
| 1060 | break; |
| 1061 | |
Lennert Buytenhek | 788838e | 2009-10-22 20:20:56 +0200 | [diff] [blame] | 1062 | rxq->buf[rxq->head].skb = NULL; |
| 1063 | |
| 1064 | pci_unmap_single(priv->pdev, |
| 1065 | pci_unmap_addr(&rxq->buf[rxq->head], dma), |
| 1066 | MWL8K_RX_MAXSZ, PCI_DMA_FROMDEVICE); |
| 1067 | pci_unmap_addr_set(&rxq->buf[rxq->head], dma, 0); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1068 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1069 | rxq->head++; |
| 1070 | if (rxq->head == MWL8K_RX_DESCS) |
| 1071 | rxq->head = 0; |
| 1072 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1073 | rxq->rxd_count--; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1074 | |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1075 | skb_put(skb, pkt_len); |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 1076 | mwl8k_remove_dma_header(skb, qos); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1077 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1078 | /* |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 1079 | * Check for a pending join operation. Save a |
| 1080 | * copy of the beacon and schedule a tasklet to |
| 1081 | * send a FINALIZE_JOIN command to the firmware. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1082 | */ |
Lennert Buytenhek | 54bc3a0 | 2009-10-22 20:20:59 +0200 | [diff] [blame] | 1083 | if (mwl8k_capture_bssid(priv, (void *)skb->data)) |
Lennert Buytenhek | 3779752 | 2009-10-22 20:19:45 +0200 | [diff] [blame] | 1084 | mwl8k_save_beacon(hw, skb); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1085 | |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 1086 | memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status)); |
| 1087 | ieee80211_rx_irqsafe(hw, skb); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1088 | |
| 1089 | processed++; |
| 1090 | } |
| 1091 | |
| 1092 | return processed; |
| 1093 | } |
| 1094 | |
| 1095 | |
| 1096 | /* |
| 1097 | * Packet transmission. |
| 1098 | */ |
| 1099 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1100 | #define MWL8K_TXD_STATUS_OK 0x00000001 |
| 1101 | #define MWL8K_TXD_STATUS_OK_RETRY 0x00000002 |
| 1102 | #define MWL8K_TXD_STATUS_OK_MORE_RETRY 0x00000004 |
| 1103 | #define MWL8K_TXD_STATUS_MULTICAST_TX 0x00000008 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1104 | #define MWL8K_TXD_STATUS_FW_OWNED 0x80000000 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1105 | |
Lennert Buytenhek | e0493a8 | 2009-11-30 18:32:00 +0100 | [diff] [blame] | 1106 | #define MWL8K_QOS_QLEN_UNSPEC 0xff00 |
| 1107 | #define MWL8K_QOS_ACK_POLICY_MASK 0x0060 |
| 1108 | #define MWL8K_QOS_ACK_POLICY_NORMAL 0x0000 |
| 1109 | #define MWL8K_QOS_ACK_POLICY_BLOCKACK 0x0060 |
| 1110 | #define MWL8K_QOS_EOSP 0x0010 |
| 1111 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1112 | struct mwl8k_tx_desc { |
| 1113 | __le32 status; |
| 1114 | __u8 data_rate; |
| 1115 | __u8 tx_priority; |
| 1116 | __le16 qos_control; |
| 1117 | __le32 pkt_phys_addr; |
| 1118 | __le16 pkt_len; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 1119 | __u8 dest_MAC_addr[ETH_ALEN]; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1120 | __le32 next_txd_phys_addr; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1121 | __le32 reserved; |
| 1122 | __le16 rate_info; |
| 1123 | __u8 peer_id; |
| 1124 | __u8 tx_frag_cnt; |
| 1125 | } __attribute__((packed)); |
| 1126 | |
| 1127 | #define MWL8K_TX_DESCS 128 |
| 1128 | |
| 1129 | static int mwl8k_txq_init(struct ieee80211_hw *hw, int index) |
| 1130 | { |
| 1131 | struct mwl8k_priv *priv = hw->priv; |
| 1132 | struct mwl8k_tx_queue *txq = priv->txq + index; |
| 1133 | int size; |
| 1134 | int i; |
| 1135 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1136 | memset(&txq->stats, 0, sizeof(struct ieee80211_tx_queue_stats)); |
| 1137 | txq->stats.limit = MWL8K_TX_DESCS; |
| 1138 | txq->head = 0; |
| 1139 | txq->tail = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1140 | |
| 1141 | size = MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc); |
| 1142 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1143 | txq->txd = pci_alloc_consistent(priv->pdev, size, &txq->txd_dma); |
| 1144 | if (txq->txd == NULL) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1145 | printk(KERN_ERR "%s: failed to alloc TX descriptors\n", |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 1146 | wiphy_name(hw->wiphy)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1147 | return -ENOMEM; |
| 1148 | } |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1149 | memset(txq->txd, 0, size); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1150 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1151 | txq->skb = kmalloc(MWL8K_TX_DESCS * sizeof(*txq->skb), GFP_KERNEL); |
| 1152 | if (txq->skb == NULL) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1153 | printk(KERN_ERR "%s: failed to alloc TX skbuff list\n", |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 1154 | wiphy_name(hw->wiphy)); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1155 | pci_free_consistent(priv->pdev, size, txq->txd, txq->txd_dma); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1156 | return -ENOMEM; |
| 1157 | } |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1158 | memset(txq->skb, 0, MWL8K_TX_DESCS * sizeof(*txq->skb)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1159 | |
| 1160 | for (i = 0; i < MWL8K_TX_DESCS; i++) { |
| 1161 | struct mwl8k_tx_desc *tx_desc; |
| 1162 | int nexti; |
| 1163 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1164 | tx_desc = txq->txd + i; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1165 | nexti = (i + 1) % MWL8K_TX_DESCS; |
| 1166 | |
| 1167 | tx_desc->status = 0; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1168 | tx_desc->next_txd_phys_addr = |
| 1169 | cpu_to_le32(txq->txd_dma + nexti * sizeof(*tx_desc)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1170 | } |
| 1171 | |
| 1172 | return 0; |
| 1173 | } |
| 1174 | |
| 1175 | static inline void mwl8k_tx_start(struct mwl8k_priv *priv) |
| 1176 | { |
| 1177 | iowrite32(MWL8K_H2A_INT_PPA_READY, |
| 1178 | priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 1179 | iowrite32(MWL8K_H2A_INT_DUMMY, |
| 1180 | priv->regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 1181 | ioread32(priv->regs + MWL8K_HIU_INT_CODE); |
| 1182 | } |
| 1183 | |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1184 | static void mwl8k_dump_tx_rings(struct ieee80211_hw *hw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1185 | { |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1186 | struct mwl8k_priv *priv = hw->priv; |
| 1187 | int i; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1188 | |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1189 | for (i = 0; i < MWL8K_TX_QUEUES; i++) { |
| 1190 | struct mwl8k_tx_queue *txq = priv->txq + i; |
| 1191 | int fw_owned = 0; |
| 1192 | int drv_owned = 0; |
| 1193 | int unused = 0; |
| 1194 | int desc; |
Lennert Buytenhek | c3f967d | 2009-08-18 04:15:22 +0200 | [diff] [blame] | 1195 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1196 | for (desc = 0; desc < MWL8K_TX_DESCS; desc++) { |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1197 | struct mwl8k_tx_desc *tx_desc = txq->txd + desc; |
| 1198 | u32 status; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1199 | |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1200 | status = le32_to_cpu(tx_desc->status); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1201 | if (status & MWL8K_TXD_STATUS_FW_OWNED) |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1202 | fw_owned++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1203 | else |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1204 | drv_owned++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1205 | |
| 1206 | if (tx_desc->pkt_len == 0) |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1207 | unused++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1208 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1209 | |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1210 | printk(KERN_ERR "%s: txq[%d] len=%d head=%d tail=%d " |
| 1211 | "fw_owned=%d drv_owned=%d unused=%d\n", |
| 1212 | wiphy_name(hw->wiphy), i, |
| 1213 | txq->stats.len, txq->head, txq->tail, |
| 1214 | fw_owned, drv_owned, unused); |
| 1215 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1216 | } |
| 1217 | |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 1218 | /* |
Lennert Buytenhek | 88de754a | 2009-10-22 20:19:37 +0200 | [diff] [blame] | 1219 | * Must be called with priv->fw_mutex held and tx queues stopped. |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 1220 | */ |
Lennert Buytenhek | 62abd3c | 2010-01-08 18:28:34 +0100 | [diff] [blame] | 1221 | #define MWL8K_TX_WAIT_TIMEOUT_MS 5000 |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1222 | |
Lennert Buytenhek | 950d5b0 | 2009-07-17 01:48:41 +0200 | [diff] [blame] | 1223 | static int mwl8k_tx_wait_empty(struct ieee80211_hw *hw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1224 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1225 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | 88de754a | 2009-10-22 20:19:37 +0200 | [diff] [blame] | 1226 | DECLARE_COMPLETION_ONSTACK(tx_wait); |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1227 | int retry; |
| 1228 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1229 | |
| 1230 | might_sleep(); |
| 1231 | |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1232 | /* |
| 1233 | * The TX queues are stopped at this point, so this test |
| 1234 | * doesn't need to take ->tx_lock. |
| 1235 | */ |
| 1236 | if (!priv->pending_tx_pkts) |
| 1237 | return 0; |
| 1238 | |
| 1239 | retry = 0; |
| 1240 | rc = 0; |
| 1241 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1242 | spin_lock_bh(&priv->tx_lock); |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1243 | priv->tx_wait = &tx_wait; |
| 1244 | while (!rc) { |
| 1245 | int oldcount; |
| 1246 | unsigned long timeout; |
| 1247 | |
| 1248 | oldcount = priv->pending_tx_pkts; |
| 1249 | |
| 1250 | spin_unlock_bh(&priv->tx_lock); |
| 1251 | timeout = wait_for_completion_timeout(&tx_wait, |
| 1252 | msecs_to_jiffies(MWL8K_TX_WAIT_TIMEOUT_MS)); |
| 1253 | spin_lock_bh(&priv->tx_lock); |
| 1254 | |
| 1255 | if (timeout) { |
| 1256 | WARN_ON(priv->pending_tx_pkts); |
| 1257 | if (retry) { |
| 1258 | printk(KERN_NOTICE "%s: tx rings drained\n", |
| 1259 | wiphy_name(hw->wiphy)); |
| 1260 | } |
| 1261 | break; |
| 1262 | } |
| 1263 | |
| 1264 | if (priv->pending_tx_pkts < oldcount) { |
Lennert Buytenhek | 9a2303b | 2010-01-04 21:54:25 +0100 | [diff] [blame] | 1265 | printk(KERN_NOTICE "%s: waiting for tx rings " |
| 1266 | "to drain (%d -> %d pkts)\n", |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1267 | wiphy_name(hw->wiphy), oldcount, |
| 1268 | priv->pending_tx_pkts); |
| 1269 | retry = 1; |
| 1270 | continue; |
| 1271 | } |
| 1272 | |
| 1273 | priv->tx_wait = NULL; |
| 1274 | |
| 1275 | printk(KERN_ERR "%s: tx rings stuck for %d ms\n", |
| 1276 | wiphy_name(hw->wiphy), MWL8K_TX_WAIT_TIMEOUT_MS); |
| 1277 | mwl8k_dump_tx_rings(hw); |
| 1278 | |
| 1279 | rc = -ETIMEDOUT; |
| 1280 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1281 | spin_unlock_bh(&priv->tx_lock); |
| 1282 | |
Lennert Buytenhek | 7e1112d | 2009-11-30 18:13:04 +0100 | [diff] [blame] | 1283 | return rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1284 | } |
| 1285 | |
Lennert Buytenhek | c23b5a6 | 2009-07-16 13:49:55 +0200 | [diff] [blame] | 1286 | #define MWL8K_TXD_SUCCESS(status) \ |
| 1287 | ((status) & (MWL8K_TXD_STATUS_OK | \ |
| 1288 | MWL8K_TXD_STATUS_OK_RETRY | \ |
| 1289 | MWL8K_TXD_STATUS_OK_MORE_RETRY)) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1290 | |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1291 | static int |
| 1292 | 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] | 1293 | { |
| 1294 | struct mwl8k_priv *priv = hw->priv; |
| 1295 | struct mwl8k_tx_queue *txq = priv->txq + index; |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1296 | int processed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1297 | |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1298 | processed = 0; |
| 1299 | while (txq->stats.len > 0 && limit--) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1300 | int tx; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1301 | struct mwl8k_tx_desc *tx_desc; |
| 1302 | unsigned long addr; |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1303 | int size; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1304 | struct sk_buff *skb; |
| 1305 | struct ieee80211_tx_info *info; |
| 1306 | u32 status; |
| 1307 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1308 | tx = txq->head; |
| 1309 | tx_desc = txq->txd + tx; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1310 | |
| 1311 | status = le32_to_cpu(tx_desc->status); |
| 1312 | |
| 1313 | if (status & MWL8K_TXD_STATUS_FW_OWNED) { |
| 1314 | if (!force) |
| 1315 | break; |
| 1316 | tx_desc->status &= |
| 1317 | ~cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED); |
| 1318 | } |
| 1319 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1320 | txq->head = (tx + 1) % MWL8K_TX_DESCS; |
| 1321 | BUG_ON(txq->stats.len == 0); |
| 1322 | txq->stats.len--; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1323 | priv->pending_tx_pkts--; |
| 1324 | |
| 1325 | addr = le32_to_cpu(tx_desc->pkt_phys_addr); |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1326 | size = le16_to_cpu(tx_desc->pkt_len); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1327 | skb = txq->skb[tx]; |
| 1328 | txq->skb[tx] = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1329 | |
| 1330 | BUG_ON(skb == NULL); |
| 1331 | pci_unmap_single(priv->pdev, addr, size, PCI_DMA_TODEVICE); |
| 1332 | |
Lennert Buytenhek | 20f09c3 | 2009-11-30 18:12:08 +0100 | [diff] [blame] | 1333 | mwl8k_remove_dma_header(skb, tx_desc->qos_control); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1334 | |
| 1335 | /* Mark descriptor as unused */ |
| 1336 | tx_desc->pkt_phys_addr = 0; |
| 1337 | tx_desc->pkt_len = 0; |
| 1338 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1339 | info = IEEE80211_SKB_CB(skb); |
| 1340 | ieee80211_tx_info_clear_status(info); |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1341 | if (MWL8K_TXD_SUCCESS(status)) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1342 | info->flags |= IEEE80211_TX_STAT_ACK; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1343 | |
| 1344 | ieee80211_tx_status_irqsafe(hw, skb); |
| 1345 | |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1346 | processed++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1347 | } |
| 1348 | |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1349 | if (processed && priv->radio_on && !mutex_is_locked(&priv->fw_mutex)) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1350 | ieee80211_wake_queue(hw, index); |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1351 | |
| 1352 | return processed; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1353 | } |
| 1354 | |
| 1355 | /* must be called only when the card's transmit is completely halted */ |
| 1356 | static void mwl8k_txq_deinit(struct ieee80211_hw *hw, int index) |
| 1357 | { |
| 1358 | struct mwl8k_priv *priv = hw->priv; |
| 1359 | struct mwl8k_tx_queue *txq = priv->txq + index; |
| 1360 | |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 1361 | mwl8k_txq_reclaim(hw, index, INT_MAX, 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1362 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1363 | kfree(txq->skb); |
| 1364 | txq->skb = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1365 | |
| 1366 | pci_free_consistent(priv->pdev, |
| 1367 | MWL8K_TX_DESCS * sizeof(struct mwl8k_tx_desc), |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1368 | txq->txd, txq->txd_dma); |
| 1369 | txq->txd = NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1370 | } |
| 1371 | |
| 1372 | static int |
| 1373 | mwl8k_txq_xmit(struct ieee80211_hw *hw, int index, struct sk_buff *skb) |
| 1374 | { |
| 1375 | struct mwl8k_priv *priv = hw->priv; |
| 1376 | struct ieee80211_tx_info *tx_info; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1377 | struct mwl8k_vif *mwl8k_vif; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1378 | struct ieee80211_hdr *wh; |
| 1379 | struct mwl8k_tx_queue *txq; |
| 1380 | struct mwl8k_tx_desc *tx; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1381 | dma_addr_t dma; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1382 | u32 txstatus; |
| 1383 | u8 txdatarate; |
| 1384 | u16 qos; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1385 | |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1386 | wh = (struct ieee80211_hdr *)skb->data; |
| 1387 | if (ieee80211_is_data_qos(wh->frame_control)) |
| 1388 | qos = le16_to_cpu(*((__le16 *)ieee80211_get_qos_ctl(wh))); |
| 1389 | else |
| 1390 | qos = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1391 | |
Lennert Buytenhek | 76266b2 | 2009-07-16 11:07:09 +0200 | [diff] [blame] | 1392 | mwl8k_add_dma_header(skb); |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1393 | wh = &((struct mwl8k_dma_data *)skb->data)->wh; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1394 | |
| 1395 | tx_info = IEEE80211_SKB_CB(skb); |
| 1396 | mwl8k_vif = MWL8K_VIF(tx_info->control.vif); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1397 | |
| 1398 | if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1399 | wh->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG); |
Lennert Buytenhek | 657232b | 2010-01-12 13:47:47 +0100 | [diff] [blame] | 1400 | wh->seq_ctrl |= cpu_to_le16(mwl8k_vif->seqno); |
| 1401 | mwl8k_vif->seqno += 0x10; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1402 | } |
| 1403 | |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1404 | /* Setup firmware control bit fields for each frame type. */ |
| 1405 | txstatus = 0; |
| 1406 | txdatarate = 0; |
| 1407 | if (ieee80211_is_mgmt(wh->frame_control) || |
| 1408 | ieee80211_is_ctl(wh->frame_control)) { |
| 1409 | txdatarate = 0; |
Lennert Buytenhek | e0493a8 | 2009-11-30 18:32:00 +0100 | [diff] [blame] | 1410 | qos |= MWL8K_QOS_QLEN_UNSPEC | MWL8K_QOS_EOSP; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1411 | } else if (ieee80211_is_data(wh->frame_control)) { |
| 1412 | txdatarate = 1; |
| 1413 | if (is_multicast_ether_addr(wh->addr1)) |
| 1414 | txstatus |= MWL8K_TXD_STATUS_MULTICAST_TX; |
| 1415 | |
Lennert Buytenhek | e0493a8 | 2009-11-30 18:32:00 +0100 | [diff] [blame] | 1416 | qos &= ~MWL8K_QOS_ACK_POLICY_MASK; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1417 | if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) |
Lennert Buytenhek | e0493a8 | 2009-11-30 18:32:00 +0100 | [diff] [blame] | 1418 | qos |= MWL8K_QOS_ACK_POLICY_BLOCKACK; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1419 | else |
Lennert Buytenhek | e0493a8 | 2009-11-30 18:32:00 +0100 | [diff] [blame] | 1420 | qos |= MWL8K_QOS_ACK_POLICY_NORMAL; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1421 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1422 | |
| 1423 | dma = pci_map_single(priv->pdev, skb->data, |
| 1424 | skb->len, PCI_DMA_TODEVICE); |
| 1425 | |
| 1426 | if (pci_dma_mapping_error(priv->pdev, dma)) { |
| 1427 | printk(KERN_DEBUG "%s: failed to dma map skb, " |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 1428 | "dropping TX frame.\n", wiphy_name(hw->wiphy)); |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1429 | dev_kfree_skb(skb); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1430 | return NETDEV_TX_OK; |
| 1431 | } |
| 1432 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1433 | spin_lock_bh(&priv->tx_lock); |
| 1434 | |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1435 | txq = priv->txq + index; |
| 1436 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1437 | BUG_ON(txq->skb[txq->tail] != NULL); |
| 1438 | txq->skb[txq->tail] = skb; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1439 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1440 | tx = txq->txd + txq->tail; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1441 | tx->data_rate = txdatarate; |
| 1442 | tx->tx_priority = index; |
| 1443 | tx->qos_control = cpu_to_le16(qos); |
| 1444 | tx->pkt_phys_addr = cpu_to_le32(dma); |
| 1445 | tx->pkt_len = cpu_to_le16(skb->len); |
| 1446 | tx->rate_info = 0; |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 1447 | if (!priv->ap_fw && tx_info->control.sta != NULL) |
| 1448 | tx->peer_id = MWL8K_STA(tx_info->control.sta)->peer_id; |
| 1449 | else |
| 1450 | tx->peer_id = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1451 | wmb(); |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1452 | tx->status = cpu_to_le32(MWL8K_TXD_STATUS_FW_OWNED | txstatus); |
| 1453 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1454 | txq->stats.count++; |
| 1455 | txq->stats.len++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1456 | priv->pending_tx_pkts++; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1457 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1458 | txq->tail++; |
| 1459 | if (txq->tail == MWL8K_TX_DESCS) |
| 1460 | txq->tail = 0; |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1461 | |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1462 | if (txq->head == txq->tail) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1463 | ieee80211_stop_queue(hw, index); |
| 1464 | |
Lennert Buytenhek | 23b3390 | 2009-07-17 05:21:04 +0200 | [diff] [blame] | 1465 | mwl8k_tx_start(priv); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1466 | |
| 1467 | spin_unlock_bh(&priv->tx_lock); |
| 1468 | |
| 1469 | return NETDEV_TX_OK; |
| 1470 | } |
| 1471 | |
| 1472 | |
| 1473 | /* |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 1474 | * Firmware access. |
| 1475 | * |
| 1476 | * We have the following requirements for issuing firmware commands: |
| 1477 | * - Some commands require that the packet transmit path is idle when |
| 1478 | * the command is issued. (For simplicity, we'll just quiesce the |
| 1479 | * transmit path for every command.) |
| 1480 | * - There are certain sequences of commands that need to be issued to |
| 1481 | * the hardware sequentially, with no other intervening commands. |
| 1482 | * |
| 1483 | * This leads to an implementation of a "firmware lock" as a mutex that |
| 1484 | * can be taken recursively, and which is taken by both the low-level |
| 1485 | * command submission function (mwl8k_post_cmd) as well as any users of |
| 1486 | * that function that require issuing of an atomic sequence of commands, |
| 1487 | * and quiesces the transmit path whenever it's taken. |
| 1488 | */ |
| 1489 | static int mwl8k_fw_lock(struct ieee80211_hw *hw) |
| 1490 | { |
| 1491 | struct mwl8k_priv *priv = hw->priv; |
| 1492 | |
| 1493 | if (priv->fw_mutex_owner != current) { |
| 1494 | int rc; |
| 1495 | |
| 1496 | mutex_lock(&priv->fw_mutex); |
| 1497 | ieee80211_stop_queues(hw); |
| 1498 | |
| 1499 | rc = mwl8k_tx_wait_empty(hw); |
| 1500 | if (rc) { |
| 1501 | ieee80211_wake_queues(hw); |
| 1502 | mutex_unlock(&priv->fw_mutex); |
| 1503 | |
| 1504 | return rc; |
| 1505 | } |
| 1506 | |
| 1507 | priv->fw_mutex_owner = current; |
| 1508 | } |
| 1509 | |
| 1510 | priv->fw_mutex_depth++; |
| 1511 | |
| 1512 | return 0; |
| 1513 | } |
| 1514 | |
| 1515 | static void mwl8k_fw_unlock(struct ieee80211_hw *hw) |
| 1516 | { |
| 1517 | struct mwl8k_priv *priv = hw->priv; |
| 1518 | |
| 1519 | if (!--priv->fw_mutex_depth) { |
| 1520 | ieee80211_wake_queues(hw); |
| 1521 | priv->fw_mutex_owner = NULL; |
| 1522 | mutex_unlock(&priv->fw_mutex); |
| 1523 | } |
| 1524 | } |
| 1525 | |
| 1526 | |
| 1527 | /* |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1528 | * Command processing. |
| 1529 | */ |
| 1530 | |
Lennert Buytenhek | 0c9cc640 | 2009-11-30 18:12:49 +0100 | [diff] [blame] | 1531 | /* Timeout firmware commands after 10s */ |
| 1532 | #define MWL8K_CMD_TIMEOUT_MS 10000 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1533 | |
| 1534 | static int mwl8k_post_cmd(struct ieee80211_hw *hw, struct mwl8k_cmd_pkt *cmd) |
| 1535 | { |
| 1536 | DECLARE_COMPLETION_ONSTACK(cmd_wait); |
| 1537 | struct mwl8k_priv *priv = hw->priv; |
| 1538 | void __iomem *regs = priv->regs; |
| 1539 | dma_addr_t dma_addr; |
| 1540 | unsigned int dma_size; |
| 1541 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1542 | unsigned long timeout = 0; |
| 1543 | u8 buf[32]; |
| 1544 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 1545 | cmd->result = 0xffff; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1546 | dma_size = le16_to_cpu(cmd->length); |
| 1547 | dma_addr = pci_map_single(priv->pdev, cmd, dma_size, |
| 1548 | PCI_DMA_BIDIRECTIONAL); |
| 1549 | if (pci_dma_mapping_error(priv->pdev, dma_addr)) |
| 1550 | return -ENOMEM; |
| 1551 | |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 1552 | rc = mwl8k_fw_lock(hw); |
Lennert Buytenhek | 39a1e42 | 2009-08-24 15:42:46 +0200 | [diff] [blame] | 1553 | if (rc) { |
| 1554 | pci_unmap_single(priv->pdev, dma_addr, dma_size, |
| 1555 | PCI_DMA_BIDIRECTIONAL); |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 1556 | return rc; |
Lennert Buytenhek | 39a1e42 | 2009-08-24 15:42:46 +0200 | [diff] [blame] | 1557 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1558 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1559 | priv->hostcmd_wait = &cmd_wait; |
| 1560 | iowrite32(dma_addr, regs + MWL8K_HIU_GEN_PTR); |
| 1561 | iowrite32(MWL8K_H2A_INT_DOORBELL, |
| 1562 | regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
| 1563 | iowrite32(MWL8K_H2A_INT_DUMMY, |
| 1564 | regs + MWL8K_HIU_H2A_INTERRUPT_EVENTS); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1565 | |
| 1566 | timeout = wait_for_completion_timeout(&cmd_wait, |
| 1567 | msecs_to_jiffies(MWL8K_CMD_TIMEOUT_MS)); |
| 1568 | |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 1569 | priv->hostcmd_wait = NULL; |
| 1570 | |
| 1571 | mwl8k_fw_unlock(hw); |
| 1572 | |
Lennert Buytenhek | 37055bd | 2009-08-03 21:58:47 +0200 | [diff] [blame] | 1573 | pci_unmap_single(priv->pdev, dma_addr, dma_size, |
| 1574 | PCI_DMA_BIDIRECTIONAL); |
| 1575 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1576 | if (!timeout) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1577 | printk(KERN_ERR "%s: Command %s timeout after %u ms\n", |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 1578 | wiphy_name(hw->wiphy), |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1579 | mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), |
| 1580 | MWL8K_CMD_TIMEOUT_MS); |
| 1581 | rc = -ETIMEDOUT; |
| 1582 | } else { |
Lennert Buytenhek | 0c9cc640 | 2009-11-30 18:12:49 +0100 | [diff] [blame] | 1583 | int ms; |
| 1584 | |
| 1585 | ms = MWL8K_CMD_TIMEOUT_MS - jiffies_to_msecs(timeout); |
| 1586 | |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1587 | rc = cmd->result ? -EINVAL : 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1588 | if (rc) |
| 1589 | printk(KERN_ERR "%s: Command %s error 0x%x\n", |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 1590 | wiphy_name(hw->wiphy), |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1591 | mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), |
Lennert Buytenhek | 76c962a | 2009-08-24 15:42:56 +0200 | [diff] [blame] | 1592 | le16_to_cpu(cmd->result)); |
Lennert Buytenhek | 0c9cc640 | 2009-11-30 18:12:49 +0100 | [diff] [blame] | 1593 | else if (ms > 2000) |
| 1594 | printk(KERN_NOTICE "%s: Command %s took %d ms\n", |
| 1595 | wiphy_name(hw->wiphy), |
| 1596 | mwl8k_cmd_name(cmd->code, buf, sizeof(buf)), |
| 1597 | ms); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1598 | } |
| 1599 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1600 | return rc; |
| 1601 | } |
| 1602 | |
Lennert Buytenhek | f57ca9c | 2010-01-12 13:50:14 +0100 | [diff] [blame^] | 1603 | static int mwl8k_post_pervif_cmd(struct ieee80211_hw *hw, |
| 1604 | struct ieee80211_vif *vif, |
| 1605 | struct mwl8k_cmd_pkt *cmd) |
| 1606 | { |
| 1607 | if (vif != NULL) |
| 1608 | cmd->macid = MWL8K_VIF(vif)->macid; |
| 1609 | return mwl8k_post_cmd(hw, cmd); |
| 1610 | } |
| 1611 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1612 | /* |
Lennert Buytenhek | 1349ad2 | 2010-01-12 13:48:17 +0100 | [diff] [blame] | 1613 | * Setup code shared between STA and AP firmware images. |
| 1614 | */ |
| 1615 | static void mwl8k_setup_2ghz_band(struct ieee80211_hw *hw) |
| 1616 | { |
| 1617 | struct mwl8k_priv *priv = hw->priv; |
| 1618 | |
| 1619 | BUILD_BUG_ON(sizeof(priv->channels_24) != sizeof(mwl8k_channels_24)); |
| 1620 | memcpy(priv->channels_24, mwl8k_channels_24, sizeof(mwl8k_channels_24)); |
| 1621 | |
| 1622 | BUILD_BUG_ON(sizeof(priv->rates_24) != sizeof(mwl8k_rates_24)); |
| 1623 | memcpy(priv->rates_24, mwl8k_rates_24, sizeof(mwl8k_rates_24)); |
| 1624 | |
| 1625 | priv->band_24.band = IEEE80211_BAND_2GHZ; |
| 1626 | priv->band_24.channels = priv->channels_24; |
| 1627 | priv->band_24.n_channels = ARRAY_SIZE(mwl8k_channels_24); |
| 1628 | priv->band_24.bitrates = priv->rates_24; |
| 1629 | priv->band_24.n_bitrates = ARRAY_SIZE(mwl8k_rates_24); |
| 1630 | |
| 1631 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &priv->band_24; |
| 1632 | } |
| 1633 | |
Lennert Buytenhek | 4eae9ed | 2010-01-12 13:48:32 +0100 | [diff] [blame] | 1634 | static void mwl8k_setup_5ghz_band(struct ieee80211_hw *hw) |
| 1635 | { |
| 1636 | struct mwl8k_priv *priv = hw->priv; |
| 1637 | |
| 1638 | BUILD_BUG_ON(sizeof(priv->channels_50) != sizeof(mwl8k_channels_50)); |
| 1639 | memcpy(priv->channels_50, mwl8k_channels_50, sizeof(mwl8k_channels_50)); |
| 1640 | |
| 1641 | BUILD_BUG_ON(sizeof(priv->rates_50) != sizeof(mwl8k_rates_50)); |
| 1642 | memcpy(priv->rates_50, mwl8k_rates_50, sizeof(mwl8k_rates_50)); |
| 1643 | |
| 1644 | priv->band_50.band = IEEE80211_BAND_5GHZ; |
| 1645 | priv->band_50.channels = priv->channels_50; |
| 1646 | priv->band_50.n_channels = ARRAY_SIZE(mwl8k_channels_50); |
| 1647 | priv->band_50.bitrates = priv->rates_50; |
| 1648 | priv->band_50.n_bitrates = ARRAY_SIZE(mwl8k_rates_50); |
| 1649 | |
| 1650 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = &priv->band_50; |
| 1651 | } |
| 1652 | |
Lennert Buytenhek | 1349ad2 | 2010-01-12 13:48:17 +0100 | [diff] [blame] | 1653 | /* |
Lennert Buytenhek | 04b147b1 | 2009-10-22 20:21:05 +0200 | [diff] [blame] | 1654 | * CMD_GET_HW_SPEC (STA version). |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1655 | */ |
Lennert Buytenhek | 04b147b1 | 2009-10-22 20:21:05 +0200 | [diff] [blame] | 1656 | struct mwl8k_cmd_get_hw_spec_sta { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1657 | struct mwl8k_cmd_pkt header; |
| 1658 | __u8 hw_rev; |
| 1659 | __u8 host_interface; |
| 1660 | __le16 num_mcaddrs; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 1661 | __u8 perm_addr[ETH_ALEN]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1662 | __le16 region_code; |
| 1663 | __le32 fw_rev; |
| 1664 | __le32 ps_cookie; |
| 1665 | __le32 caps; |
| 1666 | __u8 mcs_bitmap[16]; |
| 1667 | __le32 rx_queue_ptr; |
| 1668 | __le32 num_tx_queues; |
| 1669 | __le32 tx_queue_ptrs[MWL8K_TX_QUEUES]; |
| 1670 | __le32 caps2; |
| 1671 | __le32 num_tx_desc_per_queue; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1672 | __le32 total_rxd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1673 | } __attribute__((packed)); |
| 1674 | |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1675 | #define MWL8K_CAP_MAX_AMSDU 0x20000000 |
| 1676 | #define MWL8K_CAP_GREENFIELD 0x08000000 |
| 1677 | #define MWL8K_CAP_AMPDU 0x04000000 |
| 1678 | #define MWL8K_CAP_RX_STBC 0x01000000 |
| 1679 | #define MWL8K_CAP_TX_STBC 0x00800000 |
| 1680 | #define MWL8K_CAP_SHORTGI_40MHZ 0x00400000 |
| 1681 | #define MWL8K_CAP_SHORTGI_20MHZ 0x00200000 |
| 1682 | #define MWL8K_CAP_RX_ANTENNA_MASK 0x000e0000 |
| 1683 | #define MWL8K_CAP_TX_ANTENNA_MASK 0x0001c000 |
| 1684 | #define MWL8K_CAP_DELAY_BA 0x00003000 |
| 1685 | #define MWL8K_CAP_MIMO 0x00000200 |
| 1686 | #define MWL8K_CAP_40MHZ 0x00000100 |
Lennert Buytenhek | 0695323 | 2010-01-12 13:49:41 +0100 | [diff] [blame] | 1687 | #define MWL8K_CAP_BAND_MASK 0x00000007 |
| 1688 | #define MWL8K_CAP_5GHZ 0x00000004 |
| 1689 | #define MWL8K_CAP_2GHZ4 0x00000001 |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1690 | |
Lennert Buytenhek | 0695323 | 2010-01-12 13:49:41 +0100 | [diff] [blame] | 1691 | static void |
| 1692 | mwl8k_set_ht_caps(struct ieee80211_hw *hw, |
| 1693 | struct ieee80211_supported_band *band, u32 cap) |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1694 | { |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1695 | int rx_streams; |
| 1696 | int tx_streams; |
| 1697 | |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1698 | band->ht_cap.ht_supported = 1; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1699 | |
| 1700 | if (cap & MWL8K_CAP_MAX_AMSDU) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1701 | band->ht_cap.cap |= IEEE80211_HT_CAP_MAX_AMSDU; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1702 | if (cap & MWL8K_CAP_GREENFIELD) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1703 | band->ht_cap.cap |= IEEE80211_HT_CAP_GRN_FLD; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1704 | if (cap & MWL8K_CAP_AMPDU) { |
| 1705 | hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION; |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1706 | band->ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; |
| 1707 | band->ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_NONE; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1708 | } |
| 1709 | if (cap & MWL8K_CAP_RX_STBC) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1710 | band->ht_cap.cap |= IEEE80211_HT_CAP_RX_STBC; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1711 | if (cap & MWL8K_CAP_TX_STBC) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1712 | band->ht_cap.cap |= IEEE80211_HT_CAP_TX_STBC; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1713 | if (cap & MWL8K_CAP_SHORTGI_40MHZ) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1714 | band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_40; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1715 | if (cap & MWL8K_CAP_SHORTGI_20MHZ) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1716 | band->ht_cap.cap |= IEEE80211_HT_CAP_SGI_20; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1717 | if (cap & MWL8K_CAP_DELAY_BA) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1718 | band->ht_cap.cap |= IEEE80211_HT_CAP_DELAY_BA; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1719 | if (cap & MWL8K_CAP_40MHZ) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1720 | band->ht_cap.cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1721 | |
| 1722 | rx_streams = hweight32(cap & MWL8K_CAP_RX_ANTENNA_MASK); |
| 1723 | tx_streams = hweight32(cap & MWL8K_CAP_TX_ANTENNA_MASK); |
| 1724 | |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1725 | band->ht_cap.mcs.rx_mask[0] = 0xff; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1726 | if (rx_streams >= 2) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1727 | band->ht_cap.mcs.rx_mask[1] = 0xff; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1728 | if (rx_streams >= 3) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1729 | band->ht_cap.mcs.rx_mask[2] = 0xff; |
| 1730 | band->ht_cap.mcs.rx_mask[4] = 0x01; |
| 1731 | band->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED; |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1732 | |
| 1733 | if (rx_streams != tx_streams) { |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 1734 | band->ht_cap.mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF; |
| 1735 | band->ht_cap.mcs.tx_params |= (tx_streams - 1) << |
Lennert Buytenhek | 341c979 | 2010-01-04 21:58:40 +0100 | [diff] [blame] | 1736 | IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT; |
| 1737 | } |
| 1738 | } |
| 1739 | |
Lennert Buytenhek | 0695323 | 2010-01-12 13:49:41 +0100 | [diff] [blame] | 1740 | static void |
| 1741 | mwl8k_set_caps(struct ieee80211_hw *hw, u32 caps) |
| 1742 | { |
| 1743 | struct mwl8k_priv *priv = hw->priv; |
| 1744 | |
| 1745 | if ((caps & MWL8K_CAP_2GHZ4) || !(caps & MWL8K_CAP_BAND_MASK)) { |
| 1746 | mwl8k_setup_2ghz_band(hw); |
| 1747 | if (caps & MWL8K_CAP_MIMO) |
| 1748 | mwl8k_set_ht_caps(hw, &priv->band_24, caps); |
| 1749 | } |
| 1750 | |
| 1751 | if (caps & MWL8K_CAP_5GHZ) { |
| 1752 | mwl8k_setup_5ghz_band(hw); |
| 1753 | if (caps & MWL8K_CAP_MIMO) |
| 1754 | mwl8k_set_ht_caps(hw, &priv->band_50, caps); |
| 1755 | } |
| 1756 | } |
| 1757 | |
Lennert Buytenhek | 04b147b1 | 2009-10-22 20:21:05 +0200 | [diff] [blame] | 1758 | static int mwl8k_cmd_get_hw_spec_sta(struct ieee80211_hw *hw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1759 | { |
| 1760 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | 04b147b1 | 2009-10-22 20:21:05 +0200 | [diff] [blame] | 1761 | struct mwl8k_cmd_get_hw_spec_sta *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1762 | int rc; |
| 1763 | int i; |
| 1764 | |
| 1765 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 1766 | if (cmd == NULL) |
| 1767 | return -ENOMEM; |
| 1768 | |
| 1769 | cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC); |
| 1770 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 1771 | |
| 1772 | memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr)); |
| 1773 | cmd->ps_cookie = cpu_to_le32(priv->cookie_dma); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1774 | cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma); |
Lennert Buytenhek | 4ff6432 | 2009-08-03 21:58:39 +0200 | [diff] [blame] | 1775 | cmd->num_tx_queues = cpu_to_le32(MWL8K_TX_QUEUES); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1776 | for (i = 0; i < MWL8K_TX_QUEUES; i++) |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1777 | 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] | 1778 | cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS); |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 1779 | cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1780 | |
| 1781 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 1782 | |
| 1783 | if (!rc) { |
| 1784 | SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr); |
| 1785 | priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs); |
Lennert Buytenhek | 4ff6432 | 2009-08-03 21:58:39 +0200 | [diff] [blame] | 1786 | priv->fw_rev = le32_to_cpu(cmd->fw_rev); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1787 | priv->hw_rev = cmd->hw_rev; |
Lennert Buytenhek | 0695323 | 2010-01-12 13:49:41 +0100 | [diff] [blame] | 1788 | mwl8k_set_caps(hw, le32_to_cpu(cmd->caps)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1789 | } |
| 1790 | |
| 1791 | kfree(cmd); |
| 1792 | return rc; |
| 1793 | } |
| 1794 | |
| 1795 | /* |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 1796 | * CMD_GET_HW_SPEC (AP version). |
| 1797 | */ |
| 1798 | struct mwl8k_cmd_get_hw_spec_ap { |
| 1799 | struct mwl8k_cmd_pkt header; |
| 1800 | __u8 hw_rev; |
| 1801 | __u8 host_interface; |
| 1802 | __le16 num_wcb; |
| 1803 | __le16 num_mcaddrs; |
| 1804 | __u8 perm_addr[ETH_ALEN]; |
| 1805 | __le16 region_code; |
| 1806 | __le16 num_antenna; |
| 1807 | __le32 fw_rev; |
| 1808 | __le32 wcbbase0; |
| 1809 | __le32 rxwrptr; |
| 1810 | __le32 rxrdptr; |
| 1811 | __le32 ps_cookie; |
| 1812 | __le32 wcbbase1; |
| 1813 | __le32 wcbbase2; |
| 1814 | __le32 wcbbase3; |
| 1815 | } __attribute__((packed)); |
| 1816 | |
| 1817 | static int mwl8k_cmd_get_hw_spec_ap(struct ieee80211_hw *hw) |
| 1818 | { |
| 1819 | struct mwl8k_priv *priv = hw->priv; |
| 1820 | struct mwl8k_cmd_get_hw_spec_ap *cmd; |
| 1821 | int rc; |
| 1822 | |
| 1823 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 1824 | if (cmd == NULL) |
| 1825 | return -ENOMEM; |
| 1826 | |
| 1827 | cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_HW_SPEC); |
| 1828 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 1829 | |
| 1830 | memset(cmd->perm_addr, 0xff, sizeof(cmd->perm_addr)); |
| 1831 | cmd->ps_cookie = cpu_to_le32(priv->cookie_dma); |
| 1832 | |
| 1833 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 1834 | |
| 1835 | if (!rc) { |
| 1836 | int off; |
| 1837 | |
| 1838 | SET_IEEE80211_PERM_ADDR(hw, cmd->perm_addr); |
| 1839 | priv->num_mcaddrs = le16_to_cpu(cmd->num_mcaddrs); |
| 1840 | priv->fw_rev = le32_to_cpu(cmd->fw_rev); |
| 1841 | priv->hw_rev = cmd->hw_rev; |
Lennert Buytenhek | 1349ad2 | 2010-01-12 13:48:17 +0100 | [diff] [blame] | 1842 | mwl8k_setup_2ghz_band(hw); |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 1843 | |
| 1844 | off = le32_to_cpu(cmd->wcbbase0) & 0xffff; |
| 1845 | iowrite32(cpu_to_le32(priv->txq[0].txd_dma), priv->sram + off); |
| 1846 | |
| 1847 | off = le32_to_cpu(cmd->rxwrptr) & 0xffff; |
| 1848 | iowrite32(cpu_to_le32(priv->rxq[0].rxd_dma), priv->sram + off); |
| 1849 | |
| 1850 | off = le32_to_cpu(cmd->rxrdptr) & 0xffff; |
| 1851 | iowrite32(cpu_to_le32(priv->rxq[0].rxd_dma), priv->sram + off); |
| 1852 | |
| 1853 | off = le32_to_cpu(cmd->wcbbase1) & 0xffff; |
| 1854 | iowrite32(cpu_to_le32(priv->txq[1].txd_dma), priv->sram + off); |
| 1855 | |
| 1856 | off = le32_to_cpu(cmd->wcbbase2) & 0xffff; |
| 1857 | iowrite32(cpu_to_le32(priv->txq[2].txd_dma), priv->sram + off); |
| 1858 | |
| 1859 | off = le32_to_cpu(cmd->wcbbase3) & 0xffff; |
| 1860 | iowrite32(cpu_to_le32(priv->txq[3].txd_dma), priv->sram + off); |
| 1861 | } |
| 1862 | |
| 1863 | kfree(cmd); |
| 1864 | return rc; |
| 1865 | } |
| 1866 | |
| 1867 | /* |
| 1868 | * CMD_SET_HW_SPEC. |
| 1869 | */ |
| 1870 | struct mwl8k_cmd_set_hw_spec { |
| 1871 | struct mwl8k_cmd_pkt header; |
| 1872 | __u8 hw_rev; |
| 1873 | __u8 host_interface; |
| 1874 | __le16 num_mcaddrs; |
| 1875 | __u8 perm_addr[ETH_ALEN]; |
| 1876 | __le16 region_code; |
| 1877 | __le32 fw_rev; |
| 1878 | __le32 ps_cookie; |
| 1879 | __le32 caps; |
| 1880 | __le32 rx_queue_ptr; |
| 1881 | __le32 num_tx_queues; |
| 1882 | __le32 tx_queue_ptrs[MWL8K_TX_QUEUES]; |
| 1883 | __le32 flags; |
| 1884 | __le32 num_tx_desc_per_queue; |
| 1885 | __le32 total_rxd; |
| 1886 | } __attribute__((packed)); |
| 1887 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 1888 | #define MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT 0x00000080 |
| 1889 | #define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP 0x00000020 |
| 1890 | #define MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON 0x00000010 |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 1891 | |
| 1892 | static int mwl8k_cmd_set_hw_spec(struct ieee80211_hw *hw) |
| 1893 | { |
| 1894 | struct mwl8k_priv *priv = hw->priv; |
| 1895 | struct mwl8k_cmd_set_hw_spec *cmd; |
| 1896 | int rc; |
| 1897 | int i; |
| 1898 | |
| 1899 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 1900 | if (cmd == NULL) |
| 1901 | return -ENOMEM; |
| 1902 | |
| 1903 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_HW_SPEC); |
| 1904 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 1905 | |
| 1906 | cmd->ps_cookie = cpu_to_le32(priv->cookie_dma); |
| 1907 | cmd->rx_queue_ptr = cpu_to_le32(priv->rxq[0].rxd_dma); |
| 1908 | cmd->num_tx_queues = cpu_to_le32(MWL8K_TX_QUEUES); |
| 1909 | for (i = 0; i < MWL8K_TX_QUEUES; i++) |
| 1910 | cmd->tx_queue_ptrs[i] = cpu_to_le32(priv->txq[i].txd_dma); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 1911 | cmd->flags = cpu_to_le32(MWL8K_SET_HW_SPEC_FLAG_HOST_DECR_MGMT | |
| 1912 | MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_PROBERESP | |
| 1913 | MWL8K_SET_HW_SPEC_FLAG_HOSTFORM_BEACON); |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 1914 | cmd->num_tx_desc_per_queue = cpu_to_le32(MWL8K_TX_DESCS); |
| 1915 | cmd->total_rxd = cpu_to_le32(MWL8K_RX_DESCS); |
| 1916 | |
| 1917 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 1918 | kfree(cmd); |
| 1919 | |
| 1920 | return rc; |
| 1921 | } |
| 1922 | |
| 1923 | /* |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1924 | * CMD_MAC_MULTICAST_ADR. |
| 1925 | */ |
| 1926 | struct mwl8k_cmd_mac_multicast_adr { |
| 1927 | struct mwl8k_cmd_pkt header; |
| 1928 | __le16 action; |
| 1929 | __le16 numaddr; |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1930 | __u8 addr[0][ETH_ALEN]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1931 | }; |
| 1932 | |
Lennert Buytenhek | d5e3084 | 2009-10-22 20:19:41 +0200 | [diff] [blame] | 1933 | #define MWL8K_ENABLE_RX_DIRECTED 0x0001 |
| 1934 | #define MWL8K_ENABLE_RX_MULTICAST 0x0002 |
| 1935 | #define MWL8K_ENABLE_RX_ALL_MULTICAST 0x0004 |
| 1936 | #define MWL8K_ENABLE_RX_BROADCAST 0x0008 |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1937 | |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 1938 | static struct mwl8k_cmd_pkt * |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 1939 | __mwl8k_cmd_mac_multicast_adr(struct ieee80211_hw *hw, int allmulti, |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 1940 | int mc_count, struct dev_addr_list *mclist) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1941 | { |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 1942 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1943 | struct mwl8k_cmd_mac_multicast_adr *cmd; |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 1944 | int size; |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1945 | |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 1946 | if (allmulti || mc_count > priv->num_mcaddrs) { |
Lennert Buytenhek | d5e3084 | 2009-10-22 20:19:41 +0200 | [diff] [blame] | 1947 | allmulti = 1; |
| 1948 | mc_count = 0; |
| 1949 | } |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 1950 | |
| 1951 | size = sizeof(*cmd) + mc_count * ETH_ALEN; |
| 1952 | |
| 1953 | cmd = kzalloc(size, GFP_ATOMIC); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1954 | if (cmd == NULL) |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 1955 | return NULL; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1956 | |
| 1957 | cmd->header.code = cpu_to_le16(MWL8K_CMD_MAC_MULTICAST_ADR); |
| 1958 | cmd->header.length = cpu_to_le16(size); |
Lennert Buytenhek | d5e3084 | 2009-10-22 20:19:41 +0200 | [diff] [blame] | 1959 | cmd->action = cpu_to_le16(MWL8K_ENABLE_RX_DIRECTED | |
| 1960 | MWL8K_ENABLE_RX_BROADCAST); |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 1961 | |
Lennert Buytenhek | d5e3084 | 2009-10-22 20:19:41 +0200 | [diff] [blame] | 1962 | if (allmulti) { |
| 1963 | cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_ALL_MULTICAST); |
| 1964 | } else if (mc_count) { |
| 1965 | int i; |
| 1966 | |
| 1967 | cmd->action |= cpu_to_le16(MWL8K_ENABLE_RX_MULTICAST); |
| 1968 | cmd->numaddr = cpu_to_le16(mc_count); |
| 1969 | for (i = 0; i < mc_count && mclist; i++) { |
| 1970 | if (mclist->da_addrlen != ETH_ALEN) { |
| 1971 | kfree(cmd); |
| 1972 | return NULL; |
| 1973 | } |
| 1974 | memcpy(cmd->addr[i], mclist->da_addr, ETH_ALEN); |
| 1975 | mclist = mclist->next; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1976 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1977 | } |
| 1978 | |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 1979 | return &cmd->header; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1980 | } |
| 1981 | |
| 1982 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 1983 | * CMD_GET_STAT. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1984 | */ |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 1985 | struct mwl8k_cmd_get_stat { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1986 | struct mwl8k_cmd_pkt header; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1987 | __le32 stats[64]; |
| 1988 | } __attribute__((packed)); |
| 1989 | |
| 1990 | #define MWL8K_STAT_ACK_FAILURE 9 |
| 1991 | #define MWL8K_STAT_RTS_FAILURE 12 |
| 1992 | #define MWL8K_STAT_FCS_ERROR 24 |
| 1993 | #define MWL8K_STAT_RTS_SUCCESS 11 |
| 1994 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 1995 | static int mwl8k_cmd_get_stat(struct ieee80211_hw *hw, |
| 1996 | struct ieee80211_low_level_stats *stats) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1997 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 1998 | struct mwl8k_cmd_get_stat *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 1999 | int rc; |
| 2000 | |
| 2001 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2002 | if (cmd == NULL) |
| 2003 | return -ENOMEM; |
| 2004 | |
| 2005 | cmd->header.code = cpu_to_le16(MWL8K_CMD_GET_STAT); |
| 2006 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2007 | |
| 2008 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2009 | if (!rc) { |
| 2010 | stats->dot11ACKFailureCount = |
| 2011 | le32_to_cpu(cmd->stats[MWL8K_STAT_ACK_FAILURE]); |
| 2012 | stats->dot11RTSFailureCount = |
| 2013 | le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_FAILURE]); |
| 2014 | stats->dot11FCSErrorCount = |
| 2015 | le32_to_cpu(cmd->stats[MWL8K_STAT_FCS_ERROR]); |
| 2016 | stats->dot11RTSSuccessCount = |
| 2017 | le32_to_cpu(cmd->stats[MWL8K_STAT_RTS_SUCCESS]); |
| 2018 | } |
| 2019 | kfree(cmd); |
| 2020 | |
| 2021 | return rc; |
| 2022 | } |
| 2023 | |
| 2024 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2025 | * CMD_RADIO_CONTROL. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2026 | */ |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2027 | struct mwl8k_cmd_radio_control { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2028 | struct mwl8k_cmd_pkt header; |
| 2029 | __le16 action; |
| 2030 | __le16 control; |
| 2031 | __le16 radio_on; |
| 2032 | } __attribute__((packed)); |
| 2033 | |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2034 | static int |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2035 | mwl8k_cmd_radio_control(struct ieee80211_hw *hw, bool enable, bool force) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2036 | { |
| 2037 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2038 | struct mwl8k_cmd_radio_control *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2039 | int rc; |
| 2040 | |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2041 | if (enable == priv->radio_on && !force) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2042 | return 0; |
| 2043 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2044 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2045 | if (cmd == NULL) |
| 2046 | return -ENOMEM; |
| 2047 | |
| 2048 | cmd->header.code = cpu_to_le16(MWL8K_CMD_RADIO_CONTROL); |
| 2049 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2050 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
Lennert Buytenhek | 68ce388 | 2009-07-16 12:26:57 +0200 | [diff] [blame] | 2051 | cmd->control = cpu_to_le16(priv->radio_short_preamble ? 3 : 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2052 | cmd->radio_on = cpu_to_le16(enable ? 0x0001 : 0x0000); |
| 2053 | |
| 2054 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2055 | kfree(cmd); |
| 2056 | |
| 2057 | if (!rc) |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2058 | priv->radio_on = enable; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2059 | |
| 2060 | return rc; |
| 2061 | } |
| 2062 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2063 | static int mwl8k_cmd_radio_disable(struct ieee80211_hw *hw) |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2064 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2065 | return mwl8k_cmd_radio_control(hw, 0, 0); |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2066 | } |
| 2067 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2068 | static int mwl8k_cmd_radio_enable(struct ieee80211_hw *hw) |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2069 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2070 | return mwl8k_cmd_radio_control(hw, 1, 0); |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 2071 | } |
| 2072 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2073 | static int |
| 2074 | mwl8k_set_radio_preamble(struct ieee80211_hw *hw, bool short_preamble) |
| 2075 | { |
Lennert Buytenhek | 99200a99 | 2009-11-30 18:31:40 +0100 | [diff] [blame] | 2076 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2077 | |
Lennert Buytenhek | 68ce388 | 2009-07-16 12:26:57 +0200 | [diff] [blame] | 2078 | priv->radio_short_preamble = short_preamble; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2079 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2080 | return mwl8k_cmd_radio_control(hw, 1, 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2081 | } |
| 2082 | |
| 2083 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2084 | * CMD_RF_TX_POWER. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2085 | */ |
| 2086 | #define MWL8K_TX_POWER_LEVEL_TOTAL 8 |
| 2087 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2088 | struct mwl8k_cmd_rf_tx_power { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2089 | struct mwl8k_cmd_pkt header; |
| 2090 | __le16 action; |
| 2091 | __le16 support_level; |
| 2092 | __le16 current_level; |
| 2093 | __le16 reserved; |
| 2094 | __le16 power_level_list[MWL8K_TX_POWER_LEVEL_TOTAL]; |
| 2095 | } __attribute__((packed)); |
| 2096 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2097 | 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] | 2098 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2099 | struct mwl8k_cmd_rf_tx_power *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2100 | int rc; |
| 2101 | |
| 2102 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2103 | if (cmd == NULL) |
| 2104 | return -ENOMEM; |
| 2105 | |
| 2106 | cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_TX_POWER); |
| 2107 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2108 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
| 2109 | cmd->support_level = cpu_to_le16(dBm); |
| 2110 | |
| 2111 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2112 | kfree(cmd); |
| 2113 | |
| 2114 | return rc; |
| 2115 | } |
| 2116 | |
| 2117 | /* |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 2118 | * CMD_RF_ANTENNA. |
| 2119 | */ |
| 2120 | struct mwl8k_cmd_rf_antenna { |
| 2121 | struct mwl8k_cmd_pkt header; |
| 2122 | __le16 antenna; |
| 2123 | __le16 mode; |
| 2124 | } __attribute__((packed)); |
| 2125 | |
| 2126 | #define MWL8K_RF_ANTENNA_RX 1 |
| 2127 | #define MWL8K_RF_ANTENNA_TX 2 |
| 2128 | |
| 2129 | static int |
| 2130 | mwl8k_cmd_rf_antenna(struct ieee80211_hw *hw, int antenna, int mask) |
| 2131 | { |
| 2132 | struct mwl8k_cmd_rf_antenna *cmd; |
| 2133 | int rc; |
| 2134 | |
| 2135 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2136 | if (cmd == NULL) |
| 2137 | return -ENOMEM; |
| 2138 | |
| 2139 | cmd->header.code = cpu_to_le16(MWL8K_CMD_RF_ANTENNA); |
| 2140 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2141 | cmd->antenna = cpu_to_le16(antenna); |
| 2142 | cmd->mode = cpu_to_le16(mask); |
| 2143 | |
| 2144 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2145 | kfree(cmd); |
| 2146 | |
| 2147 | return rc; |
| 2148 | } |
| 2149 | |
| 2150 | /* |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 2151 | * CMD_SET_BEACON. |
| 2152 | */ |
| 2153 | struct mwl8k_cmd_set_beacon { |
| 2154 | struct mwl8k_cmd_pkt header; |
| 2155 | __le16 beacon_len; |
| 2156 | __u8 beacon[0]; |
| 2157 | }; |
| 2158 | |
| 2159 | static int mwl8k_cmd_set_beacon(struct ieee80211_hw *hw, u8 *beacon, int len) |
| 2160 | { |
| 2161 | struct mwl8k_cmd_set_beacon *cmd; |
| 2162 | int rc; |
| 2163 | |
| 2164 | cmd = kzalloc(sizeof(*cmd) + len, GFP_KERNEL); |
| 2165 | if (cmd == NULL) |
| 2166 | return -ENOMEM; |
| 2167 | |
| 2168 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_BEACON); |
| 2169 | cmd->header.length = cpu_to_le16(sizeof(*cmd) + len); |
| 2170 | cmd->beacon_len = cpu_to_le16(len); |
| 2171 | memcpy(cmd->beacon, beacon, len); |
| 2172 | |
| 2173 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2174 | kfree(cmd); |
| 2175 | |
| 2176 | return rc; |
| 2177 | } |
| 2178 | |
| 2179 | /* |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2180 | * CMD_SET_PRE_SCAN. |
| 2181 | */ |
| 2182 | struct mwl8k_cmd_set_pre_scan { |
| 2183 | struct mwl8k_cmd_pkt header; |
| 2184 | } __attribute__((packed)); |
| 2185 | |
| 2186 | static int mwl8k_cmd_set_pre_scan(struct ieee80211_hw *hw) |
| 2187 | { |
| 2188 | struct mwl8k_cmd_set_pre_scan *cmd; |
| 2189 | int rc; |
| 2190 | |
| 2191 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2192 | if (cmd == NULL) |
| 2193 | return -ENOMEM; |
| 2194 | |
| 2195 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_PRE_SCAN); |
| 2196 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2197 | |
| 2198 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2199 | kfree(cmd); |
| 2200 | |
| 2201 | return rc; |
| 2202 | } |
| 2203 | |
| 2204 | /* |
| 2205 | * CMD_SET_POST_SCAN. |
| 2206 | */ |
| 2207 | struct mwl8k_cmd_set_post_scan { |
| 2208 | struct mwl8k_cmd_pkt header; |
| 2209 | __le32 isibss; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 2210 | __u8 bssid[ETH_ALEN]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2211 | } __attribute__((packed)); |
| 2212 | |
| 2213 | static int |
Lennert Buytenhek | 0a11dfc | 2010-01-04 21:55:21 +0100 | [diff] [blame] | 2214 | mwl8k_cmd_set_post_scan(struct ieee80211_hw *hw, const __u8 *mac) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2215 | { |
| 2216 | struct mwl8k_cmd_set_post_scan *cmd; |
| 2217 | int rc; |
| 2218 | |
| 2219 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2220 | if (cmd == NULL) |
| 2221 | return -ENOMEM; |
| 2222 | |
| 2223 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_POST_SCAN); |
| 2224 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2225 | cmd->isibss = 0; |
Lennert Buytenhek | d89173f | 2009-07-16 09:54:27 +0200 | [diff] [blame] | 2226 | memcpy(cmd->bssid, mac, ETH_ALEN); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2227 | |
| 2228 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2229 | kfree(cmd); |
| 2230 | |
| 2231 | return rc; |
| 2232 | } |
| 2233 | |
| 2234 | /* |
| 2235 | * CMD_SET_RF_CHANNEL. |
| 2236 | */ |
| 2237 | struct mwl8k_cmd_set_rf_channel { |
| 2238 | struct mwl8k_cmd_pkt header; |
| 2239 | __le16 action; |
| 2240 | __u8 current_channel; |
| 2241 | __le32 channel_flags; |
| 2242 | } __attribute__((packed)); |
| 2243 | |
| 2244 | static int mwl8k_cmd_set_rf_channel(struct ieee80211_hw *hw, |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 2245 | struct ieee80211_conf *conf) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2246 | { |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 2247 | struct ieee80211_channel *channel = conf->channel; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2248 | struct mwl8k_cmd_set_rf_channel *cmd; |
| 2249 | int rc; |
| 2250 | |
| 2251 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2252 | if (cmd == NULL) |
| 2253 | return -ENOMEM; |
| 2254 | |
| 2255 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RF_CHANNEL); |
| 2256 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2257 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
| 2258 | cmd->current_channel = channel->hw_value; |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 2259 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2260 | if (channel->band == IEEE80211_BAND_2GHZ) |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 2261 | cmd->channel_flags |= cpu_to_le32(0x00000001); |
Lennert Buytenhek | 42574ea | 2010-01-12 13:49:18 +0100 | [diff] [blame] | 2262 | else if (channel->band == IEEE80211_BAND_5GHZ) |
| 2263 | cmd->channel_flags |= cpu_to_le32(0x00000004); |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 2264 | |
| 2265 | if (conf->channel_type == NL80211_CHAN_NO_HT || |
| 2266 | conf->channel_type == NL80211_CHAN_HT20) |
| 2267 | cmd->channel_flags |= cpu_to_le32(0x00000080); |
| 2268 | else if (conf->channel_type == NL80211_CHAN_HT40MINUS) |
| 2269 | cmd->channel_flags |= cpu_to_le32(0x000001900); |
| 2270 | else if (conf->channel_type == NL80211_CHAN_HT40PLUS) |
| 2271 | cmd->channel_flags |= cpu_to_le32(0x000000900); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2272 | |
| 2273 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2274 | kfree(cmd); |
| 2275 | |
| 2276 | return rc; |
| 2277 | } |
| 2278 | |
| 2279 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2280 | * CMD_SET_AID. |
| 2281 | */ |
| 2282 | #define MWL8K_FRAME_PROT_DISABLED 0x00 |
| 2283 | #define MWL8K_FRAME_PROT_11G 0x07 |
| 2284 | #define MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY 0x02 |
| 2285 | #define MWL8K_FRAME_PROT_11N_HT_ALL 0x06 |
| 2286 | |
| 2287 | struct mwl8k_cmd_update_set_aid { |
| 2288 | struct mwl8k_cmd_pkt header; |
| 2289 | __le16 aid; |
| 2290 | |
| 2291 | /* AP's MAC address (BSSID) */ |
| 2292 | __u8 bssid[ETH_ALEN]; |
| 2293 | __le16 protection_mode; |
| 2294 | __u8 supp_rates[14]; |
| 2295 | } __attribute__((packed)); |
| 2296 | |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 2297 | static void legacy_rate_mask_to_array(u8 *rates, u32 mask) |
| 2298 | { |
| 2299 | int i; |
| 2300 | int j; |
| 2301 | |
| 2302 | /* |
| 2303 | * Clear nonstandard rates 4 and 13. |
| 2304 | */ |
| 2305 | mask &= 0x1fef; |
| 2306 | |
| 2307 | for (i = 0, j = 0; i < 14; i++) { |
| 2308 | if (mask & (1 << i)) |
Lennert Buytenhek | 777ad37 | 2010-01-12 13:48:04 +0100 | [diff] [blame] | 2309 | rates[j++] = mwl8k_rates_24[i].hw_value; |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 2310 | } |
| 2311 | } |
| 2312 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2313 | static int |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 2314 | mwl8k_cmd_set_aid(struct ieee80211_hw *hw, |
| 2315 | struct ieee80211_vif *vif, u32 legacy_rate_mask) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2316 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2317 | struct mwl8k_cmd_update_set_aid *cmd; |
| 2318 | u16 prot_mode; |
| 2319 | int rc; |
| 2320 | |
| 2321 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2322 | if (cmd == NULL) |
| 2323 | return -ENOMEM; |
| 2324 | |
| 2325 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_AID); |
| 2326 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 2327 | cmd->aid = cpu_to_le16(vif->bss_conf.aid); |
Lennert Buytenhek | 0a11dfc | 2010-01-04 21:55:21 +0100 | [diff] [blame] | 2328 | memcpy(cmd->bssid, vif->bss_conf.bssid, ETH_ALEN); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2329 | |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 2330 | if (vif->bss_conf.use_cts_prot) { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2331 | prot_mode = MWL8K_FRAME_PROT_11G; |
| 2332 | } else { |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 2333 | switch (vif->bss_conf.ht_operation_mode & |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2334 | IEEE80211_HT_OP_MODE_PROTECTION) { |
| 2335 | case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ: |
| 2336 | prot_mode = MWL8K_FRAME_PROT_11N_HT_40MHZ_ONLY; |
| 2337 | break; |
| 2338 | case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED: |
| 2339 | prot_mode = MWL8K_FRAME_PROT_11N_HT_ALL; |
| 2340 | break; |
| 2341 | default: |
| 2342 | prot_mode = MWL8K_FRAME_PROT_DISABLED; |
| 2343 | break; |
| 2344 | } |
| 2345 | } |
| 2346 | cmd->protection_mode = cpu_to_le16(prot_mode); |
| 2347 | |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 2348 | legacy_rate_mask_to_array(cmd->supp_rates, legacy_rate_mask); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2349 | |
| 2350 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2351 | kfree(cmd); |
| 2352 | |
| 2353 | return rc; |
| 2354 | } |
| 2355 | |
| 2356 | /* |
| 2357 | * CMD_SET_RATE. |
| 2358 | */ |
| 2359 | struct mwl8k_cmd_set_rate { |
| 2360 | struct mwl8k_cmd_pkt header; |
| 2361 | __u8 legacy_rates[14]; |
| 2362 | |
| 2363 | /* Bitmap for supported MCS codes. */ |
| 2364 | __u8 mcs_set[16]; |
| 2365 | __u8 reserved[16]; |
| 2366 | } __attribute__((packed)); |
| 2367 | |
| 2368 | static int |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 2369 | mwl8k_cmd_set_rate(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 2370 | u32 legacy_rate_mask, u8 *mcs_rates) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2371 | { |
| 2372 | struct mwl8k_cmd_set_rate *cmd; |
| 2373 | int rc; |
| 2374 | |
| 2375 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2376 | if (cmd == NULL) |
| 2377 | return -ENOMEM; |
| 2378 | |
| 2379 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATE); |
| 2380 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 2381 | legacy_rate_mask_to_array(cmd->legacy_rates, legacy_rate_mask); |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 2382 | memcpy(cmd->mcs_set, mcs_rates, 16); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2383 | |
| 2384 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2385 | kfree(cmd); |
| 2386 | |
| 2387 | return rc; |
| 2388 | } |
| 2389 | |
| 2390 | /* |
| 2391 | * CMD_FINALIZE_JOIN. |
| 2392 | */ |
| 2393 | #define MWL8K_FJ_BEACON_MAXLEN 128 |
| 2394 | |
| 2395 | struct mwl8k_cmd_finalize_join { |
| 2396 | struct mwl8k_cmd_pkt header; |
| 2397 | __le32 sleep_interval; /* Number of beacon periods to sleep */ |
| 2398 | __u8 beacon_data[MWL8K_FJ_BEACON_MAXLEN]; |
| 2399 | } __attribute__((packed)); |
| 2400 | |
| 2401 | static int mwl8k_cmd_finalize_join(struct ieee80211_hw *hw, void *frame, |
| 2402 | int framelen, int dtim) |
| 2403 | { |
| 2404 | struct mwl8k_cmd_finalize_join *cmd; |
| 2405 | struct ieee80211_mgmt *payload = frame; |
| 2406 | int payload_len; |
| 2407 | int rc; |
| 2408 | |
| 2409 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2410 | if (cmd == NULL) |
| 2411 | return -ENOMEM; |
| 2412 | |
| 2413 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_FINALIZE_JOIN); |
| 2414 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2415 | cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1); |
| 2416 | |
| 2417 | payload_len = framelen - ieee80211_hdrlen(payload->frame_control); |
| 2418 | if (payload_len < 0) |
| 2419 | payload_len = 0; |
| 2420 | else if (payload_len > MWL8K_FJ_BEACON_MAXLEN) |
| 2421 | payload_len = MWL8K_FJ_BEACON_MAXLEN; |
| 2422 | |
| 2423 | memcpy(cmd->beacon_data, &payload->u.beacon, payload_len); |
| 2424 | |
| 2425 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2426 | kfree(cmd); |
| 2427 | |
| 2428 | return rc; |
| 2429 | } |
| 2430 | |
| 2431 | /* |
| 2432 | * CMD_SET_RTS_THRESHOLD. |
| 2433 | */ |
| 2434 | struct mwl8k_cmd_set_rts_threshold { |
| 2435 | struct mwl8k_cmd_pkt header; |
| 2436 | __le16 action; |
| 2437 | __le16 threshold; |
| 2438 | } __attribute__((packed)); |
| 2439 | |
Lennert Buytenhek | c2c2b12 | 2010-01-08 18:27:59 +0100 | [diff] [blame] | 2440 | static int |
| 2441 | mwl8k_cmd_set_rts_threshold(struct ieee80211_hw *hw, int rts_thresh) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2442 | { |
| 2443 | struct mwl8k_cmd_set_rts_threshold *cmd; |
| 2444 | int rc; |
| 2445 | |
| 2446 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2447 | if (cmd == NULL) |
| 2448 | return -ENOMEM; |
| 2449 | |
| 2450 | cmd->header.code = cpu_to_le16(MWL8K_CMD_RTS_THRESHOLD); |
| 2451 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | c2c2b12 | 2010-01-08 18:27:59 +0100 | [diff] [blame] | 2452 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
| 2453 | cmd->threshold = cpu_to_le16(rts_thresh); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2454 | |
| 2455 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2456 | kfree(cmd); |
| 2457 | |
| 2458 | return rc; |
| 2459 | } |
| 2460 | |
| 2461 | /* |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2462 | * CMD_SET_SLOT. |
| 2463 | */ |
| 2464 | struct mwl8k_cmd_set_slot { |
| 2465 | struct mwl8k_cmd_pkt header; |
| 2466 | __le16 action; |
| 2467 | __u8 short_slot; |
| 2468 | } __attribute__((packed)); |
| 2469 | |
Lennert Buytenhek | 5539bb5 | 2009-07-16 16:06:53 +0200 | [diff] [blame] | 2470 | 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] | 2471 | { |
| 2472 | struct mwl8k_cmd_set_slot *cmd; |
| 2473 | int rc; |
| 2474 | |
| 2475 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2476 | if (cmd == NULL) |
| 2477 | return -ENOMEM; |
| 2478 | |
| 2479 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_SLOT); |
| 2480 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2481 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
Lennert Buytenhek | 5539bb5 | 2009-07-16 16:06:53 +0200 | [diff] [blame] | 2482 | cmd->short_slot = short_slot_time; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2483 | |
| 2484 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2485 | kfree(cmd); |
| 2486 | |
| 2487 | return rc; |
| 2488 | } |
| 2489 | |
| 2490 | /* |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2491 | * CMD_SET_EDCA_PARAMS. |
| 2492 | */ |
| 2493 | struct mwl8k_cmd_set_edca_params { |
| 2494 | struct mwl8k_cmd_pkt header; |
| 2495 | |
| 2496 | /* See MWL8K_SET_EDCA_XXX below */ |
| 2497 | __le16 action; |
| 2498 | |
| 2499 | /* TX opportunity in units of 32 us */ |
| 2500 | __le16 txop; |
| 2501 | |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 2502 | union { |
| 2503 | struct { |
| 2504 | /* Log exponent of max contention period: 0...15 */ |
| 2505 | __le32 log_cw_max; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2506 | |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 2507 | /* Log exponent of min contention period: 0...15 */ |
| 2508 | __le32 log_cw_min; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2509 | |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 2510 | /* Adaptive interframe spacing in units of 32us */ |
| 2511 | __u8 aifs; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2512 | |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 2513 | /* TX queue to configure */ |
| 2514 | __u8 txq; |
| 2515 | } ap; |
| 2516 | struct { |
| 2517 | /* Log exponent of max contention period: 0...15 */ |
| 2518 | __u8 log_cw_max; |
| 2519 | |
| 2520 | /* Log exponent of min contention period: 0...15 */ |
| 2521 | __u8 log_cw_min; |
| 2522 | |
| 2523 | /* Adaptive interframe spacing in units of 32us */ |
| 2524 | __u8 aifs; |
| 2525 | |
| 2526 | /* TX queue to configure */ |
| 2527 | __u8 txq; |
| 2528 | } sta; |
| 2529 | }; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2530 | } __attribute__((packed)); |
| 2531 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2532 | #define MWL8K_SET_EDCA_CW 0x01 |
| 2533 | #define MWL8K_SET_EDCA_TXOP 0x02 |
| 2534 | #define MWL8K_SET_EDCA_AIFS 0x04 |
| 2535 | |
| 2536 | #define MWL8K_SET_EDCA_ALL (MWL8K_SET_EDCA_CW | \ |
| 2537 | MWL8K_SET_EDCA_TXOP | \ |
| 2538 | MWL8K_SET_EDCA_AIFS) |
| 2539 | |
| 2540 | static int |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2541 | mwl8k_cmd_set_edca_params(struct ieee80211_hw *hw, __u8 qnum, |
| 2542 | __u16 cw_min, __u16 cw_max, |
| 2543 | __u8 aifs, __u16 txop) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2544 | { |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 2545 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2546 | struct mwl8k_cmd_set_edca_params *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2547 | int rc; |
| 2548 | |
| 2549 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2550 | if (cmd == NULL) |
| 2551 | return -ENOMEM; |
| 2552 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2553 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_EDCA_PARAMS); |
| 2554 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2555 | cmd->action = cpu_to_le16(MWL8K_SET_EDCA_ALL); |
| 2556 | cmd->txop = cpu_to_le16(txop); |
Lennert Buytenhek | 2e484c8 | 2009-10-22 20:21:43 +0200 | [diff] [blame] | 2557 | if (priv->ap_fw) { |
| 2558 | cmd->ap.log_cw_max = cpu_to_le32(ilog2(cw_max + 1)); |
| 2559 | cmd->ap.log_cw_min = cpu_to_le32(ilog2(cw_min + 1)); |
| 2560 | cmd->ap.aifs = aifs; |
| 2561 | cmd->ap.txq = qnum; |
| 2562 | } else { |
| 2563 | cmd->sta.log_cw_max = (u8)ilog2(cw_max + 1); |
| 2564 | cmd->sta.log_cw_min = (u8)ilog2(cw_min + 1); |
| 2565 | cmd->sta.aifs = aifs; |
| 2566 | cmd->sta.txq = qnum; |
| 2567 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2568 | |
| 2569 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2570 | kfree(cmd); |
| 2571 | |
| 2572 | return rc; |
| 2573 | } |
| 2574 | |
| 2575 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2576 | * CMD_SET_WMM_MODE. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2577 | */ |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2578 | struct mwl8k_cmd_set_wmm_mode { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2579 | struct mwl8k_cmd_pkt header; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2580 | __le16 action; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2581 | } __attribute__((packed)); |
| 2582 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2583 | 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] | 2584 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2585 | struct mwl8k_priv *priv = hw->priv; |
| 2586 | struct mwl8k_cmd_set_wmm_mode *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2587 | int rc; |
| 2588 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2589 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2590 | if (cmd == NULL) |
| 2591 | return -ENOMEM; |
| 2592 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2593 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_WMM_MODE); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2594 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2595 | cmd->action = cpu_to_le16(!!enable); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2596 | |
| 2597 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2598 | kfree(cmd); |
Lennert Buytenhek | 16cec43 | 2009-11-30 18:14:23 +0100 | [diff] [blame] | 2599 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2600 | if (!rc) |
| 2601 | priv->wmm_enabled = enable; |
| 2602 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2603 | return rc; |
| 2604 | } |
| 2605 | |
| 2606 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2607 | * CMD_MIMO_CONFIG. |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2608 | */ |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2609 | struct mwl8k_cmd_mimo_config { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2610 | struct mwl8k_cmd_pkt header; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2611 | __le32 action; |
| 2612 | __u8 rx_antenna_map; |
| 2613 | __u8 tx_antenna_map; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2614 | } __attribute__((packed)); |
| 2615 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2616 | 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] | 2617 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2618 | struct mwl8k_cmd_mimo_config *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2619 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2620 | |
| 2621 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2622 | if (cmd == NULL) |
| 2623 | return -ENOMEM; |
| 2624 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2625 | cmd->header.code = cpu_to_le16(MWL8K_CMD_MIMO_CONFIG); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2626 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2627 | cmd->action = cpu_to_le32((u32)MWL8K_CMD_SET); |
| 2628 | cmd->rx_antenna_map = rx; |
| 2629 | cmd->tx_antenna_map = tx; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2630 | |
| 2631 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2632 | kfree(cmd); |
| 2633 | |
| 2634 | return rc; |
| 2635 | } |
| 2636 | |
| 2637 | /* |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 2638 | * CMD_USE_FIXED_RATE (STA version). |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2639 | */ |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 2640 | struct mwl8k_cmd_use_fixed_rate_sta { |
| 2641 | struct mwl8k_cmd_pkt header; |
| 2642 | __le32 action; |
| 2643 | __le32 allow_rate_drop; |
| 2644 | __le32 num_rates; |
| 2645 | struct { |
| 2646 | __le32 is_ht_rate; |
| 2647 | __le32 enable_retry; |
| 2648 | __le32 rate; |
| 2649 | __le32 retry_count; |
| 2650 | } rate_entry[8]; |
| 2651 | __le32 rate_type; |
| 2652 | __le32 reserved1; |
| 2653 | __le32 reserved2; |
| 2654 | } __attribute__((packed)); |
| 2655 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2656 | #define MWL8K_USE_AUTO_RATE 0x0002 |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 2657 | #define MWL8K_UCAST_RATE 0 |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2658 | |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 2659 | static int mwl8k_cmd_use_fixed_rate_sta(struct ieee80211_hw *hw) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2660 | { |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 2661 | struct mwl8k_cmd_use_fixed_rate_sta *cmd; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2662 | int rc; |
| 2663 | |
| 2664 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2665 | if (cmd == NULL) |
| 2666 | return -ENOMEM; |
| 2667 | |
| 2668 | cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE); |
| 2669 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 2670 | cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE); |
| 2671 | cmd->rate_type = cpu_to_le32(MWL8K_UCAST_RATE); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 2672 | |
| 2673 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2674 | kfree(cmd); |
| 2675 | |
| 2676 | return rc; |
| 2677 | } |
| 2678 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2679 | /* |
Lennert Buytenhek | 088aab8 | 2010-01-08 18:30:36 +0100 | [diff] [blame] | 2680 | * CMD_USE_FIXED_RATE (AP version). |
| 2681 | */ |
| 2682 | struct mwl8k_cmd_use_fixed_rate_ap { |
| 2683 | struct mwl8k_cmd_pkt header; |
| 2684 | __le32 action; |
| 2685 | __le32 allow_rate_drop; |
| 2686 | __le32 num_rates; |
| 2687 | struct mwl8k_rate_entry_ap { |
| 2688 | __le32 is_ht_rate; |
| 2689 | __le32 enable_retry; |
| 2690 | __le32 rate; |
| 2691 | __le32 retry_count; |
| 2692 | } rate_entry[4]; |
| 2693 | u8 multicast_rate; |
| 2694 | u8 multicast_rate_type; |
| 2695 | u8 management_rate; |
| 2696 | } __attribute__((packed)); |
| 2697 | |
| 2698 | static int |
| 2699 | mwl8k_cmd_use_fixed_rate_ap(struct ieee80211_hw *hw, int mcast, int mgmt) |
| 2700 | { |
| 2701 | struct mwl8k_cmd_use_fixed_rate_ap *cmd; |
| 2702 | int rc; |
| 2703 | |
| 2704 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2705 | if (cmd == NULL) |
| 2706 | return -ENOMEM; |
| 2707 | |
| 2708 | cmd->header.code = cpu_to_le16(MWL8K_CMD_USE_FIXED_RATE); |
| 2709 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2710 | cmd->action = cpu_to_le32(MWL8K_USE_AUTO_RATE); |
| 2711 | cmd->multicast_rate = mcast; |
| 2712 | cmd->management_rate = mgmt; |
| 2713 | |
| 2714 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2715 | kfree(cmd); |
| 2716 | |
| 2717 | return rc; |
| 2718 | } |
| 2719 | |
| 2720 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2721 | * CMD_ENABLE_SNIFFER. |
| 2722 | */ |
| 2723 | struct mwl8k_cmd_enable_sniffer { |
| 2724 | struct mwl8k_cmd_pkt header; |
| 2725 | __le32 action; |
| 2726 | } __attribute__((packed)); |
| 2727 | |
| 2728 | static int mwl8k_cmd_enable_sniffer(struct ieee80211_hw *hw, bool enable) |
| 2729 | { |
| 2730 | struct mwl8k_cmd_enable_sniffer *cmd; |
| 2731 | int rc; |
| 2732 | |
| 2733 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2734 | if (cmd == NULL) |
| 2735 | return -ENOMEM; |
| 2736 | |
| 2737 | cmd->header.code = cpu_to_le16(MWL8K_CMD_ENABLE_SNIFFER); |
| 2738 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2739 | cmd->action = cpu_to_le32(!!enable); |
| 2740 | |
| 2741 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2742 | kfree(cmd); |
| 2743 | |
| 2744 | return rc; |
| 2745 | } |
| 2746 | |
| 2747 | /* |
| 2748 | * CMD_SET_MAC_ADDR. |
| 2749 | */ |
| 2750 | struct mwl8k_cmd_set_mac_addr { |
| 2751 | struct mwl8k_cmd_pkt header; |
| 2752 | union { |
| 2753 | struct { |
| 2754 | __le16 mac_type; |
| 2755 | __u8 mac_addr[ETH_ALEN]; |
| 2756 | } mbss; |
| 2757 | __u8 mac_addr[ETH_ALEN]; |
| 2758 | }; |
| 2759 | } __attribute__((packed)); |
| 2760 | |
Lennert Buytenhek | a9e00b1 | 2010-01-08 18:31:30 +0100 | [diff] [blame] | 2761 | #define MWL8K_MAC_TYPE_PRIMARY_CLIENT 0 |
| 2762 | #define MWL8K_MAC_TYPE_PRIMARY_AP 2 |
| 2763 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2764 | static int mwl8k_cmd_set_mac_addr(struct ieee80211_hw *hw, u8 *mac) |
| 2765 | { |
| 2766 | struct mwl8k_priv *priv = hw->priv; |
| 2767 | struct mwl8k_cmd_set_mac_addr *cmd; |
| 2768 | int rc; |
| 2769 | |
| 2770 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2771 | if (cmd == NULL) |
| 2772 | return -ENOMEM; |
| 2773 | |
| 2774 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_MAC_ADDR); |
| 2775 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2776 | if (priv->ap_fw) { |
Lennert Buytenhek | a9e00b1 | 2010-01-08 18:31:30 +0100 | [diff] [blame] | 2777 | cmd->mbss.mac_type = cpu_to_le16(MWL8K_MAC_TYPE_PRIMARY_AP); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2778 | memcpy(cmd->mbss.mac_addr, mac, ETH_ALEN); |
| 2779 | } else { |
| 2780 | memcpy(cmd->mac_addr, mac, ETH_ALEN); |
| 2781 | } |
| 2782 | |
| 2783 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2784 | kfree(cmd); |
| 2785 | |
| 2786 | return rc; |
| 2787 | } |
| 2788 | |
| 2789 | /* |
| 2790 | * CMD_SET_RATEADAPT_MODE. |
| 2791 | */ |
| 2792 | struct mwl8k_cmd_set_rate_adapt_mode { |
| 2793 | struct mwl8k_cmd_pkt header; |
| 2794 | __le16 action; |
| 2795 | __le16 mode; |
| 2796 | } __attribute__((packed)); |
| 2797 | |
| 2798 | static int mwl8k_cmd_set_rateadapt_mode(struct ieee80211_hw *hw, __u16 mode) |
| 2799 | { |
| 2800 | struct mwl8k_cmd_set_rate_adapt_mode *cmd; |
| 2801 | int rc; |
| 2802 | |
| 2803 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2804 | if (cmd == NULL) |
| 2805 | return -ENOMEM; |
| 2806 | |
| 2807 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_RATEADAPT_MODE); |
| 2808 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2809 | cmd->action = cpu_to_le16(MWL8K_CMD_SET); |
| 2810 | cmd->mode = cpu_to_le16(mode); |
| 2811 | |
| 2812 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2813 | kfree(cmd); |
| 2814 | |
| 2815 | return rc; |
| 2816 | } |
| 2817 | |
| 2818 | /* |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 2819 | * CMD_BSS_START. |
| 2820 | */ |
| 2821 | struct mwl8k_cmd_bss_start { |
| 2822 | struct mwl8k_cmd_pkt header; |
| 2823 | __le32 enable; |
| 2824 | } __attribute__((packed)); |
| 2825 | |
| 2826 | static int mwl8k_cmd_bss_start(struct ieee80211_hw *hw, int enable) |
| 2827 | { |
| 2828 | struct mwl8k_cmd_bss_start *cmd; |
| 2829 | int rc; |
| 2830 | |
| 2831 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2832 | if (cmd == NULL) |
| 2833 | return -ENOMEM; |
| 2834 | |
| 2835 | cmd->header.code = cpu_to_le16(MWL8K_CMD_BSS_START); |
| 2836 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2837 | cmd->enable = cpu_to_le32(enable); |
| 2838 | |
| 2839 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2840 | kfree(cmd); |
| 2841 | |
| 2842 | return rc; |
| 2843 | } |
| 2844 | |
| 2845 | /* |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 2846 | * CMD_SET_NEW_STN. |
| 2847 | */ |
| 2848 | struct mwl8k_cmd_set_new_stn { |
| 2849 | struct mwl8k_cmd_pkt header; |
| 2850 | __le16 aid; |
| 2851 | __u8 mac_addr[6]; |
| 2852 | __le16 stn_id; |
| 2853 | __le16 action; |
| 2854 | __le16 rsvd; |
| 2855 | __le32 legacy_rates; |
| 2856 | __u8 ht_rates[4]; |
| 2857 | __le16 cap_info; |
| 2858 | __le16 ht_capabilities_info; |
| 2859 | __u8 mac_ht_param_info; |
| 2860 | __u8 rev; |
| 2861 | __u8 control_channel; |
| 2862 | __u8 add_channel; |
| 2863 | __le16 op_mode; |
| 2864 | __le16 stbc; |
| 2865 | __u8 add_qos_info; |
| 2866 | __u8 is_qos_sta; |
| 2867 | __le32 fw_sta_ptr; |
| 2868 | } __attribute__((packed)); |
| 2869 | |
| 2870 | #define MWL8K_STA_ACTION_ADD 0 |
| 2871 | #define MWL8K_STA_ACTION_REMOVE 2 |
| 2872 | |
| 2873 | static int mwl8k_cmd_set_new_stn_add(struct ieee80211_hw *hw, |
| 2874 | struct ieee80211_vif *vif, |
| 2875 | struct ieee80211_sta *sta) |
| 2876 | { |
| 2877 | struct mwl8k_cmd_set_new_stn *cmd; |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 2878 | u32 rates; |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 2879 | int rc; |
| 2880 | |
| 2881 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2882 | if (cmd == NULL) |
| 2883 | return -ENOMEM; |
| 2884 | |
| 2885 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN); |
| 2886 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2887 | cmd->aid = cpu_to_le16(sta->aid); |
| 2888 | memcpy(cmd->mac_addr, sta->addr, ETH_ALEN); |
| 2889 | cmd->stn_id = cpu_to_le16(sta->aid); |
| 2890 | cmd->action = cpu_to_le16(MWL8K_STA_ACTION_ADD); |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 2891 | if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) |
| 2892 | rates = sta->supp_rates[IEEE80211_BAND_2GHZ]; |
| 2893 | else |
| 2894 | rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5; |
| 2895 | cmd->legacy_rates = cpu_to_le32(rates); |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 2896 | if (sta->ht_cap.ht_supported) { |
| 2897 | cmd->ht_rates[0] = sta->ht_cap.mcs.rx_mask[0]; |
| 2898 | cmd->ht_rates[1] = sta->ht_cap.mcs.rx_mask[1]; |
| 2899 | cmd->ht_rates[2] = sta->ht_cap.mcs.rx_mask[2]; |
| 2900 | cmd->ht_rates[3] = sta->ht_cap.mcs.rx_mask[3]; |
| 2901 | cmd->ht_capabilities_info = cpu_to_le16(sta->ht_cap.cap); |
| 2902 | cmd->mac_ht_param_info = (sta->ht_cap.ampdu_factor & 3) | |
| 2903 | ((sta->ht_cap.ampdu_density & 7) << 2); |
| 2904 | cmd->is_qos_sta = 1; |
| 2905 | } |
| 2906 | |
| 2907 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2908 | kfree(cmd); |
| 2909 | |
| 2910 | return rc; |
| 2911 | } |
| 2912 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 2913 | static int mwl8k_cmd_set_new_stn_add_self(struct ieee80211_hw *hw, |
| 2914 | struct ieee80211_vif *vif) |
| 2915 | { |
| 2916 | struct mwl8k_cmd_set_new_stn *cmd; |
| 2917 | int rc; |
| 2918 | |
| 2919 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2920 | if (cmd == NULL) |
| 2921 | return -ENOMEM; |
| 2922 | |
| 2923 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN); |
| 2924 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2925 | memcpy(cmd->mac_addr, vif->addr, ETH_ALEN); |
| 2926 | |
| 2927 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2928 | kfree(cmd); |
| 2929 | |
| 2930 | return rc; |
| 2931 | } |
| 2932 | |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 2933 | static int mwl8k_cmd_set_new_stn_del(struct ieee80211_hw *hw, |
| 2934 | struct ieee80211_vif *vif, u8 *addr) |
| 2935 | { |
| 2936 | struct mwl8k_cmd_set_new_stn *cmd; |
| 2937 | int rc; |
| 2938 | |
| 2939 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 2940 | if (cmd == NULL) |
| 2941 | return -ENOMEM; |
| 2942 | |
| 2943 | cmd->header.code = cpu_to_le16(MWL8K_CMD_SET_NEW_STN); |
| 2944 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 2945 | memcpy(cmd->mac_addr, addr, ETH_ALEN); |
| 2946 | cmd->action = cpu_to_le16(MWL8K_STA_ACTION_REMOVE); |
| 2947 | |
| 2948 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 2949 | kfree(cmd); |
| 2950 | |
| 2951 | return rc; |
| 2952 | } |
| 2953 | |
| 2954 | /* |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2955 | * CMD_UPDATE_STADB. |
| 2956 | */ |
Lennert Buytenhek | 25d81b1 | 2010-01-04 21:54:41 +0100 | [diff] [blame] | 2957 | struct ewc_ht_info { |
| 2958 | __le16 control1; |
| 2959 | __le16 control2; |
| 2960 | __le16 control3; |
| 2961 | } __attribute__((packed)); |
| 2962 | |
| 2963 | struct peer_capability_info { |
| 2964 | /* Peer type - AP vs. STA. */ |
| 2965 | __u8 peer_type; |
| 2966 | |
| 2967 | /* Basic 802.11 capabilities from assoc resp. */ |
| 2968 | __le16 basic_caps; |
| 2969 | |
| 2970 | /* Set if peer supports 802.11n high throughput (HT). */ |
| 2971 | __u8 ht_support; |
| 2972 | |
| 2973 | /* Valid if HT is supported. */ |
| 2974 | __le16 ht_caps; |
| 2975 | __u8 extended_ht_caps; |
| 2976 | struct ewc_ht_info ewc_info; |
| 2977 | |
| 2978 | /* Legacy rate table. Intersection of our rates and peer rates. */ |
| 2979 | __u8 legacy_rates[12]; |
| 2980 | |
| 2981 | /* HT rate table. Intersection of our rates and peer rates. */ |
| 2982 | __u8 ht_rates[16]; |
| 2983 | __u8 pad[16]; |
| 2984 | |
| 2985 | /* If set, interoperability mode, no proprietary extensions. */ |
| 2986 | __u8 interop; |
| 2987 | __u8 pad2; |
| 2988 | __u8 station_id; |
| 2989 | __le16 amsdu_enabled; |
| 2990 | } __attribute__((packed)); |
| 2991 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 2992 | struct mwl8k_cmd_update_stadb { |
| 2993 | struct mwl8k_cmd_pkt header; |
| 2994 | |
| 2995 | /* See STADB_ACTION_TYPE */ |
| 2996 | __le32 action; |
| 2997 | |
| 2998 | /* Peer MAC address */ |
| 2999 | __u8 peer_addr[ETH_ALEN]; |
| 3000 | |
| 3001 | __le32 reserved; |
| 3002 | |
| 3003 | /* Peer info - valid during add/update. */ |
| 3004 | struct peer_capability_info peer_info; |
| 3005 | } __attribute__((packed)); |
| 3006 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 3007 | #define MWL8K_STA_DB_MODIFY_ENTRY 1 |
| 3008 | #define MWL8K_STA_DB_DEL_ENTRY 2 |
| 3009 | |
| 3010 | /* Peer Entry flags - used to define the type of the peer node */ |
| 3011 | #define MWL8K_PEER_TYPE_ACCESSPOINT 2 |
| 3012 | |
| 3013 | static int mwl8k_cmd_update_stadb_add(struct ieee80211_hw *hw, |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 3014 | struct ieee80211_vif *vif, |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3015 | struct ieee80211_sta *sta) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3016 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3017 | struct mwl8k_cmd_update_stadb *cmd; |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 3018 | struct peer_capability_info *p; |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 3019 | u32 rates; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3020 | int rc; |
| 3021 | |
| 3022 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3023 | if (cmd == NULL) |
| 3024 | return -ENOMEM; |
| 3025 | |
| 3026 | cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB); |
| 3027 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 3028 | cmd->action = cpu_to_le32(MWL8K_STA_DB_MODIFY_ENTRY); |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3029 | memcpy(cmd->peer_addr, sta->addr, ETH_ALEN); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3030 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 3031 | p = &cmd->peer_info; |
| 3032 | p->peer_type = MWL8K_PEER_TYPE_ACCESSPOINT; |
| 3033 | p->basic_caps = cpu_to_le16(vif->bss_conf.assoc_capability); |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3034 | p->ht_support = sta->ht_cap.ht_supported; |
| 3035 | p->ht_caps = sta->ht_cap.cap; |
| 3036 | p->extended_ht_caps = (sta->ht_cap.ampdu_factor & 3) | |
| 3037 | ((sta->ht_cap.ampdu_density & 7) << 2); |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 3038 | if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) |
| 3039 | rates = sta->supp_rates[IEEE80211_BAND_2GHZ]; |
| 3040 | else |
| 3041 | rates = sta->supp_rates[IEEE80211_BAND_5GHZ] << 5; |
| 3042 | legacy_rate_mask_to_array(p->legacy_rates, rates); |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3043 | memcpy(p->ht_rates, sta->ht_cap.mcs.rx_mask, 16); |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 3044 | p->interop = 1; |
| 3045 | p->amsdu_enabled = 0; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3046 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 3047 | rc = mwl8k_post_cmd(hw, &cmd->header); |
| 3048 | kfree(cmd); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3049 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 3050 | return rc ? rc : p->station_id; |
| 3051 | } |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3052 | |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 3053 | static int mwl8k_cmd_update_stadb_del(struct ieee80211_hw *hw, |
| 3054 | struct ieee80211_vif *vif, u8 *addr) |
| 3055 | { |
| 3056 | struct mwl8k_cmd_update_stadb *cmd; |
| 3057 | int rc; |
| 3058 | |
| 3059 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 3060 | if (cmd == NULL) |
| 3061 | return -ENOMEM; |
| 3062 | |
| 3063 | cmd->header.code = cpu_to_le16(MWL8K_CMD_UPDATE_STADB); |
| 3064 | cmd->header.length = cpu_to_le16(sizeof(*cmd)); |
| 3065 | cmd->action = cpu_to_le32(MWL8K_STA_DB_DEL_ENTRY); |
| 3066 | memcpy(cmd->peer_addr, addr, ETH_ALEN); |
| 3067 | |
| 3068 | rc = mwl8k_post_cmd(hw, &cmd->header); |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3069 | kfree(cmd); |
| 3070 | |
| 3071 | return rc; |
| 3072 | } |
| 3073 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3074 | |
| 3075 | /* |
| 3076 | * Interrupt handling. |
| 3077 | */ |
| 3078 | static irqreturn_t mwl8k_interrupt(int irq, void *dev_id) |
| 3079 | { |
| 3080 | struct ieee80211_hw *hw = dev_id; |
| 3081 | struct mwl8k_priv *priv = hw->priv; |
| 3082 | u32 status; |
| 3083 | |
| 3084 | status = ioread32(priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3085 | if (!status) |
| 3086 | return IRQ_NONE; |
| 3087 | |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 3088 | if (status & MWL8K_A2H_INT_TX_DONE) { |
| 3089 | status &= ~MWL8K_A2H_INT_TX_DONE; |
| 3090 | tasklet_schedule(&priv->poll_tx_task); |
| 3091 | } |
| 3092 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 3093 | if (status & MWL8K_A2H_INT_RX_READY) { |
| 3094 | status &= ~MWL8K_A2H_INT_RX_READY; |
| 3095 | tasklet_schedule(&priv->poll_rx_task); |
| 3096 | } |
| 3097 | |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 3098 | if (status) |
| 3099 | iowrite32(~status, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3100 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3101 | if (status & MWL8K_A2H_INT_OPC_DONE) { |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 3102 | if (priv->hostcmd_wait != NULL) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3103 | complete(priv->hostcmd_wait); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3104 | } |
| 3105 | |
| 3106 | if (status & MWL8K_A2H_INT_QUEUE_EMPTY) { |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 3107 | if (!mutex_is_locked(&priv->fw_mutex) && |
Lennert Buytenhek | 88de754a | 2009-10-22 20:19:37 +0200 | [diff] [blame] | 3108 | priv->radio_on && priv->pending_tx_pkts) |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 3109 | mwl8k_tx_start(priv); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3110 | } |
| 3111 | |
| 3112 | return IRQ_HANDLED; |
| 3113 | } |
| 3114 | |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 3115 | static void mwl8k_tx_poll(unsigned long data) |
| 3116 | { |
| 3117 | struct ieee80211_hw *hw = (struct ieee80211_hw *)data; |
| 3118 | struct mwl8k_priv *priv = hw->priv; |
| 3119 | int limit; |
| 3120 | int i; |
| 3121 | |
| 3122 | limit = 32; |
| 3123 | |
| 3124 | spin_lock_bh(&priv->tx_lock); |
| 3125 | |
| 3126 | for (i = 0; i < MWL8K_TX_QUEUES; i++) |
| 3127 | limit -= mwl8k_txq_reclaim(hw, i, limit, 0); |
| 3128 | |
| 3129 | if (!priv->pending_tx_pkts && priv->tx_wait != NULL) { |
| 3130 | complete(priv->tx_wait); |
| 3131 | priv->tx_wait = NULL; |
| 3132 | } |
| 3133 | |
| 3134 | spin_unlock_bh(&priv->tx_lock); |
| 3135 | |
| 3136 | if (limit) { |
| 3137 | writel(~MWL8K_A2H_INT_TX_DONE, |
| 3138 | priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS); |
| 3139 | } else { |
| 3140 | tasklet_schedule(&priv->poll_tx_task); |
| 3141 | } |
| 3142 | } |
| 3143 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 3144 | static void mwl8k_rx_poll(unsigned long data) |
| 3145 | { |
| 3146 | struct ieee80211_hw *hw = (struct ieee80211_hw *)data; |
| 3147 | struct mwl8k_priv *priv = hw->priv; |
| 3148 | int limit; |
| 3149 | |
| 3150 | limit = 32; |
| 3151 | limit -= rxq_process(hw, 0, limit); |
| 3152 | limit -= rxq_refill(hw, 0, limit); |
| 3153 | |
| 3154 | if (limit) { |
| 3155 | writel(~MWL8K_A2H_INT_RX_READY, |
| 3156 | priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS); |
| 3157 | } else { |
| 3158 | tasklet_schedule(&priv->poll_rx_task); |
| 3159 | } |
| 3160 | } |
| 3161 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3162 | |
| 3163 | /* |
| 3164 | * Core driver operations. |
| 3165 | */ |
| 3166 | static int mwl8k_tx(struct ieee80211_hw *hw, struct sk_buff *skb) |
| 3167 | { |
| 3168 | struct mwl8k_priv *priv = hw->priv; |
| 3169 | int index = skb_get_queue_mapping(skb); |
| 3170 | int rc; |
| 3171 | |
Lennert Buytenhek | 9189c10 | 2010-01-12 13:47:32 +0100 | [diff] [blame] | 3172 | if (!priv->radio_on) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3173 | printk(KERN_DEBUG "%s: dropped TX frame since radio " |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 3174 | "disabled\n", wiphy_name(hw->wiphy)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3175 | dev_kfree_skb(skb); |
| 3176 | return NETDEV_TX_OK; |
| 3177 | } |
| 3178 | |
| 3179 | rc = mwl8k_txq_xmit(hw, index, skb); |
| 3180 | |
| 3181 | return rc; |
| 3182 | } |
| 3183 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3184 | static int mwl8k_start(struct ieee80211_hw *hw) |
| 3185 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3186 | struct mwl8k_priv *priv = hw->priv; |
| 3187 | int rc; |
| 3188 | |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 3189 | rc = request_irq(priv->pdev->irq, mwl8k_interrupt, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3190 | IRQF_SHARED, MWL8K_NAME, hw); |
| 3191 | if (rc) { |
| 3192 | printk(KERN_ERR "%s: failed to register IRQ handler\n", |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 3193 | wiphy_name(hw->wiphy)); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3194 | return -EIO; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3195 | } |
| 3196 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 3197 | /* Enable TX reclaim and RX tasklets. */ |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 3198 | tasklet_enable(&priv->poll_tx_task); |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 3199 | tasklet_enable(&priv->poll_rx_task); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3200 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3201 | /* Enable interrupts */ |
Lennert Buytenhek | c23b5a6 | 2009-07-16 13:49:55 +0200 | [diff] [blame] | 3202 | iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3203 | |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3204 | rc = mwl8k_fw_lock(hw); |
| 3205 | if (!rc) { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3206 | rc = mwl8k_cmd_radio_enable(hw); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3207 | |
Lennert Buytenhek | 5e4cf16 | 2009-10-22 20:21:38 +0200 | [diff] [blame] | 3208 | if (!priv->ap_fw) { |
| 3209 | if (!rc) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3210 | rc = mwl8k_cmd_enable_sniffer(hw, 0); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3211 | |
Lennert Buytenhek | 5e4cf16 | 2009-10-22 20:21:38 +0200 | [diff] [blame] | 3212 | if (!rc) |
| 3213 | rc = mwl8k_cmd_set_pre_scan(hw); |
| 3214 | |
| 3215 | if (!rc) |
| 3216 | rc = mwl8k_cmd_set_post_scan(hw, |
| 3217 | "\x00\x00\x00\x00\x00\x00"); |
| 3218 | } |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3219 | |
| 3220 | if (!rc) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3221 | rc = mwl8k_cmd_set_rateadapt_mode(hw, 0); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3222 | |
| 3223 | if (!rc) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3224 | rc = mwl8k_cmd_set_wmm_mode(hw, 0); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3225 | |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3226 | mwl8k_fw_unlock(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3227 | } |
| 3228 | |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3229 | if (rc) { |
| 3230 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
| 3231 | free_irq(priv->pdev->irq, hw); |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 3232 | tasklet_disable(&priv->poll_tx_task); |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 3233 | tasklet_disable(&priv->poll_rx_task); |
Lennert Buytenhek | 2ec610c | 2009-07-17 07:11:37 +0200 | [diff] [blame] | 3234 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3235 | |
| 3236 | return rc; |
| 3237 | } |
| 3238 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3239 | static void mwl8k_stop(struct ieee80211_hw *hw) |
| 3240 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3241 | struct mwl8k_priv *priv = hw->priv; |
| 3242 | int i; |
| 3243 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3244 | mwl8k_cmd_radio_disable(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3245 | |
| 3246 | ieee80211_stop_queues(hw); |
| 3247 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3248 | /* Disable interrupts */ |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3249 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3250 | free_irq(priv->pdev->irq, hw); |
| 3251 | |
| 3252 | /* Stop finalize join worker */ |
| 3253 | cancel_work_sync(&priv->finalize_join_worker); |
| 3254 | if (priv->beacon_skb != NULL) |
| 3255 | dev_kfree_skb(priv->beacon_skb); |
| 3256 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 3257 | /* Stop TX reclaim and RX tasklets. */ |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 3258 | tasklet_disable(&priv->poll_tx_task); |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 3259 | tasklet_disable(&priv->poll_rx_task); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3260 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3261 | /* Return all skbs to mac80211 */ |
| 3262 | for (i = 0; i < MWL8K_TX_QUEUES; i++) |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 3263 | mwl8k_txq_reclaim(hw, i, INT_MAX, 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3264 | } |
| 3265 | |
| 3266 | static int mwl8k_add_interface(struct ieee80211_hw *hw, |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3267 | struct ieee80211_vif *vif) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3268 | { |
| 3269 | struct mwl8k_priv *priv = hw->priv; |
| 3270 | struct mwl8k_vif *mwl8k_vif; |
| 3271 | |
| 3272 | /* |
| 3273 | * We only support one active interface at a time. |
| 3274 | */ |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3275 | if (!list_empty(&priv->vif_list)) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3276 | return -EBUSY; |
| 3277 | |
| 3278 | /* |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 3279 | * Reject interface creation if sniffer mode is active, as |
| 3280 | * STA operation is mutually exclusive with hardware sniffer |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3281 | * mode. (Sniffer mode is only used on STA firmware.) |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 3282 | */ |
| 3283 | if (priv->sniffer_enabled) { |
| 3284 | printk(KERN_INFO "%s: unable to create STA " |
| 3285 | "interface due to sniffer mode being enabled\n", |
| 3286 | wiphy_name(hw->wiphy)); |
| 3287 | return -EINVAL; |
| 3288 | } |
| 3289 | |
Lennert Buytenhek | c2c2b12 | 2010-01-08 18:27:59 +0100 | [diff] [blame] | 3290 | /* Set the mac address. */ |
| 3291 | mwl8k_cmd_set_mac_addr(hw, vif->addr); |
| 3292 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3293 | if (priv->ap_fw) |
| 3294 | mwl8k_cmd_set_new_stn_add_self(hw, vif); |
| 3295 | |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3296 | /* Setup driver private area. */ |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 3297 | mwl8k_vif = MWL8K_VIF(vif); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3298 | memset(mwl8k_vif, 0, sizeof(*mwl8k_vif)); |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3299 | mwl8k_vif->vif = vif; |
Lennert Buytenhek | f57ca9c | 2010-01-12 13:50:14 +0100 | [diff] [blame^] | 3300 | mwl8k_vif->macid = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3301 | mwl8k_vif->seqno = 0; |
| 3302 | |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3303 | list_add_tail(&mwl8k_vif->list, &priv->vif_list); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3304 | |
| 3305 | return 0; |
| 3306 | } |
| 3307 | |
| 3308 | static void mwl8k_remove_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 3309 | struct ieee80211_vif *vif) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3310 | { |
| 3311 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3312 | struct mwl8k_vif *mwl8k_vif = MWL8K_VIF(vif); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3313 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3314 | if (priv->ap_fw) |
| 3315 | mwl8k_cmd_set_new_stn_del(hw, vif, vif->addr); |
| 3316 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3317 | mwl8k_cmd_set_mac_addr(hw, "\x00\x00\x00\x00\x00\x00"); |
Lennert Buytenhek | 32060e1 | 2009-10-22 20:20:04 +0200 | [diff] [blame] | 3318 | |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3319 | list_del(&mwl8k_vif->list); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3320 | } |
| 3321 | |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 3322 | static int mwl8k_config(struct ieee80211_hw *hw, u32 changed) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3323 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3324 | struct ieee80211_conf *conf = &hw->conf; |
| 3325 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 3326 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3327 | |
Lennert Buytenhek | 7595d67 | 2009-08-17 23:59:40 +0200 | [diff] [blame] | 3328 | if (conf->flags & IEEE80211_CONF_IDLE) { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3329 | mwl8k_cmd_radio_disable(hw); |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 3330 | return 0; |
Lennert Buytenhek | 7595d67 | 2009-08-17 23:59:40 +0200 | [diff] [blame] | 3331 | } |
| 3332 | |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 3333 | rc = mwl8k_fw_lock(hw); |
| 3334 | if (rc) |
| 3335 | return rc; |
| 3336 | |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3337 | rc = mwl8k_cmd_radio_enable(hw); |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 3338 | if (rc) |
| 3339 | goto out; |
| 3340 | |
Lennert Buytenhek | 610677d | 2010-01-04 21:56:46 +0100 | [diff] [blame] | 3341 | rc = mwl8k_cmd_set_rf_channel(hw, conf); |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 3342 | if (rc) |
| 3343 | goto out; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3344 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3345 | if (conf->power_level > 18) |
| 3346 | conf->power_level = 18; |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3347 | rc = mwl8k_cmd_rf_tx_power(hw, conf->power_level); |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 3348 | if (rc) |
| 3349 | goto out; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3350 | |
Lennert Buytenhek | 08b0634 | 2009-10-22 20:21:33 +0200 | [diff] [blame] | 3351 | if (priv->ap_fw) { |
| 3352 | rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_RX, 0x7); |
| 3353 | if (!rc) |
| 3354 | rc = mwl8k_cmd_rf_antenna(hw, MWL8K_RF_ANTENNA_TX, 0x7); |
| 3355 | } else { |
| 3356 | rc = mwl8k_cmd_mimo_config(hw, 0x7, 0x7); |
| 3357 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3358 | |
Lennert Buytenhek | ee03a93 | 2009-07-17 07:19:37 +0200 | [diff] [blame] | 3359 | out: |
| 3360 | mwl8k_fw_unlock(hw); |
| 3361 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3362 | return rc; |
| 3363 | } |
| 3364 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3365 | static void |
| 3366 | mwl8k_bss_info_changed_sta(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 3367 | struct ieee80211_bss_conf *info, u32 changed) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3368 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3369 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3370 | u32 ap_legacy_rates; |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3371 | u8 ap_mcs_rates[16]; |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 3372 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3373 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3374 | if (mwl8k_fw_lock(hw)) |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 3375 | return; |
| 3376 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3377 | /* |
| 3378 | * No need to capture a beacon if we're no longer associated. |
| 3379 | */ |
| 3380 | if ((changed & BSS_CHANGED_ASSOC) && !vif->bss_conf.assoc) |
| 3381 | priv->capture_beacon = false; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3382 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3383 | /* |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3384 | * Get the AP's legacy and MCS rates. |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3385 | */ |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 3386 | if (vif->bss_conf.assoc) { |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 3387 | struct ieee80211_sta *ap; |
Lennert Buytenhek | c97470d | 2010-01-12 13:47:37 +0100 | [diff] [blame] | 3388 | |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 3389 | rcu_read_lock(); |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3390 | |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 3391 | ap = ieee80211_find_sta(vif, vif->bss_conf.bssid); |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3392 | if (ap == NULL) { |
| 3393 | rcu_read_unlock(); |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 3394 | goto out; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3395 | } |
Lennert Buytenhek | c6e9601 | 2010-01-04 21:55:52 +0100 | [diff] [blame] | 3396 | |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 3397 | if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) { |
| 3398 | ap_legacy_rates = ap->supp_rates[IEEE80211_BAND_2GHZ]; |
| 3399 | } else { |
| 3400 | ap_legacy_rates = |
| 3401 | ap->supp_rates[IEEE80211_BAND_5GHZ] << 5; |
| 3402 | } |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3403 | memcpy(ap_mcs_rates, ap->ht_cap.mcs.rx_mask, 16); |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3404 | |
| 3405 | rcu_read_unlock(); |
| 3406 | } |
| 3407 | |
| 3408 | if ((changed & BSS_CHANGED_ASSOC) && vif->bss_conf.assoc) { |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3409 | 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] | 3410 | if (rc) |
| 3411 | goto out; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3412 | |
Lennert Buytenhek | b71ed2c | 2010-01-08 18:30:16 +0100 | [diff] [blame] | 3413 | rc = mwl8k_cmd_use_fixed_rate_sta(hw); |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 3414 | if (rc) |
| 3415 | goto out; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3416 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3417 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3418 | if (changed & BSS_CHANGED_ERP_PREAMBLE) { |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 3419 | rc = mwl8k_set_radio_preamble(hw, |
| 3420 | vif->bss_conf.use_short_preamble); |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 3421 | if (rc) |
| 3422 | goto out; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3423 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3424 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3425 | if (changed & BSS_CHANGED_ERP_SLOT) { |
Lennert Buytenhek | 7dc6a7a | 2009-11-30 18:33:09 +0100 | [diff] [blame] | 3426 | rc = mwl8k_cmd_set_slot(hw, vif->bss_conf.use_short_slot); |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 3427 | if (rc) |
| 3428 | goto out; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3429 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3430 | |
Lennert Buytenhek | c97470d | 2010-01-12 13:47:37 +0100 | [diff] [blame] | 3431 | if (vif->bss_conf.assoc && |
| 3432 | (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_ERP_CTS_PROT | |
| 3433 | BSS_CHANGED_HT))) { |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3434 | rc = mwl8k_cmd_set_aid(hw, vif, ap_legacy_rates); |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 3435 | if (rc) |
| 3436 | goto out; |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3437 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3438 | |
Lennert Buytenhek | c3cbbe8 | 2010-01-04 21:56:07 +0100 | [diff] [blame] | 3439 | if (vif->bss_conf.assoc && |
| 3440 | (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INT))) { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3441 | /* |
| 3442 | * Finalize the join. Tell rx handler to process |
| 3443 | * next beacon from our BSSID. |
| 3444 | */ |
Lennert Buytenhek | 0a11dfc | 2010-01-04 21:55:21 +0100 | [diff] [blame] | 3445 | memcpy(priv->capture_bssid, vif->bss_conf.bssid, ETH_ALEN); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3446 | priv->capture_beacon = true; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3447 | } |
| 3448 | |
Lennert Buytenhek | 3a980d0 | 2009-07-17 07:21:46 +0200 | [diff] [blame] | 3449 | out: |
| 3450 | mwl8k_fw_unlock(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3451 | } |
| 3452 | |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3453 | static void |
| 3454 | mwl8k_bss_info_changed_ap(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 3455 | struct ieee80211_bss_conf *info, u32 changed) |
| 3456 | { |
| 3457 | int rc; |
| 3458 | |
| 3459 | if (mwl8k_fw_lock(hw)) |
| 3460 | return; |
| 3461 | |
| 3462 | if (changed & BSS_CHANGED_ERP_PREAMBLE) { |
| 3463 | rc = mwl8k_set_radio_preamble(hw, |
| 3464 | vif->bss_conf.use_short_preamble); |
| 3465 | if (rc) |
| 3466 | goto out; |
| 3467 | } |
| 3468 | |
| 3469 | if (changed & BSS_CHANGED_BASIC_RATES) { |
| 3470 | int idx; |
| 3471 | int rate; |
| 3472 | |
| 3473 | /* |
| 3474 | * Use lowest supported basic rate for multicasts |
| 3475 | * and management frames (such as probe responses -- |
| 3476 | * beacons will always go out at 1 Mb/s). |
| 3477 | */ |
| 3478 | idx = ffs(vif->bss_conf.basic_rates); |
Lennert Buytenhek | 8707d02 | 2010-01-12 13:49:15 +0100 | [diff] [blame] | 3479 | if (idx) |
| 3480 | idx--; |
| 3481 | |
| 3482 | if (hw->conf.channel->band == IEEE80211_BAND_2GHZ) |
| 3483 | rate = mwl8k_rates_24[idx].hw_value; |
| 3484 | else |
| 3485 | rate = mwl8k_rates_50[idx].hw_value; |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 3486 | |
| 3487 | mwl8k_cmd_use_fixed_rate_ap(hw, rate, rate); |
| 3488 | } |
| 3489 | |
| 3490 | if (changed & (BSS_CHANGED_BEACON_INT | BSS_CHANGED_BEACON)) { |
| 3491 | struct sk_buff *skb; |
| 3492 | |
| 3493 | skb = ieee80211_beacon_get(hw, vif); |
| 3494 | if (skb != NULL) { |
| 3495 | mwl8k_cmd_set_beacon(hw, skb->data, skb->len); |
| 3496 | kfree_skb(skb); |
| 3497 | } |
| 3498 | } |
| 3499 | |
| 3500 | if (changed & BSS_CHANGED_BEACON_ENABLED) |
| 3501 | mwl8k_cmd_bss_start(hw, info->enable_beacon); |
| 3502 | |
| 3503 | out: |
| 3504 | mwl8k_fw_unlock(hw); |
| 3505 | } |
| 3506 | |
| 3507 | static void |
| 3508 | mwl8k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 3509 | struct ieee80211_bss_conf *info, u32 changed) |
| 3510 | { |
| 3511 | struct mwl8k_priv *priv = hw->priv; |
| 3512 | |
| 3513 | if (!priv->ap_fw) |
| 3514 | mwl8k_bss_info_changed_sta(hw, vif, info, changed); |
| 3515 | else |
| 3516 | mwl8k_bss_info_changed_ap(hw, vif, info, changed); |
| 3517 | } |
| 3518 | |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 3519 | static u64 mwl8k_prepare_multicast(struct ieee80211_hw *hw, |
| 3520 | int mc_count, struct dev_addr_list *mclist) |
| 3521 | { |
| 3522 | struct mwl8k_cmd_pkt *cmd; |
| 3523 | |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 3524 | /* |
| 3525 | * Synthesize and return a command packet that programs the |
| 3526 | * hardware multicast address filter. At this point we don't |
| 3527 | * know whether FIF_ALLMULTI is being requested, but if it is, |
| 3528 | * we'll end up throwing this packet away and creating a new |
| 3529 | * one in mwl8k_configure_filter(). |
| 3530 | */ |
| 3531 | cmd = __mwl8k_cmd_mac_multicast_adr(hw, 0, mc_count, mclist); |
Lennert Buytenhek | e81cd2d | 2009-08-18 03:55:42 +0200 | [diff] [blame] | 3532 | |
| 3533 | return (unsigned long)cmd; |
| 3534 | } |
| 3535 | |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 3536 | static int |
| 3537 | mwl8k_configure_filter_sniffer(struct ieee80211_hw *hw, |
| 3538 | unsigned int changed_flags, |
| 3539 | unsigned int *total_flags) |
| 3540 | { |
| 3541 | struct mwl8k_priv *priv = hw->priv; |
| 3542 | |
| 3543 | /* |
| 3544 | * Hardware sniffer mode is mutually exclusive with STA |
| 3545 | * operation, so refuse to enable sniffer mode if a STA |
| 3546 | * interface is active. |
| 3547 | */ |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3548 | if (!list_empty(&priv->vif_list)) { |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 3549 | if (net_ratelimit()) |
| 3550 | printk(KERN_INFO "%s: not enabling sniffer " |
| 3551 | "mode because STA interface is active\n", |
| 3552 | wiphy_name(hw->wiphy)); |
| 3553 | return 0; |
| 3554 | } |
| 3555 | |
| 3556 | if (!priv->sniffer_enabled) { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3557 | if (mwl8k_cmd_enable_sniffer(hw, 1)) |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 3558 | return 0; |
| 3559 | priv->sniffer_enabled = true; |
| 3560 | } |
| 3561 | |
| 3562 | *total_flags &= FIF_PROMISC_IN_BSS | FIF_ALLMULTI | |
| 3563 | FIF_BCN_PRBRESP_PROMISC | FIF_CONTROL | |
| 3564 | FIF_OTHER_BSS; |
| 3565 | |
| 3566 | return 1; |
| 3567 | } |
| 3568 | |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3569 | static struct mwl8k_vif *mwl8k_first_vif(struct mwl8k_priv *priv) |
| 3570 | { |
| 3571 | if (!list_empty(&priv->vif_list)) |
| 3572 | return list_entry(priv->vif_list.next, struct mwl8k_vif, list); |
| 3573 | |
| 3574 | return NULL; |
| 3575 | } |
| 3576 | |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 3577 | static void mwl8k_configure_filter(struct ieee80211_hw *hw, |
| 3578 | unsigned int changed_flags, |
| 3579 | unsigned int *total_flags, |
| 3580 | u64 multicast) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3581 | { |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3582 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 3583 | struct mwl8k_cmd_pkt *cmd = (void *)(unsigned long)multicast; |
| 3584 | |
| 3585 | /* |
Lennert Buytenhek | c0adae2 | 2009-10-22 20:21:36 +0200 | [diff] [blame] | 3586 | * AP firmware doesn't allow fine-grained control over |
| 3587 | * the receive filter. |
| 3588 | */ |
| 3589 | if (priv->ap_fw) { |
| 3590 | *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC; |
| 3591 | kfree(cmd); |
| 3592 | return; |
| 3593 | } |
| 3594 | |
| 3595 | /* |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 3596 | * Enable hardware sniffer mode if FIF_CONTROL or |
| 3597 | * FIF_OTHER_BSS is requested. |
| 3598 | */ |
| 3599 | if (*total_flags & (FIF_CONTROL | FIF_OTHER_BSS) && |
| 3600 | mwl8k_configure_filter_sniffer(hw, changed_flags, total_flags)) { |
| 3601 | kfree(cmd); |
| 3602 | return; |
| 3603 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3604 | |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 3605 | /* Clear unsupported feature flags */ |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 3606 | *total_flags &= FIF_ALLMULTI | FIF_BCN_PRBRESP_PROMISC; |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 3607 | |
Lennert Buytenhek | 90852f7 | 2010-01-02 10:31:42 +0100 | [diff] [blame] | 3608 | if (mwl8k_fw_lock(hw)) { |
| 3609 | kfree(cmd); |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 3610 | return; |
Lennert Buytenhek | 90852f7 | 2010-01-02 10:31:42 +0100 | [diff] [blame] | 3611 | } |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 3612 | |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 3613 | if (priv->sniffer_enabled) { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3614 | mwl8k_cmd_enable_sniffer(hw, 0); |
Lennert Buytenhek | a43c49a | 2009-10-22 20:20:32 +0200 | [diff] [blame] | 3615 | priv->sniffer_enabled = false; |
| 3616 | } |
| 3617 | |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 3618 | if (changed_flags & FIF_BCN_PRBRESP_PROMISC) { |
Lennert Buytenhek | 77165d88 | 2009-10-22 20:19:53 +0200 | [diff] [blame] | 3619 | if (*total_flags & FIF_BCN_PRBRESP_PROMISC) { |
| 3620 | /* |
| 3621 | * Disable the BSS filter. |
| 3622 | */ |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 3623 | mwl8k_cmd_set_pre_scan(hw); |
Lennert Buytenhek | 77165d88 | 2009-10-22 20:19:53 +0200 | [diff] [blame] | 3624 | } else { |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3625 | struct mwl8k_vif *mwl8k_vif; |
Lennert Buytenhek | 0a11dfc | 2010-01-04 21:55:21 +0100 | [diff] [blame] | 3626 | const u8 *bssid; |
Lennert Buytenhek | a94cc97 | 2009-08-03 21:58:57 +0200 | [diff] [blame] | 3627 | |
Lennert Buytenhek | 77165d88 | 2009-10-22 20:19:53 +0200 | [diff] [blame] | 3628 | /* |
| 3629 | * Enable the BSS filter. |
| 3630 | * |
| 3631 | * If there is an active STA interface, use that |
| 3632 | * interface's BSSID, otherwise use a dummy one |
| 3633 | * (where the OUI part needs to be nonzero for |
| 3634 | * the BSSID to be accepted by POST_SCAN). |
| 3635 | */ |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3636 | mwl8k_vif = mwl8k_first_vif(priv); |
| 3637 | if (mwl8k_vif != NULL) |
| 3638 | bssid = mwl8k_vif->vif->bss_conf.bssid; |
| 3639 | else |
| 3640 | bssid = "\x01\x00\x00\x00\x00\x00"; |
Lennert Buytenhek | a94cc97 | 2009-08-03 21:58:57 +0200 | [diff] [blame] | 3641 | |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 3642 | mwl8k_cmd_set_post_scan(hw, bssid); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3643 | } |
| 3644 | } |
| 3645 | |
Lennert Buytenhek | 447ced0 | 2009-10-22 20:19:50 +0200 | [diff] [blame] | 3646 | /* |
| 3647 | * If FIF_ALLMULTI is being requested, throw away the command |
| 3648 | * packet that ->prepare_multicast() built and replace it with |
| 3649 | * a command packet that enables reception of all multicast |
| 3650 | * packets. |
| 3651 | */ |
| 3652 | if (*total_flags & FIF_ALLMULTI) { |
| 3653 | kfree(cmd); |
| 3654 | cmd = __mwl8k_cmd_mac_multicast_adr(hw, 1, 0, NULL); |
| 3655 | } |
| 3656 | |
| 3657 | if (cmd != NULL) { |
| 3658 | mwl8k_post_cmd(hw, cmd); |
| 3659 | kfree(cmd); |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 3660 | } |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 3661 | |
Lennert Buytenhek | e6935ea | 2009-08-18 04:06:20 +0200 | [diff] [blame] | 3662 | mwl8k_fw_unlock(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3663 | } |
| 3664 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3665 | static int mwl8k_set_rts_threshold(struct ieee80211_hw *hw, u32 value) |
| 3666 | { |
Lennert Buytenhek | c2c2b12 | 2010-01-08 18:27:59 +0100 | [diff] [blame] | 3667 | return mwl8k_cmd_set_rts_threshold(hw, value); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3668 | } |
| 3669 | |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 3670 | struct mwl8k_sta_notify_item |
| 3671 | { |
| 3672 | struct list_head list; |
| 3673 | struct ieee80211_vif *vif; |
| 3674 | enum sta_notify_cmd cmd; |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3675 | struct ieee80211_sta sta; |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 3676 | }; |
| 3677 | |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 3678 | static void |
| 3679 | mwl8k_do_sta_notify(struct ieee80211_hw *hw, struct mwl8k_sta_notify_item *s) |
| 3680 | { |
| 3681 | struct mwl8k_priv *priv = hw->priv; |
| 3682 | |
| 3683 | /* |
| 3684 | * STA firmware uses UPDATE_STADB, AP firmware uses SET_NEW_STN. |
| 3685 | */ |
| 3686 | if (!priv->ap_fw && s->cmd == STA_NOTIFY_ADD) { |
| 3687 | int rc; |
| 3688 | |
| 3689 | rc = mwl8k_cmd_update_stadb_add(hw, s->vif, &s->sta); |
| 3690 | if (rc >= 0) { |
| 3691 | struct ieee80211_sta *sta; |
| 3692 | |
| 3693 | rcu_read_lock(); |
| 3694 | sta = ieee80211_find_sta(s->vif, s->sta.addr); |
| 3695 | if (sta != NULL) |
| 3696 | MWL8K_STA(sta)->peer_id = rc; |
| 3697 | rcu_read_unlock(); |
| 3698 | } |
| 3699 | } else if (!priv->ap_fw && s->cmd == STA_NOTIFY_REMOVE) { |
| 3700 | mwl8k_cmd_update_stadb_del(hw, s->vif, s->sta.addr); |
| 3701 | } else if (priv->ap_fw && s->cmd == STA_NOTIFY_ADD) { |
| 3702 | mwl8k_cmd_set_new_stn_add(hw, s->vif, &s->sta); |
| 3703 | } else if (priv->ap_fw && s->cmd == STA_NOTIFY_REMOVE) { |
| 3704 | mwl8k_cmd_set_new_stn_del(hw, s->vif, s->sta.addr); |
| 3705 | } |
| 3706 | } |
| 3707 | |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 3708 | static void mwl8k_sta_notify_worker(struct work_struct *work) |
| 3709 | { |
| 3710 | struct mwl8k_priv *priv = |
| 3711 | container_of(work, struct mwl8k_priv, sta_notify_worker); |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 3712 | struct ieee80211_hw *hw = priv->hw; |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 3713 | |
| 3714 | spin_lock_bh(&priv->sta_notify_list_lock); |
| 3715 | while (!list_empty(&priv->sta_notify_list)) { |
| 3716 | struct mwl8k_sta_notify_item *s; |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 3717 | |
| 3718 | s = list_entry(priv->sta_notify_list.next, |
| 3719 | struct mwl8k_sta_notify_item, list); |
| 3720 | list_del(&s->list); |
| 3721 | |
| 3722 | spin_unlock_bh(&priv->sta_notify_list_lock); |
| 3723 | |
Lennert Buytenhek | 3f5610f | 2010-01-08 18:30:58 +0100 | [diff] [blame] | 3724 | mwl8k_do_sta_notify(hw, s); |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 3725 | kfree(s); |
| 3726 | |
| 3727 | spin_lock_bh(&priv->sta_notify_list_lock); |
| 3728 | } |
| 3729 | spin_unlock_bh(&priv->sta_notify_list_lock); |
| 3730 | } |
| 3731 | |
| 3732 | static void |
| 3733 | mwl8k_sta_notify(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 3734 | enum sta_notify_cmd cmd, struct ieee80211_sta *sta) |
| 3735 | { |
| 3736 | struct mwl8k_priv *priv = hw->priv; |
| 3737 | struct mwl8k_sta_notify_item *s; |
| 3738 | |
| 3739 | if (cmd != STA_NOTIFY_ADD && cmd != STA_NOTIFY_REMOVE) |
| 3740 | return; |
| 3741 | |
| 3742 | s = kmalloc(sizeof(*s), GFP_ATOMIC); |
| 3743 | if (s != NULL) { |
| 3744 | s->vif = vif; |
| 3745 | s->cmd = cmd; |
Lennert Buytenhek | 13935e2 | 2010-01-04 21:57:59 +0100 | [diff] [blame] | 3746 | s->sta = *sta; |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 3747 | |
| 3748 | spin_lock(&priv->sta_notify_list_lock); |
| 3749 | list_add_tail(&s->list, &priv->sta_notify_list); |
| 3750 | spin_unlock(&priv->sta_notify_list_lock); |
| 3751 | |
| 3752 | ieee80211_queue_work(hw, &priv->sta_notify_worker); |
| 3753 | } |
| 3754 | } |
| 3755 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3756 | static int mwl8k_conf_tx(struct ieee80211_hw *hw, u16 queue, |
| 3757 | const struct ieee80211_tx_queue_params *params) |
| 3758 | { |
Lennert Buytenhek | 3e4f542 | 2009-07-17 07:25:59 +0200 | [diff] [blame] | 3759 | struct mwl8k_priv *priv = hw->priv; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3760 | int rc; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3761 | |
Lennert Buytenhek | 3e4f542 | 2009-07-17 07:25:59 +0200 | [diff] [blame] | 3762 | rc = mwl8k_fw_lock(hw); |
| 3763 | if (!rc) { |
| 3764 | if (!priv->wmm_enabled) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3765 | rc = mwl8k_cmd_set_wmm_mode(hw, 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3766 | |
Lennert Buytenhek | 3e4f542 | 2009-07-17 07:25:59 +0200 | [diff] [blame] | 3767 | if (!rc) |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3768 | rc = mwl8k_cmd_set_edca_params(hw, queue, |
| 3769 | params->cw_min, |
| 3770 | params->cw_max, |
| 3771 | params->aifs, |
| 3772 | params->txop); |
Lennert Buytenhek | 3e4f542 | 2009-07-17 07:25:59 +0200 | [diff] [blame] | 3773 | |
| 3774 | mwl8k_fw_unlock(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3775 | } |
Lennert Buytenhek | 3e4f542 | 2009-07-17 07:25:59 +0200 | [diff] [blame] | 3776 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3777 | return rc; |
| 3778 | } |
| 3779 | |
| 3780 | static int mwl8k_get_tx_stats(struct ieee80211_hw *hw, |
| 3781 | struct ieee80211_tx_queue_stats *stats) |
| 3782 | { |
| 3783 | struct mwl8k_priv *priv = hw->priv; |
| 3784 | struct mwl8k_tx_queue *txq; |
| 3785 | int index; |
| 3786 | |
| 3787 | spin_lock_bh(&priv->tx_lock); |
| 3788 | for (index = 0; index < MWL8K_TX_QUEUES; index++) { |
| 3789 | txq = priv->txq + index; |
Lennert Buytenhek | 45eb400 | 2009-10-22 20:20:40 +0200 | [diff] [blame] | 3790 | memcpy(&stats[index], &txq->stats, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3791 | sizeof(struct ieee80211_tx_queue_stats)); |
| 3792 | } |
| 3793 | spin_unlock_bh(&priv->tx_lock); |
Lennert Buytenhek | 954ef50 | 2009-07-17 07:26:27 +0200 | [diff] [blame] | 3794 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3795 | return 0; |
| 3796 | } |
| 3797 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3798 | static int mwl8k_get_stats(struct ieee80211_hw *hw, |
| 3799 | struct ieee80211_low_level_stats *stats) |
| 3800 | { |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 3801 | return mwl8k_cmd_get_stat(hw, stats); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3802 | } |
| 3803 | |
Lennert Buytenhek | a2292d8 | 2010-01-04 21:58:12 +0100 | [diff] [blame] | 3804 | static int |
| 3805 | mwl8k_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 3806 | enum ieee80211_ampdu_mlme_action action, |
| 3807 | struct ieee80211_sta *sta, u16 tid, u16 *ssn) |
| 3808 | { |
| 3809 | switch (action) { |
| 3810 | case IEEE80211_AMPDU_RX_START: |
| 3811 | case IEEE80211_AMPDU_RX_STOP: |
| 3812 | if (!(hw->flags & IEEE80211_HW_AMPDU_AGGREGATION)) |
| 3813 | return -ENOTSUPP; |
| 3814 | return 0; |
| 3815 | default: |
| 3816 | return -ENOTSUPP; |
| 3817 | } |
| 3818 | } |
| 3819 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3820 | static const struct ieee80211_ops mwl8k_ops = { |
| 3821 | .tx = mwl8k_tx, |
| 3822 | .start = mwl8k_start, |
| 3823 | .stop = mwl8k_stop, |
| 3824 | .add_interface = mwl8k_add_interface, |
| 3825 | .remove_interface = mwl8k_remove_interface, |
| 3826 | .config = mwl8k_config, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3827 | .bss_info_changed = mwl8k_bss_info_changed, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3828 | .prepare_multicast = mwl8k_prepare_multicast, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3829 | .configure_filter = mwl8k_configure_filter, |
| 3830 | .set_rts_threshold = mwl8k_set_rts_threshold, |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 3831 | .sta_notify = mwl8k_sta_notify, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3832 | .conf_tx = mwl8k_conf_tx, |
| 3833 | .get_tx_stats = mwl8k_get_tx_stats, |
| 3834 | .get_stats = mwl8k_get_stats, |
Lennert Buytenhek | a2292d8 | 2010-01-04 21:58:12 +0100 | [diff] [blame] | 3835 | .ampdu_action = mwl8k_ampdu_action, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3836 | }; |
| 3837 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3838 | static void mwl8k_finalize_join_worker(struct work_struct *work) |
| 3839 | { |
| 3840 | struct mwl8k_priv *priv = |
| 3841 | container_of(work, struct mwl8k_priv, finalize_join_worker); |
| 3842 | struct sk_buff *skb = priv->beacon_skb; |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3843 | struct mwl8k_vif *mwl8k_vif; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3844 | |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 3845 | mwl8k_vif = mwl8k_first_vif(priv); |
| 3846 | if (mwl8k_vif != NULL) |
| 3847 | mwl8k_cmd_finalize_join(priv->hw, skb->data, skb->len, |
| 3848 | mwl8k_vif->vif->bss_conf.dtim_period); |
| 3849 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3850 | dev_kfree_skb(skb); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3851 | priv->beacon_skb = NULL; |
| 3852 | } |
| 3853 | |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 3854 | enum { |
Lennert Buytenhek | 9e1b17e | 2010-01-04 21:56:19 +0100 | [diff] [blame] | 3855 | MWL8363 = 0, |
| 3856 | MWL8687, |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 3857 | MWL8366, |
Lennert Buytenhek | 6f6d1e9 | 2009-10-22 20:21:48 +0200 | [diff] [blame] | 3858 | }; |
| 3859 | |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 3860 | static struct mwl8k_device_info mwl8k_info_tbl[] __devinitdata = { |
Lennert Buytenhek | 9e1b17e | 2010-01-04 21:56:19 +0100 | [diff] [blame] | 3861 | [MWL8363] = { |
| 3862 | .part_name = "88w8363", |
| 3863 | .helper_image = "mwl8k/helper_8363.fw", |
| 3864 | .fw_image = "mwl8k/fmimage_8363.fw", |
| 3865 | }, |
Lennert Buytenhek | 49eb691 | 2009-11-30 18:32:13 +0100 | [diff] [blame] | 3866 | [MWL8687] = { |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 3867 | .part_name = "88w8687", |
| 3868 | .helper_image = "mwl8k/helper_8687.fw", |
| 3869 | .fw_image = "mwl8k/fmimage_8687.fw", |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 3870 | }, |
Lennert Buytenhek | 49eb691 | 2009-11-30 18:32:13 +0100 | [diff] [blame] | 3871 | [MWL8366] = { |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 3872 | .part_name = "88w8366", |
| 3873 | .helper_image = "mwl8k/helper_8366.fw", |
| 3874 | .fw_image = "mwl8k/fmimage_8366.fw", |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 3875 | .ap_rxd_ops = &rxd_8366_ap_ops, |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 3876 | }, |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 3877 | }; |
| 3878 | |
Lennert Buytenhek | c92d4ed | 2010-01-12 13:47:22 +0100 | [diff] [blame] | 3879 | MODULE_FIRMWARE("mwl8k/helper_8363.fw"); |
| 3880 | MODULE_FIRMWARE("mwl8k/fmimage_8363.fw"); |
| 3881 | MODULE_FIRMWARE("mwl8k/helper_8687.fw"); |
| 3882 | MODULE_FIRMWARE("mwl8k/fmimage_8687.fw"); |
| 3883 | MODULE_FIRMWARE("mwl8k/helper_8366.fw"); |
| 3884 | MODULE_FIRMWARE("mwl8k/fmimage_8366.fw"); |
| 3885 | |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 3886 | static DEFINE_PCI_DEVICE_TABLE(mwl8k_pci_id_table) = { |
Lennert Buytenhek | 9e1b17e | 2010-01-04 21:56:19 +0100 | [diff] [blame] | 3887 | { PCI_VDEVICE(MARVELL, 0x2a0c), .driver_data = MWL8363, }, |
| 3888 | { PCI_VDEVICE(MARVELL, 0x2a24), .driver_data = MWL8363, }, |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 3889 | { PCI_VDEVICE(MARVELL, 0x2a2b), .driver_data = MWL8687, }, |
| 3890 | { PCI_VDEVICE(MARVELL, 0x2a30), .driver_data = MWL8687, }, |
| 3891 | { PCI_VDEVICE(MARVELL, 0x2a40), .driver_data = MWL8366, }, |
Lennert Buytenhek | ca66527 | 2010-01-12 13:47:53 +0100 | [diff] [blame] | 3892 | { PCI_VDEVICE(MARVELL, 0x2a43), .driver_data = MWL8366, }, |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 3893 | { }, |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 3894 | }; |
| 3895 | MODULE_DEVICE_TABLE(pci, mwl8k_pci_id_table); |
| 3896 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3897 | static int __devinit mwl8k_probe(struct pci_dev *pdev, |
| 3898 | const struct pci_device_id *id) |
| 3899 | { |
Lennert Buytenhek | 2aa7b01 | 2009-08-24 15:48:07 +0200 | [diff] [blame] | 3900 | static int printed_version = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3901 | struct ieee80211_hw *hw; |
| 3902 | struct mwl8k_priv *priv; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3903 | int rc; |
| 3904 | int i; |
Lennert Buytenhek | 2aa7b01 | 2009-08-24 15:48:07 +0200 | [diff] [blame] | 3905 | |
| 3906 | if (!printed_version) { |
| 3907 | printk(KERN_INFO "%s version %s\n", MWL8K_DESC, MWL8K_VERSION); |
| 3908 | printed_version = 1; |
| 3909 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3910 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 3911 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3912 | rc = pci_enable_device(pdev); |
| 3913 | if (rc) { |
| 3914 | printk(KERN_ERR "%s: Cannot enable new PCI device\n", |
| 3915 | MWL8K_NAME); |
| 3916 | return rc; |
| 3917 | } |
| 3918 | |
| 3919 | rc = pci_request_regions(pdev, MWL8K_NAME); |
| 3920 | if (rc) { |
| 3921 | printk(KERN_ERR "%s: Cannot obtain PCI resources\n", |
| 3922 | MWL8K_NAME); |
Lennert Buytenhek | 3db95e5 | 2009-11-30 18:13:34 +0100 | [diff] [blame] | 3923 | goto err_disable_device; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3924 | } |
| 3925 | |
| 3926 | pci_set_master(pdev); |
| 3927 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 3928 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3929 | hw = ieee80211_alloc_hw(sizeof(*priv), &mwl8k_ops); |
| 3930 | if (hw == NULL) { |
| 3931 | printk(KERN_ERR "%s: ieee80211 alloc failed\n", MWL8K_NAME); |
| 3932 | rc = -ENOMEM; |
| 3933 | goto err_free_reg; |
| 3934 | } |
| 3935 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 3936 | SET_IEEE80211_DEV(hw, &pdev->dev); |
| 3937 | pci_set_drvdata(pdev, hw); |
| 3938 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3939 | priv = hw->priv; |
| 3940 | priv->hw = hw; |
| 3941 | priv->pdev = pdev; |
John W. Linville | bcb628d | 2009-11-06 16:40:16 -0500 | [diff] [blame] | 3942 | priv->device_info = &mwl8k_info_tbl[id->driver_data]; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3943 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3944 | |
Lennert Buytenhek | 5b9482d | 2009-10-22 20:20:43 +0200 | [diff] [blame] | 3945 | priv->sram = pci_iomap(pdev, 0, 0x10000); |
| 3946 | if (priv->sram == NULL) { |
| 3947 | printk(KERN_ERR "%s: Cannot map device SRAM\n", |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 3948 | wiphy_name(hw->wiphy)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 3949 | goto err_iounmap; |
| 3950 | } |
| 3951 | |
Lennert Buytenhek | 5b9482d | 2009-10-22 20:20:43 +0200 | [diff] [blame] | 3952 | /* |
| 3953 | * If BAR0 is a 32 bit BAR, the register BAR will be BAR1. |
| 3954 | * If BAR0 is a 64 bit BAR, the register BAR will be BAR2. |
| 3955 | */ |
| 3956 | priv->regs = pci_iomap(pdev, 1, 0x10000); |
| 3957 | if (priv->regs == NULL) { |
| 3958 | priv->regs = pci_iomap(pdev, 2, 0x10000); |
| 3959 | if (priv->regs == NULL) { |
| 3960 | printk(KERN_ERR "%s: Cannot map device registers\n", |
| 3961 | wiphy_name(hw->wiphy)); |
| 3962 | goto err_iounmap; |
| 3963 | } |
| 3964 | } |
| 3965 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 3966 | |
| 3967 | /* Reset firmware and hardware */ |
| 3968 | mwl8k_hw_reset(priv); |
| 3969 | |
| 3970 | /* Ask userland hotplug daemon for the device firmware */ |
| 3971 | rc = mwl8k_request_firmware(priv); |
| 3972 | if (rc) { |
| 3973 | printk(KERN_ERR "%s: Firmware files not found\n", |
| 3974 | wiphy_name(hw->wiphy)); |
| 3975 | goto err_stop_firmware; |
| 3976 | } |
| 3977 | |
| 3978 | /* Load firmware into hardware */ |
| 3979 | rc = mwl8k_load_firmware(hw); |
| 3980 | if (rc) { |
| 3981 | printk(KERN_ERR "%s: Cannot start firmware\n", |
| 3982 | wiphy_name(hw->wiphy)); |
| 3983 | goto err_stop_firmware; |
| 3984 | } |
| 3985 | |
| 3986 | /* Reclaim memory once firmware is successfully loaded */ |
| 3987 | mwl8k_release_firmware(priv); |
| 3988 | |
| 3989 | |
Lennert Buytenhek | 9194223 | 2010-01-04 21:53:54 +0100 | [diff] [blame] | 3990 | if (priv->ap_fw) { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 3991 | priv->rxd_ops = priv->device_info->ap_rxd_ops; |
Lennert Buytenhek | 9194223 | 2010-01-04 21:53:54 +0100 | [diff] [blame] | 3992 | if (priv->rxd_ops == NULL) { |
| 3993 | printk(KERN_ERR "%s: Driver does not have AP " |
| 3994 | "firmware image support for this hardware\n", |
| 3995 | wiphy_name(hw->wiphy)); |
| 3996 | goto err_stop_firmware; |
| 3997 | } |
| 3998 | } else { |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 3999 | priv->rxd_ops = &rxd_sta_ops; |
Lennert Buytenhek | 9194223 | 2010-01-04 21:53:54 +0100 | [diff] [blame] | 4000 | } |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 4001 | |
| 4002 | priv->sniffer_enabled = false; |
| 4003 | priv->wmm_enabled = false; |
| 4004 | priv->pending_tx_pkts = 0; |
| 4005 | |
| 4006 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4007 | /* |
| 4008 | * Extra headroom is the size of the required DMA header |
| 4009 | * minus the size of the smallest 802.11 frame (CTS frame). |
| 4010 | */ |
| 4011 | hw->extra_tx_headroom = |
| 4012 | sizeof(struct mwl8k_dma_data) - sizeof(struct ieee80211_cts); |
| 4013 | |
| 4014 | hw->channel_change_time = 10; |
| 4015 | |
| 4016 | hw->queues = MWL8K_TX_QUEUES; |
| 4017 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4018 | /* Set rssi and noise values to dBm */ |
Lennert Buytenhek | ce9e2e1 | 2009-07-16 14:00:45 +0200 | [diff] [blame] | 4019 | hw->flags |= IEEE80211_HW_SIGNAL_DBM | IEEE80211_HW_NOISE_DBM; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4020 | hw->vif_data_size = sizeof(struct mwl8k_vif); |
Lennert Buytenhek | a680400 | 2010-01-04 21:55:42 +0100 | [diff] [blame] | 4021 | hw->sta_data_size = sizeof(struct mwl8k_sta); |
Lennert Buytenhek | f5bb87c | 2010-01-12 13:49:51 +0100 | [diff] [blame] | 4022 | |
| 4023 | INIT_LIST_HEAD(&priv->vif_list); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4024 | |
| 4025 | /* Set default radio state and preamble */ |
Lennert Buytenhek | c46563b | 2009-07-16 12:14:58 +0200 | [diff] [blame] | 4026 | priv->radio_on = 0; |
Lennert Buytenhek | 68ce388 | 2009-07-16 12:26:57 +0200 | [diff] [blame] | 4027 | priv->radio_short_preamble = 0; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4028 | |
Lennert Buytenhek | bbfd912 | 2010-01-04 21:55:12 +0100 | [diff] [blame] | 4029 | /* Station database handling */ |
| 4030 | INIT_WORK(&priv->sta_notify_worker, mwl8k_sta_notify_worker); |
| 4031 | spin_lock_init(&priv->sta_notify_list_lock); |
| 4032 | INIT_LIST_HEAD(&priv->sta_notify_list); |
| 4033 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4034 | /* Finalize join worker */ |
| 4035 | INIT_WORK(&priv->finalize_join_worker, mwl8k_finalize_join_worker); |
| 4036 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4037 | /* TX reclaim and RX tasklets. */ |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 4038 | tasklet_init(&priv->poll_tx_task, mwl8k_tx_poll, (unsigned long)hw); |
| 4039 | tasklet_disable(&priv->poll_tx_task); |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4040 | tasklet_init(&priv->poll_rx_task, mwl8k_rx_poll, (unsigned long)hw); |
| 4041 | tasklet_disable(&priv->poll_rx_task); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4042 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4043 | /* Power management cookie */ |
| 4044 | priv->cookie = pci_alloc_consistent(priv->pdev, 4, &priv->cookie_dma); |
| 4045 | if (priv->cookie == NULL) |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 4046 | goto err_stop_firmware; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4047 | |
| 4048 | rc = mwl8k_rxq_init(hw, 0); |
| 4049 | if (rc) |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 4050 | goto err_free_cookie; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4051 | rxq_refill(hw, 0, INT_MAX); |
| 4052 | |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 4053 | mutex_init(&priv->fw_mutex); |
| 4054 | priv->fw_mutex_owner = NULL; |
| 4055 | priv->fw_mutex_depth = 0; |
Lennert Buytenhek | 618952a | 2009-08-18 03:18:01 +0200 | [diff] [blame] | 4056 | priv->hostcmd_wait = NULL; |
| 4057 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4058 | spin_lock_init(&priv->tx_lock); |
| 4059 | |
Lennert Buytenhek | 88de754a | 2009-10-22 20:19:37 +0200 | [diff] [blame] | 4060 | priv->tx_wait = NULL; |
| 4061 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4062 | for (i = 0; i < MWL8K_TX_QUEUES; i++) { |
| 4063 | rc = mwl8k_txq_init(hw, i); |
| 4064 | if (rc) |
| 4065 | goto err_free_queues; |
| 4066 | } |
| 4067 | |
| 4068 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS); |
Lennert Buytenhek | c23b5a6 | 2009-07-16 13:49:55 +0200 | [diff] [blame] | 4069 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4070 | iowrite32(MWL8K_A2H_INT_TX_DONE | MWL8K_A2H_INT_RX_READY, |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 4071 | priv->regs + MWL8K_HIU_A2H_INTERRUPT_CLEAR_SEL); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4072 | iowrite32(0xffffffff, priv->regs + MWL8K_HIU_A2H_INTERRUPT_STATUS_MASK); |
| 4073 | |
Joe Perches | a0607fd | 2009-11-18 23:29:17 -0800 | [diff] [blame] | 4074 | rc = request_irq(priv->pdev->irq, mwl8k_interrupt, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4075 | IRQF_SHARED, MWL8K_NAME, hw); |
| 4076 | if (rc) { |
| 4077 | printk(KERN_ERR "%s: failed to register IRQ handler\n", |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 4078 | wiphy_name(hw->wiphy)); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4079 | goto err_free_queues; |
| 4080 | } |
| 4081 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4082 | /* |
| 4083 | * Temporarily enable interrupts. Initial firmware host |
Lennert Buytenhek | c2c2b12 | 2010-01-08 18:27:59 +0100 | [diff] [blame] | 4084 | * commands use interrupts and avoid polling. Disable |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4085 | * interrupts when done. |
| 4086 | */ |
Lennert Buytenhek | c23b5a6 | 2009-07-16 13:49:55 +0200 | [diff] [blame] | 4087 | iowrite32(MWL8K_A2H_EVENTS, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4088 | |
| 4089 | /* Get config data, mac addrs etc */ |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 4090 | if (priv->ap_fw) { |
| 4091 | rc = mwl8k_cmd_get_hw_spec_ap(hw); |
| 4092 | if (!rc) |
| 4093 | rc = mwl8k_cmd_set_hw_spec(hw); |
Lennert Buytenhek | b64fe61 | 2010-01-08 18:31:39 +0100 | [diff] [blame] | 4094 | |
| 4095 | hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_AP); |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 4096 | } else { |
| 4097 | rc = mwl8k_cmd_get_hw_spec_sta(hw); |
Lennert Buytenhek | 89a91f4 | 2009-11-30 18:32:54 +0100 | [diff] [blame] | 4098 | |
| 4099 | hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION); |
Lennert Buytenhek | 42fba21d | 2009-10-22 20:21:30 +0200 | [diff] [blame] | 4100 | } |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4101 | if (rc) { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 4102 | printk(KERN_ERR "%s: Cannot initialise firmware\n", |
| 4103 | wiphy_name(hw->wiphy)); |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 4104 | goto err_free_irq; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4105 | } |
| 4106 | |
| 4107 | /* Turn radio off */ |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4108 | rc = mwl8k_cmd_radio_disable(hw); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4109 | if (rc) { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 4110 | printk(KERN_ERR "%s: Cannot disable\n", wiphy_name(hw->wiphy)); |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 4111 | goto err_free_irq; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4112 | } |
| 4113 | |
Lennert Buytenhek | 32060e1 | 2009-10-22 20:20:04 +0200 | [diff] [blame] | 4114 | /* Clear MAC address */ |
Lennert Buytenhek | 55489b6 | 2009-11-30 18:31:33 +0100 | [diff] [blame] | 4115 | rc = mwl8k_cmd_set_mac_addr(hw, "\x00\x00\x00\x00\x00\x00"); |
Lennert Buytenhek | 32060e1 | 2009-10-22 20:20:04 +0200 | [diff] [blame] | 4116 | if (rc) { |
| 4117 | printk(KERN_ERR "%s: Cannot clear MAC address\n", |
| 4118 | wiphy_name(hw->wiphy)); |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 4119 | goto err_free_irq; |
Lennert Buytenhek | 32060e1 | 2009-10-22 20:20:04 +0200 | [diff] [blame] | 4120 | } |
| 4121 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4122 | /* Disable interrupts */ |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4123 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4124 | free_irq(priv->pdev->irq, hw); |
| 4125 | |
| 4126 | rc = ieee80211_register_hw(hw); |
| 4127 | if (rc) { |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 4128 | printk(KERN_ERR "%s: Cannot register device\n", |
| 4129 | wiphy_name(hw->wiphy)); |
Lennert Buytenhek | 153458f | 2010-01-04 21:54:08 +0100 | [diff] [blame] | 4130 | goto err_free_queues; |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4131 | } |
| 4132 | |
Lennert Buytenhek | eae74e6 | 2009-10-22 20:20:53 +0200 | [diff] [blame] | 4133 | printk(KERN_INFO "%s: %s v%d, %pM, %s firmware %u.%u.%u.%u\n", |
Lennert Buytenhek | a74b295 | 2009-10-22 20:20:50 +0200 | [diff] [blame] | 4134 | wiphy_name(hw->wiphy), priv->device_info->part_name, |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 4135 | priv->hw_rev, hw->wiphy->perm_addr, |
Lennert Buytenhek | eae74e6 | 2009-10-22 20:20:53 +0200 | [diff] [blame] | 4136 | priv->ap_fw ? "AP" : "STA", |
Lennert Buytenhek | 2aa7b01 | 2009-08-24 15:48:07 +0200 | [diff] [blame] | 4137 | (priv->fw_rev >> 24) & 0xff, (priv->fw_rev >> 16) & 0xff, |
| 4138 | (priv->fw_rev >> 8) & 0xff, priv->fw_rev & 0xff); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4139 | |
| 4140 | return 0; |
| 4141 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4142 | err_free_irq: |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4143 | iowrite32(0, priv->regs + MWL8K_HIU_A2H_INTERRUPT_MASK); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4144 | free_irq(priv->pdev->irq, hw); |
| 4145 | |
| 4146 | err_free_queues: |
| 4147 | for (i = 0; i < MWL8K_TX_QUEUES; i++) |
| 4148 | mwl8k_txq_deinit(hw, i); |
| 4149 | mwl8k_rxq_deinit(hw, 0); |
| 4150 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 4151 | err_free_cookie: |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4152 | if (priv->cookie != NULL) |
| 4153 | pci_free_consistent(priv->pdev, 4, |
| 4154 | priv->cookie, priv->cookie_dma); |
| 4155 | |
Lennert Buytenhek | be695fc | 2009-11-30 18:32:46 +0100 | [diff] [blame] | 4156 | err_stop_firmware: |
| 4157 | mwl8k_hw_reset(priv); |
| 4158 | mwl8k_release_firmware(priv); |
| 4159 | |
| 4160 | err_iounmap: |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4161 | if (priv->regs != NULL) |
| 4162 | pci_iounmap(pdev, priv->regs); |
| 4163 | |
Lennert Buytenhek | 5b9482d | 2009-10-22 20:20:43 +0200 | [diff] [blame] | 4164 | if (priv->sram != NULL) |
| 4165 | pci_iounmap(pdev, priv->sram); |
| 4166 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4167 | pci_set_drvdata(pdev, NULL); |
| 4168 | ieee80211_free_hw(hw); |
| 4169 | |
| 4170 | err_free_reg: |
| 4171 | pci_release_regions(pdev); |
Lennert Buytenhek | 3db95e5 | 2009-11-30 18:13:34 +0100 | [diff] [blame] | 4172 | |
| 4173 | err_disable_device: |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4174 | pci_disable_device(pdev); |
| 4175 | |
| 4176 | return rc; |
| 4177 | } |
| 4178 | |
Joerg Albert | 230f7af | 2009-04-18 02:10:45 +0200 | [diff] [blame] | 4179 | static void __devexit mwl8k_shutdown(struct pci_dev *pdev) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4180 | { |
| 4181 | printk(KERN_ERR "===>%s(%u)\n", __func__, __LINE__); |
| 4182 | } |
| 4183 | |
Joerg Albert | 230f7af | 2009-04-18 02:10:45 +0200 | [diff] [blame] | 4184 | static void __devexit mwl8k_remove(struct pci_dev *pdev) |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4185 | { |
| 4186 | struct ieee80211_hw *hw = pci_get_drvdata(pdev); |
| 4187 | struct mwl8k_priv *priv; |
| 4188 | int i; |
| 4189 | |
| 4190 | if (hw == NULL) |
| 4191 | return; |
| 4192 | priv = hw->priv; |
| 4193 | |
| 4194 | ieee80211_stop_queues(hw); |
| 4195 | |
Lennert Buytenhek | 60aa569 | 2009-08-03 21:59:09 +0200 | [diff] [blame] | 4196 | ieee80211_unregister_hw(hw); |
| 4197 | |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4198 | /* Remove TX reclaim and RX tasklets. */ |
Lennert Buytenhek | 1e9f9de3 | 2010-01-08 18:32:01 +0100 | [diff] [blame] | 4199 | tasklet_kill(&priv->poll_tx_task); |
Lennert Buytenhek | 67e2eb2 | 2010-01-08 18:32:18 +0100 | [diff] [blame] | 4200 | tasklet_kill(&priv->poll_rx_task); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4201 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4202 | /* Stop hardware */ |
| 4203 | mwl8k_hw_reset(priv); |
| 4204 | |
| 4205 | /* Return all skbs to mac80211 */ |
| 4206 | for (i = 0; i < MWL8K_TX_QUEUES; i++) |
Lennert Buytenhek | efb7c49 | 2010-01-08 18:31:47 +0100 | [diff] [blame] | 4207 | mwl8k_txq_reclaim(hw, i, INT_MAX, 1); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4208 | |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4209 | for (i = 0; i < MWL8K_TX_QUEUES; i++) |
| 4210 | mwl8k_txq_deinit(hw, i); |
| 4211 | |
| 4212 | mwl8k_rxq_deinit(hw, 0); |
| 4213 | |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 4214 | pci_free_consistent(priv->pdev, 4, priv->cookie, priv->cookie_dma); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4215 | |
| 4216 | pci_iounmap(pdev, priv->regs); |
Lennert Buytenhek | 5b9482d | 2009-10-22 20:20:43 +0200 | [diff] [blame] | 4217 | pci_iounmap(pdev, priv->sram); |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4218 | pci_set_drvdata(pdev, NULL); |
| 4219 | ieee80211_free_hw(hw); |
| 4220 | pci_release_regions(pdev); |
| 4221 | pci_disable_device(pdev); |
| 4222 | } |
| 4223 | |
| 4224 | static struct pci_driver mwl8k_driver = { |
| 4225 | .name = MWL8K_NAME, |
Lennert Buytenhek | 45a390d | 2009-10-22 20:20:47 +0200 | [diff] [blame] | 4226 | .id_table = mwl8k_pci_id_table, |
Lennert Buytenhek | a66098d | 2009-03-10 10:13:33 +0100 | [diff] [blame] | 4227 | .probe = mwl8k_probe, |
| 4228 | .remove = __devexit_p(mwl8k_remove), |
| 4229 | .shutdown = __devexit_p(mwl8k_shutdown), |
| 4230 | }; |
| 4231 | |
| 4232 | static int __init mwl8k_init(void) |
| 4233 | { |
| 4234 | return pci_register_driver(&mwl8k_driver); |
| 4235 | } |
| 4236 | |
| 4237 | static void __exit mwl8k_exit(void) |
| 4238 | { |
| 4239 | pci_unregister_driver(&mwl8k_driver); |
| 4240 | } |
| 4241 | |
| 4242 | module_init(mwl8k_init); |
| 4243 | module_exit(mwl8k_exit); |
Lennert Buytenhek | c2c357c | 2009-10-22 20:19:33 +0200 | [diff] [blame] | 4244 | |
| 4245 | MODULE_DESCRIPTION(MWL8K_DESC); |
| 4246 | MODULE_VERSION(MWL8K_VERSION); |
| 4247 | MODULE_AUTHOR("Lennert Buytenhek <buytenh@marvell.com>"); |
| 4248 | MODULE_LICENSE("GPL"); |