debug.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  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 - 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) 2005 - 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. #ifndef __iwl_fw_api_debug_h__
  63. #define __iwl_fw_api_debug_h__
  64. /**
  65. * enum iwl_debug_cmds - debug commands
  66. */
  67. enum iwl_debug_cmds {
  68. /**
  69. * @LMAC_RD_WR:
  70. * LMAC memory read/write, using &struct iwl_dbg_mem_access_cmd and
  71. * &struct iwl_dbg_mem_access_rsp
  72. */
  73. LMAC_RD_WR = 0x0,
  74. /**
  75. * @UMAC_RD_WR:
  76. * UMAC memory read/write, using &struct iwl_dbg_mem_access_cmd and
  77. * &struct iwl_dbg_mem_access_rsp
  78. */
  79. UMAC_RD_WR = 0x1,
  80. /**
  81. * @MFU_ASSERT_DUMP_NTF:
  82. * &struct iwl_mfu_assert_dump_notif
  83. */
  84. MFU_ASSERT_DUMP_NTF = 0xFE,
  85. };
  86. /* Error response/notification */
  87. enum {
  88. FW_ERR_UNKNOWN_CMD = 0x0,
  89. FW_ERR_INVALID_CMD_PARAM = 0x1,
  90. FW_ERR_SERVICE = 0x2,
  91. FW_ERR_ARC_MEMORY = 0x3,
  92. FW_ERR_ARC_CODE = 0x4,
  93. FW_ERR_WATCH_DOG = 0x5,
  94. FW_ERR_WEP_GRP_KEY_INDX = 0x10,
  95. FW_ERR_WEP_KEY_SIZE = 0x11,
  96. FW_ERR_OBSOLETE_FUNC = 0x12,
  97. FW_ERR_UNEXPECTED = 0xFE,
  98. FW_ERR_FATAL = 0xFF
  99. };
  100. /**
  101. * struct iwl_error_resp - FW error indication
  102. * ( REPLY_ERROR = 0x2 )
  103. * @error_type: one of FW_ERR_*
  104. * @cmd_id: the command ID for which the error occurred
  105. * @reserved1: reserved
  106. * @bad_cmd_seq_num: sequence number of the erroneous command
  107. * @error_service: which service created the error, applicable only if
  108. * error_type = 2, otherwise 0
  109. * @timestamp: TSF in usecs.
  110. */
  111. struct iwl_error_resp {
  112. __le32 error_type;
  113. u8 cmd_id;
  114. u8 reserved1;
  115. __le16 bad_cmd_seq_num;
  116. __le32 error_service;
  117. __le64 timestamp;
  118. } __packed;
  119. #define TX_FIFO_MAX_NUM_9000 8
  120. #define TX_FIFO_MAX_NUM 15
  121. #define RX_FIFO_MAX_NUM 2
  122. #define TX_FIFO_INTERNAL_MAX_NUM 6
  123. /**
  124. * struct iwl_shared_mem_cfg_v2 - Shared memory configuration information
  125. *
  126. * @shared_mem_addr: shared memory addr (pre 8000 HW set to 0x0 as MARBH is not
  127. * accessible)
  128. * @shared_mem_size: shared memory size
  129. * @sample_buff_addr: internal sample (mon/adc) buff addr (pre 8000 HW set to
  130. * 0x0 as accessible only via DBGM RDAT)
  131. * @sample_buff_size: internal sample buff size
  132. * @txfifo_addr: start addr of TXF0 (excluding the context table 0.5KB), (pre
  133. * 8000 HW set to 0x0 as not accessible)
  134. * @txfifo_size: size of TXF0 ... TXF7
  135. * @rxfifo_size: RXF1, RXF2 sizes. If there is no RXF2, it'll have a value of 0
  136. * @page_buff_addr: used by UMAC and performance debug (page miss analysis),
  137. * when paging is not supported this should be 0
  138. * @page_buff_size: size of %page_buff_addr
  139. * @rxfifo_addr: Start address of rxFifo
  140. * @internal_txfifo_addr: start address of internalFifo
  141. * @internal_txfifo_size: internal fifos' size
  142. *
  143. * NOTE: on firmware that don't have IWL_UCODE_TLV_CAPA_EXTEND_SHARED_MEM_CFG
  144. * set, the last 3 members don't exist.
  145. */
  146. struct iwl_shared_mem_cfg_v2 {
  147. __le32 shared_mem_addr;
  148. __le32 shared_mem_size;
  149. __le32 sample_buff_addr;
  150. __le32 sample_buff_size;
  151. __le32 txfifo_addr;
  152. __le32 txfifo_size[TX_FIFO_MAX_NUM_9000];
  153. __le32 rxfifo_size[RX_FIFO_MAX_NUM];
  154. __le32 page_buff_addr;
  155. __le32 page_buff_size;
  156. __le32 rxfifo_addr;
  157. __le32 internal_txfifo_addr;
  158. __le32 internal_txfifo_size[TX_FIFO_INTERNAL_MAX_NUM];
  159. } __packed; /* SHARED_MEM_ALLOC_API_S_VER_2 */
  160. /**
  161. * struct iwl_shared_mem_lmac_cfg - LMAC shared memory configuration
  162. *
  163. * @txfifo_addr: start addr of TXF0 (excluding the context table 0.5KB)
  164. * @txfifo_size: size of TX FIFOs
  165. * @rxfifo1_addr: RXF1 addr
  166. * @rxfifo1_size: RXF1 size
  167. */
  168. struct iwl_shared_mem_lmac_cfg {
  169. __le32 txfifo_addr;
  170. __le32 txfifo_size[TX_FIFO_MAX_NUM];
  171. __le32 rxfifo1_addr;
  172. __le32 rxfifo1_size;
  173. } __packed; /* SHARED_MEM_ALLOC_LMAC_API_S_VER_1 */
  174. /**
  175. * struct iwl_shared_mem_cfg - Shared memory configuration information
  176. *
  177. * @shared_mem_addr: shared memory address
  178. * @shared_mem_size: shared memory size
  179. * @sample_buff_addr: internal sample (mon/adc) buff addr
  180. * @sample_buff_size: internal sample buff size
  181. * @rxfifo2_addr: start addr of RXF2
  182. * @rxfifo2_size: size of RXF2
  183. * @page_buff_addr: used by UMAC and performance debug (page miss analysis),
  184. * when paging is not supported this should be 0
  185. * @page_buff_size: size of %page_buff_addr
  186. * @lmac_num: number of LMACs (1 or 2)
  187. * @lmac_smem: per - LMAC smem data
  188. */
  189. struct iwl_shared_mem_cfg {
  190. __le32 shared_mem_addr;
  191. __le32 shared_mem_size;
  192. __le32 sample_buff_addr;
  193. __le32 sample_buff_size;
  194. __le32 rxfifo2_addr;
  195. __le32 rxfifo2_size;
  196. __le32 page_buff_addr;
  197. __le32 page_buff_size;
  198. __le32 lmac_num;
  199. struct iwl_shared_mem_lmac_cfg lmac_smem[2];
  200. } __packed; /* SHARED_MEM_ALLOC_API_S_VER_3 */
  201. /**
  202. * struct iwl_mfuart_load_notif - mfuart image version & status
  203. * ( MFUART_LOAD_NOTIFICATION = 0xb1 )
  204. * @installed_ver: installed image version
  205. * @external_ver: external image version
  206. * @status: MFUART loading status
  207. * @duration: MFUART loading time
  208. * @image_size: MFUART image size in bytes
  209. */
  210. struct iwl_mfuart_load_notif {
  211. __le32 installed_ver;
  212. __le32 external_ver;
  213. __le32 status;
  214. __le32 duration;
  215. /* image size valid only in v2 of the command */
  216. __le32 image_size;
  217. } __packed; /* MFU_LOADER_NTFY_API_S_VER_2 */
  218. /**
  219. * struct iwl_mfu_assert_dump_notif - mfuart dump logs
  220. * ( MFU_ASSERT_DUMP_NTF = 0xfe )
  221. * @assert_id: mfuart assert id that cause the notif
  222. * @curr_reset_num: number of asserts since uptime
  223. * @index_num: current chunk id
  224. * @parts_num: total number of chunks
  225. * @data_size: number of data bytes sent
  226. * @data: data buffer
  227. */
  228. struct iwl_mfu_assert_dump_notif {
  229. __le32 assert_id;
  230. __le32 curr_reset_num;
  231. __le16 index_num;
  232. __le16 parts_num;
  233. __le32 data_size;
  234. __le32 data[0];
  235. } __packed; /* MFU_DUMP_ASSERT_API_S_VER_1 */
  236. /**
  237. * enum iwl_mvm_marker_id - marker ids
  238. *
  239. * The ids for different type of markers to insert into the usniffer logs
  240. *
  241. * @MARKER_ID_TX_FRAME_LATENCY: TX latency marker
  242. * @MARKER_ID_SYNC_CLOCK: sync FW time and systime
  243. */
  244. enum iwl_mvm_marker_id {
  245. MARKER_ID_TX_FRAME_LATENCY = 1,
  246. MARKER_ID_SYNC_CLOCK = 2,
  247. }; /* MARKER_ID_API_E_VER_2 */
  248. /**
  249. * struct iwl_mvm_marker - mark info into the usniffer logs
  250. *
  251. * (MARKER_CMD = 0xcb)
  252. *
  253. * Mark the UTC time stamp into the usniffer logs together with additional
  254. * metadata, so the usniffer output can be parsed.
  255. * In the command response the ucode will return the GP2 time.
  256. *
  257. * @dw_len: The amount of dwords following this byte including this byte.
  258. * @marker_id: A unique marker id (iwl_mvm_marker_id).
  259. * @reserved: reserved.
  260. * @timestamp: in milliseconds since 1970-01-01 00:00:00 UTC
  261. * @metadata: additional meta data that will be written to the unsiffer log
  262. */
  263. struct iwl_mvm_marker {
  264. u8 dw_len;
  265. u8 marker_id;
  266. __le16 reserved;
  267. __le64 timestamp;
  268. __le32 metadata[0];
  269. } __packed; /* MARKER_API_S_VER_1 */
  270. /**
  271. * struct iwl_mvm_marker_rsp - Response to marker cmd
  272. *
  273. * @gp2: The gp2 clock value in the FW
  274. */
  275. struct iwl_mvm_marker_rsp {
  276. __le32 gp2;
  277. } __packed;
  278. /* Operation types for the debug mem access */
  279. enum {
  280. DEBUG_MEM_OP_READ = 0,
  281. DEBUG_MEM_OP_WRITE = 1,
  282. DEBUG_MEM_OP_WRITE_BYTES = 2,
  283. };
  284. #define DEBUG_MEM_MAX_SIZE_DWORDS 32
  285. /**
  286. * struct iwl_dbg_mem_access_cmd - Request the device to read/write memory
  287. * @op: DEBUG_MEM_OP_*
  288. * @addr: address to read/write from/to
  289. * @len: in dwords, to read/write
  290. * @data: for write opeations, contains the source buffer
  291. */
  292. struct iwl_dbg_mem_access_cmd {
  293. __le32 op;
  294. __le32 addr;
  295. __le32 len;
  296. __le32 data[];
  297. } __packed; /* DEBUG_(U|L)MAC_RD_WR_CMD_API_S_VER_1 */
  298. /* Status responses for the debug mem access */
  299. enum {
  300. DEBUG_MEM_STATUS_SUCCESS = 0x0,
  301. DEBUG_MEM_STATUS_FAILED = 0x1,
  302. DEBUG_MEM_STATUS_LOCKED = 0x2,
  303. DEBUG_MEM_STATUS_HIDDEN = 0x3,
  304. DEBUG_MEM_STATUS_LENGTH = 0x4,
  305. };
  306. /**
  307. * struct iwl_dbg_mem_access_rsp - Response to debug mem commands
  308. * @status: DEBUG_MEM_STATUS_*
  309. * @len: read dwords (0 for write operations)
  310. * @data: contains the read DWs
  311. */
  312. struct iwl_dbg_mem_access_rsp {
  313. __le32 status;
  314. __le32 len;
  315. __le32 data[];
  316. } __packed; /* DEBUG_(U|L)MAC_RD_WR_RSP_API_S_VER_1 */
  317. #define CONT_REC_COMMAND_SIZE 80
  318. #define ENABLE_CONT_RECORDING 0x15
  319. #define DISABLE_CONT_RECORDING 0x16
  320. /*
  321. * struct iwl_continuous_record_mode - recording mode
  322. */
  323. struct iwl_continuous_record_mode {
  324. __le16 enable_recording;
  325. } __packed;
  326. /*
  327. * struct iwl_continuous_record_cmd - enable/disable continuous recording
  328. */
  329. struct iwl_continuous_record_cmd {
  330. struct iwl_continuous_record_mode record_mode;
  331. u8 pad[CONT_REC_COMMAND_SIZE -
  332. sizeof(struct iwl_continuous_record_mode)];
  333. } __packed;
  334. #endif /* __iwl_fw_api_debug_h__ */