blob: 80955ed06e821c04fbde46c083de35fa07116ac6 [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
Don Fry69a679b2011-12-07 08:50:46 -080073#include "iwl-wifi.h"
Cindy H. Kao4613e722011-05-06 10:40:15 -070074#include "iwl-dev.h"
75#include "iwl-core.h"
76#include "iwl-debug.h"
Cindy H. Kao4613e722011-05-06 10:40:15 -070077#include "iwl-io.h"
78#include "iwl-agn.h"
79#include "iwl-testmode.h"
Emmanuel Grumbachbdfbf092011-07-08 08:46:16 -070080#include "iwl-trans.h"
Hsu, Kenny0bec12b2011-12-01 01:12:50 -080081#include "iwl-bus.h"
Amit Beka6fe7dd02012-01-25 09:19:24 +020082#include "iwl-fh.h"
Cindy H. Kao4613e722011-05-06 10:40:15 -070083
Amit Beka6c55f5e2012-01-25 13:30:27 +020084
85/* Periphery registers absolute lower bound. This is used in order to
86 * differentiate registery access through HBUS_TARG_PRPH_* and
87 * HBUS_TARG_MEM_* accesses.
88 */
89#define IWL_TM_ABS_PRPH_START (0xA00000)
90
Cindy H. Kao4613e722011-05-06 10:40:15 -070091/* The TLVs used in the gnl message policy between the kernel module and
92 * user space application. iwl_testmode_gnl_msg_policy is to be carried
93 * through the NL80211_CMD_TESTMODE channel regulated by nl80211.
94 * See iwl-testmode.h
95 */
96static
97struct nla_policy iwl_testmode_gnl_msg_policy[IWL_TM_ATTR_MAX] = {
98 [IWL_TM_ATTR_COMMAND] = { .type = NLA_U32, },
99
100 [IWL_TM_ATTR_UCODE_CMD_ID] = { .type = NLA_U8, },
101 [IWL_TM_ATTR_UCODE_CMD_DATA] = { .type = NLA_UNSPEC, },
102
103 [IWL_TM_ATTR_REG_OFFSET] = { .type = NLA_U32, },
104 [IWL_TM_ATTR_REG_VALUE8] = { .type = NLA_U8, },
105 [IWL_TM_ATTR_REG_VALUE32] = { .type = NLA_U32, },
106
107 [IWL_TM_ATTR_SYNC_RSP] = { .type = NLA_UNSPEC, },
108 [IWL_TM_ATTR_UCODE_RX_PKT] = { .type = NLA_UNSPEC, },
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700109
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700110 [IWL_TM_ATTR_EEPROM] = { .type = NLA_UNSPEC, },
111
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700112 [IWL_TM_ATTR_TRACE_ADDR] = { .type = NLA_UNSPEC, },
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700113 [IWL_TM_ATTR_TRACE_DUMP] = { .type = NLA_UNSPEC, },
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700114 [IWL_TM_ATTR_TRACE_SIZE] = { .type = NLA_U32, },
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700115
Wey-Yi Guy64898542011-05-03 18:05:13 -0700116 [IWL_TM_ATTR_FIXRATE] = { .type = NLA_U32, },
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700117
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700118 [IWL_TM_ATTR_UCODE_OWNER] = { .type = NLA_U8, },
Hsu, Kenny306713f2011-11-22 23:03:39 -0800119
Amit Beka6c55f5e2012-01-25 13:30:27 +0200120 [IWL_TM_ATTR_MEM_ADDR] = { .type = NLA_U32, },
121 [IWL_TM_ATTR_BUFFER_SIZE] = { .type = NLA_U32, },
122 [IWL_TM_ATTR_BUFFER_DUMP] = { .type = NLA_UNSPEC, },
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800123
124 [IWL_TM_ATTR_FW_VERSION] = { .type = NLA_U32, },
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800125 [IWL_TM_ATTR_DEVICE_ID] = { .type = NLA_U32, },
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800126 [IWL_TM_ATTR_FW_TYPE] = { .type = NLA_U32, },
127 [IWL_TM_ATTR_FW_INST_SIZE] = { .type = NLA_U32, },
128 [IWL_TM_ATTR_FW_DATA_SIZE] = { .type = NLA_U32, },
Cindy H. Kao4613e722011-05-06 10:40:15 -0700129};
130
131/*
132 * See the struct iwl_rx_packet in iwl-commands.h for the format of the
133 * received events from the device
134 */
135static inline int get_event_length(struct iwl_rx_mem_buffer *rxb)
136{
137 struct iwl_rx_packet *pkt = rxb_addr(rxb);
138 if (pkt)
139 return le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
140 else
141 return 0;
142}
143
144
145/*
146 * This function multicasts the spontaneous messages from the device to the
147 * user space. It is invoked whenever there is a received messages
148 * from the device. This function is called within the ISR of the rx handlers
149 * in iwlagn driver.
150 *
151 * The parsing of the message content is left to the user space application,
152 * The message content is treated as unattacked raw data and is encapsulated
153 * with IWL_TM_ATTR_UCODE_RX_PKT multicasting to the user space.
154 *
155 * @priv: the instance of iwlwifi device
156 * @rxb: pointer to rx data content received by the ISR
157 *
158 * See the message policies and TLVs in iwl_testmode_gnl_msg_policy[].
159 * For the messages multicasting to the user application, the mandatory
160 * TLV fields are :
161 * IWL_TM_ATTR_COMMAND must be IWL_TM_CMD_DEV2APP_UCODE_RX_PKT
162 * IWL_TM_ATTR_UCODE_RX_PKT for carrying the message content
163 */
164
165static void iwl_testmode_ucode_rx_pkt(struct iwl_priv *priv,
166 struct iwl_rx_mem_buffer *rxb)
167{
168 struct ieee80211_hw *hw = priv->hw;
169 struct sk_buff *skb;
170 void *data;
171 int length;
172
173 data = (void *)rxb_addr(rxb);
174 length = get_event_length(rxb);
175
176 if (!data || length == 0)
177 return;
178
179 skb = cfg80211_testmode_alloc_event_skb(hw->wiphy, 20 + length,
180 GFP_ATOMIC);
181 if (skb == NULL) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800182 IWL_ERR(priv,
Cindy H. Kao4613e722011-05-06 10:40:15 -0700183 "Run out of memory for messages to user space ?\n");
184 return;
185 }
186 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND, IWL_TM_CMD_DEV2APP_UCODE_RX_PKT);
187 NLA_PUT(skb, IWL_TM_ATTR_UCODE_RX_PKT, length, data);
188 cfg80211_testmode_event(skb, GFP_ATOMIC);
189 return;
190
191nla_put_failure:
192 kfree_skb(skb);
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800193 IWL_ERR(priv, "Ouch, overran buffer, check allocation!\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700194}
195
196void iwl_testmode_init(struct iwl_priv *priv)
197{
198 priv->pre_rx_handler = iwl_testmode_ucode_rx_pkt;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700199 priv->testmode_trace.trace_enabled = false;
Amit Beka6c55f5e2012-01-25 13:30:27 +0200200 priv->testmode_mem.read_in_progress = false;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800201}
202
Amit Beka6c55f5e2012-01-25 13:30:27 +0200203static void iwl_mem_cleanup(struct iwl_priv *priv)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800204{
Amit Beka6c55f5e2012-01-25 13:30:27 +0200205 if (priv->testmode_mem.read_in_progress) {
206 kfree(priv->testmode_mem.buff_addr);
207 priv->testmode_mem.buff_addr = NULL;
208 priv->testmode_mem.buff_size = 0;
209 priv->testmode_mem.num_chunks = 0;
210 priv->testmode_mem.read_in_progress = false;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800211 }
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700212}
213
214static void iwl_trace_cleanup(struct iwl_priv *priv)
215{
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700216 if (priv->testmode_trace.trace_enabled) {
217 if (priv->testmode_trace.cpu_addr &&
218 priv->testmode_trace.dma_addr)
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200219 dma_free_coherent(trans(priv)->dev,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700220 priv->testmode_trace.total_size,
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700221 priv->testmode_trace.cpu_addr,
222 priv->testmode_trace.dma_addr);
223 priv->testmode_trace.trace_enabled = false;
224 priv->testmode_trace.cpu_addr = NULL;
225 priv->testmode_trace.trace_addr = NULL;
226 priv->testmode_trace.dma_addr = 0;
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700227 priv->testmode_trace.buff_size = 0;
228 priv->testmode_trace.total_size = 0;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700229 }
230}
231
232
233void iwl_testmode_cleanup(struct iwl_priv *priv)
234{
235 iwl_trace_cleanup(priv);
Amit Beka6c55f5e2012-01-25 13:30:27 +0200236 iwl_mem_cleanup(priv);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700237}
238
Amit Bekacdfef6c2012-01-31 15:30:39 +0200239
Cindy H. Kao4613e722011-05-06 10:40:15 -0700240/*
241 * This function handles the user application commands to the ucode.
242 *
243 * It retrieves the mandatory fields IWL_TM_ATTR_UCODE_CMD_ID and
244 * IWL_TM_ATTR_UCODE_CMD_DATA and calls to the handler to send the
245 * host command to the ucode.
246 *
247 * If any mandatory field is missing, -ENOMSG is replied to the user space
Amit Bekacdfef6c2012-01-31 15:30:39 +0200248 * application; otherwise, waits for the host command to be sent and checks
249 * the return code. In case or error, it is returned, otherwise a reply is
250 * allocated and the reply RX packet
251 * is returned.
Cindy H. Kao4613e722011-05-06 10:40:15 -0700252 *
253 * @hw: ieee80211_hw object that represents the device
254 * @tb: gnl message fields from the user space
255 */
256static int iwl_testmode_ucode(struct ieee80211_hw *hw, struct nlattr **tb)
257{
258 struct iwl_priv *priv = hw->priv;
259 struct iwl_host_cmd cmd;
Amit Bekacdfef6c2012-01-31 15:30:39 +0200260 struct iwl_rx_packet *pkt;
261 struct sk_buff *skb;
262 void *reply_buf;
263 u32 reply_len;
264 int ret;
265 bool cmd_want_skb;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700266
267 memset(&cmd, 0, sizeof(struct iwl_host_cmd));
268
269 if (!tb[IWL_TM_ATTR_UCODE_CMD_ID] ||
270 !tb[IWL_TM_ATTR_UCODE_CMD_DATA]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800271 IWL_ERR(priv, "Missing ucode command mandatory fields\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700272 return -ENOMSG;
273 }
274
Amit Bekacdfef6c2012-01-31 15:30:39 +0200275 cmd.flags = CMD_ON_DEMAND | CMD_SYNC;
276 cmd_want_skb = nla_get_flag(tb[IWL_TM_ATTR_UCODE_CMD_SKB]);
277 if (cmd_want_skb)
278 cmd.flags |= CMD_WANT_SKB;
279
Cindy H. Kao4613e722011-05-06 10:40:15 -0700280 cmd.id = nla_get_u8(tb[IWL_TM_ATTR_UCODE_CMD_ID]);
Johannes Berg3fa50732011-05-04 07:50:38 -0700281 cmd.data[0] = nla_data(tb[IWL_TM_ATTR_UCODE_CMD_DATA]);
282 cmd.len[0] = nla_len(tb[IWL_TM_ATTR_UCODE_CMD_DATA]);
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700283 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
Amit Bekacdfef6c2012-01-31 15:30:39 +0200284 IWL_DEBUG_INFO(priv, "testmode ucode command ID 0x%x, flags 0x%x,"
Johannes Berg3fa50732011-05-04 07:50:38 -0700285 " len %d\n", cmd.id, cmd.flags, cmd.len[0]);
Amit Bekacdfef6c2012-01-31 15:30:39 +0200286
287 ret = iwl_trans_send_cmd(trans(priv), &cmd);
288 if (ret) {
289 IWL_ERR(priv, "Failed to send hcmd\n");
290 return ret;
291 }
292 if (!cmd_want_skb)
293 return ret;
294
295 /* Handling return of SKB to the user */
296 pkt = (struct iwl_rx_packet *)cmd.reply_page;
297 if (!pkt) {
298 IWL_ERR(priv, "HCMD received a null response packet\n");
299 return ret;
300 }
301
302 reply_len = le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
303 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, reply_len + 20);
304 reply_buf = kmalloc(reply_len, GFP_KERNEL);
305 if (!skb || !reply_buf) {
306 kfree_skb(skb);
307 kfree(reply_buf);
308 return -ENOMEM;
309 }
310
311 /* The reply is in a page, that we cannot send to user space. */
Amit Bekaedabfa92012-02-08 10:01:35 +0200312 memcpy(reply_buf, &(pkt->hdr), reply_len);
Amit Bekacdfef6c2012-01-31 15:30:39 +0200313 iwl_free_pages(priv->shrd, cmd.reply_page);
314
315 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND, IWL_TM_CMD_DEV2APP_UCODE_RX_PKT);
316 NLA_PUT(skb, IWL_TM_ATTR_UCODE_RX_PKT, reply_len, reply_buf);
317 return cfg80211_testmode_reply(skb);
318
319nla_put_failure:
320 IWL_DEBUG_INFO(priv, "Failed creating NL attributes\n");
321 return -ENOMSG;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700322}
323
324
325/*
326 * This function handles the user application commands for register access.
327 *
328 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
329 * handlers respectively.
330 *
331 * If it's an unknown commdn ID, -ENOSYS is returned; or -ENOMSG if the
332 * mandatory fields(IWL_TM_ATTR_REG_OFFSET,IWL_TM_ATTR_REG_VALUE32,
333 * IWL_TM_ATTR_REG_VALUE8) are missing; Otherwise 0 is replied indicating
334 * the success of the command execution.
335 *
336 * If IWL_TM_ATTR_COMMAND is IWL_TM_CMD_APP2DEV_REG_READ32, the register read
337 * value is returned with IWL_TM_ATTR_REG_VALUE32.
338 *
339 * @hw: ieee80211_hw object that represents the device
340 * @tb: gnl message fields from the user space
341 */
342static int iwl_testmode_reg(struct ieee80211_hw *hw, struct nlattr **tb)
343{
344 struct iwl_priv *priv = hw->priv;
Amit Beka6fe7dd02012-01-25 09:19:24 +0200345 u32 ofs, val32, cmd;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700346 u8 val8;
347 struct sk_buff *skb;
348 int status = 0;
349
350 if (!tb[IWL_TM_ATTR_REG_OFFSET]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800351 IWL_ERR(priv, "Missing register offset\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700352 return -ENOMSG;
353 }
354 ofs = nla_get_u32(tb[IWL_TM_ATTR_REG_OFFSET]);
355 IWL_INFO(priv, "testmode register access command offset 0x%x\n", ofs);
356
Amit Beka6fe7dd02012-01-25 09:19:24 +0200357 /* Allow access only to FH/CSR/HBUS in direct mode.
358 Since we don't have the upper bounds for the CSR and HBUS segments,
359 we will use only the upper bound of FH for sanity check. */
360 cmd = nla_get_u32(tb[IWL_TM_ATTR_COMMAND]);
361 if ((cmd == IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32 ||
362 cmd == IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32 ||
363 cmd == IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8) &&
364 (ofs >= FH_MEM_UPPER_BOUND)) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800365 IWL_ERR(priv, "offset out of segment (0x0 - 0x%x)\n",
Amit Beka6fe7dd02012-01-25 09:19:24 +0200366 FH_MEM_UPPER_BOUND);
367 return -EINVAL;
368 }
369
370 switch (cmd) {
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800371 case IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32:
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200372 val32 = iwl_read_direct32(trans(priv), ofs);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700373 IWL_INFO(priv, "32bit value to read 0x%x\n", val32);
374
375 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
376 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800377 IWL_ERR(priv, "Memory allocation fail\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700378 return -ENOMEM;
379 }
380 NLA_PUT_U32(skb, IWL_TM_ATTR_REG_VALUE32, val32);
381 status = cfg80211_testmode_reply(skb);
382 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800383 IWL_ERR(priv, "Error sending msg : %d\n", status);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700384 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800385 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700386 if (!tb[IWL_TM_ATTR_REG_VALUE32]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800387 IWL_ERR(priv, "Missing value to write\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700388 return -ENOMSG;
389 } else {
390 val32 = nla_get_u32(tb[IWL_TM_ATTR_REG_VALUE32]);
391 IWL_INFO(priv, "32bit value to write 0x%x\n", val32);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200392 iwl_write_direct32(trans(priv), ofs, val32);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700393 }
394 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800395 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700396 if (!tb[IWL_TM_ATTR_REG_VALUE8]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800397 IWL_ERR(priv, "Missing value to write\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700398 return -ENOMSG;
399 } else {
400 val8 = nla_get_u8(tb[IWL_TM_ATTR_REG_VALUE8]);
401 IWL_INFO(priv, "8bit value to write 0x%x\n", val8);
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200402 iwl_write8(trans(priv), ofs, val8);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700403 }
404 break;
405 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800406 IWL_ERR(priv, "Unknown testmode register command ID\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700407 return -ENOSYS;
408 }
409
410 return status;
411
412nla_put_failure:
413 kfree_skb(skb);
414 return -EMSGSIZE;
415}
416
417
418static int iwl_testmode_cfg_init_calib(struct iwl_priv *priv)
419{
420 struct iwl_notification_wait calib_wait;
421 int ret;
422
Don Frydd5fe102011-11-28 16:13:19 -0800423 iwl_init_notification_wait(priv->shrd, &calib_wait,
Cindy H. Kao4613e722011-05-06 10:40:15 -0700424 CALIBRATION_COMPLETE_NOTIFICATION,
425 NULL, NULL);
Don Fry69a679b2011-12-07 08:50:46 -0800426 ret = iwl_init_alive_start(trans(priv));
Cindy H. Kao4613e722011-05-06 10:40:15 -0700427 if (ret) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800428 IWL_ERR(priv, "Fail init calibration: %d\n", ret);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700429 goto cfg_init_calib_error;
430 }
431
Don Frydd5fe102011-11-28 16:13:19 -0800432 ret = iwl_wait_notification(priv->shrd, &calib_wait, 2 * HZ);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700433 if (ret)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800434 IWL_ERR(priv, "Error detecting"
Cindy H. Kao4613e722011-05-06 10:40:15 -0700435 " CALIBRATION_COMPLETE_NOTIFICATION: %d\n", ret);
436 return ret;
437
438cfg_init_calib_error:
Don Frydd5fe102011-11-28 16:13:19 -0800439 iwl_remove_notification(priv->shrd, &calib_wait);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700440 return ret;
441}
442
443/*
444 * This function handles the user application commands for driver.
445 *
446 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
447 * handlers respectively.
448 *
449 * If it's an unknown commdn ID, -ENOSYS is replied; otherwise, the returned
450 * value of the actual command execution is replied to the user application.
451 *
452 * If there's any message responding to the user space, IWL_TM_ATTR_SYNC_RSP
453 * is used for carry the message while IWL_TM_ATTR_COMMAND must set to
454 * IWL_TM_CMD_DEV2APP_SYNC_RSP.
455 *
456 * @hw: ieee80211_hw object that represents the device
457 * @tb: gnl message fields from the user space
458 */
459static int iwl_testmode_driver(struct ieee80211_hw *hw, struct nlattr **tb)
460{
461 struct iwl_priv *priv = hw->priv;
Don Fry69a679b2011-12-07 08:50:46 -0800462 struct iwl_trans *trans = trans(priv);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700463 struct sk_buff *skb;
464 unsigned char *rsp_data_ptr = NULL;
465 int status = 0, rsp_data_len = 0;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800466 u32 devid, inst_size = 0, data_size = 0;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700467
468 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
469 case IWL_TM_CMD_APP2DEV_GET_DEVICENAME:
Don Fry38622412011-12-16 07:07:36 -0800470 rsp_data_ptr = (unsigned char *)cfg(priv)->name;
471 rsp_data_len = strlen(cfg(priv)->name);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700472 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
473 rsp_data_len + 20);
474 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800475 IWL_ERR(priv, "Memory allocation fail\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700476 return -ENOMEM;
477 }
478 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND,
479 IWL_TM_CMD_DEV2APP_SYNC_RSP);
480 NLA_PUT(skb, IWL_TM_ATTR_SYNC_RSP,
481 rsp_data_len, rsp_data_ptr);
482 status = cfg80211_testmode_reply(skb);
483 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800484 IWL_ERR(priv, "Error sending msg : %d\n", status);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700485 break;
486
487 case IWL_TM_CMD_APP2DEV_LOAD_INIT_FW:
Don Fry69a679b2011-12-07 08:50:46 -0800488 status = iwl_load_ucode_wait_alive(trans, IWL_UCODE_INIT);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700489 if (status)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800490 IWL_ERR(priv, "Error loading init ucode: %d\n", status);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700491 break;
492
493 case IWL_TM_CMD_APP2DEV_CFG_INIT_CALIB:
494 iwl_testmode_cfg_init_calib(priv);
Don Fry69a679b2011-12-07 08:50:46 -0800495 iwl_trans_stop_device(trans);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700496 break;
497
498 case IWL_TM_CMD_APP2DEV_LOAD_RUNTIME_FW:
Don Fry69a679b2011-12-07 08:50:46 -0800499 status = iwl_load_ucode_wait_alive(trans, IWL_UCODE_REGULAR);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700500 if (status) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800501 IWL_ERR(priv,
Cindy H. Kao4613e722011-05-06 10:40:15 -0700502 "Error loading runtime ucode: %d\n", status);
503 break;
504 }
505 status = iwl_alive_start(priv);
506 if (status)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800507 IWL_ERR(priv,
Cindy H. Kao4613e722011-05-06 10:40:15 -0700508 "Error starting the device: %d\n", status);
509 break;
510
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800511 case IWL_TM_CMD_APP2DEV_LOAD_WOWLAN_FW:
512 iwl_scan_cancel_timeout(priv, 200);
Don Fry69a679b2011-12-07 08:50:46 -0800513 iwl_trans_stop_device(trans);
514 status = iwl_load_ucode_wait_alive(trans, IWL_UCODE_WOWLAN);
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800515 if (status) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800516 IWL_ERR(priv,
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800517 "Error loading WOWLAN ucode: %d\n", status);
518 break;
519 }
520 status = iwl_alive_start(priv);
521 if (status)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800522 IWL_ERR(priv,
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800523 "Error starting the device: %d\n", status);
524 break;
525
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700526 case IWL_TM_CMD_APP2DEV_GET_EEPROM:
Don Fryab36eab2011-11-30 15:37:32 -0800527 if (priv->shrd->eeprom) {
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700528 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
Don Fry38622412011-12-16 07:07:36 -0800529 cfg(priv)->base_params->eeprom_size + 20);
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700530 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800531 IWL_ERR(priv, "Memory allocation fail\n");
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700532 return -ENOMEM;
533 }
534 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND,
535 IWL_TM_CMD_DEV2APP_EEPROM_RSP);
536 NLA_PUT(skb, IWL_TM_ATTR_EEPROM,
Don Fry38622412011-12-16 07:07:36 -0800537 cfg(priv)->base_params->eeprom_size,
Don Fryab36eab2011-11-30 15:37:32 -0800538 priv->shrd->eeprom);
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700539 status = cfg80211_testmode_reply(skb);
540 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800541 IWL_ERR(priv, "Error sending msg : %d\n",
542 status);
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700543 } else
544 return -EFAULT;
545 break;
546
Wey-Yi Guy64898542011-05-03 18:05:13 -0700547 case IWL_TM_CMD_APP2DEV_FIXRATE_REQ:
548 if (!tb[IWL_TM_ATTR_FIXRATE]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800549 IWL_ERR(priv, "Missing fixrate setting\n");
Wey-Yi Guy64898542011-05-03 18:05:13 -0700550 return -ENOMSG;
551 }
Wey-Yi Guy4e308112011-07-08 08:46:28 -0700552 priv->tm_fixed_rate = nla_get_u32(tb[IWL_TM_ATTR_FIXRATE]);
Wey-Yi Guy64898542011-05-03 18:05:13 -0700553 break;
554
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800555 case IWL_TM_CMD_APP2DEV_GET_FW_VERSION:
Don Fryd3596672012-02-06 15:51:15 -0800556 IWL_INFO(priv, "uCode version raw: 0x%x\n",
557 nic(priv)->fw.ucode_ver);
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800558
559 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
560 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800561 IWL_ERR(priv, "Memory allocation fail\n");
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800562 return -ENOMEM;
563 }
Don Fryd3596672012-02-06 15:51:15 -0800564 NLA_PUT_U32(skb, IWL_TM_ATTR_FW_VERSION,
565 nic(priv)->fw.ucode_ver);
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800566 status = cfg80211_testmode_reply(skb);
567 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800568 IWL_ERR(priv, "Error sending msg : %d\n", status);
Hsu, Kennye1a38fe2011-11-28 00:55:38 -0800569 break;
570
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800571 case IWL_TM_CMD_APP2DEV_GET_DEVICE_ID:
Emmanuel Grumbach99673ee2012-01-08 21:19:45 +0200572 devid = trans(priv)->hw_id;
Wey-Yi Guyfb6c1c62011-12-10 11:33:53 -0800573 IWL_INFO(priv, "hw version: 0x%x\n", devid);
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800574
575 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
576 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800577 IWL_ERR(priv, "Memory allocation fail\n");
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800578 return -ENOMEM;
579 }
580 NLA_PUT_U32(skb, IWL_TM_ATTR_DEVICE_ID, devid);
581 status = cfg80211_testmode_reply(skb);
582 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800583 IWL_ERR(priv, "Error sending msg : %d\n", status);
Hsu, Kenny0bec12b2011-12-01 01:12:50 -0800584 break;
585
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800586 case IWL_TM_CMD_APP2DEV_GET_FW_INFO:
587 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20 + 8);
588 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800589 IWL_ERR(priv, "Memory allocation fail\n");
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800590 return -ENOMEM;
591 }
592 switch (priv->shrd->ucode_type) {
593 case IWL_UCODE_REGULAR:
Don Fry65161742012-02-07 15:00:12 -0800594 inst_size = nic(priv)->fw.ucode_rt.code.len;
595 data_size = nic(priv)->fw.ucode_rt.data.len;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800596 break;
597 case IWL_UCODE_INIT:
Don Fry65161742012-02-07 15:00:12 -0800598 inst_size = nic(priv)->fw.ucode_init.code.len;
599 data_size = nic(priv)->fw.ucode_init.data.len;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800600 break;
601 case IWL_UCODE_WOWLAN:
Don Fry65161742012-02-07 15:00:12 -0800602 inst_size = nic(priv)->fw.ucode_wowlan.code.len;
603 data_size = nic(priv)->fw.ucode_wowlan.data.len;
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800604 break;
605 case IWL_UCODE_NONE:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800606 IWL_ERR(priv, "No uCode has not been loaded\n");
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800607 break;
608 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800609 IWL_ERR(priv, "Unsupported uCode type\n");
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800610 break;
611 }
612 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 status = cfg80211_testmode_reply(skb);
616 if (status < 0)
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800617 IWL_ERR(priv, "Error sending msg : %d\n", status);
Kenny Hsuaca9b5f2011-12-24 12:12:12 +0800618 break;
619
Cindy H. Kao4613e722011-05-06 10:40:15 -0700620 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800621 IWL_ERR(priv, "Unknown testmode driver command ID\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700622 return -ENOSYS;
623 }
624 return status;
625
626nla_put_failure:
627 kfree_skb(skb);
628 return -EMSGSIZE;
629}
630
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700631
632/*
633 * This function handles the user application commands for uCode trace
634 *
635 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
636 * handlers respectively.
637 *
638 * If it's an unknown commdn ID, -ENOSYS is replied; otherwise, the returned
639 * value of the actual command execution is replied to the user application.
640 *
641 * @hw: ieee80211_hw object that represents the device
642 * @tb: gnl message fields from the user space
643 */
644static int iwl_testmode_trace(struct ieee80211_hw *hw, struct nlattr **tb)
645{
646 struct iwl_priv *priv = hw->priv;
647 struct sk_buff *skb;
648 int status = 0;
Emmanuel Grumbach1042db22012-01-03 16:56:15 +0200649 struct device *dev = trans(priv)->dev;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700650
651 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
652 case IWL_TM_CMD_APP2DEV_BEGIN_TRACE:
653 if (priv->testmode_trace.trace_enabled)
654 return -EBUSY;
655
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700656 if (!tb[IWL_TM_ATTR_TRACE_SIZE])
657 priv->testmode_trace.buff_size = TRACE_BUFF_SIZE_DEF;
658 else
659 priv->testmode_trace.buff_size =
660 nla_get_u32(tb[IWL_TM_ATTR_TRACE_SIZE]);
661 if (!priv->testmode_trace.buff_size)
662 return -EINVAL;
663 if (priv->testmode_trace.buff_size < TRACE_BUFF_SIZE_MIN ||
664 priv->testmode_trace.buff_size > TRACE_BUFF_SIZE_MAX)
665 return -EINVAL;
666
667 priv->testmode_trace.total_size =
668 priv->testmode_trace.buff_size + TRACE_BUFF_PADD;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700669 priv->testmode_trace.cpu_addr =
670 dma_alloc_coherent(dev,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700671 priv->testmode_trace.total_size,
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700672 &priv->testmode_trace.dma_addr,
673 GFP_KERNEL);
674 if (!priv->testmode_trace.cpu_addr)
675 return -ENOMEM;
676 priv->testmode_trace.trace_enabled = true;
677 priv->testmode_trace.trace_addr = (u8 *)PTR_ALIGN(
678 priv->testmode_trace.cpu_addr, 0x100);
679 memset(priv->testmode_trace.trace_addr, 0x03B,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700680 priv->testmode_trace.buff_size);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700681 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
682 sizeof(priv->testmode_trace.dma_addr) + 20);
683 if (!skb) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800684 IWL_ERR(priv, "Memory allocation fail\n");
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700685 iwl_trace_cleanup(priv);
686 return -ENOMEM;
687 }
688 NLA_PUT(skb, IWL_TM_ATTR_TRACE_ADDR,
689 sizeof(priv->testmode_trace.dma_addr),
690 (u64 *)&priv->testmode_trace.dma_addr);
691 status = cfg80211_testmode_reply(skb);
692 if (status < 0) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800693 IWL_ERR(priv, "Error sending msg : %d\n", status);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700694 }
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700695 priv->testmode_trace.num_chunks =
696 DIV_ROUND_UP(priv->testmode_trace.buff_size,
Hsu, Kennye056a652011-11-22 23:05:02 -0800697 DUMP_CHUNK_SIZE);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700698 break;
699
700 case IWL_TM_CMD_APP2DEV_END_TRACE:
701 iwl_trace_cleanup(priv);
702 break;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700703 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800704 IWL_ERR(priv, "Unknown testmode mem command ID\n");
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700705 return -ENOSYS;
706 }
707 return status;
708
709nla_put_failure:
710 kfree_skb(skb);
711 if (nla_get_u32(tb[IWL_TM_ATTR_COMMAND]) ==
712 IWL_TM_CMD_APP2DEV_BEGIN_TRACE)
713 iwl_trace_cleanup(priv);
714 return -EMSGSIZE;
715}
716
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700717static int iwl_testmode_trace_dump(struct ieee80211_hw *hw, struct nlattr **tb,
718 struct sk_buff *skb,
719 struct netlink_callback *cb)
720{
721 struct iwl_priv *priv = hw->priv;
722 int idx, length;
723
724 if (priv->testmode_trace.trace_enabled &&
725 priv->testmode_trace.trace_addr) {
726 idx = cb->args[4];
727 if (idx >= priv->testmode_trace.num_chunks)
728 return -ENOENT;
Hsu, Kennye056a652011-11-22 23:05:02 -0800729 length = DUMP_CHUNK_SIZE;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700730 if (((idx + 1) == priv->testmode_trace.num_chunks) &&
Hsu, Kennye056a652011-11-22 23:05:02 -0800731 (priv->testmode_trace.buff_size % DUMP_CHUNK_SIZE))
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700732 length = priv->testmode_trace.buff_size %
Hsu, Kennye056a652011-11-22 23:05:02 -0800733 DUMP_CHUNK_SIZE;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700734
735 NLA_PUT(skb, IWL_TM_ATTR_TRACE_DUMP, length,
736 priv->testmode_trace.trace_addr +
Hsu, Kennye056a652011-11-22 23:05:02 -0800737 (DUMP_CHUNK_SIZE * idx));
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700738 idx++;
739 cb->args[4] = idx;
740 return 0;
741 } else
742 return -EFAULT;
743
744 nla_put_failure:
745 return -ENOBUFS;
746}
747
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700748/*
749 * This function handles the user application switch ucode ownership.
750 *
751 * It retrieves the mandatory fields IWL_TM_ATTR_UCODE_OWNER and
752 * decide who the current owner of the uCode
753 *
754 * If the current owner is OWNERSHIP_TM, then the only host command
755 * can deliver to uCode is from testmode, all the other host commands
756 * will dropped.
757 *
758 * default driver is the owner of uCode in normal operational mode
759 *
760 * @hw: ieee80211_hw object that represents the device
761 * @tb: gnl message fields from the user space
762 */
763static int iwl_testmode_ownership(struct ieee80211_hw *hw, struct nlattr **tb)
764{
765 struct iwl_priv *priv = hw->priv;
766 u8 owner;
767
768 if (!tb[IWL_TM_ATTR_UCODE_OWNER]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800769 IWL_ERR(priv, "Missing ucode owner\n");
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700770 return -ENOMSG;
771 }
772
773 owner = nla_get_u8(tb[IWL_TM_ATTR_UCODE_OWNER]);
774 if ((owner == IWL_OWNERSHIP_DRIVER) || (owner == IWL_OWNERSHIP_TM))
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700775 priv->shrd->ucode_owner = owner;
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700776 else {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800777 IWL_ERR(priv, "Invalid owner\n");
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700778 return -EINVAL;
779 }
780 return 0;
781}
782
Amit Beka6c55f5e2012-01-25 13:30:27 +0200783static int iwl_testmode_indirect_read(struct iwl_priv *priv, u32 addr, u32 size)
784{
785 struct iwl_trans *trans = trans(priv);
786 unsigned long flags;
787 int i;
788
789 if (size & 0x3)
790 return -EINVAL;
791 priv->testmode_mem.buff_size = size;
792 priv->testmode_mem.buff_addr =
793 kmalloc(priv->testmode_mem.buff_size, GFP_KERNEL);
794 if (priv->testmode_mem.buff_addr == NULL)
795 return -ENOMEM;
796
797 /* Hard-coded periphery absolute address */
798 if (IWL_TM_ABS_PRPH_START <= addr &&
799 addr < IWL_TM_ABS_PRPH_START + PRPH_END) {
800 spin_lock_irqsave(&trans->reg_lock, flags);
801 iwl_grab_nic_access(trans);
Amit Beka858b7c72012-02-06 00:40:47 +0200802 iwl_write32(trans, HBUS_TARG_PRPH_RADDR,
803 addr | (3 << 24));
Amit Beka6c55f5e2012-01-25 13:30:27 +0200804 for (i = 0; i < size; i += 4)
Amit Beka858b7c72012-02-06 00:40:47 +0200805 *(u32 *)(priv->testmode_mem.buff_addr + i) =
Amit Beka6c55f5e2012-01-25 13:30:27 +0200806 iwl_read32(trans, HBUS_TARG_PRPH_RDAT);
807 iwl_release_nic_access(trans);
808 spin_unlock_irqrestore(&trans->reg_lock, flags);
809 } else { /* target memory (SRAM) */
810 _iwl_read_targ_mem_words(trans, addr,
811 priv->testmode_mem.buff_addr,
812 priv->testmode_mem.buff_size / 4);
813 }
814
815 priv->testmode_mem.num_chunks =
816 DIV_ROUND_UP(priv->testmode_mem.buff_size, DUMP_CHUNK_SIZE);
817 priv->testmode_mem.read_in_progress = true;
818 return 0;
819
820}
821
822static int iwl_testmode_indirect_write(struct iwl_priv *priv, u32 addr,
823 u32 size, unsigned char *buf)
824{
825 struct iwl_trans *trans = trans(priv);
826 u32 val, i;
827 unsigned long flags;
828
829 if (IWL_TM_ABS_PRPH_START <= addr &&
830 addr < IWL_TM_ABS_PRPH_START + PRPH_END) {
831 /* Periphery writes can be 1-3 bytes long, or DWORDs */
832 if (size < 4) {
833 memcpy(&val, buf, size);
834 spin_lock_irqsave(&trans->reg_lock, flags);
835 iwl_grab_nic_access(trans);
836 iwl_write32(trans, HBUS_TARG_PRPH_WADDR,
Amit Beka858b7c72012-02-06 00:40:47 +0200837 (addr & 0x0000FFFF) |
838 ((size - 1) << 24));
Amit Beka6c55f5e2012-01-25 13:30:27 +0200839 iwl_write32(trans, HBUS_TARG_PRPH_WDAT, val);
840 iwl_release_nic_access(trans);
841 /* needed after consecutive writes w/o read */
842 mmiowb();
843 spin_unlock_irqrestore(&trans->reg_lock, flags);
844 } else {
845 if (size % 4)
846 return -EINVAL;
847 for (i = 0; i < size; i += 4)
848 iwl_write_prph(trans, addr+i,
Amit Beka858b7c72012-02-06 00:40:47 +0200849 *(u32 *)(buf+i));
Amit Beka6c55f5e2012-01-25 13:30:27 +0200850 }
851 } else if (iwlagn_hw_valid_rtc_data_addr(addr) ||
852 (IWLAGN_RTC_INST_LOWER_BOUND <= addr &&
853 addr < IWLAGN_RTC_INST_UPPER_BOUND)) {
854 _iwl_write_targ_mem_words(trans, addr, buf, size/4);
855 } else
856 return -EINVAL;
857 return 0;
858}
859
Hsu, Kenny306713f2011-11-22 23:03:39 -0800860/*
861 * This function handles the user application commands for SRAM data dump
862 *
863 * It retrieves the mandatory fields IWL_TM_ATTR_SRAM_ADDR and
864 * IWL_TM_ATTR_SRAM_SIZE to decide the memory area for SRAM data reading
865 *
866 * Several error will be retured, -EBUSY if the SRAM data retrieved by
867 * previous command has not been delivered to userspace, or -ENOMSG if
868 * the mandatory fields (IWL_TM_ATTR_SRAM_ADDR,IWL_TM_ATTR_SRAM_SIZE)
869 * are missing, or -ENOMEM if the buffer allocation fails.
870 *
871 * Otherwise 0 is replied indicating the success of the SRAM reading.
872 *
873 * @hw: ieee80211_hw object that represents the device
874 * @tb: gnl message fields from the user space
875 */
Amit Beka6c55f5e2012-01-25 13:30:27 +0200876static int iwl_testmode_indirect_mem(struct ieee80211_hw *hw,
877 struct nlattr **tb)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800878{
879 struct iwl_priv *priv = hw->priv;
Amit Beka6c55f5e2012-01-25 13:30:27 +0200880 u32 addr, size, cmd;
881 unsigned char *buf;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800882
Amit Beka6c55f5e2012-01-25 13:30:27 +0200883 /* Both read and write should be blocked, for atomicity */
884 if (priv->testmode_mem.read_in_progress)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800885 return -EBUSY;
886
Amit Beka6c55f5e2012-01-25 13:30:27 +0200887 cmd = nla_get_u32(tb[IWL_TM_ATTR_COMMAND]);
888 if (!tb[IWL_TM_ATTR_MEM_ADDR]) {
889 IWL_ERR(priv, "Error finding memory offset address\n");
Hsu, Kenny306713f2011-11-22 23:03:39 -0800890 return -ENOMSG;
891 }
Amit Beka6c55f5e2012-01-25 13:30:27 +0200892 addr = nla_get_u32(tb[IWL_TM_ATTR_MEM_ADDR]);
893 if (!tb[IWL_TM_ATTR_BUFFER_SIZE]) {
894 IWL_ERR(priv, "Error finding size for memory reading\n");
Hsu, Kenny306713f2011-11-22 23:03:39 -0800895 return -ENOMSG;
896 }
Amit Beka6c55f5e2012-01-25 13:30:27 +0200897 size = nla_get_u32(tb[IWL_TM_ATTR_BUFFER_SIZE]);
898
899 if (cmd == IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_READ)
900 return iwl_testmode_indirect_read(priv, addr, size);
901 else {
902 if (!tb[IWL_TM_ATTR_BUFFER_DUMP])
903 return -EINVAL;
904 buf = (unsigned char *) nla_data(tb[IWL_TM_ATTR_BUFFER_DUMP]);
905 return iwl_testmode_indirect_write(priv, addr, size, buf);
Kenny Hsu76de2f22011-11-23 06:57:22 -0800906 }
Hsu, Kenny306713f2011-11-22 23:03:39 -0800907}
908
Amit Beka6c55f5e2012-01-25 13:30:27 +0200909static int iwl_testmode_buffer_dump(struct ieee80211_hw *hw, struct nlattr **tb,
Hsu, Kenny306713f2011-11-22 23:03:39 -0800910 struct sk_buff *skb,
911 struct netlink_callback *cb)
912{
913 struct iwl_priv *priv = hw->priv;
914 int idx, length;
915
Amit Beka6c55f5e2012-01-25 13:30:27 +0200916 if (priv->testmode_mem.read_in_progress) {
Hsu, Kenny306713f2011-11-22 23:03:39 -0800917 idx = cb->args[4];
Amit Beka6c55f5e2012-01-25 13:30:27 +0200918 if (idx >= priv->testmode_mem.num_chunks) {
919 iwl_mem_cleanup(priv);
Hsu, Kenny306713f2011-11-22 23:03:39 -0800920 return -ENOENT;
921 }
Hsu, Kennye056a652011-11-22 23:05:02 -0800922 length = DUMP_CHUNK_SIZE;
Amit Beka6c55f5e2012-01-25 13:30:27 +0200923 if (((idx + 1) == priv->testmode_mem.num_chunks) &&
924 (priv->testmode_mem.buff_size % DUMP_CHUNK_SIZE))
925 length = priv->testmode_mem.buff_size %
Hsu, Kennye056a652011-11-22 23:05:02 -0800926 DUMP_CHUNK_SIZE;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800927
Amit Beka6c55f5e2012-01-25 13:30:27 +0200928 NLA_PUT(skb, IWL_TM_ATTR_BUFFER_DUMP, length,
929 priv->testmode_mem.buff_addr +
Hsu, Kennye056a652011-11-22 23:05:02 -0800930 (DUMP_CHUNK_SIZE * idx));
Hsu, Kenny306713f2011-11-22 23:03:39 -0800931 idx++;
932 cb->args[4] = idx;
933 return 0;
934 } else
935 return -EFAULT;
936
937 nla_put_failure:
938 return -ENOBUFS;
939}
940
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700941
Cindy H. Kao4613e722011-05-06 10:40:15 -0700942/* The testmode gnl message handler that takes the gnl message from the
943 * user space and parses it per the policy iwl_testmode_gnl_msg_policy, then
944 * invoke the corresponding handlers.
945 *
946 * This function is invoked when there is user space application sending
947 * gnl message through the testmode tunnel NL80211_CMD_TESTMODE regulated
948 * by nl80211.
949 *
950 * It retrieves the mandatory field, IWL_TM_ATTR_COMMAND, before
951 * dispatching it to the corresponding handler.
952 *
953 * If IWL_TM_ATTR_COMMAND is missing, -ENOMSG is replied to user application;
954 * -ENOSYS is replied to the user application if the command is unknown;
955 * Otherwise, the command is dispatched to the respective handler.
956 *
957 * @hw: ieee80211_hw object that represents the device
958 * @data: pointer to user space message
959 * @len: length in byte of @data
960 */
Wey-Yi Guyade4c642011-10-10 07:27:11 -0700961int iwlagn_mac_testmode_cmd(struct ieee80211_hw *hw, void *data, int len)
Cindy H. Kao4613e722011-05-06 10:40:15 -0700962{
Wey-Yi Guya6779272011-07-11 10:47:39 -0700963 struct nlattr *tb[IWL_TM_ATTR_MAX];
Cindy H. Kao4613e722011-05-06 10:40:15 -0700964 struct iwl_priv *priv = hw->priv;
965 int result;
966
967 result = nla_parse(tb, IWL_TM_ATTR_MAX - 1, data, len,
968 iwl_testmode_gnl_msg_policy);
969 if (result != 0) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800970 IWL_ERR(priv, "Error parsing the gnl message : %d\n", result);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700971 return result;
972 }
973
974 /* IWL_TM_ATTR_COMMAND is absolutely mandatory */
975 if (!tb[IWL_TM_ATTR_COMMAND]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -0800976 IWL_ERR(priv, "Missing testmode command type\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -0700977 return -ENOMSG;
978 }
979 /* in case multiple accesses to the device happens */
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700980 mutex_lock(&priv->shrd->mutex);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700981
982 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
983 case IWL_TM_CMD_APP2DEV_UCODE:
984 IWL_DEBUG_INFO(priv, "testmode cmd to uCode\n");
985 result = iwl_testmode_ucode(hw, tb);
986 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800987 case IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32:
988 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32:
989 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700990 IWL_DEBUG_INFO(priv, "testmode cmd to register\n");
991 result = iwl_testmode_reg(hw, tb);
992 break;
993 case IWL_TM_CMD_APP2DEV_GET_DEVICENAME:
994 case IWL_TM_CMD_APP2DEV_LOAD_INIT_FW:
995 case IWL_TM_CMD_APP2DEV_CFG_INIT_CALIB:
996 case IWL_TM_CMD_APP2DEV_LOAD_RUNTIME_FW:
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700997 case IWL_TM_CMD_APP2DEV_GET_EEPROM:
Wey-Yi Guy64898542011-05-03 18:05:13 -0700998 case IWL_TM_CMD_APP2DEV_FIXRATE_REQ:
Hsu, Kennyd4af19f2011-11-24 22:26:53 -0800999 case IWL_TM_CMD_APP2DEV_LOAD_WOWLAN_FW:
Hsu, Kennye1a38fe2011-11-28 00:55:38 -08001000 case IWL_TM_CMD_APP2DEV_GET_FW_VERSION:
Hsu, Kenny0bec12b2011-12-01 01:12:50 -08001001 case IWL_TM_CMD_APP2DEV_GET_DEVICE_ID:
Kenny Hsuaca9b5f2011-12-24 12:12:12 +08001002 case IWL_TM_CMD_APP2DEV_GET_FW_INFO:
Cindy H. Kao4613e722011-05-06 10:40:15 -07001003 IWL_DEBUG_INFO(priv, "testmode cmd to driver\n");
1004 result = iwl_testmode_driver(hw, tb);
1005 break;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -07001006
1007 case IWL_TM_CMD_APP2DEV_BEGIN_TRACE:
1008 case IWL_TM_CMD_APP2DEV_END_TRACE:
1009 case IWL_TM_CMD_APP2DEV_READ_TRACE:
1010 IWL_DEBUG_INFO(priv, "testmode uCode trace cmd to driver\n");
1011 result = iwl_testmode_trace(hw, tb);
1012 break;
1013
Wey-Yi Guye98a1932011-07-08 08:46:26 -07001014 case IWL_TM_CMD_APP2DEV_OWNERSHIP:
1015 IWL_DEBUG_INFO(priv, "testmode change uCode ownership\n");
1016 result = iwl_testmode_ownership(hw, tb);
1017 break;
1018
Amit Beka6c55f5e2012-01-25 13:30:27 +02001019 case IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_READ:
1020 case IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_WRITE:
1021 IWL_DEBUG_INFO(priv, "testmode indirect memory cmd "
1022 "to driver\n");
1023 result = iwl_testmode_indirect_mem(hw, tb);
Hsu, Kenny306713f2011-11-22 23:03:39 -08001024 break;
1025
Cindy H. Kao4613e722011-05-06 10:40:15 -07001026 default:
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -08001027 IWL_ERR(priv, "Unknown testmode command\n");
Cindy H. Kao4613e722011-05-06 10:40:15 -07001028 result = -ENOSYS;
1029 break;
1030 }
1031
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001032 mutex_unlock(&priv->shrd->mutex);
Cindy H. Kao4613e722011-05-06 10:40:15 -07001033 return result;
1034}
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001035
Wey-Yi Guyade4c642011-10-10 07:27:11 -07001036int iwlagn_mac_testmode_dump(struct ieee80211_hw *hw, struct sk_buff *skb,
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001037 struct netlink_callback *cb,
1038 void *data, int len)
1039{
1040 struct nlattr *tb[IWL_TM_ATTR_MAX];
1041 struct iwl_priv *priv = hw->priv;
1042 int result;
1043 u32 cmd;
1044
1045 if (cb->args[3]) {
1046 /* offset by 1 since commands start at 0 */
1047 cmd = cb->args[3] - 1;
1048 } else {
1049 result = nla_parse(tb, IWL_TM_ATTR_MAX - 1, data, len,
1050 iwl_testmode_gnl_msg_policy);
1051 if (result) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -08001052 IWL_ERR(priv,
1053 "Error parsing the gnl message : %d\n", result);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001054 return result;
1055 }
1056
1057 /* IWL_TM_ATTR_COMMAND is absolutely mandatory */
1058 if (!tb[IWL_TM_ATTR_COMMAND]) {
Wey-Yi Guy2f73d7c2012-02-03 13:06:57 -08001059 IWL_ERR(priv, "Missing testmode command type\n");
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001060 return -ENOMSG;
1061 }
1062 cmd = nla_get_u32(tb[IWL_TM_ATTR_COMMAND]);
1063 cb->args[3] = cmd + 1;
1064 }
1065
1066 /* in case multiple accesses to the device happens */
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001067 mutex_lock(&priv->shrd->mutex);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001068 switch (cmd) {
1069 case IWL_TM_CMD_APP2DEV_READ_TRACE:
1070 IWL_DEBUG_INFO(priv, "uCode trace cmd to driver\n");
1071 result = iwl_testmode_trace_dump(hw, tb, skb, cb);
1072 break;
Amit Beka6c55f5e2012-01-25 13:30:27 +02001073 case IWL_TM_CMD_APP2DEV_INDIRECT_BUFFER_DUMP:
Hsu, Kenny306713f2011-11-22 23:03:39 -08001074 IWL_DEBUG_INFO(priv, "testmode sram dump cmd to driver\n");
Amit Beka6c55f5e2012-01-25 13:30:27 +02001075 result = iwl_testmode_buffer_dump(hw, tb, skb, cb);
Hsu, Kenny306713f2011-11-22 23:03:39 -08001076 break;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001077 default:
1078 result = -EINVAL;
1079 break;
1080 }
1081
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -07001082 mutex_unlock(&priv->shrd->mutex);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -07001083 return result;
1084}