iwl-5000.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2007-2008 Intel Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
  17. *
  18. * The full GNU General Public License is included in this distribution in the
  19. * file called LICENSE.
  20. *
  21. * Contact Information:
  22. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  23. *
  24. *****************************************************************************/
  25. #include <linux/kernel.h>
  26. #include <linux/module.h>
  27. #include <linux/version.h>
  28. #include <linux/init.h>
  29. #include <linux/pci.h>
  30. #include <linux/dma-mapping.h>
  31. #include <linux/delay.h>
  32. #include <linux/skbuff.h>
  33. #include <linux/netdevice.h>
  34. #include <linux/wireless.h>
  35. #include <net/mac80211.h>
  36. #include <linux/etherdevice.h>
  37. #include <asm/unaligned.h>
  38. #include "iwl-eeprom.h"
  39. #include "iwl-4965.h"
  40. #include "iwl-core.h"
  41. #include "iwl-io.h"
  42. #include "iwl-helpers.h"
  43. #include "iwl-5000-hw.h"
  44. #define IWL5000_UCODE_API "-1"
  45. static int iwl5000_apm_init(struct iwl_priv *priv)
  46. {
  47. int ret = 0;
  48. iwl_set_bit(priv, CSR_GIO_CHICKEN_BITS,
  49. CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
  50. iwl_set_bit(priv, CSR_ANA_PLL_CFG, CSR50_ANA_PLL_CFG_VAL);
  51. /* set "initialization complete" bit to move adapter
  52. * D0U* --> D0A* state */
  53. iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
  54. /* wait for clock stabilization */
  55. ret = iwl_poll_bit(priv, CSR_GP_CNTRL,
  56. CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
  57. CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
  58. if (ret < 0) {
  59. IWL_DEBUG_INFO("Failed to init the card\n");
  60. return ret;
  61. }
  62. ret = iwl_grab_nic_access(priv);
  63. if (ret)
  64. return ret;
  65. /* enable DMA */
  66. iwl_write_prph(priv, APMG_CLK_EN_REG,
  67. APMG_CLK_VAL_DMA_CLK_RQT);
  68. udelay(20);
  69. iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
  70. APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
  71. iwl_release_nic_access(priv);
  72. return ret;
  73. }
  74. static struct iwl_hcmd_ops iwl5000_hcmd = {
  75. };
  76. static struct iwl_hcmd_utils_ops iwl5000_hcmd_utils = {
  77. };
  78. static struct iwl_lib_ops iwl5000_lib = {
  79. .apm_ops = {
  80. .init = iwl5000_apm_init,
  81. .set_pwr_src = iwl4965_set_pwr_src,
  82. },
  83. .eeprom_ops = {
  84. .verify_signature = iwlcore_eeprom_verify_signature,
  85. .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
  86. .release_semaphore = iwlcore_eeprom_release_semaphore,
  87. },
  88. };
  89. static struct iwl_ops iwl5000_ops = {
  90. .lib = &iwl5000_lib,
  91. .hcmd = &iwl5000_hcmd,
  92. .utils = &iwl5000_hcmd_utils,
  93. };
  94. static struct iwl_mod_params iwl50_mod_params = {
  95. .num_of_queues = IWL50_NUM_QUEUES,
  96. .enable_qos = 1,
  97. .amsdu_size_8K = 1,
  98. /* the rest are 0 by default */
  99. };
  100. struct iwl_cfg iwl5300_agn_cfg = {
  101. .name = "5300AGN",
  102. .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
  103. .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
  104. .ops = &iwl5000_ops,
  105. .mod_params = &iwl50_mod_params,
  106. };
  107. struct iwl_cfg iwl5100_agn_cfg = {
  108. .name = "5100AGN",
  109. .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
  110. .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
  111. .ops = &iwl5000_ops,
  112. .mod_params = &iwl50_mod_params,
  113. };
  114. struct iwl_cfg iwl5350_agn_cfg = {
  115. .name = "5350AGN",
  116. .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
  117. .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
  118. .ops = &iwl5000_ops,
  119. .mod_params = &iwl50_mod_params,
  120. };
  121. module_param_named(disable50, iwl50_mod_params.disable, int, 0444);
  122. MODULE_PARM_DESC(disable50,
  123. "manually disable the 50XX radio (default 0 [radio on])");
  124. module_param_named(swcrypto50, iwl50_mod_params.sw_crypto, bool, 0444);
  125. MODULE_PARM_DESC(swcrypto50,
  126. "using software crypto engine (default 0 [hardware])\n");
  127. module_param_named(debug50, iwl50_mod_params.debug, int, 0444);
  128. MODULE_PARM_DESC(debug50, "50XX debug output mask");
  129. module_param_named(queues_num50, iwl50_mod_params.num_of_queues, int, 0444);
  130. MODULE_PARM_DESC(queues_num50, "number of hw queues in 50xx series");
  131. module_param_named(qos_enable50, iwl50_mod_params.enable_qos, int, 0444);
  132. MODULE_PARM_DESC(qos_enable50, "enable all 50XX QoS functionality");
  133. module_param_named(amsdu_size_8K50, iwl50_mod_params.amsdu_size_8K, int, 0444);
  134. MODULE_PARM_DESC(amsdu_size_8K50, "enable 8K amsdu size in 50XX series");