iwlwifi: mvm: add rxf and txf to dump data
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl-fw-error-dump.h
CommitLineData
1bd3cbc1
EG
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.
8b4139dc 9 * Copyright(c) 2014 Intel Mobile Communications GmbH
1bd3cbc1
EG
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.
8b4139dc 35 * Copyright(c) 2014 Intel Mobile Communications GmbH
1bd3cbc1
EG
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
473ad712 74 * @IWL_FW_ERROR_DUMP_CSR: Control Status Registers - from offset 0
7b445f35 75 * @IWL_FW_ERROR_DUMP_RXF:
4d075007
JB
76 * @IWL_FW_ERROR_DUMP_TXCMD: last TX command data, structured as
77 * &struct iwl_fw_error_dump_txcmd packets
06ddbf5a
EG
78 * @IWL_FW_ERROR_DUMP_DEV_FW_INFO: struct %iwl_fw_error_dump_info
79 * info on the device / firmware.
c2d20201 80 * @IWL_FW_ERROR_DUMP_FW_MONITOR: firmware monitor
67c65f2c
EG
81 * @IWL_FW_ERROR_DUMP_PRPH: range of periphery registers - there can be several
82 * sections like this in a single file.
06d51e0d 83 * @IWL_FW_ERROR_DUMP_FH_REGS: range of FH registers
e06d8437 84 * @IWL_FW_ERROR_DUMP_MEM: chunk of memory
1bd3cbc1
EG
85 */
86enum iwl_fw_error_dump_type {
a549b296 87 /* 0 is deprecated */
473ad712 88 IWL_FW_ERROR_DUMP_CSR = 1,
7b445f35 89 IWL_FW_ERROR_DUMP_RXF = 2,
4d075007 90 IWL_FW_ERROR_DUMP_TXCMD = 3,
06ddbf5a 91 IWL_FW_ERROR_DUMP_DEV_FW_INFO = 4,
c2d20201 92 IWL_FW_ERROR_DUMP_FW_MONITOR = 5,
67c65f2c 93 IWL_FW_ERROR_DUMP_PRPH = 6,
06d51e0d
LK
94 IWL_FW_ERROR_DUMP_TXF = 7,
95 IWL_FW_ERROR_DUMP_FH_REGS = 8,
e06d8437 96 IWL_FW_ERROR_DUMP_MEM = 9,
1bd3cbc1
EG
97
98 IWL_FW_ERROR_DUMP_MAX,
99};
100
101/**
102 * struct iwl_fw_error_dump_data - data for one type
103 * @type: %enum iwl_fw_error_dump_type
d4849277
EG
104 * @len: the length starting from %data
105 * @data: the data itself
1bd3cbc1
EG
106 */
107struct iwl_fw_error_dump_data {
108 __le32 type;
109 __le32 len;
110 __u8 data[];
7b445f35 111} __packed;
1bd3cbc1
EG
112
113/**
114 * struct iwl_fw_error_dump_file - the layout of the header of the file
115 * @barker: must be %IWL_FW_ERROR_DUMP_BARKER
116 * @file_len: the length of all the file starting from %barker
117 * @data: array of %struct iwl_fw_error_dump_data
118 */
119struct iwl_fw_error_dump_file {
120 __le32 barker;
121 __le32 file_len;
122 u8 data[0];
7b445f35 123} __packed;
1bd3cbc1 124
4d075007
JB
125/**
126 * struct iwl_fw_error_dump_txcmd - TX command data
127 * @cmdlen: original length of command
128 * @caplen: captured length of command (may be less)
129 * @data: captured command data, @caplen bytes
130 */
131struct iwl_fw_error_dump_txcmd {
132 __le32 cmdlen;
133 __le32 caplen;
134 u8 data[];
135} __packed;
136
04fd2c28
LK
137/**
138 * struct iwl_fw_error_dump_fifo - RX/TX FIFO data
139 * @fifo_num: number of FIFO (starting from 0)
140 * @available_bytes: num of bytes available in FIFO (may be less than FIFO size)
141 * @wr_ptr: position of write pointer
142 * @rd_ptr: position of read pointer
143 * @fence_ptr: position of fence pointer
144 * @fence_mode: the current mode of the fence (before locking) -
145 * 0=follow RD pointer ; 1 = freeze
146 * @data: all of the FIFO's data
147 */
148struct iwl_fw_error_dump_fifo {
149 __le32 fifo_num;
150 __le32 available_bytes;
151 __le32 wr_ptr;
152 __le32 rd_ptr;
153 __le32 fence_ptr;
154 __le32 fence_mode;
155 u8 data[];
156} __packed;
157
06ddbf5a
EG
158enum iwl_fw_error_dump_family {
159 IWL_FW_ERROR_DUMP_FAMILY_7 = 7,
160 IWL_FW_ERROR_DUMP_FAMILY_8 = 8,
161};
162
163/**
164 * struct iwl_fw_error_dump_info - info on the device / firmware
165 * @device_family: the family of the device (7 / 8)
166 * @hw_step: the step of the device
167 * @fw_human_readable: human readable FW version
168 * @dev_human_readable: name of the device
169 * @bus_human_readable: name of the bus used
170 */
171struct iwl_fw_error_dump_info {
172 __le32 device_family;
173 __le32 hw_step;
174 u8 fw_human_readable[FW_VER_HUMAN_READABLE_SZ];
175 u8 dev_human_readable[64];
176 u8 bus_human_readable[8];
177} __packed;
178
c2d20201 179/**
c544e9c4 180 * struct iwl_fw_error_dump_fw_mon - FW monitor data
c2d20201
EG
181 * @fw_mon_wr_ptr: the position of the write pointer in the cyclic buffer
182 * @fw_mon_base_ptr: base pointer of the data
183 * @fw_mon_cycle_cnt: number of wrap arounds
184 * @reserved: for future use
185 * @data: captured data
186 */
c544e9c4 187struct iwl_fw_error_dump_fw_mon {
c2d20201
EG
188 __le32 fw_mon_wr_ptr;
189 __le32 fw_mon_base_ptr;
190 __le32 fw_mon_cycle_cnt;
191 __le32 reserved[3];
192 u8 data[];
193} __packed;
194
67c65f2c
EG
195/**
196 * struct iwl_fw_error_dump_prph - periphery registers data
197 * @prph_start: address of the first register in this chunk
198 * @data: the content of the registers
199 */
200struct iwl_fw_error_dump_prph {
201 __le32 prph_start;
202 __le32 data[];
203};
204
e06d8437
EG
205enum iwl_fw_error_dump_mem_type {
206 IWL_FW_ERROR_DUMP_MEM_SRAM,
207 IWL_FW_ERROR_DUMP_MEM_SMEM,
208};
209
210/**
211 * struct iwl_fw_error_dump_mem - chunk of memory
212 * @type: %enum iwl_fw_error_dump_mem_type
213 * @offset: the offset from which the memory was read
214 * @data: the content of the memory
215 */
216struct iwl_fw_error_dump_mem {
217 __le32 type;
218 __le32 offset;
219 u8 data[];
220};
221
4d075007 222/**
1fa16056 223 * iwl_fw_error_next_data - advance fw error dump data pointer
4d075007
JB
224 * @data: previous data block
225 * Returns: next data block
226 */
227static inline struct iwl_fw_error_dump_data *
1fa16056 228iwl_fw_error_next_data(struct iwl_fw_error_dump_data *data)
4d075007
JB
229{
230 return (void *)(data->data + le32_to_cpu(data->len));
231}
232
1bd3cbc1 233#endif /* __fw_error_dump_h__ */
This page took 0.081941 seconds and 5 git commands to generate.