2 * Intel Wireless Multicomm 3200 WiFi driver
4 * Copyright (C) 2009 Intel Corporation. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
16 * * Neither the name of Intel Corporation nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 * Intel Corporation <ilw@linux.intel.com>
34 * Samuel Ortiz <samuel.ortiz@intel.com>
35 * Zhu Yi <yi.zhu@intel.com>
42 #include <linux/netdevice.h>
43 #include <linux/wireless.h>
44 #include <net/cfg80211.h>
53 #define IWM_COPYRIGHT "Copyright(c) 2009 Intel Corporation"
54 #define IWM_AUTHOR "<ilw@linux.intel.com>"
56 #define IWM_SRC_LMAC UMAC_HDI_IN_SOURCE_FHRX
57 #define IWM_SRC_UDMA UMAC_HDI_IN_SOURCE_UDMA
58 #define IWM_SRC_UMAC UMAC_HDI_IN_SOURCE_FW
61 #define IWM_POWER_INDEX_MIN 0
62 #define IWM_POWER_INDEX_MAX 5
63 #define IWM_POWER_INDEX_DEFAULT 3
67 unsigned long calib_map
;
68 unsigned long expected_calib_map
;
71 bool reset_on_fatal_err
;
73 bool wimax_not_present
;
89 u8 mac_addr
[ETH_ALEN
];
103 int id
; /* group id */
104 int sid
; /* super group id */
105 int min_pages
; /* min capacity in pages */
106 int max_pages
; /* max capacity in pages */
107 int alloc_pages
; /* allocated # of pages. incresed by driver */
108 int total_freed_pages
; /* total freed # of pages. incresed by UMAC */
117 struct iwm_tx_credit
{
120 unsigned long full_pools_map
; /* bitmap for # of filled tx pools */
121 struct pool_entry pools
[IWM_MACS_OUT_GROUPS
];
122 struct spool_entry spools
[IWM_MACS_OUT_SGROUPS
];
126 struct list_head pending
;
131 unsigned long buf_size
;
134 struct iwm_tid_info
{
140 struct iwm_sta_info
{
145 struct iwm_tid_info tid_info
[IWM_UMAC_TID_NR
];
155 unsigned long rx_size
;
156 unsigned long rx_buf_size
;
159 #define IWM_NUM_KEYS 4
161 struct iwm_umac_key_hdr
{
164 u8 multicast
; /* BCast encrypt & BCast decrypt of frames FROM mac */
168 struct iwm_umac_key_hdr hdr
;
170 u8 key
[WLAN_MAX_KEY_LEN
];
171 u8 seq
[IW_ENCODE_SEQ_MAX_SIZE
];
176 #define IWM_RX_ID_HASH 0xff
177 #define IWM_RX_ID_GET_HASH(id) ((id) % IWM_RX_ID_HASH)
179 #define IWM_STA_TABLE_NUM 16
180 #define IWM_TX_LIST_SIZE 64
181 #define IWM_RX_LIST_SIZE 256
183 #define IWM_SCAN_ID_MAX 0xff
185 #define IWM_STATUS_READY 0
186 #define IWM_STATUS_SCANNING 1
187 #define IWM_STATUS_SCAN_ABORTING 2
188 #define IWM_STATUS_SME_CONNECTING 3
189 #define IWM_STATUS_ASSOCIATED 4
190 #define IWM_STATUS_RESETTING 5
192 struct iwm_tx_queue
{
194 struct sk_buff_head queue
;
195 struct sk_buff_head stopped_queue
;
197 struct workqueue_struct
*wq
;
198 struct work_struct worker
;
199 u8 concat_buf
[IWM_HAL_CONCATENATE_BUF_SIZE
];
204 /* Queues 0 ~ 3 for AC data, 5 for iPAN */
205 #define IWM_TX_QUEUES 5
206 #define IWM_TX_DATA_QUEUES 4
207 #define IWM_TX_CMD_QUEUE 4
209 struct iwm_bss_info
{
210 struct list_head node
;
211 struct cfg80211_bss
*cfg_bss
;
212 struct iwm_umac_notif_bss_info
*bss
;
215 typedef int (*iwm_handler
)(struct iwm_priv
*priv
, u8
*buf
,
216 unsigned long buf_size
, struct iwm_wifi_cmd
*cmd
);
218 #define IWM_WATCHDOG_PERIOD (6 * HZ)
221 struct wireless_dev
*wdev
;
222 struct iwm_if_ops
*bus_ops
;
224 struct iwm_conf conf
;
226 unsigned long status
;
228 struct list_head pending_notif
;
229 wait_queue_head_t notif_queue
;
231 wait_queue_head_t nonwifi_queue
;
233 unsigned long calib_done_map
;
237 } calib_res
[CALIBRATION_CMD_NUM
];
239 struct iwm_umac_profile
*umac_profile
;
240 bool umac_profile_active
;
247 struct iwm_sta_info sta_table
[IWM_STA_TABLE_NUM
];
248 struct list_head bss_list
;
250 void (*nonwifi_rx_handlers
[UMAC_HDI_IN_OPCODE_NONWIFI_MAX
])
251 (struct iwm_priv
*priv
, u8
*buf
, unsigned long buf_size
);
253 const iwm_handler
*umac_handlers
;
254 const iwm_handler
*lmac_handlers
;
255 DECLARE_BITMAP(lmac_handler_map
, LMAC_COMMAND_ID_NUM
);
256 DECLARE_BITMAP(umac_handler_map
, LMAC_COMMAND_ID_NUM
);
257 DECLARE_BITMAP(udma_handler_map
, LMAC_COMMAND_ID_NUM
);
259 struct list_head wifi_pending_cmd
;
260 struct list_head nonwifi_pending_cmd
;
268 struct cfg80211_scan_request
*scan_request
;
270 struct sk_buff_head rx_list
;
271 struct list_head rx_tickets
;
272 spinlock_t ticket_lock
;
273 struct list_head rx_packets
[IWM_RX_ID_HASH
];
274 spinlock_t packet_lock
[IWM_RX_ID_HASH
];
275 struct workqueue_struct
*rx_wq
;
276 struct work_struct rx_worker
;
278 struct iwm_tx_credit tx_credit
;
279 struct iwm_tx_queue txq
[IWM_TX_QUEUES
];
281 struct iwm_key keys
[IWM_NUM_KEYS
];
284 DECLARE_BITMAP(wifi_ntfy
, WIFI_IF_NTFY_MAX
);
285 wait_queue_head_t wifi_ntfy_queue
;
287 wait_queue_head_t mlme_queue
;
289 struct iw_statistics wstats
;
290 struct delayed_work stats_request
;
291 struct delayed_work disconnect
;
292 struct delayed_work ct_kill_delay
;
294 struct iwm_debugfs dbg
;
297 struct timer_list watchdog
;
298 struct work_struct reset_worker
;
299 struct work_struct auth_retry_worker
;
307 struct iwm_fw_error_hdr
*last_fw_err
;
308 char umac_version
[8];
309 char lmac_version
[8];
311 char private[0] __attribute__((__aligned__(NETDEV_ALIGN
)));
314 static inline void *iwm_private(struct iwm_priv
*iwm
)
317 return &iwm
->private;
320 #define hw_to_iwm(h) (h->iwm)
321 #define iwm_to_dev(i) (wiphy_dev(i->wdev->wiphy))
322 #define iwm_to_wiphy(i) (i->wdev->wiphy)
323 #define wiphy_to_iwm(w) (struct iwm_priv *)(wiphy_priv(w))
324 #define iwm_to_wdev(i) (i->wdev)
325 #define wdev_to_iwm(w) (struct iwm_priv *)(wdev_priv(w))
326 #define iwm_to_ndev(i) (i->wdev->netdev)
327 #define ndev_to_iwm(n) (wdev_to_iwm(n->ieee80211_ptr))
328 #define skb_to_rx_info(s) ((struct iwm_rx_info *)(s->cb))
329 #define skb_to_tx_info(s) ((struct iwm_tx_info *)s->cb)
331 void *iwm_if_alloc(int sizeof_bus
, struct device
*dev
,
332 struct iwm_if_ops
*if_ops
);
333 void iwm_if_free(struct iwm_priv
*iwm
);
334 int iwm_if_add(struct iwm_priv
*iwm
);
335 void iwm_if_remove(struct iwm_priv
*iwm
);
336 int iwm_mode_to_nl80211_iftype(int mode
);
337 int iwm_priv_init(struct iwm_priv
*iwm
);
338 void iwm_priv_deinit(struct iwm_priv
*iwm
);
339 void iwm_reset(struct iwm_priv
*iwm
);
340 void iwm_resetting(struct iwm_priv
*iwm
);
341 void iwm_tx_credit_init_pools(struct iwm_priv
*iwm
,
342 struct iwm_umac_notif_alive
*alive
);
343 int iwm_tx_credit_alloc(struct iwm_priv
*iwm
, int id
, int nb
);
344 int iwm_notif_send(struct iwm_priv
*iwm
, struct iwm_wifi_cmd
*cmd
,
345 u8 cmd_id
, u8 source
, u8
*buf
, unsigned long buf_size
);
346 int iwm_notif_handle(struct iwm_priv
*iwm
, u32 cmd
, u8 source
, long timeout
);
347 void iwm_init_default_profile(struct iwm_priv
*iwm
,
348 struct iwm_umac_profile
*profile
);
349 void iwm_link_on(struct iwm_priv
*iwm
);
350 void iwm_link_off(struct iwm_priv
*iwm
);
351 int iwm_up(struct iwm_priv
*iwm
);
352 int iwm_down(struct iwm_priv
*iwm
);
355 int iwm_tid_to_queue(u16 tid
);
356 void iwm_tx_credit_inc(struct iwm_priv
*iwm
, int id
, int total_freed_pages
);
357 void iwm_tx_worker(struct work_struct
*work
);
358 int iwm_xmit_frame(struct sk_buff
*skb
, struct net_device
*netdev
);
361 void iwm_rx_setup_handlers(struct iwm_priv
*iwm
);
362 int iwm_rx_handle(struct iwm_priv
*iwm
, u8
*buf
, unsigned long buf_size
);
363 int iwm_rx_handle_resp(struct iwm_priv
*iwm
, u8
*buf
, unsigned long buf_size
,
364 struct iwm_wifi_cmd
*cmd
);
365 void iwm_rx_free(struct iwm_priv
*iwm
);