xref: /dragonfly/sys/dev/netif/iwm/if_iwm_config.h (revision 9348a738)
1 /*-
2  * Based on BSD-licensed source modules in the Linux iwlwifi driver,
3  * which were used as the reference documentation for this implementation.
4  *
5  ******************************************************************************
6  *
7  * This file is provided under a dual BSD/GPLv2 license.  When using or
8  * redistributing this file, you may do so under either license.
9  *
10  * GPL LICENSE SUMMARY
11  *
12  * Copyright(c) 2007 - 2014 Intel Corporation. All rights reserved.
13  * Copyright (C) 2016 Intel Deutschland GmbH
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of version 2 of the GNU General Public License as
17  * published by the Free Software Foundation.
18  *
19  * This program is distributed in the hope that it will be useful, but
20  * WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22  * General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
27  * USA
28  *
29  * The full GNU General Public License is included in this distribution
30  * in the file called COPYING.
31  *
32  * Contact Information:
33  *  Intel Linux Wireless <linuxwifi@intel.com>
34  * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
35  *
36  * BSD LICENSE
37  *
38  * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved.
39  * Copyright (C) 2016 Intel Deutschland GmbH
40  * All rights reserved.
41  *
42  * Redistribution and use in source and binary forms, with or without
43  * modification, are permitted provided that the following conditions
44  * are met:
45  *
46  *  * Redistributions of source code must retain the above copyright
47  *    notice, this list of conditions and the following disclaimer.
48  *  * Redistributions in binary form must reproduce the above copyright
49  *    notice, this list of conditions and the following disclaimer in
50  *    the documentation and/or other materials provided with the
51  *    distribution.
52  *  * Neither the name Intel Corporation nor the names of its
53  *    contributors may be used to endorse or promote products derived
54  *    from this software without specific prior written permission.
55  *
56  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
57  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
58  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
59  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
60  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
61  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
62  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
63  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
64  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
65  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
66  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
67  *
68  *****************************************************************************/
69 #ifndef __IWM_CONFIG_H__
70 #define __IWM_CONFIG_H__
71 
72 enum iwm_device_family {
73 	IWM_DEVICE_FAMILY_UNDEFINED,
74 	IWM_DEVICE_FAMILY_7000,
75 	IWM_DEVICE_FAMILY_8000,
76 };
77 
78 #define IWM_DEFAULT_MAX_TX_POWER	22
79 
80 /* Antenna presence definitions */
81 #define	IWM_ANT_NONE	0x0
82 #define	IWM_ANT_A	(1 << 0)
83 #define	IWM_ANT_B	(1 << 1)
84 #define IWM_ANT_C	(1 << 2)
85 #define	IWM_ANT_AB	(IWM_ANT_A | IWM_ANT_B)
86 #define	IWM_ANT_AC	(IWM_ANT_A | IWM_ANT_C)
87 #define IWM_ANT_BC	(IWM_ANT_B | IWM_ANT_C)
88 #define IWM_ANT_ABC	(IWM_ANT_A | IWM_ANT_B | IWM_ANT_C)
89 
90 static inline uint8_t num_of_ant(uint8_t mask)
91 {
92 	return  !!((mask) & IWM_ANT_A) +
93 		!!((mask) & IWM_ANT_B) +
94 		!!((mask) & IWM_ANT_C);
95 }
96 
97 /* lower blocks contain EEPROM image and calibration data */
98 #define IWM_OTP_LOW_IMAGE_SIZE_FAMILY_7000	(16 * 512 * sizeof(uint16_t)) /* 16 KB */
99 #define IWM_OTP_LOW_IMAGE_SIZE_FAMILY_8000	(32 * 512 * sizeof(uint16_t)) /* 32 KB */
100 #define IWM_OTP_LOW_IMAGE_SIZE_FAMILY_9000	IWM_OTP_LOW_IMAGE_SIZE_FAMILY_8000
101 
102 /**
103  * struct iwm_cfg
104  * @name: Official name of the device
105  * @fw_name: Firmware filename.
106  * @host_interrupt_operation_mode: device needs host interrupt operation
107  *      mode set
108  * @nvm_hw_section_num: the ID of the HW NVM section
109  * @apmg_wake_up_wa: should the MAC access REQ be asserted when a command
110  *      is in flight. This is due to a HW bug in 7260, 3160 and 7265.
111  */
112 struct iwm_cfg {
113 	const char *name;
114         const char *fw_name;
115         uint16_t eeprom_size;
116         enum iwm_device_family device_family;
117         int host_interrupt_operation_mode;
118         uint8_t nvm_hw_section_num;
119         int apmg_wake_up_wa;
120 };
121 
122 /*
123  * This list declares the config structures for all devices.
124  */
125 extern const struct iwm_cfg iwm7260_cfg;
126 extern const struct iwm_cfg iwm3160_cfg;
127 extern const struct iwm_cfg iwm3165_cfg;
128 extern const struct iwm_cfg iwm3168_cfg;
129 extern const struct iwm_cfg iwm7265_cfg;
130 extern const struct iwm_cfg iwm7265d_cfg;
131 extern const struct iwm_cfg iwm8260_cfg;
132 extern const struct iwm_cfg iwm8265_cfg;
133 
134 #endif /* __IWM_CONFIG_H__ */
135