smem.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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 - 2014 Intel Corporation. All rights reserved.
  9. * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
  10. * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of version 2 of the GNU General Public License as
  14. * published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * General Public License for more details.
  20. *
  21. * The full GNU General Public License is included in this distribution
  22. * in the file called COPYING.
  23. *
  24. * Contact Information:
  25. * Intel Linux Wireless <linuxwifi@intel.com>
  26. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  27. *
  28. * BSD LICENSE
  29. *
  30. * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
  31. * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
  32. * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
  33. * All rights reserved.
  34. *
  35. * Redistribution and use in source and binary forms, with or without
  36. * modification, are permitted provided that the following conditions
  37. * are met:
  38. *
  39. * * Redistributions of source code must retain the above copyright
  40. * notice, this list of conditions and the following disclaimer.
  41. * * Redistributions in binary form must reproduce the above copyright
  42. * notice, this list of conditions and the following disclaimer in
  43. * the documentation and/or other materials provided with the
  44. * distribution.
  45. * * Neither the name Intel Corporation nor the names of its
  46. * contributors may be used to endorse or promote products derived
  47. * from this software without specific prior written permission.
  48. *
  49. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  50. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  51. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  52. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  53. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  54. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  55. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  56. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  57. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  58. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  59. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  60. *
  61. *****************************************************************************/
  62. #include "iwl-drv.h"
  63. #include "runtime.h"
  64. #include "fw/api/commands.h"
  65. static void iwl_parse_shared_mem_22000(struct iwl_fw_runtime *fwrt,
  66. struct iwl_rx_packet *pkt)
  67. {
  68. struct iwl_shared_mem_cfg *mem_cfg = (void *)pkt->data;
  69. int i, lmac;
  70. int lmac_num = le32_to_cpu(mem_cfg->lmac_num);
  71. if (WARN_ON(lmac_num > ARRAY_SIZE(mem_cfg->lmac_smem)))
  72. return;
  73. fwrt->smem_cfg.num_lmacs = lmac_num;
  74. fwrt->smem_cfg.num_txfifo_entries =
  75. ARRAY_SIZE(mem_cfg->lmac_smem[0].txfifo_size);
  76. fwrt->smem_cfg.rxfifo2_size = le32_to_cpu(mem_cfg->rxfifo2_size);
  77. for (lmac = 0; lmac < lmac_num; lmac++) {
  78. struct iwl_shared_mem_lmac_cfg *lmac_cfg =
  79. &mem_cfg->lmac_smem[lmac];
  80. for (i = 0; i < ARRAY_SIZE(lmac_cfg->txfifo_size); i++)
  81. fwrt->smem_cfg.lmac[lmac].txfifo_size[i] =
  82. le32_to_cpu(lmac_cfg->txfifo_size[i]);
  83. fwrt->smem_cfg.lmac[lmac].rxfifo1_size =
  84. le32_to_cpu(lmac_cfg->rxfifo1_size);
  85. }
  86. }
  87. static void iwl_parse_shared_mem(struct iwl_fw_runtime *fwrt,
  88. struct iwl_rx_packet *pkt)
  89. {
  90. struct iwl_shared_mem_cfg_v2 *mem_cfg = (void *)pkt->data;
  91. int i;
  92. fwrt->smem_cfg.num_lmacs = 1;
  93. fwrt->smem_cfg.num_txfifo_entries = ARRAY_SIZE(mem_cfg->txfifo_size);
  94. for (i = 0; i < ARRAY_SIZE(mem_cfg->txfifo_size); i++)
  95. fwrt->smem_cfg.lmac[0].txfifo_size[i] =
  96. le32_to_cpu(mem_cfg->txfifo_size[i]);
  97. fwrt->smem_cfg.lmac[0].rxfifo1_size =
  98. le32_to_cpu(mem_cfg->rxfifo_size[0]);
  99. fwrt->smem_cfg.rxfifo2_size = le32_to_cpu(mem_cfg->rxfifo_size[1]);
  100. /* new API has more data, from rxfifo_addr field and on */
  101. if (fw_has_capa(&fwrt->fw->ucode_capa,
  102. IWL_UCODE_TLV_CAPA_EXTEND_SHARED_MEM_CFG)) {
  103. BUILD_BUG_ON(sizeof(fwrt->smem_cfg.internal_txfifo_size) !=
  104. sizeof(mem_cfg->internal_txfifo_size));
  105. fwrt->smem_cfg.internal_txfifo_addr =
  106. le32_to_cpu(mem_cfg->internal_txfifo_addr);
  107. for (i = 0;
  108. i < ARRAY_SIZE(fwrt->smem_cfg.internal_txfifo_size);
  109. i++)
  110. fwrt->smem_cfg.internal_txfifo_size[i] =
  111. le32_to_cpu(mem_cfg->internal_txfifo_size[i]);
  112. }
  113. }
  114. void iwl_get_shared_mem_conf(struct iwl_fw_runtime *fwrt)
  115. {
  116. struct iwl_host_cmd cmd = {
  117. .flags = CMD_WANT_SKB,
  118. .data = { NULL, },
  119. .len = { 0, },
  120. };
  121. struct iwl_rx_packet *pkt;
  122. if (fw_has_capa(&fwrt->fw->ucode_capa,
  123. IWL_UCODE_TLV_CAPA_EXTEND_SHARED_MEM_CFG))
  124. cmd.id = iwl_cmd_id(SHARED_MEM_CFG_CMD, SYSTEM_GROUP, 0);
  125. else
  126. cmd.id = SHARED_MEM_CFG;
  127. if (WARN_ON(iwl_trans_send_cmd(fwrt->trans, &cmd)))
  128. return;
  129. pkt = cmd.resp_pkt;
  130. if (fwrt->trans->cfg->device_family == IWL_DEVICE_FAMILY_22000)
  131. iwl_parse_shared_mem_22000(fwrt, pkt);
  132. else
  133. iwl_parse_shared_mem(fwrt, pkt);
  134. IWL_DEBUG_INFO(fwrt, "SHARED MEM CFG: got memory offsets/sizes\n");
  135. iwl_free_resp(&cmd);
  136. }
  137. IWL_EXPORT_SYMBOL(iwl_get_shared_mem_conf);