iwl-prph.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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) 2005 - 2007 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 Geeral 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. * James P. Ketrenos <ipw2100-admin@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 - 2007 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. #ifndef __iwl_prph_h__
  63. #define __iwl_prph_h__
  64. #define PRPH_BASE (0x00000)
  65. #define PRPH_END (0xFFFFF)
  66. /* APMG (power management) constants */
  67. #define APMG_BASE (PRPH_BASE + 0x3000)
  68. #define APMG_CLK_CTRL_REG (APMG_BASE + 0x0000)
  69. #define APMG_CLK_EN_REG (APMG_BASE + 0x0004)
  70. #define APMG_CLK_DIS_REG (APMG_BASE + 0x0008)
  71. #define APMG_PS_CTRL_REG (APMG_BASE + 0x000c)
  72. #define APMG_PCIDEV_STT_REG (APMG_BASE + 0x0010)
  73. #define APMG_RFKILL_REG (APMG_BASE + 0x0014)
  74. #define APMG_RTC_INT_STT_REG (APMG_BASE + 0x001c)
  75. #define APMG_RTC_INT_MSK_REG (APMG_BASE + 0x0020)
  76. #define APMG_CLK_VAL_DMA_CLK_RQT (0x00000200)
  77. #define APMG_CLK_VAL_BSM_CLK_RQT (0x00000800)
  78. #define APMG_PS_CTRL_VAL_RESET_REQ (0x04000000)
  79. #define APMG_PCIDEV_STT_VAL_L1_ACT_DIS (0x00000800)
  80. #define APMG_PS_CTRL_MSK_PWR_SRC (0x03000000)
  81. #define APMG_PS_CTRL_VAL_PWR_SRC_VMAIN (0x00000000)
  82. #define APMG_PS_CTRL_VAL_PWR_SRC_VAUX (0x01000000)
  83. /**
  84. * BSM (Bootstrap State Machine)
  85. *
  86. * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
  87. * in special SRAM that does not power down when the embedded control
  88. * processor is sleeping (e.g. for periodic power-saving shutdowns of radio).
  89. *
  90. * When powering back up after sleeps (or during initial uCode load), the BSM
  91. * internally loads the short bootstrap program from the special SRAM into the
  92. * embedded processor's instruction SRAM, and starts the processor so it runs
  93. * the bootstrap program.
  94. *
  95. * This bootstrap program loads (via PCI busmaster DMA) instructions and data
  96. * images for a uCode program from host DRAM locations. The host driver
  97. * indicates DRAM locations and sizes for instruction and data images via the
  98. * four BSM_DRAM_* registers. Once the bootstrap program loads the new program,
  99. * the new program starts automatically.
  100. *
  101. * The uCode used for open-source drivers includes two programs:
  102. *
  103. * 1) Initialization -- performs hardware calibration and sets up some
  104. * internal data, then notifies host via "initialize alive" notification
  105. * (struct iwl_init_alive_resp) that it has completed all of its work.
  106. * After signal from host, it then loads and starts the runtime program.
  107. * The initialization program must be used when initially setting up the
  108. * NIC after loading the driver.
  109. *
  110. * 2) Runtime/Protocol -- performs all normal runtime operations. This
  111. * notifies host via "alive" notification (struct iwl_alive_resp) that it
  112. * is ready to be used.
  113. *
  114. * When initializing the NIC, the host driver does the following procedure:
  115. *
  116. * 1) Load bootstrap program (instructions only, no data image for bootstrap)
  117. * into bootstrap memory. Use dword writes starting at BSM_SRAM_LOWER_BOUND
  118. *
  119. * 2) Point (via BSM_DRAM_*) to the "initialize" uCode data and instruction
  120. * images in host DRAM.
  121. *
  122. * 3) Set up BSM to copy from BSM SRAM into uCode instruction SRAM when asked:
  123. * BSM_WR_MEM_SRC_REG = 0
  124. * BSM_WR_MEM_DST_REG = RTC_INST_LOWER_BOUND
  125. * BSM_WR_MEM_DWCOUNT_REG = # dwords in bootstrap instruction image
  126. *
  127. * 4) Load bootstrap into instruction SRAM:
  128. * BSM_WR_CTRL_REG = BSM_WR_CTRL_REG_BIT_START
  129. *
  130. * 5) Wait for load completion:
  131. * Poll BSM_WR_CTRL_REG for BSM_WR_CTRL_REG_BIT_START = 0
  132. *
  133. * 6) Enable future boot loads whenever NIC's power management triggers it:
  134. * BSM_WR_CTRL_REG = BSM_WR_CTRL_REG_BIT_START_EN
  135. *
  136. * 7) Start the NIC by removing all reset bits:
  137. * CSR_RESET = 0
  138. *
  139. * The bootstrap uCode (already in instruction SRAM) loads initialization
  140. * uCode. Initialization uCode performs data initialization, sends
  141. * "initialize alive" notification to host, and waits for a signal from
  142. * host to load runtime code.
  143. *
  144. * 4) Point (via BSM_DRAM_*) to the "runtime" uCode data and instruction
  145. * images in host DRAM. The last register loaded must be the instruction
  146. * bytecount register ("1" in MSbit tells initialization uCode to load
  147. * the runtime uCode):
  148. * BSM_DRAM_INST_BYTECOUNT_REG = bytecount | BSM_DRAM_INST_LOAD
  149. *
  150. * 5) Wait for "alive" notification, then issue normal runtime commands.
  151. *
  152. * Data caching during power-downs:
  153. *
  154. * Just before the embedded controller powers down (e.g for automatic
  155. * power-saving modes, or for RFKILL), uCode stores (via PCI busmaster DMA)
  156. * a current snapshot of the embedded processor's data SRAM into host DRAM.
  157. * This caches the data while the embedded processor's memory is powered down.
  158. * Location and size are controlled by BSM_DRAM_DATA_* registers.
  159. *
  160. * NOTE: Instruction SRAM does not need to be saved, since that doesn't
  161. * change during operation; the original image (from uCode distribution
  162. * file) can be used for reload.
  163. *
  164. * When powering back up, the BSM loads the bootstrap program. Bootstrap looks
  165. * at the BSM_DRAM_* registers, which now point to the runtime instruction
  166. * image and the cached (modified) runtime data (*not* the initialization
  167. * uCode). Bootstrap reloads these runtime images into SRAM, and restarts the
  168. * uCode from where it left off before the power-down.
  169. *
  170. * NOTE: Initialization uCode does *not* run as part of the save/restore
  171. * procedure.
  172. *
  173. * This save/restore method is mostly for autonomous power management during
  174. * normal operation (result of POWER_TABLE_CMD). Platform suspend/resume and
  175. * RFKILL should use complete restarts (with total re-initialization) of uCode,
  176. * allowing total shutdown (including BSM memory).
  177. *
  178. * Note that, during normal operation, the host DRAM that held the initial
  179. * startup data for the runtime code is now being used as a backup data cache
  180. * for modified data! If you need to completely re-initialize the NIC, make
  181. * sure that you use the runtime data image from the uCode distribution file,
  182. * not the modified/saved runtime data. You may want to store a separate
  183. * "clean" runtime data image in DRAM to avoid disk reads of distribution file.
  184. */
  185. /* BSM bit fields */
  186. #define BSM_WR_CTRL_REG_BIT_START (0x80000000) /* start boot load now */
  187. #define BSM_WR_CTRL_REG_BIT_START_EN (0x40000000) /* enable boot after pwrup*/
  188. #define BSM_DRAM_INST_LOAD (0x80000000) /* start program load now */
  189. /* BSM addresses */
  190. #define BSM_BASE (PRPH_BASE + 0x3400)
  191. #define BSM_END (PRPH_BASE + 0x3800)
  192. #define BSM_WR_CTRL_REG (BSM_BASE + 0x000) /* ctl and status */
  193. #define BSM_WR_MEM_SRC_REG (BSM_BASE + 0x004) /* source in BSM mem */
  194. #define BSM_WR_MEM_DST_REG (BSM_BASE + 0x008) /* dest in SRAM mem */
  195. #define BSM_WR_DWCOUNT_REG (BSM_BASE + 0x00C) /* bytes */
  196. #define BSM_WR_STATUS_REG (BSM_BASE + 0x010) /* bit 0: 1 == done */
  197. /*
  198. * Pointers and size regs for bootstrap load and data SRAM save/restore.
  199. * NOTE: 3945 pointers use bits 31:0 of DRAM address.
  200. * 4965 pointers use bits 35:4 of DRAM address.
  201. */
  202. #define BSM_DRAM_INST_PTR_REG (BSM_BASE + 0x090)
  203. #define BSM_DRAM_INST_BYTECOUNT_REG (BSM_BASE + 0x094)
  204. #define BSM_DRAM_DATA_PTR_REG (BSM_BASE + 0x098)
  205. #define BSM_DRAM_DATA_BYTECOUNT_REG (BSM_BASE + 0x09C)
  206. /*
  207. * BSM special memory, stays powered on during power-save sleeps.
  208. * Read/write, address range from LOWER_BOUND to (LOWER_BOUND + SIZE -1)
  209. */
  210. #define BSM_SRAM_LOWER_BOUND (PRPH_BASE + 0x3800)
  211. #define BSM_SRAM_SIZE (1024) /* bytes */
  212. #endif /* __iwl_prph_h__ */