blob: a54e20e7b17f6f7dc7da6631ca610d6e95c12b70 [file] [log] [blame]
Cindy H. Kao4613e722011-05-06 10:40:15 -07001/******************************************************************************
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 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -08008 * Copyright(c) 2010 - 2012 Intel Corporation. All rights reserved.
Cindy H. Kao4613e722011-05-06 10:40:15 -07009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General 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 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
Wey-Yi Guy4e318262011-12-27 11:21:32 -080033 * Copyright(c) 2010 - 2012 Intel Corporation. All rights reserved.
Cindy H. Kao4613e722011-05-06 10:40:15 -070034 * 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 *****************************************************************************/
63#include <linux/init.h>
64#include <linux/kernel.h>
65#include <linux/module.h>
Emmanuel Grumbach522376d2011-09-06 09:31:19 -070066#include <linux/dma-mapping.h>
Cindy H. Kao4613e722011-05-06 10:40:15 -070067#include <net/net_namespace.h>
68#include <linux/netdevice.h>
69#include <net/cfg80211.h>
70#include <net/mac80211.h>
71#include <net/netlink.h>
72
Cindy H. Kao4613e722011-05-06 10:40:15 -070073#include "iwl-dev.h"
74#include "iwl-core.h"
75#include "iwl-debug.h"
Cindy H. Kao4613e722011-05-06 10:40:15 -070076#include "iwl-io.h"
77#include "iwl-agn.h"
78#include "iwl-testmode.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070079#include "iwl-trans.h"
Amit Beka6fe7dd02012-01-25 09:19:24 +020080#include "iwl-fh.h"
Johannes Bergeae63b82012-03-06 13:31:06 -080081#include "iwl-prph.h"
Cindy H. Kao4613e722011-05-06 10:40:15 -070082
Amit Beka6c55f5e2012-01-25 13:30:27 +020083
84/* Periphery registers absolute lower bound. This is used in order to
85 * differentiate registery access through HBUS_TARG_PRPH_* and
86 * HBUS_TARG_MEM_* accesses.
87 */
88#define IWL_TM_ABS_PRPH_START (0xA00000)
89
Cindy H. Kao4613e722011-05-06 10:40:15 -070090/* The TLVs used in the gnl message policy between the kernel module and
91 * user space application. iwl_testmode_gnl_msg_policy is to be carried
92 * through the NL80211_CMD_TESTMODE channel regulated by nl80211.
93 * See iwl-testmode.h
94 */
95static
96struct nla_policy iwl_testmode_gnl_msg_policy[IWL_TM_ATTR_MAX] = {
97 [IWL_TM_ATTR_COMMAND] = { .type = NLA_U32, },
98
99 [IWL_TM_ATTR_UCODE_CMD_ID] = { .type = NLA_U8, },
100 [IWL_TM_ATTR_UCODE_CMD_DATA] = { .type = NLA_UNSPEC, },
101
102 [IWL_TM_ATTR_REG_OFFSET] = { .type = NLA_U32, },
103 [IWL_TM_ATTR_REG_VALUE8] = { .type = NLA_U8, },
104 [IWL_TM_ATTR_REG_VALUE32] = { .type = NLA_U32, },
105
106 [IWL_TM_ATTR_SYNC_RSP] = { .type = NLA_UNSPEC, },
107 [IWL_TM_ATTR_UCODE_RX_PKT] = { .type = NLA_UNSPEC, },
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700108
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700109 [IWL_TM_ATTR_EEPROM] = { .type = NLA_UNSPEC, },
110
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700111 [IWL_TM_ATTR_TRACE_ADDR] = { .type = NLA_UNSPEC, },
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700112 [IWL_TM_ATTR_TRACE_DUMP] = { .type = NLA_UNSPEC, },
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700113 [IWL_TM_ATTR_TRACE_SIZE] = { .type = NLA_U32, },
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700114
Wey-Yi Guy64898542011-05-03 18:05:13 -0700115 [IWL_TM_ATTR_FIXRATE] = { .type = NLA_U32, },
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700116
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700117 [IWL_TM_ATTR_UCODE_OWNER] = { .type = NLA_U8, },
Hsu, Kenny306713f2011-11-22 23:03:39 -0800118
Amit Beka6c55f5e2012-01-25 13:30:27 +0200119 [IWL_TM_ATTR_MEM_ADDR] = { .type = NLA_U32, },
120 [IWL_TM_ATTR_BUFFER_SIZE] = { .type = NLA_U32, },
121 [IWL_TM_ATTR_BUFFER_DUMP] = { .type = NLA_UNSPEC, },
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800122
123 [IWL_TM_ATTR_FW_VERSION] = { .type = NLA_U32, },
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800124 [IWL_TM_ATTR_DEVICE_ID] = { .type = NLA_U32, },
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800125 [IWL_TM_ATTR_FW_TYPE] = { .type = NLA_U32, },
126 [IWL_TM_ATTR_FW_INST_SIZE] = { .type = NLA_U32, },
127 [IWL_TM_ATTR_FW_DATA_SIZE] = { .type = NLA_U32, },
Amit Beka0aef8dd2012-03-07 09:52:29 -0800128
129 [IWL_TM_ATTR_ENABLE_NOTIFICATION] = {.type = NLA_FLAG, },
Cindy H. Kao4613e722011-05-06 10:40:15 -0700130};
131
132/*
133 * See the struct iwl_rx_packet in iwl-commands.h for the format of the
134 * received events from the device
135 */
Johannes Berg48a2d662012-03-05 11:24:39 -0800136static inline int get_event_length(struct iwl_rx_cmd_buffer *rxb)
Cindy H. Kao4613e722011-05-06 10:40:15 -0700137{
138 struct iwl_rx_packet *pkt = rxb_addr(rxb);
139 if (pkt)
140 return le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
141 else
142 return 0;
143}
144
145
146/*
147 * This function multicasts the spontaneous messages from the device to the
148 * user space. It is invoked whenever there is a received messages
149 * from the device. This function is called within the ISR of the rx handlers
150 * in iwlagn driver.
151 *
152 * The parsing of the message content is left to the user space application,
153 * The message content is treated as unattacked raw data and is encapsulated
154 * with IWL_TM_ATTR_UCODE_RX_PKT multicasting to the user space.
155 *
156 * @priv: the instance of iwlwifi device
157 * @rxb: pointer to rx data content received by the ISR
158 *
159 * See the message policies and TLVs in iwl_testmode_gnl_msg_policy[].
160 * For the messages multicasting to the user application, the mandatory
161 * TLV fields are :
162 * IWL_TM_ATTR_COMMAND must be IWL_TM_CMD_DEV2APP_UCODE_RX_PKT
163 * IWL_TM_ATTR_UCODE_RX_PKT for carrying the message content
164 */
165
166static void iwl_testmode_ucode_rx_pkt(struct iwl_priv *priv,
Johannes Berg48a2d662012-03-05 11:24:39 -0800167 struct iwl_rx_cmd_buffer *rxb)
Cindy H. Kao4613e722011-05-06 10:40:15 -0700168{
169 struct ieee80211_hw *hw = priv->hw;
170 struct sk_buff *skb;
171 void *data;
172 int length;
173
174 data = (void *)rxb_addr(rxb);
175 length = get_event_length(rxb);
176
177 if (!data || length == 0)
178 return;
179
180 skb = cfg80211_testmode_alloc_event_skb(hw->wiphy, 20 + length,
181 GFP_ATOMIC);
182 if (skb == NULL) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800183 IWL_ERR(priv,
Cindy H. Kao4613e722011-05-06 10:40:15 -0700184 "Run out of memory for messages to user space ?\n");
185 return;
186 }
David S. Millerd33e1522012-04-01 21:03:10 -0400187 if (nla_put_u32(skb, IWL_TM_ATTR_COMMAND, IWL_TM_CMD_DEV2APP_UCODE_RX_PKT) ||
188 /* the length doesn't include len_n_flags field, so add it manually */
189 nla_put(skb, IWL_TM_ATTR_UCODE_RX_PKT, length + sizeof(__le32), data))
190 goto nla_put_failure;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700191 cfg80211_testmode_event(skb, GFP_ATOMIC);
192 return;
193
194nla_put_failure:
195 kfree_skb(skb);
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800196 IWL_ERR(priv, "Ouch, overran buffer, check allocation!\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700197}
198
199void iwl_testmode_init(struct iwl_priv *priv)
200{
Amit Beka0aef8dd2012-03-07 09:52:29 -0800201 priv->pre_rx_handler = NULL;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700202 priv->testmode_trace.trace_enabled = false;
Amit Beka6c55f5e2012-01-25 13:30:27 +0200203 priv->testmode_mem.read_in_progress = false;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800204}
205
Amit Beka6c55f5e2012-01-25 13:30:27 +0200206static void iwl_mem_cleanup(struct iwl_priv *priv)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800207{
Amit Beka6c55f5e2012-01-25 13:30:27 +0200208 if (priv->testmode_mem.read_in_progress) {
209 kfree(priv->testmode_mem.buff_addr);
210 priv->testmode_mem.buff_addr = NULL;
211 priv->testmode_mem.buff_size = 0;
212 priv->testmode_mem.num_chunks = 0;
213 priv->testmode_mem.read_in_progress = false;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800214 }
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700215}
216
217static void iwl_trace_cleanup(struct iwl_priv *priv)
218{
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700219 if (priv->testmode_trace.trace_enabled) {
220 if (priv->testmode_trace.cpu_addr &&
221 priv->testmode_trace.dma_addr)
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200222 dma_free_coherent(trans(priv)->dev,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700223 priv->testmode_trace.total_size,
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700224 priv->testmode_trace.cpu_addr,
225 priv->testmode_trace.dma_addr);
226 priv->testmode_trace.trace_enabled = false;
227 priv->testmode_trace.cpu_addr = NULL;
228 priv->testmode_trace.trace_addr = NULL;
229 priv->testmode_trace.dma_addr = 0;
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700230 priv->testmode_trace.buff_size = 0;
231 priv->testmode_trace.total_size = 0;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700232 }
233}
234
235
236void iwl_testmode_cleanup(struct iwl_priv *priv)
237{
238 iwl_trace_cleanup(priv);
Amit Beka6c55f5e2012-01-25 13:30:27 +0200239 iwl_mem_cleanup(priv);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700240}
241
Amit Bekacdfef6c2012-01-31 15:30:39 +0200242
Cindy H. Kao4613e722011-05-06 10:40:15 -0700243/*
244 * This function handles the user application commands to the ucode.
245 *
246 * It retrieves the mandatory fields IWL_TM_ATTR_UCODE_CMD_ID and
247 * IWL_TM_ATTR_UCODE_CMD_DATA and calls to the handler to send the
248 * host command to the ucode.
249 *
250 * If any mandatory field is missing, -ENOMSG is replied to the user space
Amit Bekacdfef6c2012-01-31 15:30:39 +0200251 * application; otherwise, waits for the host command to be sent and checks
252 * the return code. In case or error, it is returned, otherwise a reply is
253 * allocated and the reply RX packet
254 * is returned.
Cindy H. Kao4613e722011-05-06 10:40:15 -0700255 *
256 * @hw: ieee80211_hw object that represents the device
257 * @tb: gnl message fields from the user space
258 */
259static int iwl_testmode_ucode(struct ieee80211_hw *hw, struct nlattr **tb)
260{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200261 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700262 struct iwl_host_cmd cmd;
Amit Bekacdfef6c2012-01-31 15:30:39 +0200263 struct iwl_rx_packet *pkt;
264 struct sk_buff *skb;
265 void *reply_buf;
266 u32 reply_len;
267 int ret;
268 bool cmd_want_skb;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700269
270 memset(&cmd, 0, sizeof(struct iwl_host_cmd));
271
272 if (!tb[IWL_TM_ATTR_UCODE_CMD_ID] ||
273 !tb[IWL_TM_ATTR_UCODE_CMD_DATA]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800274 IWL_ERR(priv, "Missing ucode command mandatory fields\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700275 return -ENOMSG;
276 }
277
Amit Bekacdfef6c2012-01-31 15:30:39 +0200278 cmd.flags = CMD_ON_DEMAND | CMD_SYNC;
279 cmd_want_skb = nla_get_flag(tb[IWL_TM_ATTR_UCODE_CMD_SKB]);
280 if (cmd_want_skb)
281 cmd.flags |= CMD_WANT_SKB;
282
Cindy H. Kao4613e722011-05-06 10:40:15 -0700283 cmd.id = nla_get_u8(tb[IWL_TM_ATTR_UCODE_CMD_ID]);
Johannes Berg3fa50732011-05-04 07:50:38 -0700284 cmd.data[0] = nla_data(tb[IWL_TM_ATTR_UCODE_CMD_DATA]);
285 cmd.len[0] = nla_len(tb[IWL_TM_ATTR_UCODE_CMD_DATA]);
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700286 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
Amit Bekacdfef6c2012-01-31 15:30:39 +0200287 IWL_DEBUG_INFO(priv, "testmode ucode command ID 0x%x, flags 0x%x,"
Johannes Berg3fa50732011-05-04 07:50:38 -0700288 " len %d\n", cmd.id, cmd.flags, cmd.len[0]);
Amit Bekacdfef6c2012-01-31 15:30:39 +0200289
Johannes Berge10a0532012-03-06 13:30:39 -0800290 ret = iwl_dvm_send_cmd(priv, &cmd);
Amit Bekacdfef6c2012-01-31 15:30:39 +0200291 if (ret) {
292 IWL_ERR(priv, "Failed to send hcmd\n");
293 return ret;
294 }
295 if (!cmd_want_skb)
296 return ret;
297
298 /* Handling return of SKB to the user */
Johannes Berg65b94a42012-03-05 11:24:38 -0800299 pkt = cmd.resp_pkt;
Amit Bekacdfef6c2012-01-31 15:30:39 +0200300 if (!pkt) {
301 IWL_ERR(priv, "HCMD received a null response packet\n");
302 return ret;
303 }
304
305 reply_len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
306 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, reply_len + 20);
307 reply_buf = kmalloc(reply_len, GFP_KERNEL);
308 if (!skb || !reply_buf) {
309 kfree_skb(skb);
310 kfree(reply_buf);
311 return -ENOMEM;
312 }
313
314 /* The reply is in a page, that we cannot send to user space. */
Amit Bekaedabfa92012-02-08 10:01:35 +0200315 memcpy(reply_buf, &(pkt->hdr), reply_len);
Johannes Berg65b94a42012-03-05 11:24:38 -0800316 iwl_free_resp(&cmd);
Amit Bekacdfef6c2012-01-31 15:30:39 +0200317
David S. Millerd33e1522012-04-01 21:03:10 -0400318 if (nla_put_u32(skb, IWL_TM_ATTR_COMMAND, IWL_TM_CMD_DEV2APP_UCODE_RX_PKT) ||
319 nla_put(skb, IWL_TM_ATTR_UCODE_RX_PKT, reply_len, reply_buf))
320 goto nla_put_failure;
Amit Bekacdfef6c2012-01-31 15:30:39 +0200321 return cfg80211_testmode_reply(skb);
322
323nla_put_failure:
324 IWL_DEBUG_INFO(priv, "Failed creating NL attributes\n");
325 return -ENOMSG;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700326}
327
328
329/*
330 * This function handles the user application commands for register access.
331 *
332 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
333 * handlers respectively.
334 *
335 * If it's an unknown commdn ID, -ENOSYS is returned; or -ENOMSG if the
336 * mandatory fields(IWL_TM_ATTR_REG_OFFSET,IWL_TM_ATTR_REG_VALUE32,
337 * IWL_TM_ATTR_REG_VALUE8) are missing; Otherwise 0 is replied indicating
338 * the success of the command execution.
339 *
340 * If IWL_TM_ATTR_COMMAND is IWL_TM_CMD_APP2DEV_REG_READ32, the register read
341 * value is returned with IWL_TM_ATTR_REG_VALUE32.
342 *
343 * @hw: ieee80211_hw object that represents the device
344 * @tb: gnl message fields from the user space
345 */
346static int iwl_testmode_reg(struct ieee80211_hw *hw, struct nlattr **tb)
347{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200348 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Amit Beka6fe7dd02012-01-25 09:19:24 +0200349 u32 ofs, val32, cmd;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700350 u8 val8;
351 struct sk_buff *skb;
352 int status = 0;
353
354 if (!tb[IWL_TM_ATTR_REG_OFFSET]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800355 IWL_ERR(priv, "Missing register offset\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700356 return -ENOMSG;
357 }
358 ofs = nla_get_u32(tb[IWL_TM_ATTR_REG_OFFSET]);
359 IWL_INFO(priv, "testmode register access command offset 0x%x\n", ofs);
360
Amit Beka6fe7dd02012-01-25 09:19:24 +0200361 /* Allow access only to FH/CSR/HBUS in direct mode.
362 Since we don't have the upper bounds for the CSR and HBUS segments,
363 we will use only the upper bound of FH for sanity check. */
364 cmd = nla_get_u32(tb[IWL_TM_ATTR_COMMAND]);
365 if ((cmd == IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32 ||
366 cmd == IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32 ||
367 cmd == IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8) &&
368 (ofs >= FH_MEM_UPPER_BOUND)) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800369 IWL_ERR(priv, "offset out of segment (0x0 - 0x%x)\n",
Amit Beka6fe7dd02012-01-25 09:19:24 +0200370 FH_MEM_UPPER_BOUND);
371 return -EINVAL;
372 }
373
374 switch (cmd) {
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800375 case IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32:
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200376 val32 = iwl_read_direct32(trans(priv), ofs);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700377 IWL_INFO(priv, "32bit value to read 0x%x\n", val32);
378
379 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
380 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800381 IWL_ERR(priv, "Memory allocation fail\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700382 return -ENOMEM;
383 }
David S. Millerd33e1522012-04-01 21:03:10 -0400384 if (nla_put_u32(skb, IWL_TM_ATTR_REG_VALUE32, val32))
385 goto nla_put_failure;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700386 status = cfg80211_testmode_reply(skb);
387 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800388 IWL_ERR(priv, "Error sending msg : %d\n", status);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700389 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800390 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700391 if (!tb[IWL_TM_ATTR_REG_VALUE32]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800392 IWL_ERR(priv, "Missing value to write\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700393 return -ENOMSG;
394 } else {
395 val32 = nla_get_u32(tb[IWL_TM_ATTR_REG_VALUE32]);
396 IWL_INFO(priv, "32bit value to write 0x%x\n", val32);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200397 iwl_write_direct32(trans(priv), ofs, val32);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700398 }
399 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800400 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700401 if (!tb[IWL_TM_ATTR_REG_VALUE8]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800402 IWL_ERR(priv, "Missing value to write\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700403 return -ENOMSG;
404 } else {
405 val8 = nla_get_u8(tb[IWL_TM_ATTR_REG_VALUE8]);
406 IWL_INFO(priv, "8bit value to write 0x%x\n", val8);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200407 iwl_write8(trans(priv), ofs, val8);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700408 }
409 break;
410 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800411 IWL_ERR(priv, "Unknown testmode register command ID\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700412 return -ENOSYS;
413 }
414
415 return status;
416
417nla_put_failure:
418 kfree_skb(skb);
419 return -EMSGSIZE;
420}
421
422
423static int iwl_testmode_cfg_init_calib(struct iwl_priv *priv)
424{
425 struct iwl_notification_wait calib_wait;
426 int ret;
427
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800428 iwl_init_notification_wait(&priv->notif_wait, &calib_wait,
429 CALIBRATION_COMPLETE_NOTIFICATION,
430 NULL, NULL);
Johannes Berge1991882012-03-06 13:30:36 -0800431 ret = iwl_init_alive_start(priv);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700432 if (ret) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800433 IWL_ERR(priv, "Fail init calibration: %d\n", ret);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700434 goto cfg_init_calib_error;
435 }
436
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800437 ret = iwl_wait_notification(&priv->notif_wait, &calib_wait, 2 * HZ);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700438 if (ret)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800439 IWL_ERR(priv, "Error detecting"
Cindy H. Kao4613e722011-05-06 10:40:15 -0700440 " CALIBRATION_COMPLETE_NOTIFICATION: %d\n", ret);
441 return ret;
442
443cfg_init_calib_error:
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800444 iwl_remove_notification(&priv->notif_wait, &calib_wait);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700445 return ret;
446}
447
448/*
449 * This function handles the user application commands for driver.
450 *
451 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
452 * handlers respectively.
453 *
454 * If it's an unknown commdn ID, -ENOSYS is replied; otherwise, the returned
455 * value of the actual command execution is replied to the user application.
456 *
457 * If there's any message responding to the user space, IWL_TM_ATTR_SYNC_RSP
458 * is used for carry the message while IWL_TM_ATTR_COMMAND must set to
459 * IWL_TM_CMD_DEV2APP_SYNC_RSP.
460 *
461 * @hw: ieee80211_hw object that represents the device
462 * @tb: gnl message fields from the user space
463 */
464static int iwl_testmode_driver(struct ieee80211_hw *hw, struct nlattr **tb)
465{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200466 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Don Fry69a679b2011-12-07 08:50:46 -0800467 struct iwl_trans *trans = trans(priv);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700468 struct sk_buff *skb;
469 unsigned char *rsp_data_ptr = NULL;
470 int status = 0, rsp_data_len = 0;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800471 u32 devid, inst_size = 0, data_size = 0;
David Spinadel6dfa8d02012-03-10 13:00:14 -0800472 const struct fw_img *img;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700473
474 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
475 case IWL_TM_CMD_APP2DEV_GET_DEVICENAME:
Don Fry38622412011-12-16 07:07:36 -0800476 rsp_data_ptr = (unsigned char *)cfg(priv)->name;
477 rsp_data_len = strlen(cfg(priv)->name);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700478 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
479 rsp_data_len + 20);
480 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800481 IWL_ERR(priv, "Memory allocation fail\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700482 return -ENOMEM;
483 }
David S. Millerd33e1522012-04-01 21:03:10 -0400484 if (nla_put_u32(skb, IWL_TM_ATTR_COMMAND,
485 IWL_TM_CMD_DEV2APP_SYNC_RSP) ||
486 nla_put(skb, IWL_TM_ATTR_SYNC_RSP,
487 rsp_data_len, rsp_data_ptr))
488 goto nla_put_failure;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700489 status = cfg80211_testmode_reply(skb);
490 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800491 IWL_ERR(priv, "Error sending msg : %d\n", status);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700492 break;
493
494 case IWL_TM_CMD_APP2DEV_LOAD_INIT_FW:
Johannes Berge1991882012-03-06 13:30:36 -0800495 status = iwl_load_ucode_wait_alive(priv, IWL_UCODE_INIT);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700496 if (status)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800497 IWL_ERR(priv, "Error loading init ucode: %d\n", status);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700498 break;
499
500 case IWL_TM_CMD_APP2DEV_CFG_INIT_CALIB:
501 iwl_testmode_cfg_init_calib(priv);
David Spinadel8f7ffbe2012-03-10 13:00:10 -0800502 priv->ucode_loaded = false;
Don Fry69a679b2011-12-07 08:50:46 -0800503 iwl_trans_stop_device(trans);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700504 break;
505
506 case IWL_TM_CMD_APP2DEV_LOAD_RUNTIME_FW:
Johannes Berge1991882012-03-06 13:30:36 -0800507 status = iwl_load_ucode_wait_alive(priv, IWL_UCODE_REGULAR);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700508 if (status) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800509 IWL_ERR(priv,
Cindy H. Kao4613e722011-05-06 10:40:15 -0700510 "Error loading runtime ucode: %d\n", status);
511 break;
512 }
513 status = iwl_alive_start(priv);
514 if (status)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800515 IWL_ERR(priv,
Cindy H. Kao4613e722011-05-06 10:40:15 -0700516 "Error starting the device: %d\n", status);
517 break;
518
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800519 case IWL_TM_CMD_APP2DEV_LOAD_WOWLAN_FW:
520 iwl_scan_cancel_timeout(priv, 200);
David Spinadel8f7ffbe2012-03-10 13:00:10 -0800521 priv->ucode_loaded = false;
Don Fry69a679b2011-12-07 08:50:46 -0800522 iwl_trans_stop_device(trans);
Johannes Berge1991882012-03-06 13:30:36 -0800523 status = iwl_load_ucode_wait_alive(priv, IWL_UCODE_WOWLAN);
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800524 if (status) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800525 IWL_ERR(priv,
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800526 "Error loading WOWLAN ucode: %d\n", status);
527 break;
528 }
529 status = iwl_alive_start(priv);
530 if (status)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800531 IWL_ERR(priv,
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800532 "Error starting the device: %d\n", status);
533 break;
534
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700535 case IWL_TM_CMD_APP2DEV_GET_EEPROM:
Don Fryab36eab2011-11-30 15:37:32 -0800536 if (priv->shrd->eeprom) {
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700537 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
Don Fry38622412011-12-16 07:07:36 -0800538 cfg(priv)->base_params->eeprom_size + 20);
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700539 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800540 IWL_ERR(priv, "Memory allocation fail\n");
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700541 return -ENOMEM;
542 }
David S. Millerd33e1522012-04-01 21:03:10 -0400543 if (nla_put_u32(skb, IWL_TM_ATTR_COMMAND,
544 IWL_TM_CMD_DEV2APP_EEPROM_RSP) ||
545 nla_put(skb, IWL_TM_ATTR_EEPROM,
546 cfg(priv)->base_params->eeprom_size,
547 priv->shrd->eeprom))
548 goto nla_put_failure;
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700549 status = cfg80211_testmode_reply(skb);
550 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800551 IWL_ERR(priv, "Error sending msg : %d\n",
552 status);
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700553 } else
554 return -EFAULT;
555 break;
556
Wey-Yi Guy64898542011-05-03 18:05:13 -0700557 case IWL_TM_CMD_APP2DEV_FIXRATE_REQ:
558 if (!tb[IWL_TM_ATTR_FIXRATE]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800559 IWL_ERR(priv, "Missing fixrate setting\n");
Wey-Yi Guy64898542011-05-03 18:05:13 -0700560 return -ENOMSG;
561 }
Wey-Yi Guy4e308112011-07-08 08:46:28 -0700562 priv->tm_fixed_rate = nla_get_u32(tb[IWL_TM_ATTR_FIXRATE]);
Wey-Yi Guy64898542011-05-03 18:05:13 -0700563 break;
564
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800565 case IWL_TM_CMD_APP2DEV_GET_FW_VERSION:
Don Fryd3596672012-02-06 15:51:15 -0800566 IWL_INFO(priv, "uCode version raw: 0x%x\n",
Johannes Berg0692fe42012-03-06 13:30:37 -0800567 priv->fw->ucode_ver);
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800568
569 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
570 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800571 IWL_ERR(priv, "Memory allocation fail\n");
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800572 return -ENOMEM;
573 }
David S. Millerd33e1522012-04-01 21:03:10 -0400574 if (nla_put_u32(skb, IWL_TM_ATTR_FW_VERSION,
575 priv->fw->ucode_ver))
576 goto nla_put_failure;
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800577 status = cfg80211_testmode_reply(skb);
578 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800579 IWL_ERR(priv, "Error sending msg : %d\n", status);
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800580 break;
581
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800582 case IWL_TM_CMD_APP2DEV_GET_DEVICE_ID:
Emmanuel Grumbach99673ee2012-01-08 21:19:45 +0200583 devid = trans(priv)->hw_id;
Wey-Yi Guyfb6c1c62011-12-10 11:33:53 -0800584 IWL_INFO(priv, "hw version: 0x%x\n", devid);
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800585
586 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
587 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800588 IWL_ERR(priv, "Memory allocation fail\n");
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800589 return -ENOMEM;
590 }
David S. Millerd33e1522012-04-01 21:03:10 -0400591 if (nla_put_u32(skb, IWL_TM_ATTR_DEVICE_ID, devid))
592 goto nla_put_failure;
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800593 status = cfg80211_testmode_reply(skb);
594 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800595 IWL_ERR(priv, "Error sending msg : %d\n", status);
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800596 break;
597
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800598 case IWL_TM_CMD_APP2DEV_GET_FW_INFO:
599 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20 + 8);
600 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800601 IWL_ERR(priv, "Memory allocation fail\n");
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800602 return -ENOMEM;
603 }
David Spinadel8f7ffbe2012-03-10 13:00:10 -0800604 if (!priv->ucode_loaded) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800605 IWL_ERR(priv, "No uCode has not been loaded\n");
David Spinadel8f7ffbe2012-03-10 13:00:10 -0800606 return -EINVAL;
607 } else {
David Spinadel6dfa8d02012-03-10 13:00:14 -0800608 img = &priv->fw->img[priv->shrd->ucode_type];
609 inst_size = img->sec[IWL_UCODE_SECTION_INST].len;
610 data_size = img->sec[IWL_UCODE_SECTION_DATA].len;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800611 }
David S. Millerd33e1522012-04-01 21:03:10 -0400612 if (nla_put_u32(skb, IWL_TM_ATTR_FW_TYPE, priv->shrd->ucode_type) ||
613 nla_put_u32(skb, IWL_TM_ATTR_FW_INST_SIZE, inst_size) ||
614 nla_put_u32(skb, IWL_TM_ATTR_FW_DATA_SIZE, data_size))
615 goto nla_put_failure;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800616 status = cfg80211_testmode_reply(skb);
617 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800618 IWL_ERR(priv, "Error sending msg : %d\n", status);
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800619 break;
620
Cindy H. Kao4613e722011-05-06 10:40:15 -0700621 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800622 IWL_ERR(priv, "Unknown testmode driver command ID\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700623 return -ENOSYS;
624 }
625 return status;
626
627nla_put_failure:
628 kfree_skb(skb);
629 return -EMSGSIZE;
630}
631
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700632
633/*
634 * This function handles the user application commands for uCode trace
635 *
636 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
637 * handlers respectively.
638 *
639 * If it's an unknown commdn ID, -ENOSYS is replied; otherwise, the returned
640 * value of the actual command execution is replied to the user application.
641 *
642 * @hw: ieee80211_hw object that represents the device
643 * @tb: gnl message fields from the user space
644 */
645static int iwl_testmode_trace(struct ieee80211_hw *hw, struct nlattr **tb)
646{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200647 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700648 struct sk_buff *skb;
649 int status = 0;
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200650 struct device *dev = trans(priv)->dev;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700651
652 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
653 case IWL_TM_CMD_APP2DEV_BEGIN_TRACE:
654 if (priv->testmode_trace.trace_enabled)
655 return -EBUSY;
656
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700657 if (!tb[IWL_TM_ATTR_TRACE_SIZE])
658 priv->testmode_trace.buff_size = TRACE_BUFF_SIZE_DEF;
659 else
660 priv->testmode_trace.buff_size =
661 nla_get_u32(tb[IWL_TM_ATTR_TRACE_SIZE]);
662 if (!priv->testmode_trace.buff_size)
663 return -EINVAL;
664 if (priv->testmode_trace.buff_size < TRACE_BUFF_SIZE_MIN ||
665 priv->testmode_trace.buff_size > TRACE_BUFF_SIZE_MAX)
666 return -EINVAL;
667
668 priv->testmode_trace.total_size =
669 priv->testmode_trace.buff_size + TRACE_BUFF_PADD;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700670 priv->testmode_trace.cpu_addr =
671 dma_alloc_coherent(dev,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700672 priv->testmode_trace.total_size,
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700673 &priv->testmode_trace.dma_addr,
674 GFP_KERNEL);
675 if (!priv->testmode_trace.cpu_addr)
676 return -ENOMEM;
677 priv->testmode_trace.trace_enabled = true;
678 priv->testmode_trace.trace_addr = (u8 *)PTR_ALIGN(
679 priv->testmode_trace.cpu_addr, 0x100);
680 memset(priv->testmode_trace.trace_addr, 0x03B,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700681 priv->testmode_trace.buff_size);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700682 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
683 sizeof(priv->testmode_trace.dma_addr) + 20);
684 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800685 IWL_ERR(priv, "Memory allocation fail\n");
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700686 iwl_trace_cleanup(priv);
687 return -ENOMEM;
688 }
David S. Millerd33e1522012-04-01 21:03:10 -0400689 if (nla_put(skb, IWL_TM_ATTR_TRACE_ADDR,
690 sizeof(priv->testmode_trace.dma_addr),
691 (u64 *)&priv->testmode_trace.dma_addr))
692 goto nla_put_failure;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700693 status = cfg80211_testmode_reply(skb);
694 if (status < 0) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800695 IWL_ERR(priv, "Error sending msg : %d\n", status);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700696 }
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700697 priv->testmode_trace.num_chunks =
698 DIV_ROUND_UP(priv->testmode_trace.buff_size,
Hsu, Kennye056a652011-11-22 23:05:02 -0800699 DUMP_CHUNK_SIZE);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700700 break;
701
702 case IWL_TM_CMD_APP2DEV_END_TRACE:
703 iwl_trace_cleanup(priv);
704 break;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700705 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800706 IWL_ERR(priv, "Unknown testmode mem command ID\n");
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700707 return -ENOSYS;
708 }
709 return status;
710
711nla_put_failure:
712 kfree_skb(skb);
713 if (nla_get_u32(tb[IWL_TM_ATTR_COMMAND]) ==
714 IWL_TM_CMD_APP2DEV_BEGIN_TRACE)
715 iwl_trace_cleanup(priv);
716 return -EMSGSIZE;
717}
718
Johannes Bergc1803c92012-03-07 09:52:14 -0800719static int iwl_testmode_trace_dump(struct ieee80211_hw *hw,
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700720 struct sk_buff *skb,
721 struct netlink_callback *cb)
722{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200723 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700724 int idx, length;
725
726 if (priv->testmode_trace.trace_enabled &&
727 priv->testmode_trace.trace_addr) {
728 idx = cb->args[4];
729 if (idx >= priv->testmode_trace.num_chunks)
730 return -ENOENT;
Hsu, Kennye056a652011-11-22 23:05:02 -0800731 length = DUMP_CHUNK_SIZE;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700732 if (((idx + 1) == priv->testmode_trace.num_chunks) &&
Hsu, Kennye056a652011-11-22 23:05:02 -0800733 (priv->testmode_trace.buff_size % DUMP_CHUNK_SIZE))
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700734 length = priv->testmode_trace.buff_size %
Hsu, Kennye056a652011-11-22 23:05:02 -0800735 DUMP_CHUNK_SIZE;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700736
David S. Millerd33e1522012-04-01 21:03:10 -0400737 if (nla_put(skb, IWL_TM_ATTR_TRACE_DUMP, length,
738 priv->testmode_trace.trace_addr +
739 (DUMP_CHUNK_SIZE * idx)))
740 goto nla_put_failure;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700741 idx++;
742 cb->args[4] = idx;
743 return 0;
744 } else
745 return -EFAULT;
746
747 nla_put_failure:
748 return -ENOBUFS;
749}
750
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700751/*
752 * This function handles the user application switch ucode ownership.
753 *
754 * It retrieves the mandatory fields IWL_TM_ATTR_UCODE_OWNER and
755 * decide who the current owner of the uCode
756 *
757 * If the current owner is OWNERSHIP_TM, then the only host command
758 * can deliver to uCode is from testmode, all the other host commands
759 * will dropped.
760 *
761 * default driver is the owner of uCode in normal operational mode
762 *
763 * @hw: ieee80211_hw object that represents the device
764 * @tb: gnl message fields from the user space
765 */
766static int iwl_testmode_ownership(struct ieee80211_hw *hw, struct nlattr **tb)
767{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200768 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700769 u8 owner;
770
771 if (!tb[IWL_TM_ATTR_UCODE_OWNER]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800772 IWL_ERR(priv, "Missing ucode owner\n");
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700773 return -ENOMSG;
774 }
775
776 owner = nla_get_u8(tb[IWL_TM_ATTR_UCODE_OWNER]);
Amit Beka0aef8dd2012-03-07 09:52:29 -0800777 if (owner == IWL_OWNERSHIP_DRIVER) {
Johannes Berg947a9402012-03-06 13:30:59 -0800778 priv->ucode_owner = owner;
Amit Beka0aef8dd2012-03-07 09:52:29 -0800779 priv->pre_rx_handler = NULL;
780 } else if (owner == IWL_OWNERSHIP_TM) {
781 priv->pre_rx_handler = iwl_testmode_ucode_rx_pkt;
782 priv->ucode_owner = owner;
783 } else {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800784 IWL_ERR(priv, "Invalid owner\n");
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700785 return -EINVAL;
786 }
787 return 0;
788}
789
Amit Beka6c55f5e2012-01-25 13:30:27 +0200790static int iwl_testmode_indirect_read(struct iwl_priv *priv, u32 addr, u32 size)
791{
792 struct iwl_trans *trans = trans(priv);
793 unsigned long flags;
794 int i;
795
796 if (size & 0x3)
797 return -EINVAL;
798 priv->testmode_mem.buff_size = size;
799 priv->testmode_mem.buff_addr =
800 kmalloc(priv->testmode_mem.buff_size, GFP_KERNEL);
801 if (priv->testmode_mem.buff_addr == NULL)
802 return -ENOMEM;
803
804 /* Hard-coded periphery absolute address */
805 if (IWL_TM_ABS_PRPH_START <= addr &&
806 addr < IWL_TM_ABS_PRPH_START + PRPH_END) {
807 spin_lock_irqsave(&trans->reg_lock, flags);
808 iwl_grab_nic_access(trans);
Amit Beka858b7c72012-02-06 00:40:47 +0200809 iwl_write32(trans, HBUS_TARG_PRPH_RADDR,
810 addr | (3 << 24));
Amit Beka6c55f5e2012-01-25 13:30:27 +0200811 for (i = 0; i < size; i += 4)
Amit Beka858b7c72012-02-06 00:40:47 +0200812 *(u32 *)(priv->testmode_mem.buff_addr + i) =
Amit Beka6c55f5e2012-01-25 13:30:27 +0200813 iwl_read32(trans, HBUS_TARG_PRPH_RDAT);
814 iwl_release_nic_access(trans);
815 spin_unlock_irqrestore(&trans->reg_lock, flags);
816 } else { /* target memory (SRAM) */
817 _iwl_read_targ_mem_words(trans, addr,
818 priv->testmode_mem.buff_addr,
819 priv->testmode_mem.buff_size / 4);
820 }
821
822 priv->testmode_mem.num_chunks =
823 DIV_ROUND_UP(priv->testmode_mem.buff_size, DUMP_CHUNK_SIZE);
824 priv->testmode_mem.read_in_progress = true;
825 return 0;
826
827}
828
829static int iwl_testmode_indirect_write(struct iwl_priv *priv, u32 addr,
830 u32 size, unsigned char *buf)
831{
832 struct iwl_trans *trans = trans(priv);
833 u32 val, i;
834 unsigned long flags;
835
836 if (IWL_TM_ABS_PRPH_START <= addr &&
837 addr < IWL_TM_ABS_PRPH_START + PRPH_END) {
838 /* Periphery writes can be 1-3 bytes long, or DWORDs */
839 if (size < 4) {
840 memcpy(&val, buf, size);
841 spin_lock_irqsave(&trans->reg_lock, flags);
842 iwl_grab_nic_access(trans);
843 iwl_write32(trans, HBUS_TARG_PRPH_WADDR,
Amit Beka858b7c72012-02-06 00:40:47 +0200844 (addr & 0x0000FFFF) |
845 ((size - 1) << 24));
Amit Beka6c55f5e2012-01-25 13:30:27 +0200846 iwl_write32(trans, HBUS_TARG_PRPH_WDAT, val);
847 iwl_release_nic_access(trans);
848 /* needed after consecutive writes w/o read */
849 mmiowb();
850 spin_unlock_irqrestore(&trans->reg_lock, flags);
851 } else {
852 if (size % 4)
853 return -EINVAL;
854 for (i = 0; i < size; i += 4)
855 iwl_write_prph(trans, addr+i,
Amit Beka858b7c72012-02-06 00:40:47 +0200856 *(u32 *)(buf+i));
Amit Beka6c55f5e2012-01-25 13:30:27 +0200857 }
858 } else if (iwlagn_hw_valid_rtc_data_addr(addr) ||
859 (IWLAGN_RTC_INST_LOWER_BOUND <= addr &&
860 addr < IWLAGN_RTC_INST_UPPER_BOUND)) {
861 _iwl_write_targ_mem_words(trans, addr, buf, size/4);
862 } else
863 return -EINVAL;
864 return 0;
865}
866
Hsu, Kenny306713f2011-11-22 23:03:39 -0800867/*
868 * This function handles the user application commands for SRAM data dump
869 *
870 * It retrieves the mandatory fields IWL_TM_ATTR_SRAM_ADDR and
871 * IWL_TM_ATTR_SRAM_SIZE to decide the memory area for SRAM data reading
872 *
873 * Several error will be retured, -EBUSY if the SRAM data retrieved by
874 * previous command has not been delivered to userspace, or -ENOMSG if
875 * the mandatory fields (IWL_TM_ATTR_SRAM_ADDR,IWL_TM_ATTR_SRAM_SIZE)
876 * are missing, or -ENOMEM if the buffer allocation fails.
877 *
878 * Otherwise 0 is replied indicating the success of the SRAM reading.
879 *
880 * @hw: ieee80211_hw object that represents the device
881 * @tb: gnl message fields from the user space
882 */
Amit Beka6c55f5e2012-01-25 13:30:27 +0200883static int iwl_testmode_indirect_mem(struct ieee80211_hw *hw,
884 struct nlattr **tb)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800885{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200886 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Amit Beka6c55f5e2012-01-25 13:30:27 +0200887 u32 addr, size, cmd;
888 unsigned char *buf;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800889
Amit Beka6c55f5e2012-01-25 13:30:27 +0200890 /* Both read and write should be blocked, for atomicity */
891 if (priv->testmode_mem.read_in_progress)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800892 return -EBUSY;
893
Amit Beka6c55f5e2012-01-25 13:30:27 +0200894 cmd = nla_get_u32(tb[IWL_TM_ATTR_COMMAND]);
895 if (!tb[IWL_TM_ATTR_MEM_ADDR]) {
896 IWL_ERR(priv, "Error finding memory offset address\n");
Hsu, Kenny306713f2011-11-22 23:03:39 -0800897 return -ENOMSG;
898 }
Amit Beka6c55f5e2012-01-25 13:30:27 +0200899 addr = nla_get_u32(tb[IWL_TM_ATTR_MEM_ADDR]);
900 if (!tb[IWL_TM_ATTR_BUFFER_SIZE]) {
901 IWL_ERR(priv, "Error finding size for memory reading\n");
Hsu, Kenny306713f2011-11-22 23:03:39 -0800902 return -ENOMSG;
903 }
Amit Beka6c55f5e2012-01-25 13:30:27 +0200904 size = nla_get_u32(tb[IWL_TM_ATTR_BUFFER_SIZE]);
905
906 if (cmd == IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_READ)
907 return iwl_testmode_indirect_read(priv, addr, size);
908 else {
909 if (!tb[IWL_TM_ATTR_BUFFER_DUMP])
910 return -EINVAL;
911 buf = (unsigned char *) nla_data(tb[IWL_TM_ATTR_BUFFER_DUMP]);
912 return iwl_testmode_indirect_write(priv, addr, size, buf);
Kenny Hsu76de2f22011-11-23 06:57:22 -0800913 }
Hsu, Kenny306713f2011-11-22 23:03:39 -0800914}
915
Johannes Bergc1803c92012-03-07 09:52:14 -0800916static int iwl_testmode_buffer_dump(struct ieee80211_hw *hw,
917 struct sk_buff *skb,
918 struct netlink_callback *cb)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800919{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200920 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Hsu, Kenny306713f2011-11-22 23:03:39 -0800921 int idx, length;
922
Amit Beka6c55f5e2012-01-25 13:30:27 +0200923 if (priv->testmode_mem.read_in_progress) {
Hsu, Kenny306713f2011-11-22 23:03:39 -0800924 idx = cb->args[4];
Amit Beka6c55f5e2012-01-25 13:30:27 +0200925 if (idx >= priv->testmode_mem.num_chunks) {
926 iwl_mem_cleanup(priv);
Hsu, Kenny306713f2011-11-22 23:03:39 -0800927 return -ENOENT;
928 }
Hsu, Kennye056a652011-11-22 23:05:02 -0800929 length = DUMP_CHUNK_SIZE;
Amit Beka6c55f5e2012-01-25 13:30:27 +0200930 if (((idx + 1) == priv->testmode_mem.num_chunks) &&
931 (priv->testmode_mem.buff_size % DUMP_CHUNK_SIZE))
932 length = priv->testmode_mem.buff_size %
Hsu, Kennye056a652011-11-22 23:05:02 -0800933 DUMP_CHUNK_SIZE;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800934
David S. Millerd33e1522012-04-01 21:03:10 -0400935 if (nla_put(skb, IWL_TM_ATTR_BUFFER_DUMP, length,
936 priv->testmode_mem.buff_addr +
937 (DUMP_CHUNK_SIZE * idx)))
938 goto nla_put_failure;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800939 idx++;
940 cb->args[4] = idx;
941 return 0;
942 } else
943 return -EFAULT;
944
945 nla_put_failure:
946 return -ENOBUFS;
947}
948
Amit Beka0aef8dd2012-03-07 09:52:29 -0800949static int iwl_testmode_notifications(struct ieee80211_hw *hw,
950 struct nlattr **tb)
951{
952 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
953 bool enable;
954
955 enable = nla_get_flag(tb[IWL_TM_ATTR_ENABLE_NOTIFICATION]);
956 if (enable)
957 priv->pre_rx_handler = iwl_testmode_ucode_rx_pkt;
958 else
959 priv->pre_rx_handler = NULL;
960 return 0;
961}
962
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700963
Cindy H. Kao4613e722011-05-06 10:40:15 -0700964/* The testmode gnl message handler that takes the gnl message from the
965 * user space and parses it per the policy iwl_testmode_gnl_msg_policy, then
966 * invoke the corresponding handlers.
967 *
968 * This function is invoked when there is user space application sending
969 * gnl message through the testmode tunnel NL80211_CMD_TESTMODE regulated
970 * by nl80211.
971 *
972 * It retrieves the mandatory field, IWL_TM_ATTR_COMMAND, before
973 * dispatching it to the corresponding handler.
974 *
975 * If IWL_TM_ATTR_COMMAND is missing, -ENOMSG is replied to user application;
976 * -ENOSYS is replied to the user application if the command is unknown;
977 * Otherwise, the command is dispatched to the respective handler.
978 *
979 * @hw: ieee80211_hw object that represents the device
980 * @data: pointer to user space message
981 * @len: length in byte of @data
982 */
Wey-Yi Guyade4c642011-10-10 07:27:11 -0700983int iwlagn_mac_testmode_cmd(struct ieee80211_hw *hw, void *data, int len)
Cindy H. Kao4613e722011-05-06 10:40:15 -0700984{
Wey-Yi Guya6779272011-07-11 10:47:39 -0700985 struct nlattr *tb[IWL_TM_ATTR_MAX];
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200986 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700987 int result;
988
989 result = nla_parse(tb, IWL_TM_ATTR_MAX - 1, data, len,
990 iwl_testmode_gnl_msg_policy);
991 if (result != 0) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800992 IWL_ERR(priv, "Error parsing the gnl message : %d\n", result);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700993 return result;
994 }
995
996 /* IWL_TM_ATTR_COMMAND is absolutely mandatory */
997 if (!tb[IWL_TM_ATTR_COMMAND]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800998 IWL_ERR(priv, "Missing testmode command type\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700999 return -ENOMSG;
1000 }
1001 /* in case multiple accesses to the device happens */
Johannes Bergb1eea292012-03-06 13:30:42 -08001002 mutex_lock(&priv->mutex);
Cindy H. Kao4613e722011-05-06 10:40:15 -07001003
1004 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
1005 case IWL_TM_CMD_APP2DEV_UCODE:
1006 IWL_DEBUG_INFO(priv, "testmode cmd to uCode\n");
1007 result = iwl_testmode_ucode(hw, tb);
1008 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -08001009 case IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32:
1010 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32:
1011 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8:
Cindy H. Kao4613e722011-05-06 10:40:15 -07001012 IWL_DEBUG_INFO(priv, "testmode cmd to register\n");
1013 result = iwl_testmode_reg(hw, tb);
1014 break;
1015 case IWL_TM_CMD_APP2DEV_GET_DEVICENAME:
1016 case IWL_TM_CMD_APP2DEV_LOAD_INIT_FW:
1017 case IWL_TM_CMD_APP2DEV_CFG_INIT_CALIB:
1018 case IWL_TM_CMD_APP2DEV_LOAD_RUNTIME_FW:
Wey-Yi Guy4babc352011-05-03 18:05:12 -07001019 case IWL_TM_CMD_APP2DEV_GET_EEPROM:
Wey-Yi Guy64898542011-05-03 18:05:13 -07001020 case IWL_TM_CMD_APP2DEV_FIXRATE_REQ:
Hsu, Kennyd4af19f2011-11-24 22:26:53 -08001021 case IWL_TM_CMD_APP2DEV_LOAD_WOWLAN_FW:
Hsu, Kennye1a38fe2011-11-28 00:55:38 -08001022 case IWL_TM_CMD_APP2DEV_GET_FW_VERSION:
Hsu, Kenny0bec12b2011-12-01 01:12:50 -08001023 case IWL_TM_CMD_APP2DEV_GET_DEVICE_ID:
Kenny Hsuaca9b5f2011-12-24 12:12:12 +08001024 case IWL_TM_CMD_APP2DEV_GET_FW_INFO:
Cindy H. Kao4613e722011-05-06 10:40:15 -07001025 IWL_DEBUG_INFO(priv, "testmode cmd to driver\n");
1026 result = iwl_testmode_driver(hw, tb);
1027 break;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -07001028
1029 case IWL_TM_CMD_APP2DEV_BEGIN_TRACE:
1030 case IWL_TM_CMD_APP2DEV_END_TRACE:
1031 case IWL_TM_CMD_APP2DEV_READ_TRACE:
1032 IWL_DEBUG_INFO(priv, "testmode uCode trace cmd to driver\n");
1033 result = iwl_testmode_trace(hw, tb);
1034 break;
1035
Wey-Yi Guye98a1932011-07-08 08:46:26 -07001036 case IWL_TM_CMD_APP2DEV_OWNERSHIP:
1037 IWL_DEBUG_INFO(priv, "testmode change uCode ownership\n");
1038 result = iwl_testmode_ownership(hw, tb);
1039 break;
1040
Amit Beka6c55f5e2012-01-25 13:30:27 +02001041 case IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_READ:
1042 case IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_WRITE:
1043 IWL_DEBUG_INFO(priv, "testmode indirect memory cmd "
1044 "to driver\n");
1045 result = iwl_testmode_indirect_mem(hw, tb);
Hsu, Kenny306713f2011-11-22 23:03:39 -08001046 break;
1047
Amit Beka0aef8dd2012-03-07 09:52:29 -08001048 case IWL_TM_CMD_APP2DEV_NOTIFICATIONS:
1049 IWL_DEBUG_INFO(priv, "testmode notifications cmd "
1050 "to driver\n");
1051 result = iwl_testmode_notifications(hw, tb);
1052 break;
1053
Cindy H. Kao4613e722011-05-06 10:40:15 -07001054 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -08001055 IWL_ERR(priv, "Unknown testmode command\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -07001056 result = -ENOSYS;
1057 break;
1058 }
1059
Johannes Bergb1eea292012-03-06 13:30:42 -08001060 mutex_unlock(&priv->mutex);
Cindy H. Kao4613e722011-05-06 10:40:15 -07001061 return result;
1062}
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001063
Wey-Yi Guyade4c642011-10-10 07:27:11 -07001064int iwlagn_mac_testmode_dump(struct ieee80211_hw *hw, struct sk_buff *skb,
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001065 struct netlink_callback *cb,
1066 void *data, int len)
1067{
1068 struct nlattr *tb[IWL_TM_ATTR_MAX];
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001069 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001070 int result;
1071 u32 cmd;
1072
1073 if (cb->args[3]) {
1074 /* offset by 1 since commands start at 0 */
1075 cmd = cb->args[3] - 1;
1076 } else {
1077 result = nla_parse(tb, IWL_TM_ATTR_MAX - 1, data, len,
1078 iwl_testmode_gnl_msg_policy);
1079 if (result) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -08001080 IWL_ERR(priv,
1081 "Error parsing the gnl message : %d\n", result);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001082 return result;
1083 }
1084
1085 /* IWL_TM_ATTR_COMMAND is absolutely mandatory */
1086 if (!tb[IWL_TM_ATTR_COMMAND]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -08001087 IWL_ERR(priv, "Missing testmode command type\n");
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001088 return -ENOMSG;
1089 }
1090 cmd = nla_get_u32(tb[IWL_TM_ATTR_COMMAND]);
1091 cb->args[3] = cmd + 1;
1092 }
1093
1094 /* in case multiple accesses to the device happens */
Johannes Bergb1eea292012-03-06 13:30:42 -08001095 mutex_lock(&priv->mutex);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001096 switch (cmd) {
1097 case IWL_TM_CMD_APP2DEV_READ_TRACE:
1098 IWL_DEBUG_INFO(priv, "uCode trace cmd to driver\n");
Johannes Bergc1803c92012-03-07 09:52:14 -08001099 result = iwl_testmode_trace_dump(hw, skb, cb);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001100 break;
Amit Beka6c55f5e2012-01-25 13:30:27 +02001101 case IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_DUMP:
Hsu, Kenny306713f2011-11-22 23:03:39 -08001102 IWL_DEBUG_INFO(priv, "testmode sram dump cmd to driver\n");
Johannes Bergc1803c92012-03-07 09:52:14 -08001103 result = iwl_testmode_buffer_dump(hw, skb, cb);
Hsu, Kenny306713f2011-11-22 23:03:39 -08001104 break;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001105 default:
1106 result = -EINVAL;
1107 break;
1108 }
1109
Johannes Bergb1eea292012-03-06 13:30:42 -08001110 mutex_unlock(&priv->mutex);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001111 return result;
1112}