ath10k: implement ath10k_debug_start/stop()
[cascardo/linux.git] / drivers / net / wireless / ath / ath10k / core.c
1 /*
2  * Copyright (c) 2005-2011 Atheros Communications Inc.
3  * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 #include <linux/module.h>
19 #include <linux/firmware.h>
20
21 #include "core.h"
22 #include "mac.h"
23 #include "htc.h"
24 #include "hif.h"
25 #include "wmi.h"
26 #include "bmi.h"
27 #include "debug.h"
28 #include "htt.h"
29
30 unsigned int ath10k_debug_mask;
31 static bool uart_print;
32 static unsigned int ath10k_p2p;
33 module_param_named(debug_mask, ath10k_debug_mask, uint, 0644);
34 module_param(uart_print, bool, 0644);
35 module_param_named(p2p, ath10k_p2p, uint, 0644);
36 MODULE_PARM_DESC(debug_mask, "Debugging mask");
37 MODULE_PARM_DESC(uart_print, "Uart target debugging");
38 MODULE_PARM_DESC(p2p, "Enable ath10k P2P support");
39
40 static const struct ath10k_hw_params ath10k_hw_params_list[] = {
41         {
42                 .id = QCA988X_HW_2_0_VERSION,
43                 .name = "qca988x hw2.0",
44                 .patch_load_addr = QCA988X_HW_2_0_PATCH_LOAD_ADDR,
45                 .fw = {
46                         .dir = QCA988X_HW_2_0_FW_DIR,
47                         .fw = QCA988X_HW_2_0_FW_FILE,
48                         .otp = QCA988X_HW_2_0_OTP_FILE,
49                         .board = QCA988X_HW_2_0_BOARD_DATA_FILE,
50                 },
51         },
52 };
53
54 static void ath10k_send_suspend_complete(struct ath10k *ar)
55 {
56         ath10k_dbg(ATH10K_DBG_CORE, "%s\n", __func__);
57
58         ar->is_target_paused = true;
59         wake_up(&ar->event_queue);
60 }
61
62 static int ath10k_check_fw_version(struct ath10k *ar)
63 {
64         char version[32];
65
66         if (ar->fw_version_major >= SUPPORTED_FW_MAJOR &&
67             ar->fw_version_minor >= SUPPORTED_FW_MINOR &&
68             ar->fw_version_release >= SUPPORTED_FW_RELEASE &&
69             ar->fw_version_build >= SUPPORTED_FW_BUILD)
70                 return 0;
71
72         snprintf(version, sizeof(version), "%u.%u.%u.%u",
73                  SUPPORTED_FW_MAJOR, SUPPORTED_FW_MINOR,
74                  SUPPORTED_FW_RELEASE, SUPPORTED_FW_BUILD);
75
76         ath10k_warn("WARNING: Firmware version %s is not officially supported.\n",
77                     ar->hw->wiphy->fw_version);
78         ath10k_warn("Please upgrade to version %s (or newer)\n", version);
79
80         return 0;
81 }
82
83 static int ath10k_init_connect_htc(struct ath10k *ar)
84 {
85         int status;
86
87         status = ath10k_wmi_connect_htc_service(ar);
88         if (status)
89                 goto conn_fail;
90
91         /* Start HTC */
92         status = ath10k_htc_start(&ar->htc);
93         if (status)
94                 goto conn_fail;
95
96         /* Wait for WMI event to be ready */
97         status = ath10k_wmi_wait_for_service_ready(ar);
98         if (status <= 0) {
99                 ath10k_warn("wmi service ready event not received");
100                 status = -ETIMEDOUT;
101                 goto timeout;
102         }
103
104         ath10k_dbg(ATH10K_DBG_CORE, "core wmi ready\n");
105         return 0;
106
107 timeout:
108         ath10k_htc_stop(&ar->htc);
109 conn_fail:
110         return status;
111 }
112
113 static int ath10k_init_configure_target(struct ath10k *ar)
114 {
115         u32 param_host;
116         int ret;
117
118         /* tell target which HTC version it is used*/
119         ret = ath10k_bmi_write32(ar, hi_app_host_interest,
120                                  HTC_PROTOCOL_VERSION);
121         if (ret) {
122                 ath10k_err("settings HTC version failed\n");
123                 return ret;
124         }
125
126         /* set the firmware mode to STA/IBSS/AP */
127         ret = ath10k_bmi_read32(ar, hi_option_flag, &param_host);
128         if (ret) {
129                 ath10k_err("setting firmware mode (1/2) failed\n");
130                 return ret;
131         }
132
133         /* TODO following parameters need to be re-visited. */
134         /* num_device */
135         param_host |= (1 << HI_OPTION_NUM_DEV_SHIFT);
136         /* Firmware mode */
137         /* FIXME: Why FW_MODE_AP ??.*/
138         param_host |= (HI_OPTION_FW_MODE_AP << HI_OPTION_FW_MODE_SHIFT);
139         /* mac_addr_method */
140         param_host |= (1 << HI_OPTION_MAC_ADDR_METHOD_SHIFT);
141         /* firmware_bridge */
142         param_host |= (0 << HI_OPTION_FW_BRIDGE_SHIFT);
143         /* fwsubmode */
144         param_host |= (0 << HI_OPTION_FW_SUBMODE_SHIFT);
145
146         ret = ath10k_bmi_write32(ar, hi_option_flag, param_host);
147         if (ret) {
148                 ath10k_err("setting firmware mode (2/2) failed\n");
149                 return ret;
150         }
151
152         /* We do all byte-swapping on the host */
153         ret = ath10k_bmi_write32(ar, hi_be, 0);
154         if (ret) {
155                 ath10k_err("setting host CPU BE mode failed\n");
156                 return ret;
157         }
158
159         /* FW descriptor/Data swap flags */
160         ret = ath10k_bmi_write32(ar, hi_fw_swap, 0);
161
162         if (ret) {
163                 ath10k_err("setting FW data/desc swap flags failed\n");
164                 return ret;
165         }
166
167         return 0;
168 }
169
170 static const struct firmware *ath10k_fetch_fw_file(struct ath10k *ar,
171                                                    const char *dir,
172                                                    const char *file)
173 {
174         char filename[100];
175         const struct firmware *fw;
176         int ret;
177
178         if (file == NULL)
179                 return ERR_PTR(-ENOENT);
180
181         if (dir == NULL)
182                 dir = ".";
183
184         snprintf(filename, sizeof(filename), "%s/%s", dir, file);
185         ret = request_firmware(&fw, filename, ar->dev);
186         if (ret)
187                 return ERR_PTR(ret);
188
189         return fw;
190 }
191
192 static int ath10k_push_board_ext_data(struct ath10k *ar,
193                                       const struct firmware *fw)
194 {
195         u32 board_data_size = QCA988X_BOARD_DATA_SZ;
196         u32 board_ext_data_size = QCA988X_BOARD_EXT_DATA_SZ;
197         u32 board_ext_data_addr;
198         int ret;
199
200         ret = ath10k_bmi_read32(ar, hi_board_ext_data, &board_ext_data_addr);
201         if (ret) {
202                 ath10k_err("could not read board ext data addr (%d)\n", ret);
203                 return ret;
204         }
205
206         ath10k_dbg(ATH10K_DBG_CORE,
207                    "ath10k: Board extended Data download addr: 0x%x\n",
208                    board_ext_data_addr);
209
210         if (board_ext_data_addr == 0)
211                 return 0;
212
213         if (fw->size != (board_data_size + board_ext_data_size)) {
214                 ath10k_err("invalid board (ext) data sizes %zu != %d+%d\n",
215                            fw->size, board_data_size, board_ext_data_size);
216                 return -EINVAL;
217         }
218
219         ret = ath10k_bmi_write_memory(ar, board_ext_data_addr,
220                                       fw->data + board_data_size,
221                                       board_ext_data_size);
222         if (ret) {
223                 ath10k_err("could not write board ext data (%d)\n", ret);
224                 return ret;
225         }
226
227         ret = ath10k_bmi_write32(ar, hi_board_ext_data_config,
228                                  (board_ext_data_size << 16) | 1);
229         if (ret) {
230                 ath10k_err("could not write board ext data bit (%d)\n", ret);
231                 return ret;
232         }
233
234         return 0;
235 }
236
237 static int ath10k_download_board_data(struct ath10k *ar)
238 {
239         const struct firmware *fw = ar->board_data;
240         u32 board_data_size = QCA988X_BOARD_DATA_SZ;
241         u32 address;
242         int ret;
243
244         ret = ath10k_push_board_ext_data(ar, fw);
245         if (ret) {
246                 ath10k_err("could not push board ext data (%d)\n", ret);
247                 goto exit;
248         }
249
250         ret = ath10k_bmi_read32(ar, hi_board_data, &address);
251         if (ret) {
252                 ath10k_err("could not read board data addr (%d)\n", ret);
253                 goto exit;
254         }
255
256         ret = ath10k_bmi_write_memory(ar, address, fw->data,
257                                       min_t(u32, board_data_size, fw->size));
258         if (ret) {
259                 ath10k_err("could not write board data (%d)\n", ret);
260                 goto exit;
261         }
262
263         ret = ath10k_bmi_write32(ar, hi_board_data_initialized, 1);
264         if (ret) {
265                 ath10k_err("could not write board data bit (%d)\n", ret);
266                 goto exit;
267         }
268
269 exit:
270         return ret;
271 }
272
273 static int ath10k_download_and_run_otp(struct ath10k *ar)
274 {
275         const struct firmware *fw = ar->otp;
276         u32 address = ar->hw_params.patch_load_addr;
277         u32 exec_param;
278         int ret;
279
280         /* OTP is optional */
281
282         if (!ar->otp)
283                 return 0;
284
285         ret = ath10k_bmi_fast_download(ar, address, fw->data, fw->size);
286         if (ret) {
287                 ath10k_err("could not write otp (%d)\n", ret);
288                 goto exit;
289         }
290
291         exec_param = 0;
292         ret = ath10k_bmi_execute(ar, address, &exec_param);
293         if (ret) {
294                 ath10k_err("could not execute otp (%d)\n", ret);
295                 goto exit;
296         }
297
298 exit:
299         return ret;
300 }
301
302 static int ath10k_download_fw(struct ath10k *ar)
303 {
304         const struct firmware *fw = ar->firmware;
305         u32 address;
306         int ret;
307
308         address = ar->hw_params.patch_load_addr;
309
310         ret = ath10k_bmi_fast_download(ar, address, fw->data, fw->size);
311         if (ret) {
312                 ath10k_err("could not write fw (%d)\n", ret);
313                 goto exit;
314         }
315
316 exit:
317         return ret;
318 }
319
320 static void ath10k_core_free_firmware_files(struct ath10k *ar)
321 {
322         if (ar->board_data && !IS_ERR(ar->board_data))
323                 release_firmware(ar->board_data);
324
325         if (ar->otp && !IS_ERR(ar->otp))
326                 release_firmware(ar->otp);
327
328         if (ar->firmware && !IS_ERR(ar->firmware))
329                 release_firmware(ar->firmware);
330
331         ar->board_data = NULL;
332         ar->otp = NULL;
333         ar->firmware = NULL;
334 }
335
336 static int ath10k_core_fetch_firmware_files(struct ath10k *ar)
337 {
338         int ret = 0;
339
340         if (ar->hw_params.fw.fw == NULL) {
341                 ath10k_err("firmware file not defined\n");
342                 return -EINVAL;
343         }
344
345         if (ar->hw_params.fw.board == NULL) {
346                 ath10k_err("board data file not defined");
347                 return -EINVAL;
348         }
349
350         ar->board_data = ath10k_fetch_fw_file(ar,
351                                               ar->hw_params.fw.dir,
352                                               ar->hw_params.fw.board);
353         if (IS_ERR(ar->board_data)) {
354                 ret = PTR_ERR(ar->board_data);
355                 ath10k_err("could not fetch board data (%d)\n", ret);
356                 goto err;
357         }
358
359         ar->firmware = ath10k_fetch_fw_file(ar,
360                                             ar->hw_params.fw.dir,
361                                             ar->hw_params.fw.fw);
362         if (IS_ERR(ar->firmware)) {
363                 ret = PTR_ERR(ar->firmware);
364                 ath10k_err("could not fetch firmware (%d)\n", ret);
365                 goto err;
366         }
367
368         /* OTP may be undefined. If so, don't fetch it at all */
369         if (ar->hw_params.fw.otp == NULL)
370                 return 0;
371
372         ar->otp = ath10k_fetch_fw_file(ar,
373                                        ar->hw_params.fw.dir,
374                                        ar->hw_params.fw.otp);
375         if (IS_ERR(ar->otp)) {
376                 ret = PTR_ERR(ar->otp);
377                 ath10k_err("could not fetch otp (%d)\n", ret);
378                 goto err;
379         }
380
381         return 0;
382
383 err:
384         ath10k_core_free_firmware_files(ar);
385         return ret;
386 }
387
388 static int ath10k_init_download_firmware(struct ath10k *ar)
389 {
390         int ret;
391
392         ret = ath10k_download_board_data(ar);
393         if (ret)
394                 return ret;
395
396         ret = ath10k_download_and_run_otp(ar);
397         if (ret)
398                 return ret;
399
400         ret = ath10k_download_fw(ar);
401         if (ret)
402                 return ret;
403
404         return ret;
405 }
406
407 static int ath10k_init_uart(struct ath10k *ar)
408 {
409         int ret;
410
411         /*
412          * Explicitly setting UART prints to zero as target turns it on
413          * based on scratch registers.
414          */
415         ret = ath10k_bmi_write32(ar, hi_serial_enable, 0);
416         if (ret) {
417                 ath10k_warn("could not disable UART prints (%d)\n", ret);
418                 return ret;
419         }
420
421         if (!uart_print) {
422                 ath10k_info("UART prints disabled\n");
423                 return 0;
424         }
425
426         ret = ath10k_bmi_write32(ar, hi_dbg_uart_txpin, 7);
427         if (ret) {
428                 ath10k_warn("could not enable UART prints (%d)\n", ret);
429                 return ret;
430         }
431
432         ret = ath10k_bmi_write32(ar, hi_serial_enable, 1);
433         if (ret) {
434                 ath10k_warn("could not enable UART prints (%d)\n", ret);
435                 return ret;
436         }
437
438         ath10k_info("UART prints enabled\n");
439         return 0;
440 }
441
442 static int ath10k_init_hw_params(struct ath10k *ar)
443 {
444         const struct ath10k_hw_params *uninitialized_var(hw_params);
445         int i;
446
447         for (i = 0; i < ARRAY_SIZE(ath10k_hw_params_list); i++) {
448                 hw_params = &ath10k_hw_params_list[i];
449
450                 if (hw_params->id == ar->target_version)
451                         break;
452         }
453
454         if (i == ARRAY_SIZE(ath10k_hw_params_list)) {
455                 ath10k_err("Unsupported hardware version: 0x%x\n",
456                            ar->target_version);
457                 return -EINVAL;
458         }
459
460         ar->hw_params = *hw_params;
461
462         ath10k_info("Hardware name %s version 0x%x\n",
463                     ar->hw_params.name, ar->target_version);
464
465         return 0;
466 }
467
468 static void ath10k_core_restart(struct work_struct *work)
469 {
470         struct ath10k *ar = container_of(work, struct ath10k, restart_work);
471
472         mutex_lock(&ar->conf_mutex);
473
474         switch (ar->state) {
475         case ATH10K_STATE_ON:
476                 ath10k_halt(ar);
477                 ar->state = ATH10K_STATE_RESTARTING;
478                 ieee80211_restart_hw(ar->hw);
479                 break;
480         case ATH10K_STATE_OFF:
481                 /* this can happen if driver is being unloaded */
482                 ath10k_warn("cannot restart a device that hasn't been started\n");
483                 break;
484         case ATH10K_STATE_RESTARTING:
485         case ATH10K_STATE_RESTARTED:
486                 ar->state = ATH10K_STATE_WEDGED;
487                 /* fall through */
488         case ATH10K_STATE_WEDGED:
489                 ath10k_warn("device is wedged, will not restart\n");
490                 break;
491         }
492
493         mutex_unlock(&ar->conf_mutex);
494 }
495
496 struct ath10k *ath10k_core_create(void *hif_priv, struct device *dev,
497                                   const struct ath10k_hif_ops *hif_ops)
498 {
499         struct ath10k *ar;
500
501         ar = ath10k_mac_create();
502         if (!ar)
503                 return NULL;
504
505         ar->ath_common.priv = ar;
506         ar->ath_common.hw = ar->hw;
507
508         ar->p2p = !!ath10k_p2p;
509         ar->dev = dev;
510
511         ar->hif.priv = hif_priv;
512         ar->hif.ops = hif_ops;
513
514         init_completion(&ar->scan.started);
515         init_completion(&ar->scan.completed);
516         init_completion(&ar->scan.on_channel);
517
518         init_completion(&ar->install_key_done);
519         init_completion(&ar->vdev_setup_done);
520
521         setup_timer(&ar->scan.timeout, ath10k_reset_scan, (unsigned long)ar);
522
523         ar->workqueue = create_singlethread_workqueue("ath10k_wq");
524         if (!ar->workqueue)
525                 goto err_wq;
526
527         mutex_init(&ar->conf_mutex);
528         spin_lock_init(&ar->data_lock);
529
530         INIT_LIST_HEAD(&ar->peers);
531         init_waitqueue_head(&ar->peer_mapping_wq);
532
533         init_completion(&ar->offchan_tx_completed);
534         INIT_WORK(&ar->offchan_tx_work, ath10k_offchan_tx_work);
535         skb_queue_head_init(&ar->offchan_tx_queue);
536
537         init_waitqueue_head(&ar->event_queue);
538
539         INIT_WORK(&ar->restart_work, ath10k_core_restart);
540
541         return ar;
542
543 err_wq:
544         ath10k_mac_destroy(ar);
545         return NULL;
546 }
547 EXPORT_SYMBOL(ath10k_core_create);
548
549 void ath10k_core_destroy(struct ath10k *ar)
550 {
551         flush_workqueue(ar->workqueue);
552         destroy_workqueue(ar->workqueue);
553
554         ath10k_mac_destroy(ar);
555 }
556 EXPORT_SYMBOL(ath10k_core_destroy);
557
558 int ath10k_core_start(struct ath10k *ar)
559 {
560         int status;
561
562         ath10k_bmi_start(ar);
563
564         if (ath10k_init_configure_target(ar)) {
565                 status = -EINVAL;
566                 goto err;
567         }
568
569         status = ath10k_init_download_firmware(ar);
570         if (status)
571                 goto err;
572
573         status = ath10k_init_uart(ar);
574         if (status)
575                 goto err;
576
577         ar->htc.htc_ops.target_send_suspend_complete =
578                 ath10k_send_suspend_complete;
579
580         status = ath10k_htc_init(ar);
581         if (status) {
582                 ath10k_err("could not init HTC (%d)\n", status);
583                 goto err;
584         }
585
586         status = ath10k_bmi_done(ar);
587         if (status)
588                 goto err;
589
590         status = ath10k_wmi_attach(ar);
591         if (status) {
592                 ath10k_err("WMI attach failed: %d\n", status);
593                 goto err;
594         }
595
596         status = ath10k_htc_wait_target(&ar->htc);
597         if (status)
598                 goto err_wmi_detach;
599
600         status = ath10k_htt_attach(ar);
601         if (status) {
602                 ath10k_err("could not attach htt (%d)\n", status);
603                 goto err_wmi_detach;
604         }
605
606         status = ath10k_init_connect_htc(ar);
607         if (status)
608                 goto err_htt_detach;
609
610         ath10k_info("firmware %s booted\n", ar->hw->wiphy->fw_version);
611
612         status = ath10k_check_fw_version(ar);
613         if (status)
614                 goto err_disconnect_htc;
615
616         status = ath10k_wmi_cmd_init(ar);
617         if (status) {
618                 ath10k_err("could not send WMI init command (%d)\n", status);
619                 goto err_disconnect_htc;
620         }
621
622         status = ath10k_wmi_wait_for_unified_ready(ar);
623         if (status <= 0) {
624                 ath10k_err("wmi unified ready event not received\n");
625                 status = -ETIMEDOUT;
626                 goto err_disconnect_htc;
627         }
628
629         status = ath10k_htt_attach_target(&ar->htt);
630         if (status)
631                 goto err_disconnect_htc;
632
633         status = ath10k_debug_start(ar);
634         if (status)
635                 goto err_disconnect_htc;
636
637         ar->free_vdev_map = (1 << TARGET_NUM_VDEVS) - 1;
638
639         return 0;
640
641 err_disconnect_htc:
642         ath10k_htc_stop(&ar->htc);
643 err_htt_detach:
644         ath10k_htt_detach(&ar->htt);
645 err_wmi_detach:
646         ath10k_wmi_detach(ar);
647 err:
648         return status;
649 }
650 EXPORT_SYMBOL(ath10k_core_start);
651
652 void ath10k_core_stop(struct ath10k *ar)
653 {
654         ath10k_debug_stop(ar);
655         ath10k_htc_stop(&ar->htc);
656         ath10k_htt_detach(&ar->htt);
657         ath10k_wmi_detach(ar);
658 }
659 EXPORT_SYMBOL(ath10k_core_stop);
660
661 /* mac80211 manages fw/hw initialization through start/stop hooks. However in
662  * order to know what hw capabilities should be advertised to mac80211 it is
663  * necessary to load the firmware (and tear it down immediately since start
664  * hook will try to init it again) before registering */
665 static int ath10k_core_probe_fw(struct ath10k *ar)
666 {
667         struct bmi_target_info target_info;
668         int ret = 0;
669
670         ret = ath10k_hif_power_up(ar);
671         if (ret) {
672                 ath10k_err("could not start pci hif (%d)\n", ret);
673                 return ret;
674         }
675
676         memset(&target_info, 0, sizeof(target_info));
677         ret = ath10k_bmi_get_target_info(ar, &target_info);
678         if (ret) {
679                 ath10k_err("could not get target info (%d)\n", ret);
680                 ath10k_hif_power_down(ar);
681                 return ret;
682         }
683
684         ar->target_version = target_info.version;
685         ar->hw->wiphy->hw_version = target_info.version;
686
687         ret = ath10k_init_hw_params(ar);
688         if (ret) {
689                 ath10k_err("could not get hw params (%d)\n", ret);
690                 ath10k_hif_power_down(ar);
691                 return ret;
692         }
693
694         ret = ath10k_core_fetch_firmware_files(ar);
695         if (ret) {
696                 ath10k_err("could not fetch firmware files (%d)\n", ret);
697                 ath10k_hif_power_down(ar);
698                 return ret;
699         }
700
701         ret = ath10k_core_start(ar);
702         if (ret) {
703                 ath10k_err("could not init core (%d)\n", ret);
704                 ath10k_core_free_firmware_files(ar);
705                 ath10k_hif_power_down(ar);
706                 return ret;
707         }
708
709         ath10k_core_stop(ar);
710         ath10k_hif_power_down(ar);
711         return 0;
712 }
713
714 static int ath10k_core_check_chip_id(struct ath10k *ar)
715 {
716         u32 hw_revision = MS(ar->chip_id, SOC_CHIP_ID_REV);
717
718         /* Check that we are not using hw1.0 (some of them have same pci id
719          * as hw2.0) before doing anything else as ath10k crashes horribly
720          * due to missing hw1.0 workarounds. */
721         switch (hw_revision) {
722         case QCA988X_HW_1_0_CHIP_ID_REV:
723                 ath10k_err("ERROR: qca988x hw1.0 is not supported\n");
724                 return -EOPNOTSUPP;
725
726         case QCA988X_HW_2_0_CHIP_ID_REV:
727                 /* known hardware revision, continue normally */
728                 return 0;
729
730         default:
731                 ath10k_warn("Warning: hardware revision unknown (0x%x), expect problems\n",
732                             ar->chip_id);
733                 return 0;
734         }
735
736         return 0;
737 }
738
739 int ath10k_core_register(struct ath10k *ar, u32 chip_id)
740 {
741         int status;
742
743         ar->chip_id = chip_id;
744
745         status = ath10k_core_check_chip_id(ar);
746         if (status) {
747                 ath10k_err("Unsupported chip id 0x%08x\n", ar->chip_id);
748                 return status;
749         }
750
751         status = ath10k_core_probe_fw(ar);
752         if (status) {
753                 ath10k_err("could not probe fw (%d)\n", status);
754                 return status;
755         }
756
757         status = ath10k_mac_register(ar);
758         if (status) {
759                 ath10k_err("could not register to mac80211 (%d)\n", status);
760                 goto err_release_fw;
761         }
762
763         status = ath10k_debug_create(ar);
764         if (status) {
765                 ath10k_err("unable to initialize debugfs\n");
766                 goto err_unregister_mac;
767         }
768
769         return 0;
770
771 err_unregister_mac:
772         ath10k_mac_unregister(ar);
773 err_release_fw:
774         ath10k_core_free_firmware_files(ar);
775         return status;
776 }
777 EXPORT_SYMBOL(ath10k_core_register);
778
779 void ath10k_core_unregister(struct ath10k *ar)
780 {
781         /* We must unregister from mac80211 before we stop HTC and HIF.
782          * Otherwise we will fail to submit commands to FW and mac80211 will be
783          * unhappy about callback failures. */
784         ath10k_mac_unregister(ar);
785
786         ath10k_core_free_firmware_files(ar);
787 }
788 EXPORT_SYMBOL(ath10k_core_unregister);
789
790 MODULE_AUTHOR("Qualcomm Atheros");
791 MODULE_DESCRIPTION("Core module for QCA988X PCIe devices.");
792 MODULE_LICENSE("Dual BSD/GPL");