blob: b06c6763cb7aac9023181eb77ab77a237aadafeb [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 }
187 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND, IWL_TM_CMD_DEV2APP_UCODE_RX_PKT);
Amit Beka8e81f652012-03-07 09:52:30 -0800188 /* 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);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700190 cfg80211_testmode_event(skb, GFP_ATOMIC);
191 return;
192
193nla_put_failure:
194 kfree_skb(skb);
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800195 IWL_ERR(priv, "Ouch, overran buffer, check allocation!\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700196}
197
198void iwl_testmode_init(struct iwl_priv *priv)
199{
Amit Beka0aef8dd2012-03-07 09:52:29 -0800200 priv->pre_rx_handler = NULL;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700201 priv->testmode_trace.trace_enabled = false;
Amit Beka6c55f5e2012-01-25 13:30:27 +0200202 priv->testmode_mem.read_in_progress = false;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800203}
204
Amit Beka6c55f5e2012-01-25 13:30:27 +0200205static void iwl_mem_cleanup(struct iwl_priv *priv)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800206{
Amit Beka6c55f5e2012-01-25 13:30:27 +0200207 if (priv->testmode_mem.read_in_progress) {
208 kfree(priv->testmode_mem.buff_addr);
209 priv->testmode_mem.buff_addr = NULL;
210 priv->testmode_mem.buff_size = 0;
211 priv->testmode_mem.num_chunks = 0;
212 priv->testmode_mem.read_in_progress = false;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800213 }
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700214}
215
216static void iwl_trace_cleanup(struct iwl_priv *priv)
217{
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700218 if (priv->testmode_trace.trace_enabled) {
219 if (priv->testmode_trace.cpu_addr &&
220 priv->testmode_trace.dma_addr)
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200221 dma_free_coherent(trans(priv)->dev,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700222 priv->testmode_trace.total_size,
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700223 priv->testmode_trace.cpu_addr,
224 priv->testmode_trace.dma_addr);
225 priv->testmode_trace.trace_enabled = false;
226 priv->testmode_trace.cpu_addr = NULL;
227 priv->testmode_trace.trace_addr = NULL;
228 priv->testmode_trace.dma_addr = 0;
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700229 priv->testmode_trace.buff_size = 0;
230 priv->testmode_trace.total_size = 0;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700231 }
232}
233
234
235void iwl_testmode_cleanup(struct iwl_priv *priv)
236{
237 iwl_trace_cleanup(priv);
Amit Beka6c55f5e2012-01-25 13:30:27 +0200238 iwl_mem_cleanup(priv);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700239}
240
Amit Bekacdfef6c2012-01-31 15:30:39 +0200241
Cindy H. Kao4613e722011-05-06 10:40:15 -0700242/*
243 * This function handles the user application commands to the ucode.
244 *
245 * It retrieves the mandatory fields IWL_TM_ATTR_UCODE_CMD_ID and
246 * IWL_TM_ATTR_UCODE_CMD_DATA and calls to the handler to send the
247 * host command to the ucode.
248 *
249 * If any mandatory field is missing, -ENOMSG is replied to the user space
Amit Bekacdfef6c2012-01-31 15:30:39 +0200250 * application; otherwise, waits for the host command to be sent and checks
251 * the return code. In case or error, it is returned, otherwise a reply is
252 * allocated and the reply RX packet
253 * is returned.
Cindy H. Kao4613e722011-05-06 10:40:15 -0700254 *
255 * @hw: ieee80211_hw object that represents the device
256 * @tb: gnl message fields from the user space
257 */
258static int iwl_testmode_ucode(struct ieee80211_hw *hw, struct nlattr **tb)
259{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200260 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700261 struct iwl_host_cmd cmd;
Amit Bekacdfef6c2012-01-31 15:30:39 +0200262 struct iwl_rx_packet *pkt;
263 struct sk_buff *skb;
264 void *reply_buf;
265 u32 reply_len;
266 int ret;
267 bool cmd_want_skb;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700268
269 memset(&cmd, 0, sizeof(struct iwl_host_cmd));
270
271 if (!tb[IWL_TM_ATTR_UCODE_CMD_ID] ||
272 !tb[IWL_TM_ATTR_UCODE_CMD_DATA]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800273 IWL_ERR(priv, "Missing ucode command mandatory fields\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700274 return -ENOMSG;
275 }
276
Amit Bekacdfef6c2012-01-31 15:30:39 +0200277 cmd.flags = CMD_ON_DEMAND | CMD_SYNC;
278 cmd_want_skb = nla_get_flag(tb[IWL_TM_ATTR_UCODE_CMD_SKB]);
279 if (cmd_want_skb)
280 cmd.flags |= CMD_WANT_SKB;
281
Cindy H. Kao4613e722011-05-06 10:40:15 -0700282 cmd.id = nla_get_u8(tb[IWL_TM_ATTR_UCODE_CMD_ID]);
Johannes Berg3fa50732011-05-04 07:50:38 -0700283 cmd.data[0] = nla_data(tb[IWL_TM_ATTR_UCODE_CMD_DATA]);
284 cmd.len[0] = nla_len(tb[IWL_TM_ATTR_UCODE_CMD_DATA]);
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700285 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
Amit Bekacdfef6c2012-01-31 15:30:39 +0200286 IWL_DEBUG_INFO(priv, "testmode ucode command ID 0x%x, flags 0x%x,"
Johannes Berg3fa50732011-05-04 07:50:38 -0700287 " len %d\n", cmd.id, cmd.flags, cmd.len[0]);
Amit Bekacdfef6c2012-01-31 15:30:39 +0200288
Johannes Berge10a0532012-03-06 13:30:39 -0800289 ret = iwl_dvm_send_cmd(priv, &cmd);
Amit Bekacdfef6c2012-01-31 15:30:39 +0200290 if (ret) {
291 IWL_ERR(priv, "Failed to send hcmd\n");
292 return ret;
293 }
294 if (!cmd_want_skb)
295 return ret;
296
297 /* Handling return of SKB to the user */
Johannes Berg65b94a42012-03-05 11:24:38 -0800298 pkt = cmd.resp_pkt;
Amit Bekacdfef6c2012-01-31 15:30:39 +0200299 if (!pkt) {
300 IWL_ERR(priv, "HCMD received a null response packet\n");
301 return ret;
302 }
303
304 reply_len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
305 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, reply_len + 20);
306 reply_buf = kmalloc(reply_len, GFP_KERNEL);
307 if (!skb || !reply_buf) {
308 kfree_skb(skb);
309 kfree(reply_buf);
310 return -ENOMEM;
311 }
312
313 /* The reply is in a page, that we cannot send to user space. */
Amit Bekaedabfa92012-02-08 10:01:35 +0200314 memcpy(reply_buf, &(pkt->hdr), reply_len);
Johannes Berg65b94a42012-03-05 11:24:38 -0800315 iwl_free_resp(&cmd);
Amit Bekacdfef6c2012-01-31 15:30:39 +0200316
317 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND, IWL_TM_CMD_DEV2APP_UCODE_RX_PKT);
318 NLA_PUT(skb, IWL_TM_ATTR_UCODE_RX_PKT, reply_len, reply_buf);
319 return cfg80211_testmode_reply(skb);
320
321nla_put_failure:
322 IWL_DEBUG_INFO(priv, "Failed creating NL attributes\n");
323 return -ENOMSG;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700324}
325
326
327/*
328 * This function handles the user application commands for register access.
329 *
330 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
331 * handlers respectively.
332 *
333 * If it's an unknown commdn ID, -ENOSYS is returned; or -ENOMSG if the
334 * mandatory fields(IWL_TM_ATTR_REG_OFFSET,IWL_TM_ATTR_REG_VALUE32,
335 * IWL_TM_ATTR_REG_VALUE8) are missing; Otherwise 0 is replied indicating
336 * the success of the command execution.
337 *
338 * If IWL_TM_ATTR_COMMAND is IWL_TM_CMD_APP2DEV_REG_READ32, the register read
339 * value is returned with IWL_TM_ATTR_REG_VALUE32.
340 *
341 * @hw: ieee80211_hw object that represents the device
342 * @tb: gnl message fields from the user space
343 */
344static int iwl_testmode_reg(struct ieee80211_hw *hw, struct nlattr **tb)
345{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200346 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Amit Beka6fe7dd02012-01-25 09:19:24 +0200347 u32 ofs, val32, cmd;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700348 u8 val8;
349 struct sk_buff *skb;
350 int status = 0;
351
352 if (!tb[IWL_TM_ATTR_REG_OFFSET]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800353 IWL_ERR(priv, "Missing register offset\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700354 return -ENOMSG;
355 }
356 ofs = nla_get_u32(tb[IWL_TM_ATTR_REG_OFFSET]);
357 IWL_INFO(priv, "testmode register access command offset 0x%x\n", ofs);
358
Amit Beka6fe7dd02012-01-25 09:19:24 +0200359 /* Allow access only to FH/CSR/HBUS in direct mode.
360 Since we don't have the upper bounds for the CSR and HBUS segments,
361 we will use only the upper bound of FH for sanity check. */
362 cmd = nla_get_u32(tb[IWL_TM_ATTR_COMMAND]);
363 if ((cmd == IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32 ||
364 cmd == IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32 ||
365 cmd == IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8) &&
366 (ofs >= FH_MEM_UPPER_BOUND)) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800367 IWL_ERR(priv, "offset out of segment (0x0 - 0x%x)\n",
Amit Beka6fe7dd02012-01-25 09:19:24 +0200368 FH_MEM_UPPER_BOUND);
369 return -EINVAL;
370 }
371
372 switch (cmd) {
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800373 case IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32:
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200374 val32 = iwl_read_direct32(trans(priv), ofs);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700375 IWL_INFO(priv, "32bit value to read 0x%x\n", val32);
376
377 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
378 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800379 IWL_ERR(priv, "Memory allocation fail\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700380 return -ENOMEM;
381 }
382 NLA_PUT_U32(skb, IWL_TM_ATTR_REG_VALUE32, val32);
383 status = cfg80211_testmode_reply(skb);
384 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800385 IWL_ERR(priv, "Error sending msg : %d\n", status);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700386 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800387 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700388 if (!tb[IWL_TM_ATTR_REG_VALUE32]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800389 IWL_ERR(priv, "Missing value to write\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700390 return -ENOMSG;
391 } else {
392 val32 = nla_get_u32(tb[IWL_TM_ATTR_REG_VALUE32]);
393 IWL_INFO(priv, "32bit value to write 0x%x\n", val32);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200394 iwl_write_direct32(trans(priv), ofs, val32);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700395 }
396 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800397 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700398 if (!tb[IWL_TM_ATTR_REG_VALUE8]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800399 IWL_ERR(priv, "Missing value to write\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700400 return -ENOMSG;
401 } else {
402 val8 = nla_get_u8(tb[IWL_TM_ATTR_REG_VALUE8]);
403 IWL_INFO(priv, "8bit value to write 0x%x\n", val8);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200404 iwl_write8(trans(priv), ofs, val8);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700405 }
406 break;
407 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800408 IWL_ERR(priv, "Unknown testmode register command ID\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700409 return -ENOSYS;
410 }
411
412 return status;
413
414nla_put_failure:
415 kfree_skb(skb);
416 return -EMSGSIZE;
417}
418
419
420static int iwl_testmode_cfg_init_calib(struct iwl_priv *priv)
421{
422 struct iwl_notification_wait calib_wait;
423 int ret;
424
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800425 iwl_init_notification_wait(&priv->notif_wait, &calib_wait,
426 CALIBRATION_COMPLETE_NOTIFICATION,
427 NULL, NULL);
Johannes Berge1991882012-03-06 13:30:36 -0800428 ret = iwl_init_alive_start(priv);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700429 if (ret) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800430 IWL_ERR(priv, "Fail init calibration: %d\n", ret);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700431 goto cfg_init_calib_error;
432 }
433
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800434 ret = iwl_wait_notification(&priv->notif_wait, &calib_wait, 2 * HZ);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700435 if (ret)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800436 IWL_ERR(priv, "Error detecting"
Cindy H. Kao4613e722011-05-06 10:40:15 -0700437 " CALIBRATION_COMPLETE_NOTIFICATION: %d\n", ret);
438 return ret;
439
440cfg_init_calib_error:
Johannes Berg4bd14dd2012-03-06 13:30:58 -0800441 iwl_remove_notification(&priv->notif_wait, &calib_wait);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700442 return ret;
443}
444
445/*
446 * This function handles the user application commands for driver.
447 *
448 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
449 * handlers respectively.
450 *
451 * If it's an unknown commdn ID, -ENOSYS is replied; otherwise, the returned
452 * value of the actual command execution is replied to the user application.
453 *
454 * If there's any message responding to the user space, IWL_TM_ATTR_SYNC_RSP
455 * is used for carry the message while IWL_TM_ATTR_COMMAND must set to
456 * IWL_TM_CMD_DEV2APP_SYNC_RSP.
457 *
458 * @hw: ieee80211_hw object that represents the device
459 * @tb: gnl message fields from the user space
460 */
461static int iwl_testmode_driver(struct ieee80211_hw *hw, struct nlattr **tb)
462{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200463 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Don Fry69a679b2011-12-07 08:50:46 -0800464 struct iwl_trans *trans = trans(priv);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700465 struct sk_buff *skb;
466 unsigned char *rsp_data_ptr = NULL;
467 int status = 0, rsp_data_len = 0;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800468 u32 devid, inst_size = 0, data_size = 0;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700469
470 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
471 case IWL_TM_CMD_APP2DEV_GET_DEVICENAME:
Don Fry38622412011-12-16 07:07:36 -0800472 rsp_data_ptr = (unsigned char *)cfg(priv)->name;
473 rsp_data_len = strlen(cfg(priv)->name);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700474 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
475 rsp_data_len + 20);
476 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800477 IWL_ERR(priv, "Memory allocation fail\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700478 return -ENOMEM;
479 }
480 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND,
481 IWL_TM_CMD_DEV2APP_SYNC_RSP);
482 NLA_PUT(skb, IWL_TM_ATTR_SYNC_RSP,
483 rsp_data_len, rsp_data_ptr);
484 status = cfg80211_testmode_reply(skb);
485 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800486 IWL_ERR(priv, "Error sending msg : %d\n", status);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700487 break;
488
489 case IWL_TM_CMD_APP2DEV_LOAD_INIT_FW:
Johannes Berge1991882012-03-06 13:30:36 -0800490 status = iwl_load_ucode_wait_alive(priv, IWL_UCODE_INIT);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700491 if (status)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800492 IWL_ERR(priv, "Error loading init ucode: %d\n", status);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700493 break;
494
495 case IWL_TM_CMD_APP2DEV_CFG_INIT_CALIB:
496 iwl_testmode_cfg_init_calib(priv);
Don Fry69a679b2011-12-07 08:50:46 -0800497 iwl_trans_stop_device(trans);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700498 break;
499
500 case IWL_TM_CMD_APP2DEV_LOAD_RUNTIME_FW:
Johannes Berge1991882012-03-06 13:30:36 -0800501 status = iwl_load_ucode_wait_alive(priv, IWL_UCODE_REGULAR);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700502 if (status) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800503 IWL_ERR(priv,
Cindy H. Kao4613e722011-05-06 10:40:15 -0700504 "Error loading runtime ucode: %d\n", status);
505 break;
506 }
507 status = iwl_alive_start(priv);
508 if (status)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800509 IWL_ERR(priv,
Cindy H. Kao4613e722011-05-06 10:40:15 -0700510 "Error starting the device: %d\n", status);
511 break;
512
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800513 case IWL_TM_CMD_APP2DEV_LOAD_WOWLAN_FW:
514 iwl_scan_cancel_timeout(priv, 200);
Don Fry69a679b2011-12-07 08:50:46 -0800515 iwl_trans_stop_device(trans);
Johannes Berge1991882012-03-06 13:30:36 -0800516 status = iwl_load_ucode_wait_alive(priv, IWL_UCODE_WOWLAN);
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800517 if (status) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800518 IWL_ERR(priv,
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800519 "Error loading WOWLAN ucode: %d\n", status);
520 break;
521 }
522 status = iwl_alive_start(priv);
523 if (status)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800524 IWL_ERR(priv,
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800525 "Error starting the device: %d\n", status);
526 break;
527
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700528 case IWL_TM_CMD_APP2DEV_GET_EEPROM:
Don Fryab36eab2011-11-30 15:37:32 -0800529 if (priv->shrd->eeprom) {
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700530 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
Don Fry38622412011-12-16 07:07:36 -0800531 cfg(priv)->base_params->eeprom_size + 20);
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700532 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800533 IWL_ERR(priv, "Memory allocation fail\n");
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700534 return -ENOMEM;
535 }
536 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND,
537 IWL_TM_CMD_DEV2APP_EEPROM_RSP);
538 NLA_PUT(skb, IWL_TM_ATTR_EEPROM,
Don Fry38622412011-12-16 07:07:36 -0800539 cfg(priv)->base_params->eeprom_size,
Don Fryab36eab2011-11-30 15:37:32 -0800540 priv->shrd->eeprom);
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700541 status = cfg80211_testmode_reply(skb);
542 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800543 IWL_ERR(priv, "Error sending msg : %d\n",
544 status);
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700545 } else
546 return -EFAULT;
547 break;
548
Wey-Yi Guy64898542011-05-03 18:05:13 -0700549 case IWL_TM_CMD_APP2DEV_FIXRATE_REQ:
550 if (!tb[IWL_TM_ATTR_FIXRATE]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800551 IWL_ERR(priv, "Missing fixrate setting\n");
Wey-Yi Guy64898542011-05-03 18:05:13 -0700552 return -ENOMSG;
553 }
Wey-Yi Guy4e308112011-07-08 08:46:28 -0700554 priv->tm_fixed_rate = nla_get_u32(tb[IWL_TM_ATTR_FIXRATE]);
Wey-Yi Guy64898542011-05-03 18:05:13 -0700555 break;
556
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800557 case IWL_TM_CMD_APP2DEV_GET_FW_VERSION:
Don Fryd3596672012-02-06 15:51:15 -0800558 IWL_INFO(priv, "uCode version raw: 0x%x\n",
Johannes Berg0692fe42012-03-06 13:30:37 -0800559 priv->fw->ucode_ver);
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800560
561 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
562 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800563 IWL_ERR(priv, "Memory allocation fail\n");
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800564 return -ENOMEM;
565 }
Don Fryd3596672012-02-06 15:51:15 -0800566 NLA_PUT_U32(skb, IWL_TM_ATTR_FW_VERSION,
Johannes Berg0692fe42012-03-06 13:30:37 -0800567 priv->fw->ucode_ver);
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800568 status = cfg80211_testmode_reply(skb);
569 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800570 IWL_ERR(priv, "Error sending msg : %d\n", status);
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800571 break;
572
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800573 case IWL_TM_CMD_APP2DEV_GET_DEVICE_ID:
Emmanuel Grumbach99673ee2012-01-08 21:19:45 +0200574 devid = trans(priv)->hw_id;
Wey-Yi Guyfb6c1c62011-12-10 11:33:53 -0800575 IWL_INFO(priv, "hw version: 0x%x\n", devid);
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800576
577 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
578 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800579 IWL_ERR(priv, "Memory allocation fail\n");
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800580 return -ENOMEM;
581 }
582 NLA_PUT_U32(skb, IWL_TM_ATTR_DEVICE_ID, devid);
583 status = cfg80211_testmode_reply(skb);
584 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800585 IWL_ERR(priv, "Error sending msg : %d\n", status);
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800586 break;
587
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800588 case IWL_TM_CMD_APP2DEV_GET_FW_INFO:
589 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20 + 8);
590 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800591 IWL_ERR(priv, "Memory allocation fail\n");
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800592 return -ENOMEM;
593 }
594 switch (priv->shrd->ucode_type) {
595 case IWL_UCODE_REGULAR:
Johannes Berg0692fe42012-03-06 13:30:37 -0800596 inst_size = priv->fw->ucode_rt.code.len;
597 data_size = priv->fw->ucode_rt.data.len;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800598 break;
599 case IWL_UCODE_INIT:
Johannes Berg0692fe42012-03-06 13:30:37 -0800600 inst_size = priv->fw->ucode_init.code.len;
601 data_size = priv->fw->ucode_init.data.len;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800602 break;
603 case IWL_UCODE_WOWLAN:
Johannes Berg0692fe42012-03-06 13:30:37 -0800604 inst_size = priv->fw->ucode_wowlan.code.len;
605 data_size = priv->fw->ucode_wowlan.data.len;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800606 break;
607 case IWL_UCODE_NONE:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800608 IWL_ERR(priv, "No uCode has not been loaded\n");
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800609 break;
610 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800611 IWL_ERR(priv, "Unsupported uCode type\n");
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800612 break;
613 }
614 NLA_PUT_U32(skb, IWL_TM_ATTR_FW_TYPE, priv->shrd->ucode_type);
615 NLA_PUT_U32(skb, IWL_TM_ATTR_FW_INST_SIZE, inst_size);
616 NLA_PUT_U32(skb, IWL_TM_ATTR_FW_DATA_SIZE, data_size);
617 status = cfg80211_testmode_reply(skb);
618 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800619 IWL_ERR(priv, "Error sending msg : %d\n", status);
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800620 break;
621
Cindy H. Kao4613e722011-05-06 10:40:15 -0700622 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800623 IWL_ERR(priv, "Unknown testmode driver command ID\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700624 return -ENOSYS;
625 }
626 return status;
627
628nla_put_failure:
629 kfree_skb(skb);
630 return -EMSGSIZE;
631}
632
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700633
634/*
635 * This function handles the user application commands for uCode trace
636 *
637 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
638 * handlers respectively.
639 *
640 * If it's an unknown commdn ID, -ENOSYS is replied; otherwise, the returned
641 * value of the actual command execution is replied to the user application.
642 *
643 * @hw: ieee80211_hw object that represents the device
644 * @tb: gnl message fields from the user space
645 */
646static int iwl_testmode_trace(struct ieee80211_hw *hw, struct nlattr **tb)
647{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200648 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700649 struct sk_buff *skb;
650 int status = 0;
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200651 struct device *dev = trans(priv)->dev;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700652
653 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
654 case IWL_TM_CMD_APP2DEV_BEGIN_TRACE:
655 if (priv->testmode_trace.trace_enabled)
656 return -EBUSY;
657
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700658 if (!tb[IWL_TM_ATTR_TRACE_SIZE])
659 priv->testmode_trace.buff_size = TRACE_BUFF_SIZE_DEF;
660 else
661 priv->testmode_trace.buff_size =
662 nla_get_u32(tb[IWL_TM_ATTR_TRACE_SIZE]);
663 if (!priv->testmode_trace.buff_size)
664 return -EINVAL;
665 if (priv->testmode_trace.buff_size < TRACE_BUFF_SIZE_MIN ||
666 priv->testmode_trace.buff_size > TRACE_BUFF_SIZE_MAX)
667 return -EINVAL;
668
669 priv->testmode_trace.total_size =
670 priv->testmode_trace.buff_size + TRACE_BUFF_PADD;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700671 priv->testmode_trace.cpu_addr =
672 dma_alloc_coherent(dev,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700673 priv->testmode_trace.total_size,
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700674 &priv->testmode_trace.dma_addr,
675 GFP_KERNEL);
676 if (!priv->testmode_trace.cpu_addr)
677 return -ENOMEM;
678 priv->testmode_trace.trace_enabled = true;
679 priv->testmode_trace.trace_addr = (u8 *)PTR_ALIGN(
680 priv->testmode_trace.cpu_addr, 0x100);
681 memset(priv->testmode_trace.trace_addr, 0x03B,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700682 priv->testmode_trace.buff_size);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700683 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
684 sizeof(priv->testmode_trace.dma_addr) + 20);
685 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800686 IWL_ERR(priv, "Memory allocation fail\n");
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700687 iwl_trace_cleanup(priv);
688 return -ENOMEM;
689 }
690 NLA_PUT(skb, IWL_TM_ATTR_TRACE_ADDR,
691 sizeof(priv->testmode_trace.dma_addr),
692 (u64 *)&priv->testmode_trace.dma_addr);
693 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
737 NLA_PUT(skb, IWL_TM_ATTR_TRACE_DUMP, length,
738 priv->testmode_trace.trace_addr +
Hsu, Kennye056a652011-11-22 23:05:02 -0800739 (DUMP_CHUNK_SIZE * idx));
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700740 idx++;
741 cb->args[4] = idx;
742 return 0;
743 } else
744 return -EFAULT;
745
746 nla_put_failure:
747 return -ENOBUFS;
748}
749
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700750/*
751 * This function handles the user application switch ucode ownership.
752 *
753 * It retrieves the mandatory fields IWL_TM_ATTR_UCODE_OWNER and
754 * decide who the current owner of the uCode
755 *
756 * If the current owner is OWNERSHIP_TM, then the only host command
757 * can deliver to uCode is from testmode, all the other host commands
758 * will dropped.
759 *
760 * default driver is the owner of uCode in normal operational mode
761 *
762 * @hw: ieee80211_hw object that represents the device
763 * @tb: gnl message fields from the user space
764 */
765static int iwl_testmode_ownership(struct ieee80211_hw *hw, struct nlattr **tb)
766{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200767 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700768 u8 owner;
769
770 if (!tb[IWL_TM_ATTR_UCODE_OWNER]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800771 IWL_ERR(priv, "Missing ucode owner\n");
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700772 return -ENOMSG;
773 }
774
775 owner = nla_get_u8(tb[IWL_TM_ATTR_UCODE_OWNER]);
Amit Beka0aef8dd2012-03-07 09:52:29 -0800776 if (owner == IWL_OWNERSHIP_DRIVER) {
Johannes Berg947a9402012-03-06 13:30:59 -0800777 priv->ucode_owner = owner;
Amit Beka0aef8dd2012-03-07 09:52:29 -0800778 priv->pre_rx_handler = NULL;
779 } else if (owner == IWL_OWNERSHIP_TM) {
780 priv->pre_rx_handler = iwl_testmode_ucode_rx_pkt;
781 priv->ucode_owner = owner;
782 } else {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800783 IWL_ERR(priv, "Invalid owner\n");
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700784 return -EINVAL;
785 }
786 return 0;
787}
788
Amit Beka6c55f5e2012-01-25 13:30:27 +0200789static int iwl_testmode_indirect_read(struct iwl_priv *priv, u32 addr, u32 size)
790{
791 struct iwl_trans *trans = trans(priv);
792 unsigned long flags;
793 int i;
794
795 if (size & 0x3)
796 return -EINVAL;
797 priv->testmode_mem.buff_size = size;
798 priv->testmode_mem.buff_addr =
799 kmalloc(priv->testmode_mem.buff_size, GFP_KERNEL);
800 if (priv->testmode_mem.buff_addr == NULL)
801 return -ENOMEM;
802
803 /* Hard-coded periphery absolute address */
804 if (IWL_TM_ABS_PRPH_START <= addr &&
805 addr < IWL_TM_ABS_PRPH_START + PRPH_END) {
806 spin_lock_irqsave(&trans->reg_lock, flags);
807 iwl_grab_nic_access(trans);
Amit Beka858b7c72012-02-06 00:40:47 +0200808 iwl_write32(trans, HBUS_TARG_PRPH_RADDR,
809 addr | (3 << 24));
Amit Beka6c55f5e2012-01-25 13:30:27 +0200810 for (i = 0; i < size; i += 4)
Amit Beka858b7c72012-02-06 00:40:47 +0200811 *(u32 *)(priv->testmode_mem.buff_addr + i) =
Amit Beka6c55f5e2012-01-25 13:30:27 +0200812 iwl_read32(trans, HBUS_TARG_PRPH_RDAT);
813 iwl_release_nic_access(trans);
814 spin_unlock_irqrestore(&trans->reg_lock, flags);
815 } else { /* target memory (SRAM) */
816 _iwl_read_targ_mem_words(trans, addr,
817 priv->testmode_mem.buff_addr,
818 priv->testmode_mem.buff_size / 4);
819 }
820
821 priv->testmode_mem.num_chunks =
822 DIV_ROUND_UP(priv->testmode_mem.buff_size, DUMP_CHUNK_SIZE);
823 priv->testmode_mem.read_in_progress = true;
824 return 0;
825
826}
827
828static int iwl_testmode_indirect_write(struct iwl_priv *priv, u32 addr,
829 u32 size, unsigned char *buf)
830{
831 struct iwl_trans *trans = trans(priv);
832 u32 val, i;
833 unsigned long flags;
834
835 if (IWL_TM_ABS_PRPH_START <= addr &&
836 addr < IWL_TM_ABS_PRPH_START + PRPH_END) {
837 /* Periphery writes can be 1-3 bytes long, or DWORDs */
838 if (size < 4) {
839 memcpy(&val, buf, size);
840 spin_lock_irqsave(&trans->reg_lock, flags);
841 iwl_grab_nic_access(trans);
842 iwl_write32(trans, HBUS_TARG_PRPH_WADDR,
Amit Beka858b7c72012-02-06 00:40:47 +0200843 (addr & 0x0000FFFF) |
844 ((size - 1) << 24));
Amit Beka6c55f5e2012-01-25 13:30:27 +0200845 iwl_write32(trans, HBUS_TARG_PRPH_WDAT, val);
846 iwl_release_nic_access(trans);
847 /* needed after consecutive writes w/o read */
848 mmiowb();
849 spin_unlock_irqrestore(&trans->reg_lock, flags);
850 } else {
851 if (size % 4)
852 return -EINVAL;
853 for (i = 0; i < size; i += 4)
854 iwl_write_prph(trans, addr+i,
Amit Beka858b7c72012-02-06 00:40:47 +0200855 *(u32 *)(buf+i));
Amit Beka6c55f5e2012-01-25 13:30:27 +0200856 }
857 } else if (iwlagn_hw_valid_rtc_data_addr(addr) ||
858 (IWLAGN_RTC_INST_LOWER_BOUND <= addr &&
859 addr < IWLAGN_RTC_INST_UPPER_BOUND)) {
860 _iwl_write_targ_mem_words(trans, addr, buf, size/4);
861 } else
862 return -EINVAL;
863 return 0;
864}
865
Hsu, Kenny306713f2011-11-22 23:03:39 -0800866/*
867 * This function handles the user application commands for SRAM data dump
868 *
869 * It retrieves the mandatory fields IWL_TM_ATTR_SRAM_ADDR and
870 * IWL_TM_ATTR_SRAM_SIZE to decide the memory area for SRAM data reading
871 *
872 * Several error will be retured, -EBUSY if the SRAM data retrieved by
873 * previous command has not been delivered to userspace, or -ENOMSG if
874 * the mandatory fields (IWL_TM_ATTR_SRAM_ADDR,IWL_TM_ATTR_SRAM_SIZE)
875 * are missing, or -ENOMEM if the buffer allocation fails.
876 *
877 * Otherwise 0 is replied indicating the success of the SRAM reading.
878 *
879 * @hw: ieee80211_hw object that represents the device
880 * @tb: gnl message fields from the user space
881 */
Amit Beka6c55f5e2012-01-25 13:30:27 +0200882static int iwl_testmode_indirect_mem(struct ieee80211_hw *hw,
883 struct nlattr **tb)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800884{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200885 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Amit Beka6c55f5e2012-01-25 13:30:27 +0200886 u32 addr, size, cmd;
887 unsigned char *buf;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800888
Amit Beka6c55f5e2012-01-25 13:30:27 +0200889 /* Both read and write should be blocked, for atomicity */
890 if (priv->testmode_mem.read_in_progress)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800891 return -EBUSY;
892
Amit Beka6c55f5e2012-01-25 13:30:27 +0200893 cmd = nla_get_u32(tb[IWL_TM_ATTR_COMMAND]);
894 if (!tb[IWL_TM_ATTR_MEM_ADDR]) {
895 IWL_ERR(priv, "Error finding memory offset address\n");
Hsu, Kenny306713f2011-11-22 23:03:39 -0800896 return -ENOMSG;
897 }
Amit Beka6c55f5e2012-01-25 13:30:27 +0200898 addr = nla_get_u32(tb[IWL_TM_ATTR_MEM_ADDR]);
899 if (!tb[IWL_TM_ATTR_BUFFER_SIZE]) {
900 IWL_ERR(priv, "Error finding size for memory reading\n");
Hsu, Kenny306713f2011-11-22 23:03:39 -0800901 return -ENOMSG;
902 }
Amit Beka6c55f5e2012-01-25 13:30:27 +0200903 size = nla_get_u32(tb[IWL_TM_ATTR_BUFFER_SIZE]);
904
905 if (cmd == IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_READ)
906 return iwl_testmode_indirect_read(priv, addr, size);
907 else {
908 if (!tb[IWL_TM_ATTR_BUFFER_DUMP])
909 return -EINVAL;
910 buf = (unsigned char *) nla_data(tb[IWL_TM_ATTR_BUFFER_DUMP]);
911 return iwl_testmode_indirect_write(priv, addr, size, buf);
Kenny Hsu76de2f22011-11-23 06:57:22 -0800912 }
Hsu, Kenny306713f2011-11-22 23:03:39 -0800913}
914
Johannes Bergc1803c92012-03-07 09:52:14 -0800915static int iwl_testmode_buffer_dump(struct ieee80211_hw *hw,
916 struct sk_buff *skb,
917 struct netlink_callback *cb)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800918{
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200919 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Hsu, Kenny306713f2011-11-22 23:03:39 -0800920 int idx, length;
921
Amit Beka6c55f5e2012-01-25 13:30:27 +0200922 if (priv->testmode_mem.read_in_progress) {
Hsu, Kenny306713f2011-11-22 23:03:39 -0800923 idx = cb->args[4];
Amit Beka6c55f5e2012-01-25 13:30:27 +0200924 if (idx >= priv->testmode_mem.num_chunks) {
925 iwl_mem_cleanup(priv);
Hsu, Kenny306713f2011-11-22 23:03:39 -0800926 return -ENOENT;
927 }
Hsu, Kennye056a652011-11-22 23:05:02 -0800928 length = DUMP_CHUNK_SIZE;
Amit Beka6c55f5e2012-01-25 13:30:27 +0200929 if (((idx + 1) == priv->testmode_mem.num_chunks) &&
930 (priv->testmode_mem.buff_size % DUMP_CHUNK_SIZE))
931 length = priv->testmode_mem.buff_size %
Hsu, Kennye056a652011-11-22 23:05:02 -0800932 DUMP_CHUNK_SIZE;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800933
Amit Beka6c55f5e2012-01-25 13:30:27 +0200934 NLA_PUT(skb, IWL_TM_ATTR_BUFFER_DUMP, length,
935 priv->testmode_mem.buff_addr +
Hsu, Kennye056a652011-11-22 23:05:02 -0800936 (DUMP_CHUNK_SIZE * idx));
Hsu, Kenny306713f2011-11-22 23:03:39 -0800937 idx++;
938 cb->args[4] = idx;
939 return 0;
940 } else
941 return -EFAULT;
942
943 nla_put_failure:
944 return -ENOBUFS;
945}
946
Amit Beka0aef8dd2012-03-07 09:52:29 -0800947static int iwl_testmode_notifications(struct ieee80211_hw *hw,
948 struct nlattr **tb)
949{
950 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
951 bool enable;
952
953 enable = nla_get_flag(tb[IWL_TM_ATTR_ENABLE_NOTIFICATION]);
954 if (enable)
955 priv->pre_rx_handler = iwl_testmode_ucode_rx_pkt;
956 else
957 priv->pre_rx_handler = NULL;
958 return 0;
959}
960
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700961
Cindy H. Kao4613e722011-05-06 10:40:15 -0700962/* The testmode gnl message handler that takes the gnl message from the
963 * user space and parses it per the policy iwl_testmode_gnl_msg_policy, then
964 * invoke the corresponding handlers.
965 *
966 * This function is invoked when there is user space application sending
967 * gnl message through the testmode tunnel NL80211_CMD_TESTMODE regulated
968 * by nl80211.
969 *
970 * It retrieves the mandatory field, IWL_TM_ATTR_COMMAND, before
971 * dispatching it to the corresponding handler.
972 *
973 * If IWL_TM_ATTR_COMMAND is missing, -ENOMSG is replied to user application;
974 * -ENOSYS is replied to the user application if the command is unknown;
975 * Otherwise, the command is dispatched to the respective handler.
976 *
977 * @hw: ieee80211_hw object that represents the device
978 * @data: pointer to user space message
979 * @len: length in byte of @data
980 */
Wey-Yi Guyade4c642011-10-10 07:27:11 -0700981int iwlagn_mac_testmode_cmd(struct ieee80211_hw *hw, void *data, int len)
Cindy H. Kao4613e722011-05-06 10:40:15 -0700982{
Wey-Yi Guya6779272011-07-11 10:47:39 -0700983 struct nlattr *tb[IWL_TM_ATTR_MAX];
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +0200984 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700985 int result;
986
987 result = nla_parse(tb, IWL_TM_ATTR_MAX - 1, data, len,
988 iwl_testmode_gnl_msg_policy);
989 if (result != 0) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800990 IWL_ERR(priv, "Error parsing the gnl message : %d\n", result);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700991 return result;
992 }
993
994 /* IWL_TM_ATTR_COMMAND is absolutely mandatory */
995 if (!tb[IWL_TM_ATTR_COMMAND]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800996 IWL_ERR(priv, "Missing testmode command type\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700997 return -ENOMSG;
998 }
999 /* in case multiple accesses to the device happens */
Johannes Bergb1eea292012-03-06 13:30:42 -08001000 mutex_lock(&priv->mutex);
Cindy H. Kao4613e722011-05-06 10:40:15 -07001001
1002 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
1003 case IWL_TM_CMD_APP2DEV_UCODE:
1004 IWL_DEBUG_INFO(priv, "testmode cmd to uCode\n");
1005 result = iwl_testmode_ucode(hw, tb);
1006 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -08001007 case IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32:
1008 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32:
1009 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8:
Cindy H. Kao4613e722011-05-06 10:40:15 -07001010 IWL_DEBUG_INFO(priv, "testmode cmd to register\n");
1011 result = iwl_testmode_reg(hw, tb);
1012 break;
1013 case IWL_TM_CMD_APP2DEV_GET_DEVICENAME:
1014 case IWL_TM_CMD_APP2DEV_LOAD_INIT_FW:
1015 case IWL_TM_CMD_APP2DEV_CFG_INIT_CALIB:
1016 case IWL_TM_CMD_APP2DEV_LOAD_RUNTIME_FW:
Wey-Yi Guy4babc352011-05-03 18:05:12 -07001017 case IWL_TM_CMD_APP2DEV_GET_EEPROM:
Wey-Yi Guy64898542011-05-03 18:05:13 -07001018 case IWL_TM_CMD_APP2DEV_FIXRATE_REQ:
Hsu, Kennyd4af19f2011-11-24 22:26:53 -08001019 case IWL_TM_CMD_APP2DEV_LOAD_WOWLAN_FW:
Hsu, Kennye1a38fe2011-11-28 00:55:38 -08001020 case IWL_TM_CMD_APP2DEV_GET_FW_VERSION:
Hsu, Kenny0bec12b2011-12-01 01:12:50 -08001021 case IWL_TM_CMD_APP2DEV_GET_DEVICE_ID:
Kenny Hsuaca9b5f2011-12-24 12:12:12 +08001022 case IWL_TM_CMD_APP2DEV_GET_FW_INFO:
Cindy H. Kao4613e722011-05-06 10:40:15 -07001023 IWL_DEBUG_INFO(priv, "testmode cmd to driver\n");
1024 result = iwl_testmode_driver(hw, tb);
1025 break;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -07001026
1027 case IWL_TM_CMD_APP2DEV_BEGIN_TRACE:
1028 case IWL_TM_CMD_APP2DEV_END_TRACE:
1029 case IWL_TM_CMD_APP2DEV_READ_TRACE:
1030 IWL_DEBUG_INFO(priv, "testmode uCode trace cmd to driver\n");
1031 result = iwl_testmode_trace(hw, tb);
1032 break;
1033
Wey-Yi Guye98a1932011-07-08 08:46:26 -07001034 case IWL_TM_CMD_APP2DEV_OWNERSHIP:
1035 IWL_DEBUG_INFO(priv, "testmode change uCode ownership\n");
1036 result = iwl_testmode_ownership(hw, tb);
1037 break;
1038
Amit Beka6c55f5e2012-01-25 13:30:27 +02001039 case IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_READ:
1040 case IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_WRITE:
1041 IWL_DEBUG_INFO(priv, "testmode indirect memory cmd "
1042 "to driver\n");
1043 result = iwl_testmode_indirect_mem(hw, tb);
Hsu, Kenny306713f2011-11-22 23:03:39 -08001044 break;
1045
Amit Beka0aef8dd2012-03-07 09:52:29 -08001046 case IWL_TM_CMD_APP2DEV_NOTIFICATIONS:
1047 IWL_DEBUG_INFO(priv, "testmode notifications cmd "
1048 "to driver\n");
1049 result = iwl_testmode_notifications(hw, tb);
1050 break;
1051
Cindy H. Kao4613e722011-05-06 10:40:15 -07001052 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -08001053 IWL_ERR(priv, "Unknown testmode command\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -07001054 result = -ENOSYS;
1055 break;
1056 }
1057
Johannes Bergb1eea292012-03-06 13:30:42 -08001058 mutex_unlock(&priv->mutex);
Cindy H. Kao4613e722011-05-06 10:40:15 -07001059 return result;
1060}
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001061
Wey-Yi Guyade4c642011-10-10 07:27:11 -07001062int iwlagn_mac_testmode_dump(struct ieee80211_hw *hw, struct sk_buff *skb,
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001063 struct netlink_callback *cb,
1064 void *data, int len)
1065{
1066 struct nlattr *tb[IWL_TM_ATTR_MAX];
Emmanuel Grumbachd0f76d62012-02-09 16:08:15 +02001067 struct iwl_priv *priv = IWL_MAC80211_GET_DVM(hw);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001068 int result;
1069 u32 cmd;
1070
1071 if (cb->args[3]) {
1072 /* offset by 1 since commands start at 0 */
1073 cmd = cb->args[3] - 1;
1074 } else {
1075 result = nla_parse(tb, IWL_TM_ATTR_MAX - 1, data, len,
1076 iwl_testmode_gnl_msg_policy);
1077 if (result) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -08001078 IWL_ERR(priv,
1079 "Error parsing the gnl message : %d\n", result);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001080 return result;
1081 }
1082
1083 /* IWL_TM_ATTR_COMMAND is absolutely mandatory */
1084 if (!tb[IWL_TM_ATTR_COMMAND]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -08001085 IWL_ERR(priv, "Missing testmode command type\n");
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001086 return -ENOMSG;
1087 }
1088 cmd = nla_get_u32(tb[IWL_TM_ATTR_COMMAND]);
1089 cb->args[3] = cmd + 1;
1090 }
1091
1092 /* in case multiple accesses to the device happens */
Johannes Bergb1eea292012-03-06 13:30:42 -08001093 mutex_lock(&priv->mutex);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001094 switch (cmd) {
1095 case IWL_TM_CMD_APP2DEV_READ_TRACE:
1096 IWL_DEBUG_INFO(priv, "uCode trace cmd to driver\n");
Johannes Bergc1803c92012-03-07 09:52:14 -08001097 result = iwl_testmode_trace_dump(hw, skb, cb);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001098 break;
Amit Beka6c55f5e2012-01-25 13:30:27 +02001099 case IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_DUMP:
Hsu, Kenny306713f2011-11-22 23:03:39 -08001100 IWL_DEBUG_INFO(priv, "testmode sram dump cmd to driver\n");
Johannes Bergc1803c92012-03-07 09:52:14 -08001101 result = iwl_testmode_buffer_dump(hw, skb, cb);
Hsu, Kenny306713f2011-11-22 23:03:39 -08001102 break;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001103 default:
1104 result = -EINVAL;
1105 break;
1106 }
1107
Johannes Bergb1eea292012-03-06 13:30:42 -08001108 mutex_unlock(&priv->mutex);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001109 return result;
1110}