1*e705c121SKalle Valo /****************************************************************************** 2*e705c121SKalle Valo * 3*e705c121SKalle Valo * This file is provided under a dual BSD/GPLv2 license. When using or 4*e705c121SKalle Valo * redistributing this file, you may do so under either license. 5*e705c121SKalle Valo * 6*e705c121SKalle Valo * GPL LICENSE SUMMARY 7*e705c121SKalle Valo * 8*e705c121SKalle Valo * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved. 9*e705c121SKalle Valo * 10*e705c121SKalle Valo * This program is free software; you can redistribute it and/or modify 11*e705c121SKalle Valo * it under the terms of version 2 of the GNU General Public License as 12*e705c121SKalle Valo * published by the Free Software Foundation. 13*e705c121SKalle Valo * 14*e705c121SKalle Valo * This program is distributed in the hope that it will be useful, but 15*e705c121SKalle Valo * WITHOUT ANY WARRANTY; without even the implied warranty of 16*e705c121SKalle Valo * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17*e705c121SKalle Valo * General Public License for more details. 18*e705c121SKalle Valo * 19*e705c121SKalle Valo * You should have received a copy of the GNU General Public License 20*e705c121SKalle Valo * along with this program; if not, write to the Free Software 21*e705c121SKalle Valo * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, 22*e705c121SKalle Valo * USA 23*e705c121SKalle Valo * 24*e705c121SKalle Valo * The full GNU General Public License is included in this distribution 25*e705c121SKalle Valo * in the file called COPYING. 26*e705c121SKalle Valo * 27*e705c121SKalle Valo * Contact Information: 28*e705c121SKalle Valo * Intel Linux Wireless <ilw@linux.intel.com> 29*e705c121SKalle Valo * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 30*e705c121SKalle Valo * 31*e705c121SKalle Valo * BSD LICENSE 32*e705c121SKalle Valo * 33*e705c121SKalle Valo * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved. 34*e705c121SKalle Valo * All rights reserved. 35*e705c121SKalle Valo * 36*e705c121SKalle Valo * Redistribution and use in source and binary forms, with or without 37*e705c121SKalle Valo * modification, are permitted provided that the following conditions 38*e705c121SKalle Valo * are met: 39*e705c121SKalle Valo * 40*e705c121SKalle Valo * * Redistributions of source code must retain the above copyright 41*e705c121SKalle Valo * notice, this list of conditions and the following disclaimer. 42*e705c121SKalle Valo * * Redistributions in binary form must reproduce the above copyright 43*e705c121SKalle Valo * notice, this list of conditions and the following disclaimer in 44*e705c121SKalle Valo * the documentation and/or other materials provided with the 45*e705c121SKalle Valo * distribution. 46*e705c121SKalle Valo * * Neither the name Intel Corporation nor the names of its 47*e705c121SKalle Valo * contributors may be used to endorse or promote products derived 48*e705c121SKalle Valo * from this software without specific prior written permission. 49*e705c121SKalle Valo * 50*e705c121SKalle Valo * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 51*e705c121SKalle Valo * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 52*e705c121SKalle Valo * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 53*e705c121SKalle Valo * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 54*e705c121SKalle Valo * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 55*e705c121SKalle Valo * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 56*e705c121SKalle Valo * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 57*e705c121SKalle Valo * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 58*e705c121SKalle Valo * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 59*e705c121SKalle Valo * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 60*e705c121SKalle Valo * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 61*e705c121SKalle Valo *****************************************************************************/ 62*e705c121SKalle Valo #ifndef __iwl_nvm_parse_h__ 63*e705c121SKalle Valo #define __iwl_nvm_parse_h__ 64*e705c121SKalle Valo 65*e705c121SKalle Valo #include <net/cfg80211.h> 66*e705c121SKalle Valo #include "iwl-eeprom-parse.h" 67*e705c121SKalle Valo 68*e705c121SKalle Valo /** 69*e705c121SKalle Valo * iwl_parse_nvm_data - parse NVM data and return values 70*e705c121SKalle Valo * 71*e705c121SKalle Valo * This function parses all NVM values we need and then 72*e705c121SKalle Valo * returns a (newly allocated) struct containing all the 73*e705c121SKalle Valo * relevant values for driver use. The struct must be freed 74*e705c121SKalle Valo * later with iwl_free_nvm_data(). 75*e705c121SKalle Valo */ 76*e705c121SKalle Valo struct iwl_nvm_data * 77*e705c121SKalle Valo iwl_parse_nvm_data(struct device *dev, const struct iwl_cfg *cfg, 78*e705c121SKalle Valo const __le16 *nvm_hw, const __le16 *nvm_sw, 79*e705c121SKalle Valo const __le16 *nvm_calib, const __le16 *regulatory, 80*e705c121SKalle Valo const __le16 *mac_override, const __le16 *phy_sku, 81*e705c121SKalle Valo u8 tx_chains, u8 rx_chains, bool lar_fw_supported, 82*e705c121SKalle Valo u32 mac_addr0, u32 mac_addr1, u32 hw_id); 83*e705c121SKalle Valo 84*e705c121SKalle Valo /** 85*e705c121SKalle Valo * iwl_parse_mcc_info - parse MCC (mobile country code) info coming from FW 86*e705c121SKalle Valo * 87*e705c121SKalle Valo * This function parses the regulatory channel data received as a 88*e705c121SKalle Valo * MCC_UPDATE_CMD command. It returns a newly allocation regulatory domain, 89*e705c121SKalle Valo * to be fed into the regulatory core. An ERR_PTR is returned on error. 90*e705c121SKalle Valo * If not given to the regulatory core, the user is responsible for freeing 91*e705c121SKalle Valo * the regdomain returned here with kfree. 92*e705c121SKalle Valo */ 93*e705c121SKalle Valo struct ieee80211_regdomain * 94*e705c121SKalle Valo iwl_parse_nvm_mcc_info(struct device *dev, const struct iwl_cfg *cfg, 95*e705c121SKalle Valo int num_of_ch, __le32 *channels, u16 fw_mcc); 96*e705c121SKalle Valo 97*e705c121SKalle Valo #endif /* __iwl_nvm_parse_h__ */ 98