1/*	$OpenBSD: if_iwmvar.h,v 1.7 2015/03/02 13:51:10 jsg Exp $	*/
2/*	$FreeBSD: stable/11/sys/dev/iwm/if_iwmvar.h 345636 2019-03-28 09:50:25Z avos $ */
3
4/*
5 * Copyright (c) 2014 genua mbh <info@genua.de>
6 * Copyright (c) 2014 Fixup Software Ltd.
7 *
8 * Permission to use, copy, modify, and distribute this software for any
9 * purpose with or without fee is hereby granted, provided that the above
10 * copyright notice and this permission notice appear in all copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
13 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
14 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
15 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
16 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 */
20
21/*-
22 * Based on BSD-licensed source modules in the Linux iwlwifi driver,
23 * which were used as the reference documentation for this implementation.
24 *
25 * Driver version we are currently based off of is
26 * Linux 3.14.3 (tag id a2df521e42b1d9a23f620ac79dbfe8655a8391dd)
27 *
28 ***********************************************************************
29 *
30 * This file is provided under a dual BSD/GPLv2 license.  When using or
31 * redistributing this file, you may do so under either license.
32 *
33 * GPL LICENSE SUMMARY
34 *
35 * Copyright(c) 2007 - 2013 Intel Corporation. All rights reserved.
36 *
37 * This program is free software; you can redistribute it and/or modify
38 * it under the terms of version 2 of the GNU General Public License as
39 * published by the Free Software Foundation.
40 *
41 * This program is distributed in the hope that it will be useful, but
42 * WITHOUT ANY WARRANTY; without even the implied warranty of
43 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
44 * General Public License for more details.
45 *
46 * You should have received a copy of the GNU General Public License
47 * along with this program; if not, write to the Free Software
48 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
49 * USA
50 *
51 * The full GNU General Public License is included in this distribution
52 * in the file called COPYING.
53 *
54 * Contact Information:
55 *  Intel Linux Wireless <ilw@linux.intel.com>
56 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
57 *
58 *
59 * BSD LICENSE
60 *
61 * Copyright(c) 2005 - 2013 Intel Corporation. All rights reserved.
62 * All rights reserved.
63 *
64 * Redistribution and use in source and binary forms, with or without
65 * modification, are permitted provided that the following conditions
66 * are met:
67 *
68 *  * Redistributions of source code must retain the above copyright
69 *    notice, this list of conditions and the following disclaimer.
70 *  * Redistributions in binary form must reproduce the above copyright
71 *    notice, this list of conditions and the following disclaimer in
72 *    the documentation and/or other materials provided with the
73 *    distribution.
74 *  * Neither the name Intel Corporation nor the names of its
75 *    contributors may be used to endorse or promote products derived
76 *    from this software without specific prior written permission.
77 *
78 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
79 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
80 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
81 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
82 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
83 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
84 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
85 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
86 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
87 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
88 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
89 */
90
91/*-
92 * Copyright (c) 2007-2010 Damien Bergamini <damien.bergamini@free.fr>
93 *
94 * Permission to use, copy, modify, and distribute this software for any
95 * purpose with or without fee is hereby granted, provided that the above
96 * copyright notice and this permission notice appear in all copies.
97 *
98 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
99 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
100 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
101 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
102 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
103 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
104 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
105 */
106
107struct iwm_rx_radiotap_header {
108	struct ieee80211_radiotap_header wr_ihdr;
109	uint64_t	wr_tsft;
110	uint8_t		wr_flags;
111	uint8_t		wr_rate;
112	uint16_t	wr_chan_freq;
113	uint16_t	wr_chan_flags;
114	int8_t		wr_dbm_antsignal;
115	int8_t		wr_dbm_antnoise;
116} __packed __aligned(8);
117
118#define IWM_RX_RADIOTAP_PRESENT						\
119	((1 << IEEE80211_RADIOTAP_TSFT) |				\
120	 (1 << IEEE80211_RADIOTAP_FLAGS) |				\
121	 (1 << IEEE80211_RADIOTAP_RATE) |				\
122	 (1 << IEEE80211_RADIOTAP_CHANNEL) |				\
123	 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |			\
124	 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE))
125
126struct iwm_tx_radiotap_header {
127	struct ieee80211_radiotap_header wt_ihdr;
128	uint8_t		wt_flags;
129	uint8_t		wt_rate;
130	uint16_t	wt_chan_freq;
131	uint16_t	wt_chan_flags;
132} __packed;
133
134#define IWM_TX_RADIOTAP_PRESENT						\
135	((1 << IEEE80211_RADIOTAP_FLAGS) |				\
136	 (1 << IEEE80211_RADIOTAP_RATE) |				\
137	 (1 << IEEE80211_RADIOTAP_CHANNEL))
138
139
140#define IWM_UCODE_SECTION_MAX 16
141
142/*
143 * fw_status is used to determine if we've already parsed the firmware file
144 *
145 * In addition to the following, status < 0 ==> -error
146 */
147#define IWM_FW_STATUS_NONE		0
148#define IWM_FW_STATUS_INPROGRESS	1
149#define IWM_FW_STATUS_DONE		2
150
151/**
152 * enum iwm_ucode_type
153 *
154 * The type of ucode.
155 *
156 * @IWM_UCODE_REGULAR: Normal runtime ucode
157 * @IWM_UCODE_INIT: Initial ucode
158 * @IWM_UCODE_WOWLAN: Wake on Wireless enabled ucode
159 * @IWM_UCODE_REGULAR_USNIFFER: Normal runtime ucode when using usniffer image
160 */
161enum iwm_ucode_type {
162	IWM_UCODE_REGULAR,
163	IWM_UCODE_INIT,
164	IWM_UCODE_WOWLAN,
165	IWM_UCODE_REGULAR_USNIFFER,
166	IWM_UCODE_TYPE_MAX
167};
168
169struct iwm_ucode_capabilities {
170	uint32_t max_probe_length;
171	uint32_t n_scan_channels;
172	uint32_t flags;
173	uint8_t enabled_api[howmany(IWM_NUM_UCODE_TLV_API, NBBY)];
174	uint8_t enabled_capa[howmany(IWM_NUM_UCODE_TLV_CAPA, NBBY)];
175};
176
177static inline int
178fw_has_api(const struct iwm_ucode_capabilities *capabilities,
179	   unsigned int api)
180{
181	return isset(capabilities->enabled_api, api);
182}
183
184static inline int
185fw_has_capa(const struct iwm_ucode_capabilities *capabilities,
186	    unsigned int capa)
187{
188	return isset(capabilities->enabled_capa, capa);
189}
190
191/* one for each uCode image (inst/data, init/runtime/wowlan) */
192struct iwm_fw_desc {
193	const void *data;	/* vmalloc'ed data */
194	uint32_t len;		/* size in bytes */
195	uint32_t offset;	/* offset in the device */
196};
197
198struct iwm_fw_info {
199	const struct firmware *fw_fp;
200	int fw_status;
201
202	struct iwm_fw_sects {
203		struct iwm_fw_desc fw_sect[IWM_UCODE_SECTION_MAX];
204		int fw_count;
205		int is_dual_cpus;
206		uint32_t paging_mem_size;
207	} fw_sects[IWM_UCODE_TYPE_MAX];
208
209	uint32_t phy_config;
210	uint8_t valid_tx_ant;
211	uint8_t valid_rx_ant;
212};
213
214struct iwm_nvm_data {
215	int n_hw_addrs;
216	uint8_t hw_addr[IEEE80211_ADDR_LEN];
217
218	int sku_cap_band_24GHz_enable;
219	int sku_cap_band_52GHz_enable;
220	int sku_cap_11n_enable;
221	int sku_cap_amt_enable;
222	int sku_cap_ipan_enable;
223
224	uint8_t radio_cfg_type;
225	uint8_t radio_cfg_step;
226	uint8_t radio_cfg_dash;
227	uint8_t radio_cfg_pnum;
228	uint8_t valid_tx_ant, valid_rx_ant;
229#define IWM_NUM_CHANNELS	39
230#define IWM_NUM_CHANNELS_8000	51
231
232	uint16_t nvm_version;
233	uint8_t max_tx_pwr_half_dbm;
234
235	boolean_t lar_enabled;
236	uint16_t nvm_ch_flags[];
237};
238
239/* max bufs per tfd the driver will use */
240#define IWM_MAX_CMD_TBS_PER_TFD 2
241
242struct iwm_rx_packet;
243struct iwm_host_cmd {
244	const void *data[IWM_MAX_CMD_TBS_PER_TFD];
245	struct iwm_rx_packet *resp_pkt;
246	unsigned long _rx_page_addr;
247	uint32_t _rx_page_order;
248	int handler_status;
249
250	uint32_t flags;
251	uint32_t id;
252	uint16_t len[IWM_MAX_CMD_TBS_PER_TFD];
253	uint8_t dataflags[IWM_MAX_CMD_TBS_PER_TFD];
254};
255
256/*
257 * DMA glue is from iwn
258 */
259
260typedef caddr_t iwm_caddr_t;
261typedef void *iwm_hookarg_t;
262
263struct iwm_dma_info {
264	bus_dma_tag_t		tag;
265	bus_dmamap_t		map;
266	bus_dma_segment_t	seg;
267	bus_addr_t		paddr;
268	void 			*vaddr;
269	bus_size_t		size;
270};
271
272/**
273 * struct iwm_fw_paging
274 * @fw_paging_block: dma memory info
275 * @fw_paging_size: page size
276 */
277struct iwm_fw_paging {
278	struct iwm_dma_info fw_paging_block;
279	uint32_t fw_paging_size;
280};
281
282#define IWM_TX_RING_COUNT	256
283#define IWM_TX_RING_LOMARK	192
284#define IWM_TX_RING_HIMARK	224
285
286struct iwm_tx_data {
287	bus_dmamap_t		map;
288	bus_addr_t		cmd_paddr;
289	bus_addr_t		scratch_paddr;
290	struct mbuf		*m;
291	struct iwm_node 	*in;
292	int			done;
293};
294
295struct iwm_tx_ring {
296	struct iwm_dma_info	desc_dma;
297	struct iwm_dma_info	cmd_dma;
298	struct iwm_tfd		*desc;
299	struct iwm_device_cmd	*cmd;
300	bus_dma_tag_t		data_dmat;
301	struct iwm_tx_data	data[IWM_TX_RING_COUNT];
302	int			qid;
303	int			queued;
304	int			cur;
305};
306
307#define IWM_RX_RING_COUNT	256
308/* Linux driver optionally uses 8k buffer */
309#define IWM_RBUF_SIZE		4096
310
311#define	IWM_MAX_SCATTER		20
312
313struct iwm_rx_data {
314	struct mbuf	*m;
315	bus_dmamap_t	map;
316};
317
318struct iwm_rx_ring {
319	struct iwm_dma_info	desc_dma;
320	struct iwm_dma_info	stat_dma;
321	struct iwm_dma_info	buf_dma;
322	uint32_t		*desc;
323	struct iwm_rb_status	*stat;
324	struct iwm_rx_data	data[IWM_RX_RING_COUNT];
325	bus_dmamap_t		spare_map;	/* for iwm_rx_addbuf() */
326	bus_dma_tag_t           data_dmat;
327	int			cur;
328};
329
330#define IWM_CMD_RESP_MAX PAGE_SIZE
331
332#define IWM_MVM_TE_SESSION_PROTECTION_MAX_TIME_MS 500
333#define IWM_MVM_TE_SESSION_PROTECTION_MIN_TIME_MS 400
334
335/*
336 * Command headers are in iwl-trans.h, which is full of all
337 * kinds of other junk, so we just replicate the structures here.
338 * First the software bits:
339 */
340enum IWM_CMD_MODE {
341	IWM_CMD_SYNC		= 0,
342	IWM_CMD_ASYNC		= (1 << 0),
343	IWM_CMD_WANT_SKB	= (1 << 1),
344	IWM_CMD_SEND_IN_RFKILL	= (1 << 2),
345};
346enum iwm_hcmd_dataflag {
347	IWM_HCMD_DFL_NOCOPY     = (1 << 0),
348	IWM_HCMD_DFL_DUP        = (1 << 1),
349};
350
351struct iwm_int_sta {
352	uint32_t sta_id;
353	uint32_t tfd_queue_msk;
354};
355
356struct iwm_mvm_phy_ctxt {
357	uint16_t id;
358	uint16_t color;
359	uint32_t ref;
360	struct ieee80211_channel *channel;
361};
362
363struct iwm_bf_data {
364	int bf_enabled;		/* filtering	*/
365	int ba_enabled;		/* abort	*/
366	int ave_beacon_signal;
367	int last_cqm_event;
368};
369
370struct iwm_vap {
371	struct ieee80211vap	iv_vap;
372	int			is_uploaded;
373
374	int			(*iv_newstate)(struct ieee80211vap *,
375				    enum ieee80211_state, int);
376
377	struct iwm_mvm_phy_ctxt	*phy_ctxt;
378
379	uint16_t		id;
380	uint16_t		color;
381
382	boolean_t		have_wme;
383	/*
384	 * QoS data from net80211, need to store this here
385	 * as net80211 has a separate callback but we need
386	 * to have the data for the MAC context
387	 */
388        struct {
389		uint16_t cw_min;
390		uint16_t cw_max;
391		uint16_t edca_txop;
392		uint8_t aifsn;
393	} queue_params[WME_NUM_AC];
394};
395#define IWM_VAP(_vap)		((struct iwm_vap *)(_vap))
396
397struct iwm_node {
398	struct ieee80211_node	in_ni;
399
400	/* status "bits" */
401	int			in_assoc;
402
403	struct iwm_lq_cmd	in_lq;
404
405	uint8_t			in_ridx[IEEE80211_RATE_MAXSIZE];
406};
407#define IWM_NODE(_ni)		((struct iwm_node *)(_ni))
408
409#define IWM_STATION_ID 0
410#define IWM_AUX_STA_ID 1
411
412#define	IWM_DEFAULT_MACID	0
413#define	IWM_DEFAULT_COLOR	0
414#define	IWM_DEFAULT_TSFID	0
415
416#define IWM_ICT_SIZE		4096
417#define IWM_ICT_COUNT		(IWM_ICT_SIZE / sizeof (uint32_t))
418#define IWM_ICT_PADDR_SHIFT	12
419
420struct iwm_cfg;
421
422struct iwm_softc {
423	device_t		sc_dev;
424	uint32_t		sc_debug;
425	int			sc_attached;
426
427	struct mtx		sc_mtx;
428	struct mbufq		sc_snd;
429	struct ieee80211com	sc_ic;
430
431	int			sc_flags;
432#define IWM_FLAG_USE_ICT	(1 << 0)
433#define IWM_FLAG_HW_INITED	(1 << 1)
434#define IWM_FLAG_STOPPED	(1 << 2)
435#define IWM_FLAG_RFKILL		(1 << 3)
436#define IWM_FLAG_BUSY		(1 << 4)
437#define IWM_FLAG_SCANNING	(1 << 5)
438#define IWM_FLAG_SCAN_RUNNING	(1 << 6)
439
440	struct intr_config_hook sc_preinit_hook;
441	struct callout		sc_watchdog_to;
442	struct callout		sc_led_blink_to;
443
444	struct task		init_task;
445
446	struct resource		*sc_irq;
447	struct resource		*sc_mem;
448	bus_space_tag_t		sc_st;
449	bus_space_handle_t	sc_sh;
450	bus_size_t		sc_sz;
451	bus_dma_tag_t		sc_dmat;
452	void			*sc_ih;
453
454	/* TX scheduler rings. */
455	struct iwm_dma_info	sched_dma;
456	uint32_t		scd_base_addr;
457
458	/* TX/RX rings. */
459	struct iwm_tx_ring	txq[IWM_MVM_MAX_QUEUES];
460	struct iwm_rx_ring	rxq;
461	int			qfullmsk;
462
463	int			sc_sf_state;
464
465	/* ICT table. */
466	struct iwm_dma_info	ict_dma;
467	int			ict_cur;
468
469	int			sc_hw_rev;
470	int			sc_hw_id;
471
472	struct iwm_dma_info	kw_dma;
473	struct iwm_dma_info	fw_dma;
474
475	int			sc_fw_chunk_done;
476
477	enum iwm_ucode_type	cur_ucode;
478	int			ucode_loaded;
479	char			sc_fwver[32];
480
481	struct iwm_ucode_capabilities ucode_capa;
482	char			sc_fw_mcc[3];
483
484	int			sc_intmask;
485
486	/*
487	 * So why do we need a separate stopped flag and a generation?
488	 * the former protects the device from issuing commands when it's
489	 * stopped (duh).  The latter protects against race from a very
490	 * fast stop/unstop cycle where threads waiting for responses do
491	 * not have a chance to run in between.  Notably: we want to stop
492	 * the device from interrupt context when it craps out, so we
493	 * don't have the luxury of waiting for quiescense.
494	 */
495	int			sc_generation;
496
497	struct iwm_fw_info	sc_fw;
498	struct iwm_tlv_calib_ctrl sc_default_calib[IWM_UCODE_TYPE_MAX];
499
500	const struct iwm_cfg	*cfg;
501	struct iwm_nvm_data	*nvm_data;
502	struct iwm_phy_db	*sc_phy_db;
503
504	struct iwm_bf_data	sc_bf;
505
506	int			sc_tx_timer;
507
508	int			sc_scan_last_antenna;
509
510	int			sc_fixed_ridx;
511
512	int			sc_staid;
513	int			sc_nodecolor;
514
515	uint8_t			sc_cmd_resp[IWM_CMD_RESP_MAX];
516	int			sc_wantresp;
517
518	struct task		sc_es_task;
519
520	struct iwm_rx_phy_info	sc_last_phy_info;
521	int			sc_ampdu_ref;
522
523	struct iwm_int_sta	sc_aux_sta;
524
525	/* phy contexts.  we only use the first one */
526	struct iwm_mvm_phy_ctxt	sc_phyctxt[IWM_NUM_PHY_CTX];
527
528	struct iwm_notif_statistics_v10 sc_stats;
529	int			sc_noise;
530
531	caddr_t			sc_drvbpf;
532
533	struct iwm_rx_radiotap_header sc_rxtap;
534	struct iwm_tx_radiotap_header sc_txtap;
535
536	int			sc_max_rssi;
537
538	struct iwm_notif_wait_data *sc_notif_wait;
539
540	int			cmd_hold_nic_awake;
541
542	/* Firmware status */
543	uint32_t		error_event_table;
544	uint32_t		log_event_table;
545	uint32_t		umac_error_event_table;
546	int			support_umac_log;
547
548	/*
549	 * Paging parameters - All of the parameters should be set by the
550	 * opmode when paging is enabled
551	 */
552	struct iwm_fw_paging	fw_paging_db[IWM_NUM_OF_FW_PAGING_BLOCKS];
553	uint16_t		num_of_paging_blk;
554	uint16_t		num_of_pages_in_last_blk;
555
556	/* Indicate if device power save is allowed */
557	boolean_t		sc_ps_disabled;
558};
559
560#define IWM_LOCK_INIT(_sc) \
561	mtx_init(&(_sc)->sc_mtx, device_get_nameunit((_sc)->sc_dev), \
562	    MTX_NETWORK_LOCK, MTX_DEF);
563#define	IWM_LOCK(_sc)		mtx_lock(&(_sc)->sc_mtx)
564#define	IWM_UNLOCK(_sc)		mtx_unlock(&(_sc)->sc_mtx)
565#define IWM_LOCK_DESTROY(_sc)	mtx_destroy(&(_sc)->sc_mtx)
566