1*4882a593Smuzhiyun /****************************************************************************** 2*4882a593Smuzhiyun * 3*4882a593Smuzhiyun * This file is provided under a dual BSD/GPLv2 license. When using or 4*4882a593Smuzhiyun * redistributing this file, you may do so under either license. 5*4882a593Smuzhiyun * 6*4882a593Smuzhiyun * GPL LICENSE SUMMARY 7*4882a593Smuzhiyun * 8*4882a593Smuzhiyun * Copyright(c) 2008 - 2015 Intel Corporation. All rights reserved. 9*4882a593Smuzhiyun * Copyright(c) 2016 - 2017 Intel Deutschland GmbH 10*4882a593Smuzhiyun * Copyright(c) 2018 - 2019 Intel Corporation 11*4882a593Smuzhiyun * 12*4882a593Smuzhiyun * This program is free software; you can redistribute it and/or modify 13*4882a593Smuzhiyun * it under the terms of version 2 of the GNU General Public License as 14*4882a593Smuzhiyun * published by the Free Software Foundation. 15*4882a593Smuzhiyun * 16*4882a593Smuzhiyun * This program is distributed in the hope that it will be useful, but 17*4882a593Smuzhiyun * WITHOUT ANY WARRANTY; without even the implied warranty of 18*4882a593Smuzhiyun * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 19*4882a593Smuzhiyun * General Public License for more details. 20*4882a593Smuzhiyun * 21*4882a593Smuzhiyun * The full GNU General Public License is included in this distribution 22*4882a593Smuzhiyun * in the file called COPYING. 23*4882a593Smuzhiyun * 24*4882a593Smuzhiyun * Contact Information: 25*4882a593Smuzhiyun * Intel Linux Wireless <linuxwifi@intel.com> 26*4882a593Smuzhiyun * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 27*4882a593Smuzhiyun * 28*4882a593Smuzhiyun * BSD LICENSE 29*4882a593Smuzhiyun * 30*4882a593Smuzhiyun * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved. 31*4882a593Smuzhiyun * Copyright(c) 2016 - 2017 Intel Deutschland GmbH 32*4882a593Smuzhiyun * Copyright(c) 2018 - 2019 Intel Corporation 33*4882a593Smuzhiyun * All rights reserved. 34*4882a593Smuzhiyun * 35*4882a593Smuzhiyun * Redistribution and use in source and binary forms, with or without 36*4882a593Smuzhiyun * modification, are permitted provided that the following conditions 37*4882a593Smuzhiyun * are met: 38*4882a593Smuzhiyun * 39*4882a593Smuzhiyun * * Redistributions of source code must retain the above copyright 40*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer. 41*4882a593Smuzhiyun * * Redistributions in binary form must reproduce the above copyright 42*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer in 43*4882a593Smuzhiyun * the documentation and/or other materials provided with the 44*4882a593Smuzhiyun * distribution. 45*4882a593Smuzhiyun * * Neither the name Intel Corporation nor the names of its 46*4882a593Smuzhiyun * contributors may be used to endorse or promote products derived 47*4882a593Smuzhiyun * from this software without specific prior written permission. 48*4882a593Smuzhiyun * 49*4882a593Smuzhiyun * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 50*4882a593Smuzhiyun * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 51*4882a593Smuzhiyun * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 52*4882a593Smuzhiyun * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 53*4882a593Smuzhiyun * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 54*4882a593Smuzhiyun * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 55*4882a593Smuzhiyun * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 56*4882a593Smuzhiyun * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 57*4882a593Smuzhiyun * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 58*4882a593Smuzhiyun * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 59*4882a593Smuzhiyun * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 60*4882a593Smuzhiyun *****************************************************************************/ 61*4882a593Smuzhiyun #ifndef __iwl_nvm_parse_h__ 62*4882a593Smuzhiyun #define __iwl_nvm_parse_h__ 63*4882a593Smuzhiyun 64*4882a593Smuzhiyun #include <net/cfg80211.h> 65*4882a593Smuzhiyun #include "iwl-eeprom-parse.h" 66*4882a593Smuzhiyun 67*4882a593Smuzhiyun /** 68*4882a593Smuzhiyun * enum iwl_nvm_sbands_flags - modification flags for the channel profiles 69*4882a593Smuzhiyun * 70*4882a593Smuzhiyun * @IWL_NVM_SBANDS_FLAGS_LAR: LAR is enabled 71*4882a593Smuzhiyun * @IWL_NVM_SBANDS_FLAGS_NO_WIDE_IN_5GHZ: disallow 40, 80 and 160MHz on 5GHz 72*4882a593Smuzhiyun */ 73*4882a593Smuzhiyun enum iwl_nvm_sbands_flags { 74*4882a593Smuzhiyun IWL_NVM_SBANDS_FLAGS_LAR = BIT(0), 75*4882a593Smuzhiyun IWL_NVM_SBANDS_FLAGS_NO_WIDE_IN_5GHZ = BIT(1), 76*4882a593Smuzhiyun }; 77*4882a593Smuzhiyun 78*4882a593Smuzhiyun /** 79*4882a593Smuzhiyun * iwl_parse_nvm_data - parse NVM data and return values 80*4882a593Smuzhiyun * 81*4882a593Smuzhiyun * This function parses all NVM values we need and then 82*4882a593Smuzhiyun * returns a (newly allocated) struct containing all the 83*4882a593Smuzhiyun * relevant values for driver use. The struct must be freed 84*4882a593Smuzhiyun * later with iwl_free_nvm_data(). 85*4882a593Smuzhiyun */ 86*4882a593Smuzhiyun struct iwl_nvm_data * 87*4882a593Smuzhiyun iwl_parse_nvm_data(struct iwl_trans *trans, const struct iwl_cfg *cfg, 88*4882a593Smuzhiyun const struct iwl_fw *fw, 89*4882a593Smuzhiyun const __be16 *nvm_hw, const __le16 *nvm_sw, 90*4882a593Smuzhiyun const __le16 *nvm_calib, const __le16 *regulatory, 91*4882a593Smuzhiyun const __le16 *mac_override, const __le16 *phy_sku, 92*4882a593Smuzhiyun u8 tx_chains, u8 rx_chains); 93*4882a593Smuzhiyun 94*4882a593Smuzhiyun /** 95*4882a593Smuzhiyun * iwl_parse_mcc_info - parse MCC (mobile country code) info coming from FW 96*4882a593Smuzhiyun * 97*4882a593Smuzhiyun * This function parses the regulatory channel data received as a 98*4882a593Smuzhiyun * MCC_UPDATE_CMD command. It returns a newly allocation regulatory domain, 99*4882a593Smuzhiyun * to be fed into the regulatory core. In case the geo_info is set handle 100*4882a593Smuzhiyun * accordingly. An ERR_PTR is returned on error. 101*4882a593Smuzhiyun * If not given to the regulatory core, the user is responsible for freeing 102*4882a593Smuzhiyun * the regdomain returned here with kfree. 103*4882a593Smuzhiyun */ 104*4882a593Smuzhiyun struct ieee80211_regdomain * 105*4882a593Smuzhiyun iwl_parse_nvm_mcc_info(struct device *dev, const struct iwl_cfg *cfg, 106*4882a593Smuzhiyun int num_of_ch, __le32 *channels, u16 fw_mcc, 107*4882a593Smuzhiyun u16 geo_info, u16 cap, u8 resp_ver); 108*4882a593Smuzhiyun 109*4882a593Smuzhiyun /** 110*4882a593Smuzhiyun * struct iwl_nvm_section - describes an NVM section in memory. 111*4882a593Smuzhiyun * 112*4882a593Smuzhiyun * This struct holds an NVM section read from the NIC using NVM_ACCESS_CMD, 113*4882a593Smuzhiyun * and saved for later use by the driver. Not all NVM sections are saved 114*4882a593Smuzhiyun * this way, only the needed ones. 115*4882a593Smuzhiyun */ 116*4882a593Smuzhiyun struct iwl_nvm_section { 117*4882a593Smuzhiyun u16 length; 118*4882a593Smuzhiyun const u8 *data; 119*4882a593Smuzhiyun }; 120*4882a593Smuzhiyun 121*4882a593Smuzhiyun /** 122*4882a593Smuzhiyun * iwl_read_external_nvm - Reads external NVM from a file into nvm_sections 123*4882a593Smuzhiyun */ 124*4882a593Smuzhiyun int iwl_read_external_nvm(struct iwl_trans *trans, 125*4882a593Smuzhiyun const char *nvm_file_name, 126*4882a593Smuzhiyun struct iwl_nvm_section *nvm_sections); 127*4882a593Smuzhiyun void iwl_nvm_fixups(u32 hw_id, unsigned int section, u8 *data, 128*4882a593Smuzhiyun unsigned int len); 129*4882a593Smuzhiyun 130*4882a593Smuzhiyun /** 131*4882a593Smuzhiyun * iwl_get_nvm - retrieve NVM data from firmware 132*4882a593Smuzhiyun * 133*4882a593Smuzhiyun * Allocates a new iwl_nvm_data structure, fills it with 134*4882a593Smuzhiyun * NVM data, and returns it to caller. 135*4882a593Smuzhiyun */ 136*4882a593Smuzhiyun struct iwl_nvm_data *iwl_get_nvm(struct iwl_trans *trans, 137*4882a593Smuzhiyun const struct iwl_fw *fw); 138*4882a593Smuzhiyun #endif /* __iwl_nvm_parse_h__ */ 139