Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 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) 2014 Intel Corporation. All rights reserved. |
Emmanuel Grumbach | 4203263 | 2015-04-15 12:43:46 +0300 | [diff] [blame] | 9 | * Copyright(c) 2014 - 2015 Intel Mobile Communications GmbH |
Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of version 2 of the GNU General Public License as |
| 13 | * published by the Free Software Foundation. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, but |
| 16 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, |
| 23 | * USA |
| 24 | * |
| 25 | * The full GNU General Public License is included in this distribution |
| 26 | * in the file called COPYING. |
| 27 | * |
| 28 | * Contact Information: |
| 29 | * Intel Linux Wireless <ilw@linux.intel.com> |
| 30 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 31 | * |
| 32 | * BSD LICENSE |
| 33 | * |
| 34 | * Copyright(c) 2014 Intel Corporation. All rights reserved. |
Emmanuel Grumbach | 4203263 | 2015-04-15 12:43:46 +0300 | [diff] [blame] | 35 | * Copyright(c) 2014 - 2015 Intel Mobile Communications GmbH |
Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 36 | * All rights reserved. |
| 37 | * |
| 38 | * Redistribution and use in source and binary forms, with or without |
| 39 | * modification, are permitted provided that the following conditions |
| 40 | * are met: |
| 41 | * |
| 42 | * * Redistributions of source code must retain the above copyright |
| 43 | * notice, this list of conditions and the following disclaimer. |
| 44 | * * Redistributions in binary form must reproduce the above copyright |
| 45 | * notice, this list of conditions and the following disclaimer in |
| 46 | * the documentation and/or other materials provided with the |
| 47 | * distribution. |
| 48 | * * Neither the name Intel Corporation nor the names of its |
| 49 | * contributors may be used to endorse or promote products derived |
| 50 | * from this software without specific prior written permission. |
| 51 | * |
| 52 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 53 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 54 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 55 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 56 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 57 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 58 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 59 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 60 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 61 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 62 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 63 | *****************************************************************************/ |
| 64 | |
| 65 | #ifndef __fw_error_dump_h__ |
| 66 | #define __fw_error_dump_h__ |
| 67 | |
| 68 | #include <linux/types.h> |
| 69 | |
| 70 | #define IWL_FW_ERROR_DUMP_BARKER 0x14789632 |
| 71 | |
| 72 | /** |
| 73 | * enum iwl_fw_error_dump_type - types of data in the dump file |
Emmanuel Grumbach | 473ad71 | 2014-07-08 19:44:25 +0300 | [diff] [blame] | 74 | * @IWL_FW_ERROR_DUMP_CSR: Control Status Registers - from offset 0 |
Emmanuel Grumbach | 7b445f3 | 2014-03-20 11:08:19 +0200 | [diff] [blame] | 75 | * @IWL_FW_ERROR_DUMP_RXF: |
Johannes Berg | 4d07500 | 2014-04-24 10:41:31 +0200 | [diff] [blame] | 76 | * @IWL_FW_ERROR_DUMP_TXCMD: last TX command data, structured as |
| 77 | * &struct iwl_fw_error_dump_txcmd packets |
Emmanuel Grumbach | 06ddbf5 | 2014-06-02 08:34:53 +0300 | [diff] [blame] | 78 | * @IWL_FW_ERROR_DUMP_DEV_FW_INFO: struct %iwl_fw_error_dump_info |
| 79 | * info on the device / firmware. |
Emmanuel Grumbach | c2d2020 | 2014-06-01 08:05:52 +0300 | [diff] [blame] | 80 | * @IWL_FW_ERROR_DUMP_FW_MONITOR: firmware monitor |
Emmanuel Grumbach | 67c65f2 | 2014-06-26 11:27:51 +0300 | [diff] [blame] | 81 | * @IWL_FW_ERROR_DUMP_PRPH: range of periphery registers - there can be several |
| 82 | * sections like this in a single file. |
Liad Kaufman | 06d51e0 | 2014-11-23 13:56:21 +0200 | [diff] [blame] | 83 | * @IWL_FW_ERROR_DUMP_FH_REGS: range of FH registers |
Emmanuel Grumbach | e06d843 | 2014-12-09 14:36:41 +0200 | [diff] [blame] | 84 | * @IWL_FW_ERROR_DUMP_MEM: chunk of memory |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 85 | * @IWL_FW_ERROR_DUMP_ERROR_INFO: description of what triggered this dump. |
| 86 | * Structured as &struct iwl_fw_error_dump_trigger_desc. |
Emmanuel Grumbach | bd7fc61 | 2015-07-15 23:15:08 +0300 | [diff] [blame^] | 87 | * @IWL_FW_ERROR_DUMP_RB: the content of an RB structured as |
| 88 | * &struct iwl_fw_error_dump_rb |
Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 89 | */ |
| 90 | enum iwl_fw_error_dump_type { |
Emmanuel Grumbach | a549b29 | 2014-12-09 14:47:57 +0200 | [diff] [blame] | 91 | /* 0 is deprecated */ |
Emmanuel Grumbach | 473ad71 | 2014-07-08 19:44:25 +0300 | [diff] [blame] | 92 | IWL_FW_ERROR_DUMP_CSR = 1, |
Emmanuel Grumbach | 7b445f3 | 2014-03-20 11:08:19 +0200 | [diff] [blame] | 93 | IWL_FW_ERROR_DUMP_RXF = 2, |
Johannes Berg | 4d07500 | 2014-04-24 10:41:31 +0200 | [diff] [blame] | 94 | IWL_FW_ERROR_DUMP_TXCMD = 3, |
Emmanuel Grumbach | 06ddbf5 | 2014-06-02 08:34:53 +0300 | [diff] [blame] | 95 | IWL_FW_ERROR_DUMP_DEV_FW_INFO = 4, |
Emmanuel Grumbach | c2d2020 | 2014-06-01 08:05:52 +0300 | [diff] [blame] | 96 | IWL_FW_ERROR_DUMP_FW_MONITOR = 5, |
Emmanuel Grumbach | 67c65f2 | 2014-06-26 11:27:51 +0300 | [diff] [blame] | 97 | IWL_FW_ERROR_DUMP_PRPH = 6, |
Liad Kaufman | 06d51e0 | 2014-11-23 13:56:21 +0200 | [diff] [blame] | 98 | IWL_FW_ERROR_DUMP_TXF = 7, |
| 99 | IWL_FW_ERROR_DUMP_FH_REGS = 8, |
Emmanuel Grumbach | e06d843 | 2014-12-09 14:36:41 +0200 | [diff] [blame] | 100 | IWL_FW_ERROR_DUMP_MEM = 9, |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 101 | IWL_FW_ERROR_DUMP_ERROR_INFO = 10, |
Emmanuel Grumbach | bd7fc61 | 2015-07-15 23:15:08 +0300 | [diff] [blame^] | 102 | IWL_FW_ERROR_DUMP_RB = 11, |
Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 103 | |
| 104 | IWL_FW_ERROR_DUMP_MAX, |
| 105 | }; |
| 106 | |
| 107 | /** |
| 108 | * struct iwl_fw_error_dump_data - data for one type |
| 109 | * @type: %enum iwl_fw_error_dump_type |
Emmanuel Grumbach | d484927 | 2014-06-24 14:34:28 +0300 | [diff] [blame] | 110 | * @len: the length starting from %data |
| 111 | * @data: the data itself |
Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 112 | */ |
| 113 | struct iwl_fw_error_dump_data { |
| 114 | __le32 type; |
| 115 | __le32 len; |
| 116 | __u8 data[]; |
Emmanuel Grumbach | 7b445f3 | 2014-03-20 11:08:19 +0200 | [diff] [blame] | 117 | } __packed; |
Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 118 | |
| 119 | /** |
| 120 | * struct iwl_fw_error_dump_file - the layout of the header of the file |
| 121 | * @barker: must be %IWL_FW_ERROR_DUMP_BARKER |
| 122 | * @file_len: the length of all the file starting from %barker |
| 123 | * @data: array of %struct iwl_fw_error_dump_data |
| 124 | */ |
| 125 | struct iwl_fw_error_dump_file { |
| 126 | __le32 barker; |
| 127 | __le32 file_len; |
| 128 | u8 data[0]; |
Emmanuel Grumbach | 7b445f3 | 2014-03-20 11:08:19 +0200 | [diff] [blame] | 129 | } __packed; |
Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 130 | |
Johannes Berg | 4d07500 | 2014-04-24 10:41:31 +0200 | [diff] [blame] | 131 | /** |
| 132 | * struct iwl_fw_error_dump_txcmd - TX command data |
| 133 | * @cmdlen: original length of command |
| 134 | * @caplen: captured length of command (may be less) |
| 135 | * @data: captured command data, @caplen bytes |
| 136 | */ |
| 137 | struct iwl_fw_error_dump_txcmd { |
| 138 | __le32 cmdlen; |
| 139 | __le32 caplen; |
| 140 | u8 data[]; |
| 141 | } __packed; |
| 142 | |
Liad Kaufman | 04fd2c2 | 2014-12-15 17:54:16 +0200 | [diff] [blame] | 143 | /** |
| 144 | * struct iwl_fw_error_dump_fifo - RX/TX FIFO data |
| 145 | * @fifo_num: number of FIFO (starting from 0) |
| 146 | * @available_bytes: num of bytes available in FIFO (may be less than FIFO size) |
| 147 | * @wr_ptr: position of write pointer |
| 148 | * @rd_ptr: position of read pointer |
| 149 | * @fence_ptr: position of fence pointer |
| 150 | * @fence_mode: the current mode of the fence (before locking) - |
| 151 | * 0=follow RD pointer ; 1 = freeze |
| 152 | * @data: all of the FIFO's data |
| 153 | */ |
| 154 | struct iwl_fw_error_dump_fifo { |
| 155 | __le32 fifo_num; |
| 156 | __le32 available_bytes; |
| 157 | __le32 wr_ptr; |
| 158 | __le32 rd_ptr; |
| 159 | __le32 fence_ptr; |
| 160 | __le32 fence_mode; |
| 161 | u8 data[]; |
| 162 | } __packed; |
| 163 | |
Emmanuel Grumbach | 06ddbf5 | 2014-06-02 08:34:53 +0300 | [diff] [blame] | 164 | enum iwl_fw_error_dump_family { |
| 165 | IWL_FW_ERROR_DUMP_FAMILY_7 = 7, |
| 166 | IWL_FW_ERROR_DUMP_FAMILY_8 = 8, |
| 167 | }; |
| 168 | |
| 169 | /** |
| 170 | * struct iwl_fw_error_dump_info - info on the device / firmware |
| 171 | * @device_family: the family of the device (7 / 8) |
| 172 | * @hw_step: the step of the device |
| 173 | * @fw_human_readable: human readable FW version |
| 174 | * @dev_human_readable: name of the device |
| 175 | * @bus_human_readable: name of the bus used |
| 176 | */ |
| 177 | struct iwl_fw_error_dump_info { |
| 178 | __le32 device_family; |
| 179 | __le32 hw_step; |
| 180 | u8 fw_human_readable[FW_VER_HUMAN_READABLE_SZ]; |
| 181 | u8 dev_human_readable[64]; |
| 182 | u8 bus_human_readable[8]; |
| 183 | } __packed; |
| 184 | |
Johannes Berg | 4d07500 | 2014-04-24 10:41:31 +0200 | [diff] [blame] | 185 | /** |
Emmanuel Grumbach | c544e9c | 2014-06-26 09:54:23 +0300 | [diff] [blame] | 186 | * struct iwl_fw_error_dump_fw_mon - FW monitor data |
Emmanuel Grumbach | c2d2020 | 2014-06-01 08:05:52 +0300 | [diff] [blame] | 187 | * @fw_mon_wr_ptr: the position of the write pointer in the cyclic buffer |
| 188 | * @fw_mon_base_ptr: base pointer of the data |
Sara Sharon | 0d365ae | 2015-03-31 12:24:05 +0300 | [diff] [blame] | 189 | * @fw_mon_cycle_cnt: number of wraparounds |
Emmanuel Grumbach | c2d2020 | 2014-06-01 08:05:52 +0300 | [diff] [blame] | 190 | * @reserved: for future use |
| 191 | * @data: captured data |
| 192 | */ |
Emmanuel Grumbach | c544e9c | 2014-06-26 09:54:23 +0300 | [diff] [blame] | 193 | struct iwl_fw_error_dump_fw_mon { |
Emmanuel Grumbach | c2d2020 | 2014-06-01 08:05:52 +0300 | [diff] [blame] | 194 | __le32 fw_mon_wr_ptr; |
| 195 | __le32 fw_mon_base_ptr; |
| 196 | __le32 fw_mon_cycle_cnt; |
| 197 | __le32 reserved[3]; |
| 198 | u8 data[]; |
| 199 | } __packed; |
| 200 | |
| 201 | /** |
Emmanuel Grumbach | 67c65f2 | 2014-06-26 11:27:51 +0300 | [diff] [blame] | 202 | * struct iwl_fw_error_dump_prph - periphery registers data |
| 203 | * @prph_start: address of the first register in this chunk |
| 204 | * @data: the content of the registers |
| 205 | */ |
| 206 | struct iwl_fw_error_dump_prph { |
| 207 | __le32 prph_start; |
| 208 | __le32 data[]; |
| 209 | }; |
| 210 | |
Emmanuel Grumbach | e06d843 | 2014-12-09 14:36:41 +0200 | [diff] [blame] | 211 | enum iwl_fw_error_dump_mem_type { |
| 212 | IWL_FW_ERROR_DUMP_MEM_SRAM, |
| 213 | IWL_FW_ERROR_DUMP_MEM_SMEM, |
| 214 | }; |
| 215 | |
| 216 | /** |
| 217 | * struct iwl_fw_error_dump_mem - chunk of memory |
| 218 | * @type: %enum iwl_fw_error_dump_mem_type |
| 219 | * @offset: the offset from which the memory was read |
| 220 | * @data: the content of the memory |
| 221 | */ |
| 222 | struct iwl_fw_error_dump_mem { |
| 223 | __le32 type; |
| 224 | __le32 offset; |
| 225 | u8 data[]; |
| 226 | }; |
| 227 | |
Emmanuel Grumbach | 67c65f2 | 2014-06-26 11:27:51 +0300 | [diff] [blame] | 228 | /** |
Emmanuel Grumbach | bd7fc61 | 2015-07-15 23:15:08 +0300 | [diff] [blame^] | 229 | * struct iwl_fw_error_dump_rb - content of an Receive Buffer |
| 230 | * @index: the index of the Receive Buffer in the Rx queue |
| 231 | * @rxq: the RB's Rx queue |
| 232 | * @reserved: |
| 233 | * @data: the content of the Receive Buffer |
| 234 | */ |
| 235 | struct iwl_fw_error_dump_rb { |
| 236 | __le32 index; |
| 237 | __le32 rxq; |
| 238 | __le32 reserved; |
| 239 | u8 data[]; |
| 240 | }; |
| 241 | |
| 242 | /** |
Emmanuel Grumbach | 1fa1605 | 2014-06-05 13:50:31 +0300 | [diff] [blame] | 243 | * iwl_fw_error_next_data - advance fw error dump data pointer |
Johannes Berg | 4d07500 | 2014-04-24 10:41:31 +0200 | [diff] [blame] | 244 | * @data: previous data block |
| 245 | * Returns: next data block |
| 246 | */ |
| 247 | static inline struct iwl_fw_error_dump_data * |
Emmanuel Grumbach | 1fa1605 | 2014-06-05 13:50:31 +0300 | [diff] [blame] | 248 | iwl_fw_error_next_data(struct iwl_fw_error_dump_data *data) |
Johannes Berg | 4d07500 | 2014-04-24 10:41:31 +0200 | [diff] [blame] | 249 | { |
| 250 | return (void *)(data->data + le32_to_cpu(data->len)); |
| 251 | } |
| 252 | |
Emmanuel Grumbach | d2709ad | 2015-01-29 14:58:06 +0200 | [diff] [blame] | 253 | /** |
| 254 | * enum iwl_fw_dbg_trigger - triggers available |
| 255 | * |
| 256 | * @FW_DBG_TRIGGER_USER: trigger log collection by user |
| 257 | * This should not be defined as a trigger to the driver, but a value the |
| 258 | * driver should set to indicate that the trigger was initiated by the |
| 259 | * user. |
| 260 | * @FW_DBG_TRIGGER_FW_ASSERT: trigger log collection when the firmware asserts |
Emmanuel Grumbach | 9d761fd | 2015-02-02 12:44:23 +0200 | [diff] [blame] | 261 | * @FW_DBG_TRIGGER_MISSED_BEACONS: trigger log collection when beacons are |
| 262 | * missed. |
Emmanuel Grumbach | f35d9c5 | 2015-02-10 10:49:51 +0200 | [diff] [blame] | 263 | * @FW_DBG_TRIGGER_CHANNEL_SWITCH: trigger log collection upon channel switch. |
Emmanuel Grumbach | 917f39b | 2015-02-10 10:49:20 +0200 | [diff] [blame] | 264 | * @FW_DBG_TRIGGER_FW_NOTIF: trigger log collection when the firmware sends a |
| 265 | * command response or a notification. |
Emmanuel Grumbach | d42f535 | 2015-02-10 14:29:48 +0200 | [diff] [blame] | 266 | * @FW_DBG_TRIGGER_MLME: trigger log collection upon MLME event. |
Emmanuel Grumbach | 5a756c2 | 2015-02-10 15:26:57 +0200 | [diff] [blame] | 267 | * @FW_DBG_TRIGGER_STATS: trigger log collection upon statistics threshold. |
Emmanuel Grumbach | 3ec50b5e | 2015-02-03 14:29:36 +0200 | [diff] [blame] | 268 | * @FW_DBG_TRIGGER_RSSI: trigger log collection when the rssi of the beacon |
| 269 | * goes below a threshold. |
Emmanuel Grumbach | 5d42e7b | 2015-03-19 20:04:51 +0200 | [diff] [blame] | 270 | * @FW_DBG_TRIGGER_TXQ_TIMERS: configures the timers for the Tx queue hang |
| 271 | * detection. |
Emmanuel Grumbach | 874c174 | 2015-03-25 22:40:47 +0200 | [diff] [blame] | 272 | * @FW_DBG_TRIGGER_TIME_EVENT: trigger log collection upon time events related |
| 273 | * events. |
Emmanuel Grumbach | 4203263 | 2015-04-15 12:43:46 +0300 | [diff] [blame] | 274 | * @FW_DBG_TRIGGER_BA: trigger log collection upon BlockAck related events. |
Emmanuel Grumbach | d2709ad | 2015-01-29 14:58:06 +0200 | [diff] [blame] | 275 | */ |
| 276 | enum iwl_fw_dbg_trigger { |
| 277 | FW_DBG_TRIGGER_INVALID = 0, |
| 278 | FW_DBG_TRIGGER_USER, |
| 279 | FW_DBG_TRIGGER_FW_ASSERT, |
Emmanuel Grumbach | 9d761fd | 2015-02-02 12:44:23 +0200 | [diff] [blame] | 280 | FW_DBG_TRIGGER_MISSED_BEACONS, |
Emmanuel Grumbach | f35d9c5 | 2015-02-10 10:49:51 +0200 | [diff] [blame] | 281 | FW_DBG_TRIGGER_CHANNEL_SWITCH, |
Emmanuel Grumbach | 917f39b | 2015-02-10 10:49:20 +0200 | [diff] [blame] | 282 | FW_DBG_TRIGGER_FW_NOTIF, |
Emmanuel Grumbach | d42f535 | 2015-02-10 14:29:48 +0200 | [diff] [blame] | 283 | FW_DBG_TRIGGER_MLME, |
Emmanuel Grumbach | 5a756c2 | 2015-02-10 15:26:57 +0200 | [diff] [blame] | 284 | FW_DBG_TRIGGER_STATS, |
Emmanuel Grumbach | 3ec50b5e | 2015-02-03 14:29:36 +0200 | [diff] [blame] | 285 | FW_DBG_TRIGGER_RSSI, |
Emmanuel Grumbach | 5d42e7b | 2015-03-19 20:04:51 +0200 | [diff] [blame] | 286 | FW_DBG_TRIGGER_TXQ_TIMERS, |
Emmanuel Grumbach | 874c174 | 2015-03-25 22:40:47 +0200 | [diff] [blame] | 287 | FW_DBG_TRIGGER_TIME_EVENT, |
Emmanuel Grumbach | 4203263 | 2015-04-15 12:43:46 +0300 | [diff] [blame] | 288 | FW_DBG_TRIGGER_BA, |
Emmanuel Grumbach | d2709ad | 2015-01-29 14:58:06 +0200 | [diff] [blame] | 289 | |
| 290 | /* must be last */ |
| 291 | FW_DBG_TRIGGER_MAX, |
| 292 | }; |
| 293 | |
Emmanuel Grumbach | b6eaa45 | 2015-01-29 14:58:20 +0200 | [diff] [blame] | 294 | /** |
| 295 | * struct iwl_fw_error_dump_trigger_desc - describes the trigger condition |
| 296 | * @type: %enum iwl_fw_dbg_trigger |
| 297 | * @data: raw data about what happened |
| 298 | */ |
| 299 | struct iwl_fw_error_dump_trigger_desc { |
| 300 | __le32 type; |
| 301 | u8 data[]; |
| 302 | }; |
| 303 | |
Emmanuel Grumbach | 1bd3cbc | 2014-03-18 21:15:06 +0200 | [diff] [blame] | 304 | #endif /* __fw_error_dump_h__ */ |