targaddrs.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. /*
  2. * Copyright (c) 2005-2011 Atheros Communications Inc.
  3. * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any
  6. * purpose with or without fee is hereby granted, provided that the above
  7. * copyright notice and this permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  10. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  11. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  12. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  13. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  14. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  15. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. #ifndef __TARGADDRS_H__
  18. #define __TARGADDRS_H__
  19. #include "hw.h"
  20. /*
  21. * xxx_HOST_INTEREST_ADDRESS is the address in Target RAM of the
  22. * host_interest structure. It must match the address of the _host_interest
  23. * symbol (see linker script).
  24. *
  25. * Host Interest is shared between Host and Target in order to coordinate
  26. * between the two, and is intended to remain constant (with additions only
  27. * at the end) across software releases.
  28. *
  29. * All addresses are available here so that it's possible to
  30. * write a single binary that works with all Target Types.
  31. * May be used in assembler code as well as C.
  32. */
  33. #define QCA988X_HOST_INTEREST_ADDRESS 0x00400800
  34. #define HOST_INTEREST_MAX_SIZE 0x200
  35. /*
  36. * These are items that the Host may need to access via BMI or via the
  37. * Diagnostic Window. The position of items in this structure must remain
  38. * constant across firmware revisions! Types for each item must be fixed
  39. * size across target and host platforms. More items may be added at the end.
  40. */
  41. struct host_interest {
  42. /*
  43. * Pointer to application-defined area, if any.
  44. * Set by Target application during startup.
  45. */
  46. u32 hi_app_host_interest; /* 0x00 */
  47. /* Pointer to register dump area, valid after Target crash. */
  48. u32 hi_failure_state; /* 0x04 */
  49. /* Pointer to debug logging header */
  50. u32 hi_dbglog_hdr; /* 0x08 */
  51. u32 hi_unused0c; /* 0x0c */
  52. /*
  53. * General-purpose flag bits, similar to SOC_OPTION_* flags.
  54. * Can be used by application rather than by OS.
  55. */
  56. u32 hi_option_flag; /* 0x10 */
  57. /*
  58. * Boolean that determines whether or not to
  59. * display messages on the serial port.
  60. */
  61. u32 hi_serial_enable; /* 0x14 */
  62. /* Start address of DataSet index, if any */
  63. u32 hi_dset_list_head; /* 0x18 */
  64. /* Override Target application start address */
  65. u32 hi_app_start; /* 0x1c */
  66. /* Clock and voltage tuning */
  67. u32 hi_skip_clock_init; /* 0x20 */
  68. u32 hi_core_clock_setting; /* 0x24 */
  69. u32 hi_cpu_clock_setting; /* 0x28 */
  70. u32 hi_system_sleep_setting; /* 0x2c */
  71. u32 hi_xtal_control_setting; /* 0x30 */
  72. u32 hi_pll_ctrl_setting_24ghz; /* 0x34 */
  73. u32 hi_pll_ctrl_setting_5ghz; /* 0x38 */
  74. u32 hi_ref_voltage_trim_setting; /* 0x3c */
  75. u32 hi_clock_info; /* 0x40 */
  76. /* Host uses BE CPU or not */
  77. u32 hi_be; /* 0x44 */
  78. u32 hi_stack; /* normal stack */ /* 0x48 */
  79. u32 hi_err_stack; /* error stack */ /* 0x4c */
  80. u32 hi_desired_cpu_speed_hz; /* 0x50 */
  81. /* Pointer to Board Data */
  82. u32 hi_board_data; /* 0x54 */
  83. /*
  84. * Indication of Board Data state:
  85. * 0: board data is not yet initialized.
  86. * 1: board data is initialized; unknown size
  87. * >1: number of bytes of initialized board data
  88. */
  89. u32 hi_board_data_initialized; /* 0x58 */
  90. u32 hi_dset_ram_index_table; /* 0x5c */
  91. u32 hi_desired_baud_rate; /* 0x60 */
  92. u32 hi_dbglog_config; /* 0x64 */
  93. u32 hi_end_ram_reserve_sz; /* 0x68 */
  94. u32 hi_mbox_io_block_sz; /* 0x6c */
  95. u32 hi_num_bpatch_streams; /* 0x70 -- unused */
  96. u32 hi_mbox_isr_yield_limit; /* 0x74 */
  97. u32 hi_refclk_hz; /* 0x78 */
  98. u32 hi_ext_clk_detected; /* 0x7c */
  99. u32 hi_dbg_uart_txpin; /* 0x80 */
  100. u32 hi_dbg_uart_rxpin; /* 0x84 */
  101. u32 hi_hci_uart_baud; /* 0x88 */
  102. u32 hi_hci_uart_pin_assignments; /* 0x8C */
  103. u32 hi_hci_uart_baud_scale_val; /* 0x90 */
  104. u32 hi_hci_uart_baud_step_val; /* 0x94 */
  105. u32 hi_allocram_start; /* 0x98 */
  106. u32 hi_allocram_sz; /* 0x9c */
  107. u32 hi_hci_bridge_flags; /* 0xa0 */
  108. u32 hi_hci_uart_support_pins; /* 0xa4 */
  109. u32 hi_hci_uart_pwr_mgmt_params; /* 0xa8 */
  110. /*
  111. * 0xa8 - [1]: 0 = UART FC active low, 1 = UART FC active high
  112. * [31:16]: wakeup timeout in ms
  113. */
  114. /* Pointer to extended board Data */
  115. u32 hi_board_ext_data; /* 0xac */
  116. u32 hi_board_ext_data_config; /* 0xb0 */
  117. /*
  118. * Bit [0] : valid
  119. * Bit[31:16: size
  120. */
  121. /*
  122. * hi_reset_flag is used to do some stuff when target reset.
  123. * such as restore app_start after warm reset or
  124. * preserve host Interest area, or preserve ROM data, literals etc.
  125. */
  126. u32 hi_reset_flag; /* 0xb4 */
  127. /* indicate hi_reset_flag is valid */
  128. u32 hi_reset_flag_valid; /* 0xb8 */
  129. u32 hi_hci_uart_pwr_mgmt_params_ext; /* 0xbc */
  130. /* 0xbc - [31:0]: idle timeout in ms */
  131. /* ACS flags */
  132. u32 hi_acs_flags; /* 0xc0 */
  133. u32 hi_console_flags; /* 0xc4 */
  134. u32 hi_nvram_state; /* 0xc8 */
  135. u32 hi_option_flag2; /* 0xcc */
  136. /* If non-zero, override values sent to Host in WMI_READY event. */
  137. u32 hi_sw_version_override; /* 0xd0 */
  138. u32 hi_abi_version_override; /* 0xd4 */
  139. /*
  140. * Percentage of high priority RX traffic to total expected RX traffic
  141. * applicable only to ar6004
  142. */
  143. u32 hi_hp_rx_traffic_ratio; /* 0xd8 */
  144. /* test applications flags */
  145. u32 hi_test_apps_related; /* 0xdc */
  146. /* location of test script */
  147. u32 hi_ota_testscript; /* 0xe0 */
  148. /* location of CAL data */
  149. u32 hi_cal_data; /* 0xe4 */
  150. /* Number of packet log buffers */
  151. u32 hi_pktlog_num_buffers; /* 0xe8 */
  152. /* wow extension configuration */
  153. u32 hi_wow_ext_config; /* 0xec */
  154. u32 hi_pwr_save_flags; /* 0xf0 */
  155. /* Spatial Multiplexing Power Save (SMPS) options */
  156. u32 hi_smps_options; /* 0xf4 */
  157. /* Interconnect-specific state */
  158. u32 hi_interconnect_state; /* 0xf8 */
  159. /* Coex configuration flags */
  160. u32 hi_coex_config; /* 0xfc */
  161. /* Early allocation support */
  162. u32 hi_early_alloc; /* 0x100 */
  163. /* FW swap field */
  164. /*
  165. * Bits of this 32bit word will be used to pass specific swap
  166. * instruction to FW
  167. */
  168. /*
  169. * Bit 0 -- AP Nart descriptor no swap. When this bit is set
  170. * FW will not swap TX descriptor. Meaning packets are formed
  171. * on the target processor.
  172. */
  173. /* Bit 1 - unused */
  174. u32 hi_fw_swap; /* 0x104 */
  175. } __packed;
  176. #define HI_ITEM(item) offsetof(struct host_interest, item)
  177. /* Bits defined in hi_option_flag */
  178. /* Enable timer workaround */
  179. #define HI_OPTION_TIMER_WAR 0x01
  180. /* Limit BMI command credits */
  181. #define HI_OPTION_BMI_CRED_LIMIT 0x02
  182. /* Relay Dot11 hdr to/from host */
  183. #define HI_OPTION_RELAY_DOT11_HDR 0x04
  184. /* MAC addr method 0-locally administred 1-globally unique addrs */
  185. #define HI_OPTION_MAC_ADDR_METHOD 0x08
  186. /* Firmware Bridging */
  187. #define HI_OPTION_FW_BRIDGE 0x10
  188. /* Enable CPU profiling */
  189. #define HI_OPTION_ENABLE_PROFILE 0x20
  190. /* Disable debug logging */
  191. #define HI_OPTION_DISABLE_DBGLOG 0x40
  192. /* Skip Era Tracking */
  193. #define HI_OPTION_SKIP_ERA_TRACKING 0x80
  194. /* Disable PAPRD (debug) */
  195. #define HI_OPTION_PAPRD_DISABLE 0x100
  196. #define HI_OPTION_NUM_DEV_LSB 0x200
  197. #define HI_OPTION_NUM_DEV_MSB 0x800
  198. #define HI_OPTION_DEV_MODE_LSB 0x1000
  199. #define HI_OPTION_DEV_MODE_MSB 0x8000000
  200. /* Disable LowFreq Timer Stabilization */
  201. #define HI_OPTION_NO_LFT_STBL 0x10000000
  202. /* Skip regulatory scan */
  203. #define HI_OPTION_SKIP_REG_SCAN 0x20000000
  204. /*
  205. * Do regulatory scan during init before
  206. * sending WMI ready event to host
  207. */
  208. #define HI_OPTION_INIT_REG_SCAN 0x40000000
  209. /* REV6: Do not adjust memory map */
  210. #define HI_OPTION_SKIP_MEMMAP 0x80000000
  211. #define HI_OPTION_MAC_ADDR_METHOD_SHIFT 3
  212. /* 2 bits of hi_option_flag are used to represent 3 modes */
  213. #define HI_OPTION_FW_MODE_IBSS 0x0 /* IBSS Mode */
  214. #define HI_OPTION_FW_MODE_BSS_STA 0x1 /* STA Mode */
  215. #define HI_OPTION_FW_MODE_AP 0x2 /* AP Mode */
  216. #define HI_OPTION_FW_MODE_BT30AMP 0x3 /* BT30 AMP Mode */
  217. /* 2 bits of hi_option flag are usedto represent 4 submodes */
  218. #define HI_OPTION_FW_SUBMODE_NONE 0x0 /* Normal mode */
  219. #define HI_OPTION_FW_SUBMODE_P2PDEV 0x1 /* p2p device mode */
  220. #define HI_OPTION_FW_SUBMODE_P2PCLIENT 0x2 /* p2p client mode */
  221. #define HI_OPTION_FW_SUBMODE_P2PGO 0x3 /* p2p go mode */
  222. /* Num dev Mask */
  223. #define HI_OPTION_NUM_DEV_MASK 0x7
  224. #define HI_OPTION_NUM_DEV_SHIFT 0x9
  225. /* firmware bridging */
  226. #define HI_OPTION_FW_BRIDGE_SHIFT 0x04
  227. /*
  228. Fw Mode/SubMode Mask
  229. |-----------------------------------------------------------------------------|
  230. | SUB | SUB | SUB | SUB | | | | |
  231. |MODE[3] | MODE[2] | MODE[1] | MODE[0] | MODE[3] | MODE[2] | MODE[1] | MODE[0]|
  232. | (2) | (2) | (2) | (2) | (2) | (2) | (2) | (2) |
  233. |-----------------------------------------------------------------------------|
  234. */
  235. #define HI_OPTION_FW_MODE_BITS 0x2
  236. #define HI_OPTION_FW_MODE_MASK 0x3
  237. #define HI_OPTION_FW_MODE_SHIFT 0xC
  238. #define HI_OPTION_ALL_FW_MODE_MASK 0xFF
  239. #define HI_OPTION_FW_SUBMODE_BITS 0x2
  240. #define HI_OPTION_FW_SUBMODE_MASK 0x3
  241. #define HI_OPTION_FW_SUBMODE_SHIFT 0x14
  242. #define HI_OPTION_ALL_FW_SUBMODE_MASK 0xFF00
  243. #define HI_OPTION_ALL_FW_SUBMODE_SHIFT 0x8
  244. /* hi_option_flag2 options */
  245. #define HI_OPTION_OFFLOAD_AMSDU 0x01
  246. #define HI_OPTION_DFS_SUPPORT 0x02 /* Enable DFS support */
  247. #define HI_OPTION_ENABLE_RFKILL 0x04 /* RFKill Enable Feature*/
  248. #define HI_OPTION_RADIO_RETENTION_DISABLE 0x08 /* Disable radio retention */
  249. #define HI_OPTION_EARLY_CFG_DONE 0x10 /* Early configuration is complete */
  250. #define HI_OPTION_RF_KILL_SHIFT 0x2
  251. #define HI_OPTION_RF_KILL_MASK 0x1
  252. /* hi_reset_flag */
  253. /* preserve App Start address */
  254. #define HI_RESET_FLAG_PRESERVE_APP_START 0x01
  255. /* preserve host interest */
  256. #define HI_RESET_FLAG_PRESERVE_HOST_INTEREST 0x02
  257. /* preserve ROM data */
  258. #define HI_RESET_FLAG_PRESERVE_ROMDATA 0x04
  259. #define HI_RESET_FLAG_PRESERVE_NVRAM_STATE 0x08
  260. #define HI_RESET_FLAG_PRESERVE_BOOT_INFO 0x10
  261. #define HI_RESET_FLAG_WARM_RESET 0x20
  262. /* define hi_fw_swap bits */
  263. #define HI_DESC_IN_FW_BIT 0x01
  264. /* indicate the reset flag is valid */
  265. #define HI_RESET_FLAG_IS_VALID 0x12345678
  266. /* ACS is enabled */
  267. #define HI_ACS_FLAGS_ENABLED (1 << 0)
  268. /* Use physical WWAN device */
  269. #define HI_ACS_FLAGS_USE_WWAN (1 << 1)
  270. /* Use test VAP */
  271. #define HI_ACS_FLAGS_TEST_VAP (1 << 2)
  272. /*
  273. * CONSOLE FLAGS
  274. *
  275. * Bit Range Meaning
  276. * --------- --------------------------------
  277. * 2..0 UART ID (0 = Default)
  278. * 3 Baud Select (0 = 9600, 1 = 115200)
  279. * 30..4 Reserved
  280. * 31 Enable Console
  281. *
  282. */
  283. #define HI_CONSOLE_FLAGS_ENABLE (1 << 31)
  284. #define HI_CONSOLE_FLAGS_UART_MASK (0x7)
  285. #define HI_CONSOLE_FLAGS_UART_SHIFT 0
  286. #define HI_CONSOLE_FLAGS_BAUD_SELECT (1 << 3)
  287. /* SM power save options */
  288. #define HI_SMPS_ALLOW_MASK (0x00000001)
  289. #define HI_SMPS_MODE_MASK (0x00000002)
  290. #define HI_SMPS_MODE_STATIC (0x00000000)
  291. #define HI_SMPS_MODE_DYNAMIC (0x00000002)
  292. #define HI_SMPS_DISABLE_AUTO_MODE (0x00000004)
  293. #define HI_SMPS_DATA_THRESH_MASK (0x000007f8)
  294. #define HI_SMPS_DATA_THRESH_SHIFT (3)
  295. #define HI_SMPS_RSSI_THRESH_MASK (0x0007f800)
  296. #define HI_SMPS_RSSI_THRESH_SHIFT (11)
  297. #define HI_SMPS_LOWPWR_CM_MASK (0x00380000)
  298. #define HI_SMPS_LOWPWR_CM_SHIFT (15)
  299. #define HI_SMPS_HIPWR_CM_MASK (0x03c00000)
  300. #define HI_SMPS_HIPWR_CM_SHIFT (19)
  301. /*
  302. * WOW Extension configuration
  303. *
  304. * Bit Range Meaning
  305. * --------- --------------------------------
  306. * 8..0 Size of each WOW pattern (max 511)
  307. * 15..9 Number of patterns per list (max 127)
  308. * 17..16 Number of lists (max 4)
  309. * 30..18 Reserved
  310. * 31 Enabled
  311. *
  312. * set values (except enable) to zeros for default settings
  313. */
  314. #define HI_WOW_EXT_ENABLED_MASK (1 << 31)
  315. #define HI_WOW_EXT_NUM_LIST_SHIFT 16
  316. #define HI_WOW_EXT_NUM_LIST_MASK (0x3 << HI_WOW_EXT_NUM_LIST_SHIFT)
  317. #define HI_WOW_EXT_NUM_PATTERNS_SHIFT 9
  318. #define HI_WOW_EXT_NUM_PATTERNS_MASK (0x7F << HI_WOW_EXT_NUM_PATTERNS_SHIFT)
  319. #define HI_WOW_EXT_PATTERN_SIZE_SHIFT 0
  320. #define HI_WOW_EXT_PATTERN_SIZE_MASK (0x1FF << HI_WOW_EXT_PATTERN_SIZE_SHIFT)
  321. #define HI_WOW_EXT_MAKE_CONFIG(num_lists, count, size) \
  322. ((((num_lists) << HI_WOW_EXT_NUM_LIST_SHIFT) & \
  323. HI_WOW_EXT_NUM_LIST_MASK) | \
  324. (((count) << HI_WOW_EXT_NUM_PATTERNS_SHIFT) & \
  325. HI_WOW_EXT_NUM_PATTERNS_MASK) | \
  326. (((size) << HI_WOW_EXT_PATTERN_SIZE_SHIFT) & \
  327. HI_WOW_EXT_PATTERN_SIZE_MASK))
  328. #define HI_WOW_EXT_GET_NUM_LISTS(config) \
  329. (((config) & HI_WOW_EXT_NUM_LIST_MASK) >> HI_WOW_EXT_NUM_LIST_SHIFT)
  330. #define HI_WOW_EXT_GET_NUM_PATTERNS(config) \
  331. (((config) & HI_WOW_EXT_NUM_PATTERNS_MASK) >> \
  332. HI_WOW_EXT_NUM_PATTERNS_SHIFT)
  333. #define HI_WOW_EXT_GET_PATTERN_SIZE(config) \
  334. (((config) & HI_WOW_EXT_PATTERN_SIZE_MASK) >> \
  335. HI_WOW_EXT_PATTERN_SIZE_SHIFT)
  336. /*
  337. * Early allocation configuration
  338. * Support RAM bank configuration before BMI done and this eases the memory
  339. * allocation at very early stage
  340. * Bit Range Meaning
  341. * --------- ----------------------------------
  342. * [0:3] number of bank assigned to be IRAM
  343. * [4:15] reserved
  344. * [16:31] magic number
  345. *
  346. * Note:
  347. * 1. target firmware would check magic number and if it's a match, firmware
  348. * would consider the bits[0:15] are valid and base on that to calculate
  349. * the end of DRAM. Early allocation would be located at that area and
  350. * may be reclaimed when necesary
  351. * 2. if no magic number is found, early allocation would happen at "_end"
  352. * symbol of ROM which is located before the app-data and might NOT be
  353. * re-claimable. If this is adopted, link script should keep this in
  354. * mind to avoid data corruption.
  355. */
  356. #define HI_EARLY_ALLOC_MAGIC 0x6d8a
  357. #define HI_EARLY_ALLOC_MAGIC_MASK 0xffff0000
  358. #define HI_EARLY_ALLOC_MAGIC_SHIFT 16
  359. #define HI_EARLY_ALLOC_IRAM_BANKS_MASK 0x0000000f
  360. #define HI_EARLY_ALLOC_IRAM_BANKS_SHIFT 0
  361. #define HI_EARLY_ALLOC_VALID() \
  362. ((((HOST_INTEREST->hi_early_alloc) & HI_EARLY_ALLOC_MAGIC_MASK) >> \
  363. HI_EARLY_ALLOC_MAGIC_SHIFT) == (HI_EARLY_ALLOC_MAGIC))
  364. #define HI_EARLY_ALLOC_GET_IRAM_BANKS() \
  365. (((HOST_INTEREST->hi_early_alloc) & HI_EARLY_ALLOC_IRAM_BANKS_MASK) \
  366. >> HI_EARLY_ALLOC_IRAM_BANKS_SHIFT)
  367. /*power save flag bit definitions*/
  368. #define HI_PWR_SAVE_LPL_ENABLED 0x1
  369. /*b1-b3 reserved*/
  370. /*b4-b5 : dev0 LPL type : 0 - none
  371. 1- Reduce Pwr Search
  372. 2- Reduce Pwr Listen*/
  373. /*b6-b7 : dev1 LPL type and so on for Max 8 devices*/
  374. #define HI_PWR_SAVE_LPL_DEV0_LSB 4
  375. #define HI_PWR_SAVE_LPL_DEV_MASK 0x3
  376. /*power save related utility macros*/
  377. #define HI_LPL_ENABLED() \
  378. ((HOST_INTEREST->hi_pwr_save_flags & HI_PWR_SAVE_LPL_ENABLED))
  379. #define HI_DEV_LPL_TYPE_GET(_devix) \
  380. (HOST_INTEREST->hi_pwr_save_flags & ((HI_PWR_SAVE_LPL_DEV_MASK) << \
  381. (HI_PWR_SAVE_LPL_DEV0_LSB + (_devix)*2)))
  382. #define HOST_INTEREST_SMPS_IS_ALLOWED() \
  383. ((HOST_INTEREST->hi_smps_options & HI_SMPS_ALLOW_MASK))
  384. /* Reserve 1024 bytes for extended board data */
  385. #define QCA988X_BOARD_DATA_SZ 7168
  386. #define QCA988X_BOARD_EXT_DATA_SZ 0
  387. #define QCA6174_BOARD_DATA_SZ 8192
  388. #define QCA6174_BOARD_EXT_DATA_SZ 0
  389. #define QCA9377_BOARD_DATA_SZ QCA6174_BOARD_DATA_SZ
  390. #define QCA9377_BOARD_EXT_DATA_SZ 0
  391. #define QCA99X0_BOARD_DATA_SZ 12288
  392. #define QCA99X0_BOARD_EXT_DATA_SZ 0
  393. #endif /* __TARGADDRS_H__ */