1 /******************************************************************************
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.
8 * Copyright(c) 2010 - 2011 Intel Corporation. All rights reserved.
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.
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.
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,
24 * The full GNU General Public License is included in this distribution
25 * in the file called LICENSE.GPL.
27 * Contact Information:
28 * Intel Linux Wireless <ilw@linux.intel.com>
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
33 * Copyright(c) 2010 - 2011 Intel Corporation. All rights reserved.
34 * All rights reserved.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
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
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.
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.
62 *****************************************************************************/
63 #include <linux/init.h>
64 #include <linux/kernel.h>
65 #include <linux/module.h>
66 #include <linux/dma-mapping.h>
67 #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>
76 #include "iwl-debug.h"
79 #include "iwl-testmode.h"
80 #include "iwl-trans.h"
83 /* The TLVs used in the gnl message policy between the kernel module and
84 * user space application. iwl_testmode_gnl_msg_policy is to be carried
85 * through the NL80211_CMD_TESTMODE channel regulated by nl80211.
89 struct nla_policy iwl_testmode_gnl_msg_policy
[IWL_TM_ATTR_MAX
] = {
90 [IWL_TM_ATTR_COMMAND
] = { .type
= NLA_U32
, },
92 [IWL_TM_ATTR_UCODE_CMD_ID
] = { .type
= NLA_U8
, },
93 [IWL_TM_ATTR_UCODE_CMD_DATA
] = { .type
= NLA_UNSPEC
, },
95 [IWL_TM_ATTR_REG_OFFSET
] = { .type
= NLA_U32
, },
96 [IWL_TM_ATTR_REG_VALUE8
] = { .type
= NLA_U8
, },
97 [IWL_TM_ATTR_REG_VALUE32
] = { .type
= NLA_U32
, },
99 [IWL_TM_ATTR_SYNC_RSP
] = { .type
= NLA_UNSPEC
, },
100 [IWL_TM_ATTR_UCODE_RX_PKT
] = { .type
= NLA_UNSPEC
, },
102 [IWL_TM_ATTR_EEPROM
] = { .type
= NLA_UNSPEC
, },
104 [IWL_TM_ATTR_TRACE_ADDR
] = { .type
= NLA_UNSPEC
, },
105 [IWL_TM_ATTR_TRACE_DUMP
] = { .type
= NLA_UNSPEC
, },
106 [IWL_TM_ATTR_TRACE_SIZE
] = { .type
= NLA_U32
, },
108 [IWL_TM_ATTR_FIXRATE
] = { .type
= NLA_U32
, },
110 [IWL_TM_ATTR_UCODE_OWNER
] = { .type
= NLA_U8
, },
112 [IWL_TM_ATTR_SRAM_ADDR
] = { .type
= NLA_U32
, },
113 [IWL_TM_ATTR_SRAM_SIZE
] = { .type
= NLA_U32
, },
114 [IWL_TM_ATTR_SRAM_DUMP
] = { .type
= NLA_UNSPEC
, },
116 [IWL_TM_ATTR_FW_VERSION
] = { .type
= NLA_U32
, },
117 [IWL_TM_ATTR_DEVICE_ID
] = { .type
= NLA_U32
, },
121 * See the struct iwl_rx_packet in iwl-commands.h for the format of the
122 * received events from the device
124 static inline int get_event_length(struct iwl_rx_mem_buffer
*rxb
)
126 struct iwl_rx_packet
*pkt
= rxb_addr(rxb
);
128 return le32_to_cpu(pkt
->len_n_flags
) & FH_RSCSR_FRAME_SIZE_MSK
;
135 * This function multicasts the spontaneous messages from the device to the
136 * user space. It is invoked whenever there is a received messages
137 * from the device. This function is called within the ISR of the rx handlers
140 * The parsing of the message content is left to the user space application,
141 * The message content is treated as unattacked raw data and is encapsulated
142 * with IWL_TM_ATTR_UCODE_RX_PKT multicasting to the user space.
144 * @priv: the instance of iwlwifi device
145 * @rxb: pointer to rx data content received by the ISR
147 * See the message policies and TLVs in iwl_testmode_gnl_msg_policy[].
148 * For the messages multicasting to the user application, the mandatory
150 * IWL_TM_ATTR_COMMAND must be IWL_TM_CMD_DEV2APP_UCODE_RX_PKT
151 * IWL_TM_ATTR_UCODE_RX_PKT for carrying the message content
154 static void iwl_testmode_ucode_rx_pkt(struct iwl_priv
*priv
,
155 struct iwl_rx_mem_buffer
*rxb
)
157 struct ieee80211_hw
*hw
= priv
->hw
;
162 data
= (void *)rxb_addr(rxb
);
163 length
= get_event_length(rxb
);
165 if (!data
|| length
== 0)
168 skb
= cfg80211_testmode_alloc_event_skb(hw
->wiphy
, 20 + length
,
172 "Run out of memory for messages to user space ?\n");
175 NLA_PUT_U32(skb
, IWL_TM_ATTR_COMMAND
, IWL_TM_CMD_DEV2APP_UCODE_RX_PKT
);
176 NLA_PUT(skb
, IWL_TM_ATTR_UCODE_RX_PKT
, length
, data
);
177 cfg80211_testmode_event(skb
, GFP_ATOMIC
);
182 IWL_DEBUG_INFO(priv
, "Ouch, overran buffer, check allocation!\n");
185 void iwl_testmode_init(struct iwl_priv
*priv
)
187 priv
->pre_rx_handler
= iwl_testmode_ucode_rx_pkt
;
188 priv
->testmode_trace
.trace_enabled
= false;
189 priv
->testmode_sram
.sram_readed
= false;
192 static void iwl_sram_cleanup(struct iwl_priv
*priv
)
194 if (priv
->testmode_sram
.sram_readed
) {
195 kfree(priv
->testmode_sram
.buff_addr
);
196 priv
->testmode_sram
.buff_addr
= NULL
;
197 priv
->testmode_sram
.buff_size
= 0;
198 priv
->testmode_sram
.num_chunks
= 0;
199 priv
->testmode_sram
.sram_readed
= false;
203 static void iwl_trace_cleanup(struct iwl_priv
*priv
)
205 if (priv
->testmode_trace
.trace_enabled
) {
206 if (priv
->testmode_trace
.cpu_addr
&&
207 priv
->testmode_trace
.dma_addr
)
208 dma_free_coherent(bus(priv
)->dev
,
209 priv
->testmode_trace
.total_size
,
210 priv
->testmode_trace
.cpu_addr
,
211 priv
->testmode_trace
.dma_addr
);
212 priv
->testmode_trace
.trace_enabled
= false;
213 priv
->testmode_trace
.cpu_addr
= NULL
;
214 priv
->testmode_trace
.trace_addr
= NULL
;
215 priv
->testmode_trace
.dma_addr
= 0;
216 priv
->testmode_trace
.buff_size
= 0;
217 priv
->testmode_trace
.total_size
= 0;
222 void iwl_testmode_cleanup(struct iwl_priv
*priv
)
224 iwl_trace_cleanup(priv
);
225 iwl_sram_cleanup(priv
);
229 * This function handles the user application commands to the ucode.
231 * It retrieves the mandatory fields IWL_TM_ATTR_UCODE_CMD_ID and
232 * IWL_TM_ATTR_UCODE_CMD_DATA and calls to the handler to send the
233 * host command to the ucode.
235 * If any mandatory field is missing, -ENOMSG is replied to the user space
236 * application; otherwise, the actual execution result of the host command to
239 * @hw: ieee80211_hw object that represents the device
240 * @tb: gnl message fields from the user space
242 static int iwl_testmode_ucode(struct ieee80211_hw
*hw
, struct nlattr
**tb
)
244 struct iwl_priv
*priv
= hw
->priv
;
245 struct iwl_host_cmd cmd
;
247 memset(&cmd
, 0, sizeof(struct iwl_host_cmd
));
249 if (!tb
[IWL_TM_ATTR_UCODE_CMD_ID
] ||
250 !tb
[IWL_TM_ATTR_UCODE_CMD_DATA
]) {
252 "Error finding ucode command mandatory fields\n");
256 cmd
.flags
= CMD_ON_DEMAND
;
257 cmd
.id
= nla_get_u8(tb
[IWL_TM_ATTR_UCODE_CMD_ID
]);
258 cmd
.data
[0] = nla_data(tb
[IWL_TM_ATTR_UCODE_CMD_DATA
]);
259 cmd
.len
[0] = nla_len(tb
[IWL_TM_ATTR_UCODE_CMD_DATA
]);
260 cmd
.dataflags
[0] = IWL_HCMD_DFL_NOCOPY
;
261 IWL_INFO(priv
, "testmode ucode command ID 0x%x, flags 0x%x,"
262 " len %d\n", cmd
.id
, cmd
.flags
, cmd
.len
[0]);
263 /* ok, let's submit the command to ucode */
264 return iwl_trans_send_cmd(trans(priv
), &cmd
);
269 * This function handles the user application commands for register access.
271 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
272 * handlers respectively.
274 * If it's an unknown commdn ID, -ENOSYS is returned; or -ENOMSG if the
275 * mandatory fields(IWL_TM_ATTR_REG_OFFSET,IWL_TM_ATTR_REG_VALUE32,
276 * IWL_TM_ATTR_REG_VALUE8) are missing; Otherwise 0 is replied indicating
277 * the success of the command execution.
279 * If IWL_TM_ATTR_COMMAND is IWL_TM_CMD_APP2DEV_REG_READ32, the register read
280 * value is returned with IWL_TM_ATTR_REG_VALUE32.
282 * @hw: ieee80211_hw object that represents the device
283 * @tb: gnl message fields from the user space
285 static int iwl_testmode_reg(struct ieee80211_hw
*hw
, struct nlattr
**tb
)
287 struct iwl_priv
*priv
= hw
->priv
;
293 if (!tb
[IWL_TM_ATTR_REG_OFFSET
]) {
294 IWL_DEBUG_INFO(priv
, "Error finding register offset\n");
297 ofs
= nla_get_u32(tb
[IWL_TM_ATTR_REG_OFFSET
]);
298 IWL_INFO(priv
, "testmode register access command offset 0x%x\n", ofs
);
300 switch (nla_get_u32(tb
[IWL_TM_ATTR_COMMAND
])) {
301 case IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32
:
302 val32
= iwl_read32(bus(priv
), ofs
);
303 IWL_INFO(priv
, "32bit value to read 0x%x\n", val32
);
305 skb
= cfg80211_testmode_alloc_reply_skb(hw
->wiphy
, 20);
307 IWL_DEBUG_INFO(priv
, "Error allocating memory\n");
310 NLA_PUT_U32(skb
, IWL_TM_ATTR_REG_VALUE32
, val32
);
311 status
= cfg80211_testmode_reply(skb
);
314 "Error sending msg : %d\n", status
);
316 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32
:
317 if (!tb
[IWL_TM_ATTR_REG_VALUE32
]) {
319 "Error finding value to write\n");
322 val32
= nla_get_u32(tb
[IWL_TM_ATTR_REG_VALUE32
]);
323 IWL_INFO(priv
, "32bit value to write 0x%x\n", val32
);
324 iwl_write32(bus(priv
), ofs
, val32
);
327 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8
:
328 if (!tb
[IWL_TM_ATTR_REG_VALUE8
]) {
329 IWL_DEBUG_INFO(priv
, "Error finding value to write\n");
332 val8
= nla_get_u8(tb
[IWL_TM_ATTR_REG_VALUE8
]);
333 IWL_INFO(priv
, "8bit value to write 0x%x\n", val8
);
334 iwl_write8(bus(priv
), ofs
, val8
);
337 case IWL_TM_CMD_APP2DEV_INDIRECT_REG_READ32
:
338 val32
= iwl_read_prph(bus(priv
), ofs
);
339 IWL_INFO(priv
, "32bit value to read 0x%x\n", val32
);
341 skb
= cfg80211_testmode_alloc_reply_skb(hw
->wiphy
, 20);
343 IWL_DEBUG_INFO(priv
, "Error allocating memory\n");
346 NLA_PUT_U32(skb
, IWL_TM_ATTR_REG_VALUE32
, val32
);
347 status
= cfg80211_testmode_reply(skb
);
350 "Error sending msg : %d\n", status
);
352 case IWL_TM_CMD_APP2DEV_INDIRECT_REG_WRITE32
:
353 if (!tb
[IWL_TM_ATTR_REG_VALUE32
]) {
355 "Error finding value to write\n");
358 val32
= nla_get_u32(tb
[IWL_TM_ATTR_REG_VALUE32
]);
359 IWL_INFO(priv
, "32bit value to write 0x%x\n", val32
);
360 iwl_write_prph(bus(priv
), ofs
, val32
);
364 IWL_DEBUG_INFO(priv
, "Unknown testmode register command ID\n");
376 static int iwl_testmode_cfg_init_calib(struct iwl_priv
*priv
)
378 struct iwl_notification_wait calib_wait
;
381 iwl_init_notification_wait(priv
->shrd
, &calib_wait
,
382 CALIBRATION_COMPLETE_NOTIFICATION
,
384 ret
= iwl_init_alive_start(trans(priv
));
387 "Error configuring init calibration: %d\n", ret
);
388 goto cfg_init_calib_error
;
391 ret
= iwl_wait_notification(priv
->shrd
, &calib_wait
, 2 * HZ
);
393 IWL_DEBUG_INFO(priv
, "Error detecting"
394 " CALIBRATION_COMPLETE_NOTIFICATION: %d\n", ret
);
397 cfg_init_calib_error
:
398 iwl_remove_notification(priv
->shrd
, &calib_wait
);
403 * This function handles the user application commands for driver.
405 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
406 * handlers respectively.
408 * If it's an unknown commdn ID, -ENOSYS is replied; otherwise, the returned
409 * value of the actual command execution is replied to the user application.
411 * If there's any message responding to the user space, IWL_TM_ATTR_SYNC_RSP
412 * is used for carry the message while IWL_TM_ATTR_COMMAND must set to
413 * IWL_TM_CMD_DEV2APP_SYNC_RSP.
415 * @hw: ieee80211_hw object that represents the device
416 * @tb: gnl message fields from the user space
418 static int iwl_testmode_driver(struct ieee80211_hw
*hw
, struct nlattr
**tb
)
420 struct iwl_priv
*priv
= hw
->priv
;
421 struct iwl_trans
*trans
= trans(priv
);
423 unsigned char *rsp_data_ptr
= NULL
;
424 int status
= 0, rsp_data_len
= 0;
427 switch (nla_get_u32(tb
[IWL_TM_ATTR_COMMAND
])) {
428 case IWL_TM_CMD_APP2DEV_GET_DEVICENAME
:
429 rsp_data_ptr
= (unsigned char *)cfg(priv
)->name
;
430 rsp_data_len
= strlen(cfg(priv
)->name
);
431 skb
= cfg80211_testmode_alloc_reply_skb(hw
->wiphy
,
435 "Error allocating memory\n");
438 NLA_PUT_U32(skb
, IWL_TM_ATTR_COMMAND
,
439 IWL_TM_CMD_DEV2APP_SYNC_RSP
);
440 NLA_PUT(skb
, IWL_TM_ATTR_SYNC_RSP
,
441 rsp_data_len
, rsp_data_ptr
);
442 status
= cfg80211_testmode_reply(skb
);
444 IWL_DEBUG_INFO(priv
, "Error sending msg : %d\n",
448 case IWL_TM_CMD_APP2DEV_LOAD_INIT_FW
:
449 status
= iwl_load_ucode_wait_alive(trans
, IWL_UCODE_INIT
);
452 "Error loading init ucode: %d\n", status
);
455 case IWL_TM_CMD_APP2DEV_CFG_INIT_CALIB
:
456 iwl_testmode_cfg_init_calib(priv
);
457 iwl_trans_stop_device(trans
);
460 case IWL_TM_CMD_APP2DEV_LOAD_RUNTIME_FW
:
461 status
= iwl_load_ucode_wait_alive(trans
, IWL_UCODE_REGULAR
);
464 "Error loading runtime ucode: %d\n", status
);
467 status
= iwl_alive_start(priv
);
470 "Error starting the device: %d\n", status
);
473 case IWL_TM_CMD_APP2DEV_LOAD_WOWLAN_FW
:
474 iwl_scan_cancel_timeout(priv
, 200);
475 iwl_trans_stop_device(trans
);
476 status
= iwl_load_ucode_wait_alive(trans
, IWL_UCODE_WOWLAN
);
479 "Error loading WOWLAN ucode: %d\n", status
);
482 status
= iwl_alive_start(priv
);
485 "Error starting the device: %d\n", status
);
488 case IWL_TM_CMD_APP2DEV_GET_EEPROM
:
489 if (priv
->shrd
->eeprom
) {
490 skb
= cfg80211_testmode_alloc_reply_skb(hw
->wiphy
,
491 cfg(priv
)->base_params
->eeprom_size
+ 20);
494 "Error allocating memory\n");
497 NLA_PUT_U32(skb
, IWL_TM_ATTR_COMMAND
,
498 IWL_TM_CMD_DEV2APP_EEPROM_RSP
);
499 NLA_PUT(skb
, IWL_TM_ATTR_EEPROM
,
500 cfg(priv
)->base_params
->eeprom_size
,
502 status
= cfg80211_testmode_reply(skb
);
505 "Error sending msg : %d\n",
511 case IWL_TM_CMD_APP2DEV_FIXRATE_REQ
:
512 if (!tb
[IWL_TM_ATTR_FIXRATE
]) {
514 "Error finding fixrate setting\n");
517 priv
->tm_fixed_rate
= nla_get_u32(tb
[IWL_TM_ATTR_FIXRATE
]);
520 case IWL_TM_CMD_APP2DEV_GET_FW_VERSION
:
521 IWL_INFO(priv
, "uCode version raw: 0x%x\n", priv
->ucode_ver
);
523 skb
= cfg80211_testmode_alloc_reply_skb(hw
->wiphy
, 20);
525 IWL_DEBUG_INFO(priv
, "Error allocating memory\n");
528 NLA_PUT_U32(skb
, IWL_TM_ATTR_FW_VERSION
, priv
->ucode_ver
);
529 status
= cfg80211_testmode_reply(skb
);
532 "Error sending msg : %d\n", status
);
535 case IWL_TM_CMD_APP2DEV_GET_DEVICE_ID
:
536 devid
= bus_get_hw_id(bus(priv
));
537 IWL_INFO(priv
, "hw version: 0x%x\n", devid
);
539 skb
= cfg80211_testmode_alloc_reply_skb(hw
->wiphy
, 20);
541 IWL_DEBUG_INFO(priv
, "Error allocating memory\n");
544 NLA_PUT_U32(skb
, IWL_TM_ATTR_DEVICE_ID
, devid
);
545 status
= cfg80211_testmode_reply(skb
);
548 "Error sending msg : %d\n", status
);
552 IWL_DEBUG_INFO(priv
, "Unknown testmode driver command ID\n");
564 * This function handles the user application commands for uCode trace
566 * It retrieves command ID carried with IWL_TM_ATTR_COMMAND and calls to the
567 * handlers respectively.
569 * If it's an unknown commdn ID, -ENOSYS is replied; otherwise, the returned
570 * value of the actual command execution is replied to the user application.
572 * @hw: ieee80211_hw object that represents the device
573 * @tb: gnl message fields from the user space
575 static int iwl_testmode_trace(struct ieee80211_hw
*hw
, struct nlattr
**tb
)
577 struct iwl_priv
*priv
= hw
->priv
;
580 struct device
*dev
= bus(priv
)->dev
;
582 switch (nla_get_u32(tb
[IWL_TM_ATTR_COMMAND
])) {
583 case IWL_TM_CMD_APP2DEV_BEGIN_TRACE
:
584 if (priv
->testmode_trace
.trace_enabled
)
587 if (!tb
[IWL_TM_ATTR_TRACE_SIZE
])
588 priv
->testmode_trace
.buff_size
= TRACE_BUFF_SIZE_DEF
;
590 priv
->testmode_trace
.buff_size
=
591 nla_get_u32(tb
[IWL_TM_ATTR_TRACE_SIZE
]);
592 if (!priv
->testmode_trace
.buff_size
)
594 if (priv
->testmode_trace
.buff_size
< TRACE_BUFF_SIZE_MIN
||
595 priv
->testmode_trace
.buff_size
> TRACE_BUFF_SIZE_MAX
)
598 priv
->testmode_trace
.total_size
=
599 priv
->testmode_trace
.buff_size
+ TRACE_BUFF_PADD
;
600 priv
->testmode_trace
.cpu_addr
=
601 dma_alloc_coherent(dev
,
602 priv
->testmode_trace
.total_size
,
603 &priv
->testmode_trace
.dma_addr
,
605 if (!priv
->testmode_trace
.cpu_addr
)
607 priv
->testmode_trace
.trace_enabled
= true;
608 priv
->testmode_trace
.trace_addr
= (u8
*)PTR_ALIGN(
609 priv
->testmode_trace
.cpu_addr
, 0x100);
610 memset(priv
->testmode_trace
.trace_addr
, 0x03B,
611 priv
->testmode_trace
.buff_size
);
612 skb
= cfg80211_testmode_alloc_reply_skb(hw
->wiphy
,
613 sizeof(priv
->testmode_trace
.dma_addr
) + 20);
616 "Error allocating memory\n");
617 iwl_trace_cleanup(priv
);
620 NLA_PUT(skb
, IWL_TM_ATTR_TRACE_ADDR
,
621 sizeof(priv
->testmode_trace
.dma_addr
),
622 (u64
*)&priv
->testmode_trace
.dma_addr
);
623 status
= cfg80211_testmode_reply(skb
);
626 "Error sending msg : %d\n",
629 priv
->testmode_trace
.num_chunks
=
630 DIV_ROUND_UP(priv
->testmode_trace
.buff_size
,
634 case IWL_TM_CMD_APP2DEV_END_TRACE
:
635 iwl_trace_cleanup(priv
);
638 IWL_DEBUG_INFO(priv
, "Unknown testmode mem command ID\n");
645 if (nla_get_u32(tb
[IWL_TM_ATTR_COMMAND
]) ==
646 IWL_TM_CMD_APP2DEV_BEGIN_TRACE
)
647 iwl_trace_cleanup(priv
);
651 static int iwl_testmode_trace_dump(struct ieee80211_hw
*hw
, struct nlattr
**tb
,
653 struct netlink_callback
*cb
)
655 struct iwl_priv
*priv
= hw
->priv
;
658 if (priv
->testmode_trace
.trace_enabled
&&
659 priv
->testmode_trace
.trace_addr
) {
661 if (idx
>= priv
->testmode_trace
.num_chunks
)
663 length
= DUMP_CHUNK_SIZE
;
664 if (((idx
+ 1) == priv
->testmode_trace
.num_chunks
) &&
665 (priv
->testmode_trace
.buff_size
% DUMP_CHUNK_SIZE
))
666 length
= priv
->testmode_trace
.buff_size
%
669 NLA_PUT(skb
, IWL_TM_ATTR_TRACE_DUMP
, length
,
670 priv
->testmode_trace
.trace_addr
+
671 (DUMP_CHUNK_SIZE
* idx
));
683 * This function handles the user application switch ucode ownership.
685 * It retrieves the mandatory fields IWL_TM_ATTR_UCODE_OWNER and
686 * decide who the current owner of the uCode
688 * If the current owner is OWNERSHIP_TM, then the only host command
689 * can deliver to uCode is from testmode, all the other host commands
692 * default driver is the owner of uCode in normal operational mode
694 * @hw: ieee80211_hw object that represents the device
695 * @tb: gnl message fields from the user space
697 static int iwl_testmode_ownership(struct ieee80211_hw
*hw
, struct nlattr
**tb
)
699 struct iwl_priv
*priv
= hw
->priv
;
702 if (!tb
[IWL_TM_ATTR_UCODE_OWNER
]) {
703 IWL_DEBUG_INFO(priv
, "Error finding ucode owner\n");
707 owner
= nla_get_u8(tb
[IWL_TM_ATTR_UCODE_OWNER
]);
708 if ((owner
== IWL_OWNERSHIP_DRIVER
) || (owner
== IWL_OWNERSHIP_TM
))
709 priv
->shrd
->ucode_owner
= owner
;
711 IWL_DEBUG_INFO(priv
, "Invalid owner\n");
718 * This function handles the user application commands for SRAM data dump
720 * It retrieves the mandatory fields IWL_TM_ATTR_SRAM_ADDR and
721 * IWL_TM_ATTR_SRAM_SIZE to decide the memory area for SRAM data reading
723 * Several error will be retured, -EBUSY if the SRAM data retrieved by
724 * previous command has not been delivered to userspace, or -ENOMSG if
725 * the mandatory fields (IWL_TM_ATTR_SRAM_ADDR,IWL_TM_ATTR_SRAM_SIZE)
726 * are missing, or -ENOMEM if the buffer allocation fails.
728 * Otherwise 0 is replied indicating the success of the SRAM reading.
730 * @hw: ieee80211_hw object that represents the device
731 * @tb: gnl message fields from the user space
733 static int iwl_testmode_sram(struct ieee80211_hw
*hw
, struct nlattr
**tb
)
735 struct iwl_priv
*priv
= hw
->priv
;
736 u32 base
, ofs
, size
, maxsize
;
738 if (priv
->testmode_sram
.sram_readed
)
741 if (!tb
[IWL_TM_ATTR_SRAM_ADDR
]) {
742 IWL_DEBUG_INFO(priv
, "Error finding SRAM offset address\n");
745 ofs
= nla_get_u32(tb
[IWL_TM_ATTR_SRAM_ADDR
]);
746 if (!tb
[IWL_TM_ATTR_SRAM_SIZE
]) {
747 IWL_DEBUG_INFO(priv
, "Error finding size for SRAM reading\n");
750 size
= nla_get_u32(tb
[IWL_TM_ATTR_SRAM_SIZE
]);
751 switch (priv
->shrd
->ucode_type
) {
752 case IWL_UCODE_REGULAR
:
753 maxsize
= trans(priv
)->ucode_rt
.data
.len
;
756 maxsize
= trans(priv
)->ucode_init
.data
.len
;
758 case IWL_UCODE_WOWLAN
:
759 maxsize
= trans(priv
)->ucode_wowlan
.data
.len
;
762 IWL_DEBUG_INFO(priv
, "Error, uCode does not been loaded\n");
765 IWL_DEBUG_INFO(priv
, "Error, unsupported uCode type\n");
768 if ((ofs
+ size
) > maxsize
) {
769 IWL_DEBUG_INFO(priv
, "Invalid offset/size: out of range\n");
772 priv
->testmode_sram
.buff_size
= (size
/ 4) * 4;
773 priv
->testmode_sram
.buff_addr
=
774 kmalloc(priv
->testmode_sram
.buff_size
, GFP_KERNEL
);
775 if (priv
->testmode_sram
.buff_addr
== NULL
) {
776 IWL_DEBUG_INFO(priv
, "Error allocating memory\n");
780 _iwl_read_targ_mem_words(bus(priv
), base
+ ofs
,
781 priv
->testmode_sram
.buff_addr
,
782 priv
->testmode_sram
.buff_size
/ 4);
783 priv
->testmode_sram
.num_chunks
=
784 DIV_ROUND_UP(priv
->testmode_sram
.buff_size
, DUMP_CHUNK_SIZE
);
785 priv
->testmode_sram
.sram_readed
= true;
789 static int iwl_testmode_sram_dump(struct ieee80211_hw
*hw
, struct nlattr
**tb
,
791 struct netlink_callback
*cb
)
793 struct iwl_priv
*priv
= hw
->priv
;
796 if (priv
->testmode_sram
.sram_readed
) {
798 if (idx
>= priv
->testmode_sram
.num_chunks
) {
799 iwl_sram_cleanup(priv
);
802 length
= DUMP_CHUNK_SIZE
;
803 if (((idx
+ 1) == priv
->testmode_sram
.num_chunks
) &&
804 (priv
->testmode_sram
.buff_size
% DUMP_CHUNK_SIZE
))
805 length
= priv
->testmode_sram
.buff_size
%
808 NLA_PUT(skb
, IWL_TM_ATTR_SRAM_DUMP
, length
,
809 priv
->testmode_sram
.buff_addr
+
810 (DUMP_CHUNK_SIZE
* idx
));
822 /* The testmode gnl message handler that takes the gnl message from the
823 * user space and parses it per the policy iwl_testmode_gnl_msg_policy, then
824 * invoke the corresponding handlers.
826 * This function is invoked when there is user space application sending
827 * gnl message through the testmode tunnel NL80211_CMD_TESTMODE regulated
830 * It retrieves the mandatory field, IWL_TM_ATTR_COMMAND, before
831 * dispatching it to the corresponding handler.
833 * If IWL_TM_ATTR_COMMAND is missing, -ENOMSG is replied to user application;
834 * -ENOSYS is replied to the user application if the command is unknown;
835 * Otherwise, the command is dispatched to the respective handler.
837 * @hw: ieee80211_hw object that represents the device
838 * @data: pointer to user space message
839 * @len: length in byte of @data
841 int iwlagn_mac_testmode_cmd(struct ieee80211_hw
*hw
, void *data
, int len
)
843 struct nlattr
*tb
[IWL_TM_ATTR_MAX
];
844 struct iwl_priv
*priv
= hw
->priv
;
847 result
= nla_parse(tb
, IWL_TM_ATTR_MAX
- 1, data
, len
,
848 iwl_testmode_gnl_msg_policy
);
851 "Error parsing the gnl message : %d\n", result
);
855 /* IWL_TM_ATTR_COMMAND is absolutely mandatory */
856 if (!tb
[IWL_TM_ATTR_COMMAND
]) {
857 IWL_DEBUG_INFO(priv
, "Error finding testmode command type\n");
860 /* in case multiple accesses to the device happens */
861 mutex_lock(&priv
->shrd
->mutex
);
863 switch (nla_get_u32(tb
[IWL_TM_ATTR_COMMAND
])) {
864 case IWL_TM_CMD_APP2DEV_UCODE
:
865 IWL_DEBUG_INFO(priv
, "testmode cmd to uCode\n");
866 result
= iwl_testmode_ucode(hw
, tb
);
868 case IWL_TM_CMD_APP2DEV_DIRECT_REG_READ32
:
869 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE32
:
870 case IWL_TM_CMD_APP2DEV_DIRECT_REG_WRITE8
:
871 case IWL_TM_CMD_APP2DEV_INDIRECT_REG_READ32
:
872 case IWL_TM_CMD_APP2DEV_INDIRECT_REG_WRITE32
:
873 IWL_DEBUG_INFO(priv
, "testmode cmd to register\n");
874 result
= iwl_testmode_reg(hw
, tb
);
876 case IWL_TM_CMD_APP2DEV_GET_DEVICENAME
:
877 case IWL_TM_CMD_APP2DEV_LOAD_INIT_FW
:
878 case IWL_TM_CMD_APP2DEV_CFG_INIT_CALIB
:
879 case IWL_TM_CMD_APP2DEV_LOAD_RUNTIME_FW
:
880 case IWL_TM_CMD_APP2DEV_GET_EEPROM
:
881 case IWL_TM_CMD_APP2DEV_FIXRATE_REQ
:
882 case IWL_TM_CMD_APP2DEV_LOAD_WOWLAN_FW
:
883 case IWL_TM_CMD_APP2DEV_GET_FW_VERSION
:
884 case IWL_TM_CMD_APP2DEV_GET_DEVICE_ID
:
885 IWL_DEBUG_INFO(priv
, "testmode cmd to driver\n");
886 result
= iwl_testmode_driver(hw
, tb
);
889 case IWL_TM_CMD_APP2DEV_BEGIN_TRACE
:
890 case IWL_TM_CMD_APP2DEV_END_TRACE
:
891 case IWL_TM_CMD_APP2DEV_READ_TRACE
:
892 IWL_DEBUG_INFO(priv
, "testmode uCode trace cmd to driver\n");
893 result
= iwl_testmode_trace(hw
, tb
);
896 case IWL_TM_CMD_APP2DEV_OWNERSHIP
:
897 IWL_DEBUG_INFO(priv
, "testmode change uCode ownership\n");
898 result
= iwl_testmode_ownership(hw
, tb
);
901 case IWL_TM_CMD_APP2DEV_READ_SRAM
:
902 IWL_DEBUG_INFO(priv
, "testmode sram read cmd to driver\n");
903 result
= iwl_testmode_sram(hw
, tb
);
907 IWL_DEBUG_INFO(priv
, "Unknown testmode command\n");
912 mutex_unlock(&priv
->shrd
->mutex
);
916 int iwlagn_mac_testmode_dump(struct ieee80211_hw
*hw
, struct sk_buff
*skb
,
917 struct netlink_callback
*cb
,
920 struct nlattr
*tb
[IWL_TM_ATTR_MAX
];
921 struct iwl_priv
*priv
= hw
->priv
;
926 /* offset by 1 since commands start at 0 */
927 cmd
= cb
->args
[3] - 1;
929 result
= nla_parse(tb
, IWL_TM_ATTR_MAX
- 1, data
, len
,
930 iwl_testmode_gnl_msg_policy
);
933 "Error parsing the gnl message : %d\n", result
);
937 /* IWL_TM_ATTR_COMMAND is absolutely mandatory */
938 if (!tb
[IWL_TM_ATTR_COMMAND
]) {
940 "Error finding testmode command type\n");
943 cmd
= nla_get_u32(tb
[IWL_TM_ATTR_COMMAND
]);
944 cb
->args
[3] = cmd
+ 1;
947 /* in case multiple accesses to the device happens */
948 mutex_lock(&priv
->shrd
->mutex
);
950 case IWL_TM_CMD_APP2DEV_READ_TRACE
:
951 IWL_DEBUG_INFO(priv
, "uCode trace cmd to driver\n");
952 result
= iwl_testmode_trace_dump(hw
, tb
, skb
, cb
);
954 case IWL_TM_CMD_APP2DEV_DUMP_SRAM
:
955 IWL_DEBUG_INFO(priv
, "testmode sram dump cmd to driver\n");
956 result
= iwl_testmode_sram_dump(hw
, tb
, skb
, cb
);
963 mutex_unlock(&priv
->shrd
->mutex
);