nvm.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. /******************************************************************************
  2. *
  3. * This file is provided under a dual BSD/GPLv2 license. When using or
  4. * redistributing this file, you may do so under either license.
  5. *
  6. * GPL LICENSE SUMMARY
  7. *
  8. * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of version 2 of the GNU General Public License as
  12. * published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful, but
  15. * WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
  22. * USA
  23. *
  24. * The full GNU General Public License is included in this distribution
  25. * in the file called COPYING.
  26. *
  27. * Contact Information:
  28. * Intel Linux Wireless <ilw@linux.intel.com>
  29. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  30. *
  31. * BSD LICENSE
  32. *
  33. * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
  34. * All rights reserved.
  35. *
  36. * Redistribution and use in source and binary forms, with or without
  37. * modification, are permitted provided that the following conditions
  38. * are met:
  39. *
  40. * * Redistributions of source code must retain the above copyright
  41. * notice, this list of conditions and the following disclaimer.
  42. * * Redistributions in binary form must reproduce the above copyright
  43. * notice, this list of conditions and the following disclaimer in
  44. * the documentation and/or other materials provided with the
  45. * distribution.
  46. * * Neither the name Intel Corporation nor the names of its
  47. * contributors may be used to endorse or promote products derived
  48. * from this software without specific prior written permission.
  49. *
  50. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  51. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  52. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  53. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  54. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  55. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  56. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  57. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  58. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  59. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  60. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  61. *
  62. *****************************************************************************/
  63. #include "iwl-trans.h"
  64. #include "mvm.h"
  65. #include "iwl-eeprom-parse.h"
  66. #include "iwl-eeprom-read.h"
  67. #include "iwl-nvm-parse.h"
  68. /* list of NVM sections we are allowed/need to read */
  69. static const int nvm_to_read[] = {
  70. NVM_SECTION_TYPE_HW,
  71. NVM_SECTION_TYPE_SW,
  72. NVM_SECTION_TYPE_CALIBRATION,
  73. NVM_SECTION_TYPE_PRODUCTION,
  74. };
  75. /* Default NVM size to read */
  76. #define IWL_NVM_DEFAULT_CHUNK_SIZE (2*1024);
  77. static inline void iwl_nvm_fill_read(struct iwl_nvm_access_cmd *cmd,
  78. u16 offset, u16 length, u16 section)
  79. {
  80. cmd->offset = cpu_to_le16(offset);
  81. cmd->length = cpu_to_le16(length);
  82. cmd->type = cpu_to_le16(section);
  83. }
  84. static int iwl_nvm_read_chunk(struct iwl_mvm *mvm, u16 section,
  85. u16 offset, u16 length, u8 *data)
  86. {
  87. struct iwl_nvm_access_cmd nvm_access_cmd = {};
  88. struct iwl_nvm_access_resp *nvm_resp;
  89. struct iwl_rx_packet *pkt;
  90. struct iwl_host_cmd cmd = {
  91. .id = NVM_ACCESS_CMD,
  92. .flags = CMD_SYNC | CMD_WANT_SKB,
  93. .data = { &nvm_access_cmd, },
  94. };
  95. int ret, bytes_read, offset_read;
  96. u8 *resp_data;
  97. iwl_nvm_fill_read(&nvm_access_cmd, offset, length, section);
  98. cmd.len[0] = sizeof(struct iwl_nvm_access_cmd);
  99. ret = iwl_mvm_send_cmd(mvm, &cmd);
  100. if (ret)
  101. return ret;
  102. pkt = cmd.resp_pkt;
  103. if (pkt->hdr.flags & IWL_CMD_FAILED_MSK) {
  104. IWL_ERR(mvm, "Bad return from NVM_ACCES_COMMAND (0x%08X)\n",
  105. pkt->hdr.flags);
  106. ret = -EIO;
  107. goto exit;
  108. }
  109. /* Extract NVM response */
  110. nvm_resp = (void *)pkt->data;
  111. ret = le16_to_cpu(nvm_resp->status);
  112. bytes_read = le16_to_cpu(nvm_resp->length);
  113. offset_read = le16_to_cpu(nvm_resp->offset);
  114. resp_data = nvm_resp->data;
  115. if (ret) {
  116. IWL_ERR(mvm,
  117. "NVM access command failed with status %d (device: %s)\n",
  118. ret, mvm->cfg->name);
  119. ret = -EINVAL;
  120. goto exit;
  121. }
  122. if (offset_read != offset) {
  123. IWL_ERR(mvm, "NVM ACCESS response with invalid offset %d\n",
  124. offset_read);
  125. ret = -EINVAL;
  126. goto exit;
  127. }
  128. /* Write data to NVM */
  129. memcpy(data + offset, resp_data, bytes_read);
  130. ret = bytes_read;
  131. exit:
  132. iwl_free_resp(&cmd);
  133. return ret;
  134. }
  135. /*
  136. * Reads an NVM section completely.
  137. * NICs prior to 7000 family doesn't have a real NVM, but just read
  138. * section 0 which is the EEPROM. Because the EEPROM reading is unlimited
  139. * by uCode, we need to manually check in this case that we don't
  140. * overflow and try to read more than the EEPROM size.
  141. * For 7000 family NICs, we supply the maximal size we can read, and
  142. * the uCode fills the response with as much data as we can,
  143. * without overflowing, so no check is needed.
  144. */
  145. static int iwl_nvm_read_section(struct iwl_mvm *mvm, u16 section,
  146. u8 *data)
  147. {
  148. u16 length, offset = 0;
  149. int ret;
  150. /* Set nvm section read length */
  151. length = IWL_NVM_DEFAULT_CHUNK_SIZE;
  152. ret = length;
  153. /* Read the NVM until exhausted (reading less than requested) */
  154. while (ret == length) {
  155. ret = iwl_nvm_read_chunk(mvm, section, offset, length, data);
  156. if (ret < 0) {
  157. IWL_ERR(mvm,
  158. "Cannot read NVM from section %d offset %d, length %d\n",
  159. section, offset, length);
  160. return ret;
  161. }
  162. offset += ret;
  163. }
  164. IWL_INFO(mvm, "NVM section %d read completed\n", section);
  165. return offset;
  166. }
  167. static struct iwl_nvm_data *
  168. iwl_parse_nvm_sections(struct iwl_mvm *mvm)
  169. {
  170. struct iwl_nvm_section *sections = mvm->nvm_sections;
  171. const __le16 *hw, *sw, *calib;
  172. /* Checking for required sections */
  173. if (!mvm->nvm_sections[NVM_SECTION_TYPE_SW].data ||
  174. !mvm->nvm_sections[NVM_SECTION_TYPE_HW].data) {
  175. IWL_ERR(mvm, "Can't parse empty NVM sections\n");
  176. return NULL;
  177. }
  178. if (WARN_ON(!mvm->cfg))
  179. return NULL;
  180. hw = (const __le16 *)sections[NVM_SECTION_TYPE_HW].data;
  181. sw = (const __le16 *)sections[NVM_SECTION_TYPE_SW].data;
  182. calib = (const __le16 *)sections[NVM_SECTION_TYPE_CALIBRATION].data;
  183. return iwl_parse_nvm_data(mvm->trans->dev, mvm->cfg, hw, sw, calib);
  184. }
  185. int iwl_nvm_init(struct iwl_mvm *mvm)
  186. {
  187. int ret, i, section;
  188. u8 *nvm_buffer, *temp;
  189. /* TODO: find correct NVM max size for a section */
  190. nvm_buffer = kmalloc(mvm->cfg->base_params->eeprom_size,
  191. GFP_KERNEL);
  192. if (!nvm_buffer)
  193. return -ENOMEM;
  194. for (i = 0; i < ARRAY_SIZE(nvm_to_read); i++) {
  195. section = nvm_to_read[i];
  196. /* we override the constness for initial read */
  197. ret = iwl_nvm_read_section(mvm, section, nvm_buffer);
  198. if (ret < 0)
  199. break;
  200. temp = kmemdup(nvm_buffer, ret, GFP_KERNEL);
  201. if (!temp) {
  202. ret = -ENOMEM;
  203. break;
  204. }
  205. mvm->nvm_sections[section].data = temp;
  206. mvm->nvm_sections[section].length = ret;
  207. }
  208. kfree(nvm_buffer);
  209. if (ret < 0)
  210. return ret;
  211. ret = 0;
  212. mvm->nvm_data = iwl_parse_nvm_sections(mvm);
  213. return ret;
  214. }