iwl-phy-db.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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) 2007 - 2012 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 LICENSE.GPL.
  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) 2005 - 2012 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 <linux/slab.h>
  64. #include <linux/string.h>
  65. #include "iwl-debug.h"
  66. #include "iwl-shared.h"
  67. #include "iwl-dev.h"
  68. #include "iwl-phy-db.h"
  69. #define CHANNEL_NUM_SIZE 4 /* num of channels in calib_ch size */
  70. struct iwl_phy_db *iwl_phy_db_init(struct iwl_shared *shrd)
  71. {
  72. struct iwl_phy_db *phy_db = kzalloc(sizeof(struct iwl_phy_db),
  73. GFP_KERNEL);
  74. if (!phy_db)
  75. return phy_db;
  76. phy_db->shrd = shrd;
  77. /* TODO: add default values of the phy db. */
  78. return phy_db;
  79. }
  80. /*
  81. * get phy db section: returns a pointer to a phy db section specified by
  82. * type and channel group id.
  83. */
  84. static struct iwl_phy_db_entry *
  85. iwl_phy_db_get_section(struct iwl_phy_db *phy_db,
  86. enum iwl_phy_db_section_type type,
  87. u16 chg_id)
  88. {
  89. if (!phy_db || type < 0 || type >= IWL_PHY_DB_MAX)
  90. return NULL;
  91. switch (type) {
  92. case IWL_PHY_DB_CFG:
  93. return &phy_db->cfg;
  94. case IWL_PHY_DB_CALIB_NCH:
  95. return &phy_db->calib_nch;
  96. case IWL_PHY_DB_CALIB_CH:
  97. return &phy_db->calib_ch;
  98. case IWL_PHY_DB_CALIB_CHG_PAPD:
  99. if (chg_id < 0 || chg_id >= IWL_NUM_PAPD_CH_GROUPS)
  100. return NULL;
  101. return &phy_db->calib_ch_group_papd[chg_id];
  102. case IWL_PHY_DB_CALIB_CHG_TXP:
  103. if (chg_id < 0 || chg_id >= IWL_NUM_TXP_CH_GROUPS)
  104. return NULL;
  105. return &phy_db->calib_ch_group_txp[chg_id];
  106. default:
  107. return NULL;
  108. }
  109. return NULL;
  110. }
  111. static void iwl_phy_db_free_section(struct iwl_phy_db *phy_db,
  112. enum iwl_phy_db_section_type type,
  113. u16 chg_id)
  114. {
  115. struct iwl_phy_db_entry *entry =
  116. iwl_phy_db_get_section(phy_db, type, chg_id);
  117. if (!entry)
  118. return;
  119. kfree(entry->data);
  120. entry->data = NULL;
  121. entry->size = 0;
  122. }
  123. void iwl_phy_db_free(struct iwl_phy_db *phy_db)
  124. {
  125. int i;
  126. if (!phy_db)
  127. return;
  128. iwl_phy_db_free_section(phy_db, IWL_PHY_DB_CFG, 0);
  129. iwl_phy_db_free_section(phy_db, IWL_PHY_DB_CALIB_NCH, 0);
  130. iwl_phy_db_free_section(phy_db, IWL_PHY_DB_CALIB_CH, 0);
  131. for (i = 0; i < IWL_NUM_PAPD_CH_GROUPS; i++)
  132. iwl_phy_db_free_section(phy_db, IWL_PHY_DB_CALIB_CHG_PAPD, i);
  133. for (i = 0; i < IWL_NUM_TXP_CH_GROUPS; i++)
  134. iwl_phy_db_free_section(phy_db, IWL_PHY_DB_CALIB_CHG_TXP, i);
  135. kfree(phy_db);
  136. }
  137. int iwl_phy_db_set_section(struct iwl_phy_db *phy_db,
  138. enum iwl_phy_db_section_type type, u8 *data,
  139. u16 size, gfp_t alloc_ctx)
  140. {
  141. struct iwl_phy_db_entry *entry;
  142. u16 chg_id = 0;
  143. if (!phy_db)
  144. return -EINVAL;
  145. if (type == IWL_PHY_DB_CALIB_CHG_PAPD ||
  146. type == IWL_PHY_DB_CALIB_CHG_TXP)
  147. chg_id = le16_to_cpup((__le16 *)data);
  148. entry = iwl_phy_db_get_section(phy_db, type, chg_id);
  149. if (!entry)
  150. return -EINVAL;
  151. kfree(entry->data);
  152. entry->data = kmemdup(data, size, alloc_ctx);
  153. if (!entry->data) {
  154. entry->size = 0;
  155. return -ENOMEM;
  156. }
  157. entry->size = size;
  158. if (type == IWL_PHY_DB_CALIB_CH) {
  159. phy_db->channel_num = le32_to_cpup((__le32 *)data);
  160. phy_db->channel_size =
  161. (size - CHANNEL_NUM_SIZE) / phy_db->channel_num;
  162. }
  163. return 0;
  164. }
  165. static int is_valid_channel(u16 ch_id)
  166. {
  167. if (ch_id <= 14 ||
  168. (36 <= ch_id && ch_id <= 64 && ch_id % 4 == 0) ||
  169. (100 <= ch_id && ch_id <= 140 && ch_id % 4 == 0) ||
  170. (145 <= ch_id && ch_id <= 165 && ch_id % 4 == 1))
  171. return 1;
  172. return 0;
  173. }
  174. static u8 ch_id_to_ch_index(u16 ch_id)
  175. {
  176. if (WARN_ON(!is_valid_channel(ch_id)))
  177. return 0xff;
  178. if (ch_id <= 14)
  179. return ch_id - 1;
  180. if (ch_id <= 64)
  181. return (ch_id + 20) / 4;
  182. if (ch_id <= 140)
  183. return (ch_id - 12) / 4;
  184. return (ch_id - 13) / 4;
  185. }
  186. static u16 channel_id_to_papd(u16 ch_id)
  187. {
  188. if (WARN_ON(!is_valid_channel(ch_id)))
  189. return 0xff;
  190. if (1 <= ch_id && ch_id <= 14)
  191. return 0;
  192. if (36 <= ch_id && ch_id <= 64)
  193. return 1;
  194. if (100 <= ch_id && ch_id <= 140)
  195. return 2;
  196. return 3;
  197. }
  198. static u16 channel_id_to_txp(struct iwl_phy_db *phy_db, u16 ch_id)
  199. {
  200. /* TODO David*/
  201. return 0;
  202. }
  203. int iwl_phy_db_get_section_data(struct iwl_phy_db *phy_db,
  204. enum iwl_phy_db_section_type type, u8 **data,
  205. u16 *size, u16 ch_id)
  206. {
  207. struct iwl_phy_db_entry *entry;
  208. u32 channel_num;
  209. u32 channel_size;
  210. u16 ch_group_id = 0;
  211. u16 index;
  212. if (!phy_db)
  213. return -EINVAL;
  214. /* find wanted channel group */
  215. if (type == IWL_PHY_DB_CALIB_CHG_PAPD)
  216. ch_group_id = channel_id_to_papd(ch_id);
  217. else if (type == IWL_PHY_DB_CALIB_CHG_TXP)
  218. ch_group_id = channel_id_to_txp(phy_db, ch_id);
  219. entry = iwl_phy_db_get_section(phy_db, type, ch_group_id);
  220. if (!entry)
  221. return -EINVAL;
  222. if (type == IWL_PHY_DB_CALIB_CH) {
  223. index = ch_id_to_ch_index(ch_id);
  224. channel_num = phy_db->channel_num;
  225. channel_size = phy_db->channel_size;
  226. if (index >= channel_num) {
  227. IWL_ERR(phy_db, "Wrong channel number %d", ch_id);
  228. return -EINVAL;
  229. }
  230. *data = entry->data + CHANNEL_NUM_SIZE + index * channel_size;
  231. *size = channel_size;
  232. } else {
  233. *data = entry->data;
  234. *size = entry->size;
  235. }
  236. return 0;
  237. }