1e705c121SKalle Valo /****************************************************************************** 2e705c121SKalle Valo * 3e705c121SKalle Valo * This file is provided under a dual BSD/GPLv2 license. When using or 4e705c121SKalle Valo * redistributing this file, you may do so under either license. 5e705c121SKalle Valo * 6e705c121SKalle Valo * GPL LICENSE SUMMARY 7e705c121SKalle Valo * 8671bed3fSArik Nemtsov * Copyright(c) 2008 - 2015 Intel Corporation. All rights reserved. 929108495SSara Sharon * Copyright(c) 2016 - 2017 Intel Deutschland GmbH 102763bba6SHaim Dreyfuss * Copyright(c) 2018 - 2019 Intel Corporation 11e705c121SKalle Valo * 12e705c121SKalle Valo * This program is free software; you can redistribute it and/or modify 13e705c121SKalle Valo * it under the terms of version 2 of the GNU General Public License as 14e705c121SKalle Valo * published by the Free Software Foundation. 15e705c121SKalle Valo * 16e705c121SKalle Valo * This program is distributed in the hope that it will be useful, but 17e705c121SKalle Valo * WITHOUT ANY WARRANTY; without even the implied warranty of 18e705c121SKalle Valo * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 19e705c121SKalle Valo * General Public License for more details. 20e705c121SKalle Valo * 21e705c121SKalle Valo * The full GNU General Public License is included in this distribution 22e705c121SKalle Valo * in the file called COPYING. 23e705c121SKalle Valo * 24e705c121SKalle Valo * Contact Information: 25d01c5366SEmmanuel Grumbach * Intel Linux Wireless <linuxwifi@intel.com> 26e705c121SKalle Valo * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 27e705c121SKalle Valo * 28e705c121SKalle Valo * BSD LICENSE 29e705c121SKalle Valo * 30e705c121SKalle Valo * Copyright(c) 2005 - 2014 Intel Corporation. All rights reserved. 3129108495SSara Sharon * Copyright(c) 2016 - 2017 Intel Deutschland GmbH 322763bba6SHaim Dreyfuss * Copyright(c) 2018 - 2019 Intel Corporation 33e705c121SKalle Valo * All rights reserved. 34e705c121SKalle Valo * 35e705c121SKalle Valo * Redistribution and use in source and binary forms, with or without 36e705c121SKalle Valo * modification, are permitted provided that the following conditions 37e705c121SKalle Valo * are met: 38e705c121SKalle Valo * 39e705c121SKalle Valo * * Redistributions of source code must retain the above copyright 40e705c121SKalle Valo * notice, this list of conditions and the following disclaimer. 41e705c121SKalle Valo * * Redistributions in binary form must reproduce the above copyright 42e705c121SKalle Valo * notice, this list of conditions and the following disclaimer in 43e705c121SKalle Valo * the documentation and/or other materials provided with the 44e705c121SKalle Valo * distribution. 45e705c121SKalle Valo * * Neither the name Intel Corporation nor the names of its 46e705c121SKalle Valo * contributors may be used to endorse or promote products derived 47e705c121SKalle Valo * from this software without specific prior written permission. 48e705c121SKalle Valo * 49e705c121SKalle Valo * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 50e705c121SKalle Valo * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 51e705c121SKalle Valo * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 52e705c121SKalle Valo * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 53e705c121SKalle Valo * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 54e705c121SKalle Valo * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 55e705c121SKalle Valo * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 56e705c121SKalle Valo * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 57e705c121SKalle Valo * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 58e705c121SKalle Valo * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 59e705c121SKalle Valo * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 60e705c121SKalle Valo *****************************************************************************/ 61e705c121SKalle Valo #ifndef __iwl_nvm_parse_h__ 62e705c121SKalle Valo #define __iwl_nvm_parse_h__ 63e705c121SKalle Valo 64e705c121SKalle Valo #include <net/cfg80211.h> 65e705c121SKalle Valo #include "iwl-eeprom-parse.h" 66e705c121SKalle Valo 67e705c121SKalle Valo /** 684b82455cSLuca Coelho * enum iwl_nvm_sbands_flags - modification flags for the channel profiles 694b82455cSLuca Coelho * 704b82455cSLuca Coelho * @IWL_NVM_SBANDS_FLAGS_LAR: LAR is enabled 714b82455cSLuca Coelho * @IWL_NVM_SBANDS_FLAGS_NO_WIDE_IN_5GHZ: disallow 40, 80 and 160MHz on 5GHz 724b82455cSLuca Coelho */ 734b82455cSLuca Coelho enum iwl_nvm_sbands_flags { 744b82455cSLuca Coelho IWL_NVM_SBANDS_FLAGS_LAR = BIT(0), 754b82455cSLuca Coelho IWL_NVM_SBANDS_FLAGS_NO_WIDE_IN_5GHZ = BIT(1), 764b82455cSLuca Coelho }; 774b82455cSLuca Coelho 784b82455cSLuca Coelho /** 79e705c121SKalle Valo * iwl_parse_nvm_data - parse NVM data and return values 80e705c121SKalle Valo * 81e705c121SKalle Valo * This function parses all NVM values we need and then 82e705c121SKalle Valo * returns a (newly allocated) struct containing all the 83e705c121SKalle Valo * relevant values for driver use. The struct must be freed 84e705c121SKalle Valo * later with iwl_free_nvm_data(). 85e705c121SKalle Valo */ 86e705c121SKalle Valo struct iwl_nvm_data * 87afd5b170SSara Sharon iwl_parse_nvm_data(struct iwl_trans *trans, const struct iwl_cfg *cfg, 88*f06021a1SLuca Coelho const struct iwl_fw *fw, 898fe34b06SLuca Coelho const __be16 *nvm_hw, const __le16 *nvm_sw, 90e705c121SKalle Valo const __le16 *nvm_calib, const __le16 *regulatory, 91e705c121SKalle Valo const __le16 *mac_override, const __le16 *phy_sku, 92*f06021a1SLuca Coelho u8 tx_chains, u8 rx_chains); 93e705c121SKalle Valo 94e705c121SKalle Valo /** 95e705c121SKalle Valo * iwl_parse_mcc_info - parse MCC (mobile country code) info coming from FW 96e705c121SKalle Valo * 97e705c121SKalle Valo * This function parses the regulatory channel data received as a 98e705c121SKalle Valo * MCC_UPDATE_CMD command. It returns a newly allocation regulatory domain, 9977e30e10SHaim Dreyfuss * to be fed into the regulatory core. In case the geo_info is set handle 10077e30e10SHaim Dreyfuss * accordingly. An ERR_PTR is returned on error. 101e705c121SKalle Valo * If not given to the regulatory core, the user is responsible for freeing 102e705c121SKalle Valo * the regdomain returned here with kfree. 103e705c121SKalle Valo */ 104e705c121SKalle Valo struct ieee80211_regdomain * 105e705c121SKalle Valo iwl_parse_nvm_mcc_info(struct device *dev, const struct iwl_cfg *cfg, 10677e30e10SHaim Dreyfuss int num_of_ch, __le32 *channels, u16 fw_mcc, 1072763bba6SHaim Dreyfuss u16 geo_info, u16 cap); 108e705c121SKalle Valo 1099c4f7d51SShaul Triebitz /** 1109c4f7d51SShaul Triebitz * struct iwl_nvm_section - describes an NVM section in memory. 1119c4f7d51SShaul Triebitz * 1129c4f7d51SShaul Triebitz * This struct holds an NVM section read from the NIC using NVM_ACCESS_CMD, 1139c4f7d51SShaul Triebitz * and saved for later use by the driver. Not all NVM sections are saved 1149c4f7d51SShaul Triebitz * this way, only the needed ones. 1159c4f7d51SShaul Triebitz */ 1169c4f7d51SShaul Triebitz struct iwl_nvm_section { 1179c4f7d51SShaul Triebitz u16 length; 1189c4f7d51SShaul Triebitz const u8 *data; 1199c4f7d51SShaul Triebitz }; 1209c4f7d51SShaul Triebitz 1219c4f7d51SShaul Triebitz /** 1229c4f7d51SShaul Triebitz * iwl_read_external_nvm - Reads external NVM from a file into nvm_sections 1239c4f7d51SShaul Triebitz */ 1249c4f7d51SShaul Triebitz int iwl_read_external_nvm(struct iwl_trans *trans, 1259c4f7d51SShaul Triebitz const char *nvm_file_name, 1269c4f7d51SShaul Triebitz struct iwl_nvm_section *nvm_sections); 1279c4f7d51SShaul Triebitz void iwl_nvm_fixups(u32 hw_id, unsigned int section, u8 *data, 1289c4f7d51SShaul Triebitz unsigned int len); 1299c4f7d51SShaul Triebitz 1304c625c56SShaul Triebitz /** 1314c625c56SShaul Triebitz * iwl_get_nvm - retrieve NVM data from firmware 1324c625c56SShaul Triebitz * 1334c625c56SShaul Triebitz * Allocates a new iwl_nvm_data structure, fills it with 1344c625c56SShaul Triebitz * NVM data, and returns it to caller. 1354c625c56SShaul Triebitz */ 1364c625c56SShaul Triebitz struct iwl_nvm_data *iwl_get_nvm(struct iwl_trans *trans, 1374c625c56SShaul Triebitz const struct iwl_fw *fw); 138e705c121SKalle Valo #endif /* __iwl_nvm_parse_h__ */ 139