if_iwm_8000.c (6c2c3bd8) if_iwm_8000.c (616201d1)
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.

--- 57 unchanged lines hidden (view full) ---

66 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
67 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
68 *
69 *****************************************************************************/
70
71#include <sys/cdefs.h>
72__FBSDID("$FreeBSD$");
73
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.

--- 57 unchanged lines hidden (view full) ---

66 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
67 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
68 *
69 *****************************************************************************/
70
71#include <sys/cdefs.h>
72__FBSDID("$FreeBSD$");
73
74#include "opt_wlan.h"
75#include "opt_iwm.h"
76
74#include <sys/param.h>
75
76#include "if_iwm_config.h"
77
78#define IWM8000_FW "iwm8000Cfw"
79
80#define IWM_NVM_HW_SECTION_NUM_FAMILY_8000 10
81
82#define IWM_DEVICE_8000_COMMON \
83 .device_family = IWM_DEVICE_FAMILY_8000, \
84 .eeprom_size = IWM_OTP_LOW_IMAGE_SIZE_FAMILY_8000, \
85 .nvm_hw_section_num = IWM_NVM_HW_SECTION_NUM_FAMILY_8000
86
87const struct iwm_cfg iwm8260_cfg = {
88 .name = "Intel(R) Dual Band Wireless AC 8260",
89 .fw_name = IWM8000_FW,
90 IWM_DEVICE_8000_COMMON,
91 .host_interrupt_operation_mode = 0,
92};
77#include <sys/param.h>
78
79#include "if_iwm_config.h"
80
81#define IWM8000_FW "iwm8000Cfw"
82
83#define IWM_NVM_HW_SECTION_NUM_FAMILY_8000 10
84
85#define IWM_DEVICE_8000_COMMON \
86 .device_family = IWM_DEVICE_FAMILY_8000, \
87 .eeprom_size = IWM_OTP_LOW_IMAGE_SIZE_FAMILY_8000, \
88 .nvm_hw_section_num = IWM_NVM_HW_SECTION_NUM_FAMILY_8000
89
90const struct iwm_cfg iwm8260_cfg = {
91 .name = "Intel(R) Dual Band Wireless AC 8260",
92 .fw_name = IWM8000_FW,
93 IWM_DEVICE_8000_COMMON,
94 .host_interrupt_operation_mode = 0,
95};