blob: 21b2fbb4dc3be4bf6f6b90af8c368413a30798a7 [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 *
8 * Copyright(c) 2010 - 2011 Intel Corporation. All rights reserved.
9 *
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 *
33 * Copyright(c) 2010 - 2011 Intel Corporation. All rights reserved.
34 * 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"
Cindy H. Kao4613e722011-05-06 10:40:15 -070080
81/* The TLVs used in the gnl message policy between the kernel module and
82 * user space application. iwl_testmode_gnl_msg_policy is to be carried
83 * through the NL80211_CMD_TESTMODE channel regulated by nl80211.
84 * See iwl-testmode.h
85 */
86static
87struct nla_policy iwl_testmode_gnl_msg_policy[IWL_TM_ATTR_MAX] = {
88 [IWL_TM_ATTR_COMMAND] = { .type = NLA_U32, },
89
90 [IWL_TM_ATTR_UCODE_CMD_ID] = { .type = NLA_U8, },
91 [IWL_TM_ATTR_UCODE_CMD_DATA] = { .type = NLA_UNSPEC, },
92
93 [IWL_TM_ATTR_REG_OFFSET] = { .type = NLA_U32, },
94 [IWL_TM_ATTR_REG_VALUE8] = { .type = NLA_U8, },
95 [IWL_TM_ATTR_REG_VALUE32] = { .type = NLA_U32, },
96
97 [IWL_TM_ATTR_SYNC_RSP] = { .type = NLA_UNSPEC, },
98 [IWL_TM_ATTR_UCODE_RX_PKT] = { .type = NLA_UNSPEC, },
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -070099
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700100 [IWL_TM_ATTR_EEPROM] = { .type = NLA_UNSPEC, },
101
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700102 [IWL_TM_ATTR_TRACE_ADDR] = { .type = NLA_UNSPEC, },
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700103 [IWL_TM_ATTR_TRACE_DUMP] = { .type = NLA_UNSPEC, },
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700104 [IWL_TM_ATTR_TRACE_SIZE] = { .type = NLA_U32, },
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700105
Wey-Yi Guy64898542011-05-03 18:05:13 -0700106 [IWL_TM_ATTR_FIXRATE] = { .type = NLA_U32, },
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700107
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700108 [IWL_TM_ATTR_UCODE_OWNER] = { .type = NLA_U8, },
Hsu, Kenny306713f2011-11-22 23:03:39 -0800109
110 [IWL_TM_ATTR_SRAM_ADDR] = { .type = NLA_U32, },
111 [IWL_TM_ATTR_SRAM_SIZE] = { .type = NLA_U32, },
112 [IWL_TM_ATTR_SRAM_DUMP] = { .type = NLA_UNSPEC, },
Cindy H. Kao4613e722011-05-06 10:40:15 -0700113};
114
115/*
116 * See the struct iwl_rx_packet in iwl-commands.h for the format of the
117 * received events from the device
118 */
119static inline int get_event_length(struct iwl_rx_mem_buffer *rxb)
120{
121 struct iwl_rx_packet *pkt = rxb_addr(rxb);
122 if (pkt)
123 return le32_to_cpu(pkt->len_n_flags) & FH_RSCSR_FRAME_SIZE_MSK;
124 else
125 return 0;
126}
127
128
129/*
130 * This function multicasts the spontaneous messages from the device to the
131 * user space. It is invoked whenever there is a received messages
132 * from the device. This function is called within the ISR of the rx handlers
133 * in iwlagn driver.
134 *
135 * The parsing of the message content is left to the user space application,
136 * The message content is treated as unattacked raw data and is encapsulated
137 * with IWL_TM_ATTR_UCODE_RX_PKT multicasting to the user space.
138 *
139 * @priv: the instance of iwlwifi device
140 * @rxb: pointer to rx data content received by the ISR
141 *
142 * See the message policies and TLVs in iwl_testmode_gnl_msg_policy[].
143 * For the messages multicasting to the user application, the mandatory
144 * TLV fields are :
145 * IWL_TM_ATTR_COMMAND must be IWL_TM_CMD_DEV2APP_UCODE_RX_PKT
146 * IWL_TM_ATTR_UCODE_RX_PKT for carrying the message content
147 */
148
149static void iwl_testmode_ucode_rx_pkt(struct iwl_priv *priv,
150 struct iwl_rx_mem_buffer *rxb)
151{
152 struct ieee80211_hw *hw = priv->hw;
153 struct sk_buff *skb;
154 void *data;
155 int length;
156
157 data = (void *)rxb_addr(rxb);
158 length = get_event_length(rxb);
159
160 if (!data || length == 0)
161 return;
162
163 skb = cfg80211_testmode_alloc_event_skb(hw->wiphy, 20 + length,
164 GFP_ATOMIC);
165 if (skb == NULL) {
166 IWL_DEBUG_INFO(priv,
167 "Run out of memory for messages to user space ?\n");
168 return;
169 }
170 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND, IWL_TM_CMD_DEV2APP_UCODE_RX_PKT);
171 NLA_PUT(skb, IWL_TM_ATTR_UCODE_RX_PKT, length, data);
172 cfg80211_testmode_event(skb, GFP_ATOMIC);
173 return;
174
175nla_put_failure:
176 kfree_skb(skb);
177 IWL_DEBUG_INFO(priv, "Ouch, overran buffer, check allocation!\n");
178}
179
180void iwl_testmode_init(struct iwl_priv *priv)
181{
182 priv->pre_rx_handler = iwl_testmode_ucode_rx_pkt;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700183 priv->testmode_trace.trace_enabled = false;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800184 priv->testmode_sram.sram_readed = false;
185}
186
Wey-Yi Guy6b5a26f52011-11-23 07:08:22 -0800187static void iwl_sram_cleanup(struct iwl_priv *priv)
Hsu, Kenny306713f2011-11-22 23:03:39 -0800188{
189 if (priv->testmode_sram.sram_readed) {
190 kfree(priv->testmode_sram.buff_addr);
191 priv->testmode_sram.buff_addr = NULL;
192 priv->testmode_sram.buff_size = 0;
193 priv->testmode_sram.num_chunks = 0;
194 priv->testmode_sram.sram_readed = false;
195 }
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700196}
197
198static void iwl_trace_cleanup(struct iwl_priv *priv)
199{
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700200 if (priv->testmode_trace.trace_enabled) {
201 if (priv->testmode_trace.cpu_addr &&
202 priv->testmode_trace.dma_addr)
Don Fry26bfc0c2011-10-10 07:26:56 -0700203 dma_free_coherent(bus(priv)->dev,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700204 priv->testmode_trace.total_size,
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700205 priv->testmode_trace.cpu_addr,
206 priv->testmode_trace.dma_addr);
207 priv->testmode_trace.trace_enabled = false;
208 priv->testmode_trace.cpu_addr = NULL;
209 priv->testmode_trace.trace_addr = NULL;
210 priv->testmode_trace.dma_addr = 0;
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700211 priv->testmode_trace.buff_size = 0;
212 priv->testmode_trace.total_size = 0;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700213 }
214}
215
216
217void iwl_testmode_cleanup(struct iwl_priv *priv)
218{
219 iwl_trace_cleanup(priv);
Hsu, Kenny306713f2011-11-22 23:03:39 -0800220 iwl_sram_cleanup(priv);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700221}
222
223/*
224 * This function handles the user application commands to the ucode.
225 *
226 * It retrieves the mandatory fields IWL_TM_ATTR_UCODE_CMD_ID and
227 * IWL_TM_ATTR_UCODE_CMD_DATA and calls to the handler to send the
228 * host command to the ucode.
229 *
230 * If any mandatory field is missing, -ENOMSG is replied to the user space
231 * application; otherwise, the actual execution result of the host command to
232 * ucode is replied.
233 *
234 * @hw: ieee80211_hw object that represents the device
235 * @tb: gnl message fields from the user space
236 */
237static int iwl_testmode_ucode(struct ieee80211_hw *hw, struct nlattr **tb)
238{
239 struct iwl_priv *priv = hw->priv;
240 struct iwl_host_cmd cmd;
241
242 memset(&cmd, 0, sizeof(struct iwl_host_cmd));
243
244 if (!tb[IWL_TM_ATTR_UCODE_CMD_ID] ||
245 !tb[IWL_TM_ATTR_UCODE_CMD_DATA]) {
246 IWL_DEBUG_INFO(priv,
247 "Error finding ucode command mandatory fields\n");
248 return -ENOMSG;
249 }
250
Wey-Yi Guyc7c11152011-07-08 08:46:25 -0700251 cmd.flags = CMD_ON_DEMAND;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700252 cmd.id = nla_get_u8(tb[IWL_TM_ATTR_UCODE_CMD_ID]);
Johannes Berg3fa50732011-05-04 07:50:38 -0700253 cmd.data[0] = nla_data(tb[IWL_TM_ATTR_UCODE_CMD_DATA]);
254 cmd.len[0] = nla_len(tb[IWL_TM_ATTR_UCODE_CMD_DATA]);
Johannes Berg4ce7cc22011-05-13 11:57:40 -0700255 cmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700256 IWL_INFO(priv, "testmode ucode command ID 0x%x, flags 0x%x,"
Johannes Berg3fa50732011-05-04 07:50:38 -0700257 " len %d\n", cmd.id, cmd.flags, cmd.len[0]);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700258 /* ok, let's submit the command to ucode */
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700259 return iwl_trans_send_cmd(trans(priv), &cmd);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700260}
261
262
263/*
264 * This function handles the user application commands for register access.
265 *
266 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
267 * handlers respectively.
268 *
269 * If it's an unknown commdn ID, -ENOSYS is returned; or -ENOMSG if the
270 * mandatory fields(IWL_TM_ATTR_REG_OFFSET,IWL_TM_ATTR_REG_VALUE32,
271 * IWL_TM_ATTR_REG_VALUE8) are missing; Otherwise 0 is replied indicating
272 * the success of the command execution.
273 *
274 * If IWL_TM_ATTR_COMMAND is IWL_TM_CMD_APP2DEV_REG_READ32, the register read
275 * value is returned with IWL_TM_ATTR_REG_VALUE32.
276 *
277 * @hw: ieee80211_hw object that represents the device
278 * @tb: gnl message fields from the user space
279 */
280static int iwl_testmode_reg(struct ieee80211_hw *hw, struct nlattr **tb)
281{
282 struct iwl_priv *priv = hw->priv;
283 u32 ofs, val32;
284 u8 val8;
285 struct sk_buff *skb;
286 int status = 0;
287
288 if (!tb[IWL_TM_ATTR_REG_OFFSET]) {
289 IWL_DEBUG_INFO(priv, "Error finding register offset\n");
290 return -ENOMSG;
291 }
292 ofs = nla_get_u32(tb[IWL_TM_ATTR_REG_OFFSET]);
293 IWL_INFO(priv, "testmode register access command offset 0x%x\n", ofs);
294
295 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800296 case IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32:
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700297 val32 = iwl_read32(bus(priv), ofs);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700298 IWL_INFO(priv, "32bit value to read 0x%x\n", val32);
299
300 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
301 if (!skb) {
302 IWL_DEBUG_INFO(priv, "Error allocating memory\n");
303 return -ENOMEM;
304 }
305 NLA_PUT_U32(skb, IWL_TM_ATTR_REG_VALUE32, val32);
306 status = cfg80211_testmode_reply(skb);
307 if (status < 0)
308 IWL_DEBUG_INFO(priv,
309 "Error sending msg : %d\n", status);
310 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800311 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700312 if (!tb[IWL_TM_ATTR_REG_VALUE32]) {
313 IWL_DEBUG_INFO(priv,
314 "Error finding value to write\n");
315 return -ENOMSG;
316 } else {
317 val32 = nla_get_u32(tb[IWL_TM_ATTR_REG_VALUE32]);
318 IWL_INFO(priv, "32bit value to write 0x%x\n", val32);
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700319 iwl_write32(bus(priv), ofs, val32);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700320 }
321 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800322 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700323 if (!tb[IWL_TM_ATTR_REG_VALUE8]) {
324 IWL_DEBUG_INFO(priv, "Error finding value to write\n");
325 return -ENOMSG;
326 } else {
327 val8 = nla_get_u8(tb[IWL_TM_ATTR_REG_VALUE8]);
328 IWL_INFO(priv, "8bit value to write 0x%x\n", val8);
Emmanuel Grumbach83ed9012011-08-25 23:11:14 -0700329 iwl_write8(bus(priv), ofs, val8);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700330 }
331 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800332 case IWL_TM_CMD_APP2DEV_INDIRECT_REG_READ32:
333 val32 = iwl_read_prph(bus(priv), ofs);
334 IWL_INFO(priv, "32bit value to read 0x%x\n", val32);
335
336 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy, 20);
337 if (!skb) {
338 IWL_DEBUG_INFO(priv, "Error allocating memory\n");
339 return -ENOMEM;
340 }
341 NLA_PUT_U32(skb, IWL_TM_ATTR_REG_VALUE32, val32);
342 status = cfg80211_testmode_reply(skb);
343 if (status < 0)
344 IWL_DEBUG_INFO(priv,
345 "Error sending msg : %d\n", status);
346 break;
347 case IWL_TM_CMD_APP2DEV_INDIRECT_REG_WRITE32:
348 if (!tb[IWL_TM_ATTR_REG_VALUE32]) {
349 IWL_DEBUG_INFO(priv,
350 "Error finding value to write\n");
351 return -ENOMSG;
352 } else {
353 val32 = nla_get_u32(tb[IWL_TM_ATTR_REG_VALUE32]);
354 IWL_INFO(priv, "32bit value to write 0x%x\n", val32);
355 iwl_write_prph(bus(priv), ofs, val32);
356 }
357 break;
Cindy H. Kao4613e722011-05-06 10:40:15 -0700358 default:
359 IWL_DEBUG_INFO(priv, "Unknown testmode register command ID\n");
360 return -ENOSYS;
361 }
362
363 return status;
364
365nla_put_failure:
366 kfree_skb(skb);
367 return -EMSGSIZE;
368}
369
370
371static int iwl_testmode_cfg_init_calib(struct iwl_priv *priv)
372{
373 struct iwl_notification_wait calib_wait;
374 int ret;
375
376 iwlagn_init_notification_wait(priv, &calib_wait,
377 CALIBRATION_COMPLETE_NOTIFICATION,
378 NULL, NULL);
379 ret = iwlagn_init_alive_start(priv);
380 if (ret) {
381 IWL_DEBUG_INFO(priv,
382 "Error configuring init calibration: %d\n", ret);
383 goto cfg_init_calib_error;
384 }
385
386 ret = iwlagn_wait_notification(priv, &calib_wait, 2 * HZ);
387 if (ret)
388 IWL_DEBUG_INFO(priv, "Error detecting"
389 " CALIBRATION_COMPLETE_NOTIFICATION: %d\n", ret);
390 return ret;
391
392cfg_init_calib_error:
393 iwlagn_remove_notification(priv, &calib_wait);
394 return ret;
395}
396
397/*
398 * This function handles the user application commands for driver.
399 *
400 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
401 * handlers respectively.
402 *
403 * If it's an unknown commdn ID, -ENOSYS is replied; otherwise, the returned
404 * value of the actual command execution is replied to the user application.
405 *
406 * If there's any message responding to the user space, IWL_TM_ATTR_SYNC_RSP
407 * is used for carry the message while IWL_TM_ATTR_COMMAND must set to
408 * IWL_TM_CMD_DEV2APP_SYNC_RSP.
409 *
410 * @hw: ieee80211_hw object that represents the device
411 * @tb: gnl message fields from the user space
412 */
413static int iwl_testmode_driver(struct ieee80211_hw *hw, struct nlattr **tb)
414{
415 struct iwl_priv *priv = hw->priv;
416 struct sk_buff *skb;
417 unsigned char *rsp_data_ptr = NULL;
418 int status = 0, rsp_data_len = 0;
419
420 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
421 case IWL_TM_CMD_APP2DEV_GET_DEVICENAME:
422 rsp_data_ptr = (unsigned char *)priv->cfg->name;
423 rsp_data_len = strlen(priv->cfg->name);
424 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
425 rsp_data_len + 20);
426 if (!skb) {
427 IWL_DEBUG_INFO(priv,
428 "Error allocating memory\n");
429 return -ENOMEM;
430 }
431 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND,
432 IWL_TM_CMD_DEV2APP_SYNC_RSP);
433 NLA_PUT(skb, IWL_TM_ATTR_SYNC_RSP,
434 rsp_data_len, rsp_data_ptr);
435 status = cfg80211_testmode_reply(skb);
436 if (status < 0)
437 IWL_DEBUG_INFO(priv, "Error sending msg : %d\n",
438 status);
439 break;
440
441 case IWL_TM_CMD_APP2DEV_LOAD_INIT_FW:
Don Fry8929c242011-11-10 06:55:08 -0800442 status = iwlagn_load_ucode_wait_alive(priv, IWL_UCODE_INIT);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700443 if (status)
444 IWL_DEBUG_INFO(priv,
445 "Error loading init ucode: %d\n", status);
446 break;
447
448 case IWL_TM_CMD_APP2DEV_CFG_INIT_CALIB:
449 iwl_testmode_cfg_init_calib(priv);
Emmanuel Grumbache6bb4c92011-08-25 23:10:48 -0700450 iwl_trans_stop_device(trans(priv));
Cindy H. Kao4613e722011-05-06 10:40:15 -0700451 break;
452
453 case IWL_TM_CMD_APP2DEV_LOAD_RUNTIME_FW:
Don Fry8929c242011-11-10 06:55:08 -0800454 status = iwlagn_load_ucode_wait_alive(priv, IWL_UCODE_REGULAR);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700455 if (status) {
456 IWL_DEBUG_INFO(priv,
457 "Error loading runtime ucode: %d\n", status);
458 break;
459 }
460 status = iwl_alive_start(priv);
461 if (status)
462 IWL_DEBUG_INFO(priv,
463 "Error starting the device: %d\n", status);
464 break;
465
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700466 case IWL_TM_CMD_APP2DEV_GET_EEPROM:
467 if (priv->eeprom) {
468 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
469 priv->cfg->base_params->eeprom_size + 20);
470 if (!skb) {
471 IWL_DEBUG_INFO(priv,
472 "Error allocating memory\n");
473 return -ENOMEM;
474 }
475 NLA_PUT_U32(skb, IWL_TM_ATTR_COMMAND,
476 IWL_TM_CMD_DEV2APP_EEPROM_RSP);
477 NLA_PUT(skb, IWL_TM_ATTR_EEPROM,
478 priv->cfg->base_params->eeprom_size,
479 priv->eeprom);
480 status = cfg80211_testmode_reply(skb);
481 if (status < 0)
482 IWL_DEBUG_INFO(priv,
483 "Error sending msg : %d\n",
484 status);
485 } else
486 return -EFAULT;
487 break;
488
Wey-Yi Guy64898542011-05-03 18:05:13 -0700489 case IWL_TM_CMD_APP2DEV_FIXRATE_REQ:
490 if (!tb[IWL_TM_ATTR_FIXRATE]) {
491 IWL_DEBUG_INFO(priv,
492 "Error finding fixrate setting\n");
493 return -ENOMSG;
494 }
Wey-Yi Guy4e308112011-07-08 08:46:28 -0700495 priv->tm_fixed_rate = nla_get_u32(tb[IWL_TM_ATTR_FIXRATE]);
Wey-Yi Guy64898542011-05-03 18:05:13 -0700496 break;
497
Cindy H. Kao4613e722011-05-06 10:40:15 -0700498 default:
499 IWL_DEBUG_INFO(priv, "Unknown testmode driver command ID\n");
500 return -ENOSYS;
501 }
502 return status;
503
504nla_put_failure:
505 kfree_skb(skb);
506 return -EMSGSIZE;
507}
508
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700509
510/*
511 * This function handles the user application commands for uCode trace
512 *
513 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
514 * handlers respectively.
515 *
516 * If it's an unknown commdn ID, -ENOSYS is replied; otherwise, the returned
517 * value of the actual command execution is replied to the user application.
518 *
519 * @hw: ieee80211_hw object that represents the device
520 * @tb: gnl message fields from the user space
521 */
522static int iwl_testmode_trace(struct ieee80211_hw *hw, struct nlattr **tb)
523{
524 struct iwl_priv *priv = hw->priv;
525 struct sk_buff *skb;
526 int status = 0;
Don Fry26bfc0c2011-10-10 07:26:56 -0700527 struct device *dev = bus(priv)->dev;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700528
529 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
530 case IWL_TM_CMD_APP2DEV_BEGIN_TRACE:
531 if (priv->testmode_trace.trace_enabled)
532 return -EBUSY;
533
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700534 if (!tb[IWL_TM_ATTR_TRACE_SIZE])
535 priv->testmode_trace.buff_size = TRACE_BUFF_SIZE_DEF;
536 else
537 priv->testmode_trace.buff_size =
538 nla_get_u32(tb[IWL_TM_ATTR_TRACE_SIZE]);
539 if (!priv->testmode_trace.buff_size)
540 return -EINVAL;
541 if (priv->testmode_trace.buff_size < TRACE_BUFF_SIZE_MIN ||
542 priv->testmode_trace.buff_size > TRACE_BUFF_SIZE_MAX)
543 return -EINVAL;
544
545 priv->testmode_trace.total_size =
546 priv->testmode_trace.buff_size + TRACE_BUFF_PADD;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700547 priv->testmode_trace.cpu_addr =
548 dma_alloc_coherent(dev,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700549 priv->testmode_trace.total_size,
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700550 &priv->testmode_trace.dma_addr,
551 GFP_KERNEL);
552 if (!priv->testmode_trace.cpu_addr)
553 return -ENOMEM;
554 priv->testmode_trace.trace_enabled = true;
555 priv->testmode_trace.trace_addr = (u8 *)PTR_ALIGN(
556 priv->testmode_trace.cpu_addr, 0x100);
557 memset(priv->testmode_trace.trace_addr, 0x03B,
Wey-Yi Guy49b72102011-05-30 10:29:37 -0700558 priv->testmode_trace.buff_size);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700559 skb = cfg80211_testmode_alloc_reply_skb(hw->wiphy,
560 sizeof(priv->testmode_trace.dma_addr) + 20);
561 if (!skb) {
562 IWL_DEBUG_INFO(priv,
563 "Error allocating memory\n");
564 iwl_trace_cleanup(priv);
565 return -ENOMEM;
566 }
567 NLA_PUT(skb, IWL_TM_ATTR_TRACE_ADDR,
568 sizeof(priv->testmode_trace.dma_addr),
569 (u64 *)&priv->testmode_trace.dma_addr);
570 status = cfg80211_testmode_reply(skb);
571 if (status < 0) {
572 IWL_DEBUG_INFO(priv,
573 "Error sending msg : %d\n",
574 status);
575 }
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700576 priv->testmode_trace.num_chunks =
577 DIV_ROUND_UP(priv->testmode_trace.buff_size,
Hsu, Kennye056a652011-11-22 23:05:02 -0800578 DUMP_CHUNK_SIZE);
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700579 break;
580
581 case IWL_TM_CMD_APP2DEV_END_TRACE:
582 iwl_trace_cleanup(priv);
583 break;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700584 default:
585 IWL_DEBUG_INFO(priv, "Unknown testmode mem command ID\n");
586 return -ENOSYS;
587 }
588 return status;
589
590nla_put_failure:
591 kfree_skb(skb);
592 if (nla_get_u32(tb[IWL_TM_ATTR_COMMAND]) ==
593 IWL_TM_CMD_APP2DEV_BEGIN_TRACE)
594 iwl_trace_cleanup(priv);
595 return -EMSGSIZE;
596}
597
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700598static int iwl_testmode_trace_dump(struct ieee80211_hw *hw, struct nlattr **tb,
599 struct sk_buff *skb,
600 struct netlink_callback *cb)
601{
602 struct iwl_priv *priv = hw->priv;
603 int idx, length;
604
605 if (priv->testmode_trace.trace_enabled &&
606 priv->testmode_trace.trace_addr) {
607 idx = cb->args[4];
608 if (idx >= priv->testmode_trace.num_chunks)
609 return -ENOENT;
Hsu, Kennye056a652011-11-22 23:05:02 -0800610 length = DUMP_CHUNK_SIZE;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700611 if (((idx + 1) == priv->testmode_trace.num_chunks) &&
Hsu, Kennye056a652011-11-22 23:05:02 -0800612 (priv->testmode_trace.buff_size % DUMP_CHUNK_SIZE))
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700613 length = priv->testmode_trace.buff_size %
Hsu, Kennye056a652011-11-22 23:05:02 -0800614 DUMP_CHUNK_SIZE;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700615
616 NLA_PUT(skb, IWL_TM_ATTR_TRACE_DUMP, length,
617 priv->testmode_trace.trace_addr +
Hsu, Kennye056a652011-11-22 23:05:02 -0800618 (DUMP_CHUNK_SIZE * idx));
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700619 idx++;
620 cb->args[4] = idx;
621 return 0;
622 } else
623 return -EFAULT;
624
625 nla_put_failure:
626 return -ENOBUFS;
627}
628
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700629/*
630 * This function handles the user application switch ucode ownership.
631 *
632 * It retrieves the mandatory fields IWL_TM_ATTR_UCODE_OWNER and
633 * decide who the current owner of the uCode
634 *
635 * If the current owner is OWNERSHIP_TM, then the only host command
636 * can deliver to uCode is from testmode, all the other host commands
637 * will dropped.
638 *
639 * default driver is the owner of uCode in normal operational mode
640 *
641 * @hw: ieee80211_hw object that represents the device
642 * @tb: gnl message fields from the user space
643 */
644static int iwl_testmode_ownership(struct ieee80211_hw *hw, struct nlattr **tb)
645{
646 struct iwl_priv *priv = hw->priv;
647 u8 owner;
648
649 if (!tb[IWL_TM_ATTR_UCODE_OWNER]) {
650 IWL_DEBUG_INFO(priv, "Error finding ucode owner\n");
651 return -ENOMSG;
652 }
653
654 owner = nla_get_u8(tb[IWL_TM_ATTR_UCODE_OWNER]);
655 if ((owner == IWL_OWNERSHIP_DRIVER) || (owner == IWL_OWNERSHIP_TM))
Emmanuel Grumbachfd656932011-08-25 23:11:19 -0700656 priv->shrd->ucode_owner = owner;
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700657 else {
658 IWL_DEBUG_INFO(priv, "Invalid owner\n");
659 return -EINVAL;
660 }
661 return 0;
662}
663
Hsu, Kenny306713f2011-11-22 23:03:39 -0800664/*
665 * This function handles the user application commands for SRAM data dump
666 *
667 * It retrieves the mandatory fields IWL_TM_ATTR_SRAM_ADDR and
668 * IWL_TM_ATTR_SRAM_SIZE to decide the memory area for SRAM data reading
669 *
670 * Several error will be retured, -EBUSY if the SRAM data retrieved by
671 * previous command has not been delivered to userspace, or -ENOMSG if
672 * the mandatory fields (IWL_TM_ATTR_SRAM_ADDR,IWL_TM_ATTR_SRAM_SIZE)
673 * are missing, or -ENOMEM if the buffer allocation fails.
674 *
675 * Otherwise 0 is replied indicating the success of the SRAM reading.
676 *
677 * @hw: ieee80211_hw object that represents the device
678 * @tb: gnl message fields from the user space
679 */
680static int iwl_testmode_sram(struct ieee80211_hw *hw, struct nlattr **tb)
681{
682 struct iwl_priv *priv = hw->priv;
Kenny Hsu76de2f22011-11-23 06:57:22 -0800683 u32 base, ofs, size, maxsize;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800684
685 if (priv->testmode_sram.sram_readed)
686 return -EBUSY;
687
688 if (!tb[IWL_TM_ATTR_SRAM_ADDR]) {
689 IWL_DEBUG_INFO(priv, "Error finding SRAM offset address\n");
690 return -ENOMSG;
691 }
692 ofs = nla_get_u32(tb[IWL_TM_ATTR_SRAM_ADDR]);
693 if (!tb[IWL_TM_ATTR_SRAM_SIZE]) {
694 IWL_DEBUG_INFO(priv, "Error finding size for SRAM reading\n");
695 return -ENOMSG;
696 }
697 size = nla_get_u32(tb[IWL_TM_ATTR_SRAM_SIZE]);
Kenny Hsu76de2f22011-11-23 06:57:22 -0800698 switch (priv->ucode_type) {
699 case IWL_UCODE_REGULAR:
700 maxsize = trans(priv)->ucode_rt.data.len;
701 break;
702 case IWL_UCODE_INIT:
703 maxsize = trans(priv)->ucode_init.data.len;
704 break;
705 case IWL_UCODE_WOWLAN:
706 maxsize = trans(priv)->ucode_wowlan.data.len;
707 break;
708 case IWL_UCODE_NONE:
709 IWL_DEBUG_INFO(priv, "Error, uCode does not been loaded\n");
710 return -ENOSYS;
711 default:
712 IWL_DEBUG_INFO(priv, "Error, unsupported uCode type\n");
713 return -ENOSYS;
714 }
715 if ((ofs + size) > maxsize) {
716 IWL_DEBUG_INFO(priv, "Invalid offset/size: out of range\n");
717 return -EINVAL;
718 }
Hsu, Kenny306713f2011-11-22 23:03:39 -0800719 priv->testmode_sram.buff_size = (size / 4) * 4;
720 priv->testmode_sram.buff_addr =
721 kmalloc(priv->testmode_sram.buff_size, GFP_KERNEL);
722 if (priv->testmode_sram.buff_addr == NULL) {
723 IWL_DEBUG_INFO(priv, "Error allocating memory\n");
724 return -ENOMEM;
725 }
726 base = 0x800000;
727 _iwl_read_targ_mem_words(bus(priv), base + ofs,
728 priv->testmode_sram.buff_addr,
729 priv->testmode_sram.buff_size / 4);
730 priv->testmode_sram.num_chunks =
Hsu, Kennye056a652011-11-22 23:05:02 -0800731 DIV_ROUND_UP(priv->testmode_sram.buff_size, DUMP_CHUNK_SIZE);
Hsu, Kenny306713f2011-11-22 23:03:39 -0800732 priv->testmode_sram.sram_readed = true;
733 return 0;
734}
735
736static int iwl_testmode_sram_dump(struct ieee80211_hw *hw, struct nlattr **tb,
737 struct sk_buff *skb,
738 struct netlink_callback *cb)
739{
740 struct iwl_priv *priv = hw->priv;
741 int idx, length;
742
743 if (priv->testmode_sram.sram_readed) {
744 idx = cb->args[4];
745 if (idx >= priv->testmode_sram.num_chunks) {
746 iwl_sram_cleanup(priv);
747 return -ENOENT;
748 }
Hsu, Kennye056a652011-11-22 23:05:02 -0800749 length = DUMP_CHUNK_SIZE;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800750 if (((idx + 1) == priv->testmode_sram.num_chunks) &&
Hsu, Kennye056a652011-11-22 23:05:02 -0800751 (priv->testmode_sram.buff_size % DUMP_CHUNK_SIZE))
Hsu, Kenny306713f2011-11-22 23:03:39 -0800752 length = priv->testmode_sram.buff_size %
Hsu, Kennye056a652011-11-22 23:05:02 -0800753 DUMP_CHUNK_SIZE;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800754
755 NLA_PUT(skb, IWL_TM_ATTR_SRAM_DUMP, length,
756 priv->testmode_sram.buff_addr +
Hsu, Kennye056a652011-11-22 23:05:02 -0800757 (DUMP_CHUNK_SIZE * idx));
Hsu, Kenny306713f2011-11-22 23:03:39 -0800758 idx++;
759 cb->args[4] = idx;
760 return 0;
761 } else
762 return -EFAULT;
763
764 nla_put_failure:
765 return -ENOBUFS;
766}
767
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700768
Cindy H. Kao4613e722011-05-06 10:40:15 -0700769/* The testmode gnl message handler that takes the gnl message from the
770 * user space and parses it per the policy iwl_testmode_gnl_msg_policy, then
771 * invoke the corresponding handlers.
772 *
773 * This function is invoked when there is user space application sending
774 * gnl message through the testmode tunnel NL80211_CMD_TESTMODE regulated
775 * by nl80211.
776 *
777 * It retrieves the mandatory field, IWL_TM_ATTR_COMMAND, before
778 * dispatching it to the corresponding handler.
779 *
780 * If IWL_TM_ATTR_COMMAND is missing, -ENOMSG is replied to user application;
781 * -ENOSYS is replied to the user application if the command is unknown;
782 * Otherwise, the command is dispatched to the respective handler.
783 *
784 * @hw: ieee80211_hw object that represents the device
785 * @data: pointer to user space message
786 * @len: length in byte of @data
787 */
Wey-Yi Guyade4c642011-10-10 07:27:11 -0700788int iwlagn_mac_testmode_cmd(struct ieee80211_hw *hw, void *data, int len)
Cindy H. Kao4613e722011-05-06 10:40:15 -0700789{
Wey-Yi Guya6779272011-07-11 10:47:39 -0700790 struct nlattr *tb[IWL_TM_ATTR_MAX];
Cindy H. Kao4613e722011-05-06 10:40:15 -0700791 struct iwl_priv *priv = hw->priv;
792 int result;
793
794 result = nla_parse(tb, IWL_TM_ATTR_MAX - 1, data, len,
795 iwl_testmode_gnl_msg_policy);
796 if (result != 0) {
797 IWL_DEBUG_INFO(priv,
798 "Error parsing the gnl message : %d\n", result);
799 return result;
800 }
801
802 /* IWL_TM_ATTR_COMMAND is absolutely mandatory */
803 if (!tb[IWL_TM_ATTR_COMMAND]) {
804 IWL_DEBUG_INFO(priv, "Error finding testmode command type\n");
805 return -ENOMSG;
806 }
807 /* in case multiple accesses to the device happens */
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700808 mutex_lock(&priv->shrd->mutex);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700809
810 switch (nla_get_u32(tb[IWL_TM_ATTR_COMMAND])) {
811 case IWL_TM_CMD_APP2DEV_UCODE:
812 IWL_DEBUG_INFO(priv, "testmode cmd to uCode\n");
813 result = iwl_testmode_ucode(hw, tb);
814 break;
Hsu, Kenny72bcacc2011-11-15 19:24:32 -0800815 case IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32:
816 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32:
817 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8:
818 case IWL_TM_CMD_APP2DEV_INDIRECT_REG_READ32:
819 case IWL_TM_CMD_APP2DEV_INDIRECT_REG_WRITE32:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700820 IWL_DEBUG_INFO(priv, "testmode cmd to register\n");
821 result = iwl_testmode_reg(hw, tb);
822 break;
823 case IWL_TM_CMD_APP2DEV_GET_DEVICENAME:
824 case IWL_TM_CMD_APP2DEV_LOAD_INIT_FW:
825 case IWL_TM_CMD_APP2DEV_CFG_INIT_CALIB:
826 case IWL_TM_CMD_APP2DEV_LOAD_RUNTIME_FW:
Wey-Yi Guy4babc352011-05-03 18:05:12 -0700827 case IWL_TM_CMD_APP2DEV_GET_EEPROM:
Wey-Yi Guy64898542011-05-03 18:05:13 -0700828 case IWL_TM_CMD_APP2DEV_FIXRATE_REQ:
Cindy H. Kao4613e722011-05-06 10:40:15 -0700829 IWL_DEBUG_INFO(priv, "testmode cmd to driver\n");
830 result = iwl_testmode_driver(hw, tb);
831 break;
Wey-Yi Guy7a4e5282011-05-06 10:21:28 -0700832
833 case IWL_TM_CMD_APP2DEV_BEGIN_TRACE:
834 case IWL_TM_CMD_APP2DEV_END_TRACE:
835 case IWL_TM_CMD_APP2DEV_READ_TRACE:
836 IWL_DEBUG_INFO(priv, "testmode uCode trace cmd to driver\n");
837 result = iwl_testmode_trace(hw, tb);
838 break;
839
Wey-Yi Guye98a1932011-07-08 08:46:26 -0700840 case IWL_TM_CMD_APP2DEV_OWNERSHIP:
841 IWL_DEBUG_INFO(priv, "testmode change uCode ownership\n");
842 result = iwl_testmode_ownership(hw, tb);
843 break;
844
Hsu, Kenny306713f2011-11-22 23:03:39 -0800845 case IWL_TM_CMD_APP2DEV_READ_SRAM:
846 IWL_DEBUG_INFO(priv, "testmode sram read cmd to driver\n");
847 result = iwl_testmode_sram(hw, tb);
848 break;
849
Cindy H. Kao4613e722011-05-06 10:40:15 -0700850 default:
851 IWL_DEBUG_INFO(priv, "Unknown testmode command\n");
852 result = -ENOSYS;
853 break;
854 }
855
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700856 mutex_unlock(&priv->shrd->mutex);
Cindy H. Kao4613e722011-05-06 10:40:15 -0700857 return result;
858}
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700859
Wey-Yi Guyade4c642011-10-10 07:27:11 -0700860int iwlagn_mac_testmode_dump(struct ieee80211_hw *hw, struct sk_buff *skb,
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700861 struct netlink_callback *cb,
862 void *data, int len)
863{
864 struct nlattr *tb[IWL_TM_ATTR_MAX];
865 struct iwl_priv *priv = hw->priv;
866 int result;
867 u32 cmd;
868
869 if (cb->args[3]) {
870 /* offset by 1 since commands start at 0 */
871 cmd = cb->args[3] - 1;
872 } else {
873 result = nla_parse(tb, IWL_TM_ATTR_MAX - 1, data, len,
874 iwl_testmode_gnl_msg_policy);
875 if (result) {
876 IWL_DEBUG_INFO(priv,
877 "Error parsing the gnl message : %d\n", result);
878 return result;
879 }
880
881 /* IWL_TM_ATTR_COMMAND is absolutely mandatory */
882 if (!tb[IWL_TM_ATTR_COMMAND]) {
883 IWL_DEBUG_INFO(priv,
884 "Error finding testmode command type\n");
885 return -ENOMSG;
886 }
887 cmd = nla_get_u32(tb[IWL_TM_ATTR_COMMAND]);
888 cb->args[3] = cmd + 1;
889 }
890
891 /* in case multiple accesses to the device happens */
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700892 mutex_lock(&priv->shrd->mutex);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700893 switch (cmd) {
894 case IWL_TM_CMD_APP2DEV_READ_TRACE:
895 IWL_DEBUG_INFO(priv, "uCode trace cmd to driver\n");
896 result = iwl_testmode_trace_dump(hw, tb, skb, cb);
897 break;
Hsu, Kenny306713f2011-11-22 23:03:39 -0800898 case IWL_TM_CMD_APP2DEV_DUMP_SRAM:
899 IWL_DEBUG_INFO(priv, "testmode sram dump cmd to driver\n");
900 result = iwl_testmode_sram_dump(hw, tb, skb, cb);
901 break;
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700902 default:
903 result = -EINVAL;
904 break;
905 }
906
Emmanuel Grumbach6ac2f832011-08-25 23:10:44 -0700907 mutex_unlock(&priv->shrd->mutex);
Wey-Yi Guyeb64dca2011-05-31 08:03:02 -0700908 return result;
909}