2 * This file is part of wl12xx
4 * Copyright (c) 1998-2007 Texas Instruments Incorporated
5 * Copyright (C) 2008-2009 Nokia Corporation
7 * Contact: Kalle Valo <kalle.valo@nokia.com>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
28 #include <linux/mutex.h>
29 #include <linux/list.h>
30 #include <linux/bitops.h>
31 #include <net/mac80211.h>
33 #define DRIVER_NAME "wl12xx"
34 #define DRIVER_PREFIX DRIVER_NAME ": "
41 DEBUG_MAILBOX
= BIT(3),
42 DEBUG_NETLINK
= BIT(4),
49 DEBUG_MAC80211
= BIT(11),
55 #define DEBUG_LEVEL (DEBUG_NONE)
57 #define DEBUG_DUMP_LIMIT 1024
59 #define wl12xx_error(fmt, arg...) \
60 printk(KERN_ERR DRIVER_PREFIX "ERROR " fmt "\n", ##arg)
62 #define wl12xx_warning(fmt, arg...) \
63 printk(KERN_WARNING DRIVER_PREFIX "WARNING " fmt "\n", ##arg)
65 #define wl12xx_notice(fmt, arg...) \
66 printk(KERN_INFO DRIVER_PREFIX fmt "\n", ##arg)
68 #define wl12xx_info(fmt, arg...) \
69 printk(KERN_DEBUG DRIVER_PREFIX fmt "\n", ##arg)
71 #define wl12xx_debug(level, fmt, arg...) \
73 if (level & DEBUG_LEVEL) \
74 printk(KERN_DEBUG DRIVER_PREFIX fmt "\n", ##arg); \
77 #define wl12xx_dump(level, prefix, buf, len) \
79 if (level & DEBUG_LEVEL) \
80 print_hex_dump(KERN_DEBUG, DRIVER_PREFIX prefix, \
81 DUMP_PREFIX_OFFSET, 16, 1, \
83 min_t(size_t, len, DEBUG_DUMP_LIMIT), \
87 #define wl12xx_dump_ascii(level, prefix, buf, len) \
89 if (level & DEBUG_LEVEL) \
90 print_hex_dump(KERN_DEBUG, DRIVER_PREFIX prefix, \
91 DUMP_PREFIX_OFFSET, 16, 1, \
93 min_t(size_t, len, DEBUG_DUMP_LIMIT), \
97 #define WL12XX_DEFAULT_RX_CONFIG (CFG_UNI_FILTER_EN | \
100 #define WL12XX_DEFAULT_RX_FILTER (CFG_RX_PRSP_EN | \
125 enum wl12xx_partition_type
{
133 struct wl12xx_partition
{
138 struct wl12xx_partition_set
{
139 struct wl12xx_partition mem
;
140 struct wl12xx_partition reg
;
145 /* FIXME: I'm not sure about this structure name */
149 const char *fw_filename
;
150 const char *nvs_filename
;
154 unsigned int power_on_sleep
;
155 int intr_cmd_complete
;
156 int intr_init_complete
;
158 int (*op_upload_fw
)(struct wl12xx
*wl
);
159 int (*op_upload_nvs
)(struct wl12xx
*wl
);
160 int (*op_boot
)(struct wl12xx
*wl
);
161 void (*op_set_ecpu_ctrl
)(struct wl12xx
*wl
, u32 flag
);
162 void (*op_target_enable_interrupts
)(struct wl12xx
*wl
);
163 int (*op_hw_init
)(struct wl12xx
*wl
);
164 int (*op_plt_init
)(struct wl12xx
*wl
);
166 struct wl12xx_partition_set
*p_table
;
167 enum wl12xx_acx_int_reg
*acx_reg_table
;
170 struct wl12xx_stats
{
171 struct acx_statistics
*fw_stats
;
172 unsigned long fw_stats_update
;
174 unsigned int retry_count
;
175 unsigned int excessive_retries
;
178 struct wl12xx_debugfs
{
179 struct dentry
*rootdir
;
180 struct dentry
*fw_statistics
;
182 struct dentry
*tx_internal_desc_overflow
;
184 struct dentry
*rx_out_of_mem
;
185 struct dentry
*rx_hdr_overflow
;
186 struct dentry
*rx_hw_stuck
;
187 struct dentry
*rx_dropped
;
188 struct dentry
*rx_fcs_err
;
189 struct dentry
*rx_xfr_hint_trig
;
190 struct dentry
*rx_path_reset
;
191 struct dentry
*rx_reset_counter
;
193 struct dentry
*dma_rx_requested
;
194 struct dentry
*dma_rx_errors
;
195 struct dentry
*dma_tx_requested
;
196 struct dentry
*dma_tx_errors
;
198 struct dentry
*isr_cmd_cmplt
;
199 struct dentry
*isr_fiqs
;
200 struct dentry
*isr_rx_headers
;
201 struct dentry
*isr_rx_mem_overflow
;
202 struct dentry
*isr_rx_rdys
;
203 struct dentry
*isr_irqs
;
204 struct dentry
*isr_tx_procs
;
205 struct dentry
*isr_decrypt_done
;
206 struct dentry
*isr_dma0_done
;
207 struct dentry
*isr_dma1_done
;
208 struct dentry
*isr_tx_exch_complete
;
209 struct dentry
*isr_commands
;
210 struct dentry
*isr_rx_procs
;
211 struct dentry
*isr_hw_pm_mode_changes
;
212 struct dentry
*isr_host_acknowledges
;
213 struct dentry
*isr_pci_pm
;
214 struct dentry
*isr_wakeups
;
215 struct dentry
*isr_low_rssi
;
217 struct dentry
*wep_addr_key_count
;
218 struct dentry
*wep_default_key_count
;
219 /* skipping wep.reserved */
220 struct dentry
*wep_key_not_found
;
221 struct dentry
*wep_decrypt_fail
;
222 struct dentry
*wep_packets
;
223 struct dentry
*wep_interrupt
;
225 struct dentry
*pwr_ps_enter
;
226 struct dentry
*pwr_elp_enter
;
227 struct dentry
*pwr_missing_bcns
;
228 struct dentry
*pwr_wake_on_host
;
229 struct dentry
*pwr_wake_on_timer_exp
;
230 struct dentry
*pwr_tx_with_ps
;
231 struct dentry
*pwr_tx_without_ps
;
232 struct dentry
*pwr_rcvd_beacons
;
233 struct dentry
*pwr_power_save_off
;
234 struct dentry
*pwr_enable_ps
;
235 struct dentry
*pwr_disable_ps
;
236 struct dentry
*pwr_fix_tsf_ps
;
237 /* skipping cont_miss_bcns_spread for now */
238 struct dentry
*pwr_rcvd_awake_beacons
;
240 struct dentry
*mic_rx_pkts
;
241 struct dentry
*mic_calc_failure
;
243 struct dentry
*aes_encrypt_fail
;
244 struct dentry
*aes_decrypt_fail
;
245 struct dentry
*aes_encrypt_packets
;
246 struct dentry
*aes_decrypt_packets
;
247 struct dentry
*aes_encrypt_interrupt
;
248 struct dentry
*aes_decrypt_interrupt
;
250 struct dentry
*event_heart_beat
;
251 struct dentry
*event_calibration
;
252 struct dentry
*event_rx_mismatch
;
253 struct dentry
*event_rx_mem_empty
;
254 struct dentry
*event_rx_pool
;
255 struct dentry
*event_oom_late
;
256 struct dentry
*event_phy_transmit_error
;
257 struct dentry
*event_tx_stuck
;
259 struct dentry
*ps_pspoll_timeouts
;
260 struct dentry
*ps_upsd_timeouts
;
261 struct dentry
*ps_upsd_max_sptime
;
262 struct dentry
*ps_upsd_max_apturn
;
263 struct dentry
*ps_pspoll_max_apturn
;
264 struct dentry
*ps_pspoll_utilization
;
265 struct dentry
*ps_upsd_utilization
;
267 struct dentry
*rxpipe_rx_prep_beacon_drop
;
268 struct dentry
*rxpipe_descr_host_int_trig_rx_data
;
269 struct dentry
*rxpipe_beacon_buffer_thres_host_int_trig_rx_data
;
270 struct dentry
*rxpipe_missed_beacon_host_int_trig_rx_data
;
271 struct dentry
*rxpipe_tx_xfr_host_int_trig_rx_data
;
273 struct dentry
*tx_queue_len
;
275 struct dentry
*retry_count
;
276 struct dentry
*excessive_retries
;
280 struct ieee80211_hw
*hw
;
281 bool mac80211_registered
;
283 struct spi_device
*spi
;
285 void (*set_power
)(bool enable
);
288 enum wl12xx_state state
;
291 int physical_mem_addr
;
292 int physical_reg_addr
;
293 int virtual_mem_addr
;
294 int virtual_reg_addr
;
296 struct wl12xx_chip chip
;
300 struct boot_attr boot_attr
;
308 u8 mac_addr
[ETH_ALEN
];
313 void *target_mem_map
;
314 struct acx_data_path_params_resp
*data_path
;
316 /* Number of TX packets transferred to the FW, modulo 16 */
319 /* Frames scheduled for transmission, not handled yet */
320 struct sk_buff_head tx_queue
;
321 bool tx_queue_stopped
;
323 struct work_struct tx_work
;
324 struct work_struct filter_work
;
326 /* Pending TX frames */
327 struct sk_buff
*tx_frames
[16];
330 * Index pointing to the next TX complete entry
331 * in the cyclic XT complete array we get from
334 u32 next_tx_complete
;
339 /* Rx frames handled */
342 /* Current double buffer */
343 u32 rx_current_buffer
;
346 /* The target interrupt mask */
348 struct work_struct irq_work
;
350 /* The mbox event mask */
353 /* Mailbox pointers */
356 /* Are we currently scanning */
359 /* Our association ID */
362 /* Default key (for WEP) */
365 unsigned int tx_mgmt_frm_rate
;
366 unsigned int tx_mgmt_frm_mod
;
368 unsigned int rx_config
;
369 unsigned int rx_filter
;
371 /* is firmware in elp mode */
374 /* we can be in psm, but not in elp, we have to differentiate */
377 /* PSM mode requested */
383 struct wl12xx_stats stats
;
384 struct wl12xx_debugfs debugfs
;
387 int wl12xx_plt_start(struct wl12xx
*wl
);
388 int wl12xx_plt_stop(struct wl12xx
*wl
);
390 #define DEFAULT_HW_GEN_MODULATION_TYPE CCK_LONG /* Long Preamble */
391 #define DEFAULT_HW_GEN_TX_RATE RATE_2MBPS
392 #define JOIN_TIMEOUT 5000 /* 5000 milliseconds to join */
394 #define WL12XX_DEFAULT_POWER_LEVEL 20
396 #define WL12XX_TX_QUEUE_MAX_LENGTH 20
398 /* Different chips need different sleep times after power on. WL1271 needs
399 * 200ms, WL1251 needs only 10ms. By default we use 200ms, but as soon as we
400 * know the chip ID, we change the sleep value in the wl12xx chip structure,
401 * so in subsequent power ons, we don't waste more time then needed. */
402 #define WL12XX_DEFAULT_POWER_ON_SLEEP 200
404 #define CHIP_ID_1251_PG10 (0x7010101)
405 #define CHIP_ID_1251_PG11 (0x7020101)
406 #define CHIP_ID_1251_PG12 (0x7030101)
407 #define CHIP_ID_1271_PG10 (0x4030101)