blob: bf1083d52e61d5f4c29bc6e649f357bf74c7ad51 [file] [log] [blame]
Kalle Valo5e3dd152013-06-12 20:52:10 +03001/*
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/pci.h>
19#include <linux/module.h>
20#include <linux/interrupt.h>
21#include <linux/spinlock.h>
Kalle Valo650b91f2013-11-20 10:00:49 +020022#include <linux/bitops.h>
Kalle Valo5e3dd152013-06-12 20:52:10 +030023
24#include "core.h"
25#include "debug.h"
26
27#include "targaddrs.h"
28#include "bmi.h"
29
30#include "hif.h"
31#include "htc.h"
32
33#include "ce.h"
34#include "pci.h"
35
Michal Kaziorcfe9c452013-11-25 14:06:27 +010036enum ath10k_pci_irq_mode {
37 ATH10K_PCI_IRQ_AUTO = 0,
38 ATH10K_PCI_IRQ_LEGACY = 1,
39 ATH10K_PCI_IRQ_MSI = 2,
40};
41
Kalle Valo35098462014-03-28 09:32:27 +020042enum ath10k_pci_reset_mode {
43 ATH10K_PCI_RESET_AUTO = 0,
44 ATH10K_PCI_RESET_WARM_ONLY = 1,
45};
46
Kalle Valoe42c1fb2014-03-28 09:32:33 +020047static unsigned int ath10k_pci_target_ps;
Michal Kaziorcfe9c452013-11-25 14:06:27 +010048static unsigned int ath10k_pci_irq_mode = ATH10K_PCI_IRQ_AUTO;
Kalle Valo35098462014-03-28 09:32:27 +020049static unsigned int ath10k_pci_reset_mode = ATH10K_PCI_RESET_AUTO;
Michal Kaziorcfe9c452013-11-25 14:06:27 +010050
Kalle Valoe42c1fb2014-03-28 09:32:33 +020051module_param_named(target_ps, ath10k_pci_target_ps, uint, 0644);
52MODULE_PARM_DESC(target_ps, "Enable ath10k Target (SoC) PS option");
Kalle Valo5e3dd152013-06-12 20:52:10 +030053
Michal Kaziorcfe9c452013-11-25 14:06:27 +010054module_param_named(irq_mode, ath10k_pci_irq_mode, uint, 0644);
55MODULE_PARM_DESC(irq_mode, "0: auto, 1: legacy, 2: msi (default: 0)");
56
Kalle Valo35098462014-03-28 09:32:27 +020057module_param_named(reset_mode, ath10k_pci_reset_mode, uint, 0644);
58MODULE_PARM_DESC(reset_mode, "0: auto, 1: warm only (default: 0)");
59
Kalle Valo0399eca2014-03-28 09:32:21 +020060/* how long wait to wait for target to initialise, in ms */
61#define ATH10K_PCI_TARGET_WAIT 3000
62
Kalle Valo5e3dd152013-06-12 20:52:10 +030063#define QCA988X_2_0_DEVICE_ID (0x003c)
64
65static DEFINE_PCI_DEVICE_TABLE(ath10k_pci_id_table) = {
Kalle Valo5e3dd152013-06-12 20:52:10 +030066 { PCI_VDEVICE(ATHEROS, QCA988X_2_0_DEVICE_ID) }, /* PCI-E QCA988X V2 */
67 {0}
68};
69
70static int ath10k_pci_diag_read_access(struct ath10k *ar, u32 address,
71 u32 *data);
72
Kalle Valo5e3dd152013-06-12 20:52:10 +030073static int ath10k_pci_post_rx(struct ath10k *ar);
Michal Kazior87263e52013-08-27 13:08:01 +020074static int ath10k_pci_post_rx_pipe(struct ath10k_pci_pipe *pipe_info,
Kalle Valo5e3dd152013-06-12 20:52:10 +030075 int num);
Michal Kazior87263e52013-08-27 13:08:01 +020076static void ath10k_pci_rx_pipe_cleanup(struct ath10k_pci_pipe *pipe_info);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +010077static int ath10k_pci_cold_reset(struct ath10k *ar);
78static int ath10k_pci_warm_reset(struct ath10k *ar);
Michal Kaziord7fb47f2013-11-08 08:01:26 +010079static int ath10k_pci_wait_for_target_init(struct ath10k *ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +010080static int ath10k_pci_init_irq(struct ath10k *ar);
81static int ath10k_pci_deinit_irq(struct ath10k *ar);
82static int ath10k_pci_request_irq(struct ath10k *ar);
83static void ath10k_pci_free_irq(struct ath10k *ar);
Michal Kazior85622cd2013-11-25 14:06:22 +010084static int ath10k_pci_bmi_wait(struct ath10k_ce_pipe *tx_pipe,
85 struct ath10k_ce_pipe *rx_pipe,
86 struct bmi_xfer *xfer);
Kalle Valo5e3dd152013-06-12 20:52:10 +030087
88static const struct ce_attr host_ce_config_wlan[] = {
Kalle Valo48e9c222013-09-01 10:01:32 +030089 /* CE0: host->target HTC control and raw streams */
90 {
91 .flags = CE_ATTR_FLAGS,
92 .src_nentries = 16,
93 .src_sz_max = 256,
94 .dest_nentries = 0,
95 },
96
97 /* CE1: target->host HTT + HTC control */
98 {
99 .flags = CE_ATTR_FLAGS,
100 .src_nentries = 0,
101 .src_sz_max = 512,
102 .dest_nentries = 512,
103 },
104
105 /* CE2: target->host WMI */
106 {
107 .flags = CE_ATTR_FLAGS,
108 .src_nentries = 0,
109 .src_sz_max = 2048,
110 .dest_nentries = 32,
111 },
112
113 /* CE3: host->target WMI */
114 {
115 .flags = CE_ATTR_FLAGS,
116 .src_nentries = 32,
117 .src_sz_max = 2048,
118 .dest_nentries = 0,
119 },
120
121 /* CE4: host->target HTT */
122 {
123 .flags = CE_ATTR_FLAGS | CE_ATTR_DIS_INTR,
124 .src_nentries = CE_HTT_H2T_MSG_SRC_NENTRIES,
125 .src_sz_max = 256,
126 .dest_nentries = 0,
127 },
128
129 /* CE5: unused */
130 {
131 .flags = CE_ATTR_FLAGS,
132 .src_nentries = 0,
133 .src_sz_max = 0,
134 .dest_nentries = 0,
135 },
136
137 /* CE6: target autonomous hif_memcpy */
138 {
139 .flags = CE_ATTR_FLAGS,
140 .src_nentries = 0,
141 .src_sz_max = 0,
142 .dest_nentries = 0,
143 },
144
145 /* CE7: ce_diag, the Diagnostic Window */
146 {
147 .flags = CE_ATTR_FLAGS,
148 .src_nentries = 2,
149 .src_sz_max = DIAG_TRANSFER_LIMIT,
150 .dest_nentries = 2,
151 },
Kalle Valo5e3dd152013-06-12 20:52:10 +0300152};
153
154/* Target firmware's Copy Engine configuration. */
155static const struct ce_pipe_config target_ce_config_wlan[] = {
Kalle Valod88effb2013-09-01 10:01:39 +0300156 /* CE0: host->target HTC control and raw streams */
157 {
158 .pipenum = 0,
159 .pipedir = PIPEDIR_OUT,
160 .nentries = 32,
161 .nbytes_max = 256,
162 .flags = CE_ATTR_FLAGS,
163 .reserved = 0,
164 },
165
166 /* CE1: target->host HTT + HTC control */
167 {
168 .pipenum = 1,
169 .pipedir = PIPEDIR_IN,
170 .nentries = 32,
171 .nbytes_max = 512,
172 .flags = CE_ATTR_FLAGS,
173 .reserved = 0,
174 },
175
176 /* CE2: target->host WMI */
177 {
178 .pipenum = 2,
179 .pipedir = PIPEDIR_IN,
180 .nentries = 32,
181 .nbytes_max = 2048,
182 .flags = CE_ATTR_FLAGS,
183 .reserved = 0,
184 },
185
186 /* CE3: host->target WMI */
187 {
188 .pipenum = 3,
189 .pipedir = PIPEDIR_OUT,
190 .nentries = 32,
191 .nbytes_max = 2048,
192 .flags = CE_ATTR_FLAGS,
193 .reserved = 0,
194 },
195
196 /* CE4: host->target HTT */
197 {
198 .pipenum = 4,
199 .pipedir = PIPEDIR_OUT,
200 .nentries = 256,
201 .nbytes_max = 256,
202 .flags = CE_ATTR_FLAGS,
203 .reserved = 0,
204 },
205
Kalle Valo5e3dd152013-06-12 20:52:10 +0300206 /* NB: 50% of src nentries, since tx has 2 frags */
Kalle Valod88effb2013-09-01 10:01:39 +0300207
208 /* CE5: unused */
209 {
210 .pipenum = 5,
211 .pipedir = PIPEDIR_OUT,
212 .nentries = 32,
213 .nbytes_max = 2048,
214 .flags = CE_ATTR_FLAGS,
215 .reserved = 0,
216 },
217
218 /* CE6: Reserved for target autonomous hif_memcpy */
219 {
220 .pipenum = 6,
221 .pipedir = PIPEDIR_INOUT,
222 .nentries = 32,
223 .nbytes_max = 4096,
224 .flags = CE_ATTR_FLAGS,
225 .reserved = 0,
226 },
227
Kalle Valo5e3dd152013-06-12 20:52:10 +0300228 /* CE7 used only by Host */
229};
230
Michal Kaziore5398872013-11-25 14:06:20 +0100231static bool ath10k_pci_irq_pending(struct ath10k *ar)
232{
233 u32 cause;
234
235 /* Check if the shared legacy irq is for us */
236 cause = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
237 PCIE_INTR_CAUSE_ADDRESS);
238 if (cause & (PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL))
239 return true;
240
241 return false;
242}
243
Michal Kazior26852182013-11-25 14:06:25 +0100244static void ath10k_pci_disable_and_clear_legacy_irq(struct ath10k *ar)
245{
246 /* IMPORTANT: INTR_CLR register has to be set after
247 * INTR_ENABLE is set to 0, otherwise interrupt can not be
248 * really cleared. */
249 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
250 0);
251 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_CLR_ADDRESS,
252 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
253
254 /* IMPORTANT: this extra read transaction is required to
255 * flush the posted write buffer. */
256 (void) ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
257 PCIE_INTR_ENABLE_ADDRESS);
258}
259
260static void ath10k_pci_enable_legacy_irq(struct ath10k *ar)
261{
262 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
263 PCIE_INTR_ENABLE_ADDRESS,
264 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
265
266 /* IMPORTANT: this extra read transaction is required to
267 * flush the posted write buffer. */
268 (void) ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
269 PCIE_INTR_ENABLE_ADDRESS);
270}
271
Michal Kaziorab977bd2013-11-25 14:06:26 +0100272static irqreturn_t ath10k_pci_early_irq_handler(int irq, void *arg)
273{
274 struct ath10k *ar = arg;
275 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
276
277 if (ar_pci->num_msi_intrs == 0) {
278 if (!ath10k_pci_irq_pending(ar))
279 return IRQ_NONE;
280
281 ath10k_pci_disable_and_clear_legacy_irq(ar);
282 }
283
284 tasklet_schedule(&ar_pci->early_irq_tasklet);
285
286 return IRQ_HANDLED;
287}
288
289static int ath10k_pci_request_early_irq(struct ath10k *ar)
290{
291 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
292 int ret;
293
294 /* Regardless whether MSI-X/MSI/legacy irqs have been set up the first
295 * interrupt from irq vector is triggered in all cases for FW
296 * indication/errors */
297 ret = request_irq(ar_pci->pdev->irq, ath10k_pci_early_irq_handler,
298 IRQF_SHARED, "ath10k_pci (early)", ar);
299 if (ret) {
300 ath10k_warn("failed to request early irq: %d\n", ret);
301 return ret;
302 }
303
304 return 0;
305}
306
307static void ath10k_pci_free_early_irq(struct ath10k *ar)
308{
309 free_irq(ath10k_pci_priv(ar)->pdev->irq, ar);
310}
311
Kalle Valo5e3dd152013-06-12 20:52:10 +0300312/*
313 * Diagnostic read/write access is provided for startup/config/debug usage.
314 * Caller must guarantee proper alignment, when applicable, and single user
315 * at any moment.
316 */
317static int ath10k_pci_diag_read_mem(struct ath10k *ar, u32 address, void *data,
318 int nbytes)
319{
320 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
321 int ret = 0;
322 u32 buf;
323 unsigned int completed_nbytes, orig_nbytes, remaining_bytes;
324 unsigned int id;
325 unsigned int flags;
Michal Kazior2aa39112013-08-27 13:08:02 +0200326 struct ath10k_ce_pipe *ce_diag;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300327 /* Host buffer address in CE space */
328 u32 ce_data;
329 dma_addr_t ce_data_base = 0;
330 void *data_buf = NULL;
331 int i;
332
333 /*
334 * This code cannot handle reads to non-memory space. Redirect to the
335 * register read fn but preserve the multi word read capability of
336 * this fn
337 */
338 if (address < DRAM_BASE_ADDRESS) {
339 if (!IS_ALIGNED(address, 4) ||
340 !IS_ALIGNED((unsigned long)data, 4))
341 return -EIO;
342
343 while ((nbytes >= 4) && ((ret = ath10k_pci_diag_read_access(
344 ar, address, (u32 *)data)) == 0)) {
345 nbytes -= sizeof(u32);
346 address += sizeof(u32);
347 data += sizeof(u32);
348 }
349 return ret;
350 }
351
352 ce_diag = ar_pci->ce_diag;
353
354 /*
355 * Allocate a temporary bounce buffer to hold caller's data
356 * to be DMA'ed from Target. This guarantees
357 * 1) 4-byte alignment
358 * 2) Buffer in DMA-able space
359 */
360 orig_nbytes = nbytes;
Michal Kazior68c03242014-03-28 10:02:35 +0200361 data_buf = (unsigned char *)dma_alloc_coherent(ar->dev,
362 orig_nbytes,
363 &ce_data_base,
364 GFP_ATOMIC);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300365
366 if (!data_buf) {
367 ret = -ENOMEM;
368 goto done;
369 }
370 memset(data_buf, 0, orig_nbytes);
371
372 remaining_bytes = orig_nbytes;
373 ce_data = ce_data_base;
374 while (remaining_bytes) {
375 nbytes = min_t(unsigned int, remaining_bytes,
376 DIAG_TRANSFER_LIMIT);
377
378 ret = ath10k_ce_recv_buf_enqueue(ce_diag, NULL, ce_data);
379 if (ret != 0)
380 goto done;
381
382 /* Request CE to send from Target(!) address to Host buffer */
383 /*
384 * The address supplied by the caller is in the
385 * Target CPU virtual address space.
386 *
387 * In order to use this address with the diagnostic CE,
388 * convert it from Target CPU virtual address space
389 * to CE address space
390 */
391 ath10k_pci_wake(ar);
392 address = TARG_CPU_SPACE_TO_CE_SPACE(ar, ar_pci->mem,
393 address);
394 ath10k_pci_sleep(ar);
395
396 ret = ath10k_ce_send(ce_diag, NULL, (u32)address, nbytes, 0,
397 0);
398 if (ret)
399 goto done;
400
401 i = 0;
402 while (ath10k_ce_completed_send_next(ce_diag, NULL, &buf,
403 &completed_nbytes,
404 &id) != 0) {
405 mdelay(1);
406 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
407 ret = -EBUSY;
408 goto done;
409 }
410 }
411
412 if (nbytes != completed_nbytes) {
413 ret = -EIO;
414 goto done;
415 }
416
417 if (buf != (u32) address) {
418 ret = -EIO;
419 goto done;
420 }
421
422 i = 0;
423 while (ath10k_ce_completed_recv_next(ce_diag, NULL, &buf,
424 &completed_nbytes,
425 &id, &flags) != 0) {
426 mdelay(1);
427
428 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
429 ret = -EBUSY;
430 goto done;
431 }
432 }
433
434 if (nbytes != completed_nbytes) {
435 ret = -EIO;
436 goto done;
437 }
438
439 if (buf != ce_data) {
440 ret = -EIO;
441 goto done;
442 }
443
444 remaining_bytes -= nbytes;
445 address += nbytes;
446 ce_data += nbytes;
447 }
448
449done:
450 if (ret == 0) {
451 /* Copy data from allocated DMA buf to caller's buf */
452 WARN_ON_ONCE(orig_nbytes & 3);
453 for (i = 0; i < orig_nbytes / sizeof(__le32); i++) {
454 ((u32 *)data)[i] =
455 __le32_to_cpu(((__le32 *)data_buf)[i]);
456 }
457 } else
Kalle Valo50f87a62014-03-28 09:32:52 +0200458 ath10k_warn("failed to read diag value at 0x%x: %d\n",
459 address, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300460
461 if (data_buf)
Michal Kazior68c03242014-03-28 10:02:35 +0200462 dma_free_coherent(ar->dev, orig_nbytes, data_buf,
463 ce_data_base);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300464
465 return ret;
466}
467
468/* Read 4-byte aligned data from Target memory or register */
469static int ath10k_pci_diag_read_access(struct ath10k *ar, u32 address,
470 u32 *data)
471{
472 /* Assume range doesn't cross this boundary */
473 if (address >= DRAM_BASE_ADDRESS)
474 return ath10k_pci_diag_read_mem(ar, address, data, sizeof(u32));
475
476 ath10k_pci_wake(ar);
477 *data = ath10k_pci_read32(ar, address);
478 ath10k_pci_sleep(ar);
479 return 0;
480}
481
482static int ath10k_pci_diag_write_mem(struct ath10k *ar, u32 address,
483 const void *data, int nbytes)
484{
485 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
486 int ret = 0;
487 u32 buf;
488 unsigned int completed_nbytes, orig_nbytes, remaining_bytes;
489 unsigned int id;
490 unsigned int flags;
Michal Kazior2aa39112013-08-27 13:08:02 +0200491 struct ath10k_ce_pipe *ce_diag;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300492 void *data_buf = NULL;
493 u32 ce_data; /* Host buffer address in CE space */
494 dma_addr_t ce_data_base = 0;
495 int i;
496
497 ce_diag = ar_pci->ce_diag;
498
499 /*
500 * Allocate a temporary bounce buffer to hold caller's data
501 * to be DMA'ed to Target. This guarantees
502 * 1) 4-byte alignment
503 * 2) Buffer in DMA-able space
504 */
505 orig_nbytes = nbytes;
Michal Kazior68c03242014-03-28 10:02:35 +0200506 data_buf = (unsigned char *)dma_alloc_coherent(ar->dev,
507 orig_nbytes,
508 &ce_data_base,
509 GFP_ATOMIC);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300510 if (!data_buf) {
511 ret = -ENOMEM;
512 goto done;
513 }
514
515 /* Copy caller's data to allocated DMA buf */
516 WARN_ON_ONCE(orig_nbytes & 3);
517 for (i = 0; i < orig_nbytes / sizeof(__le32); i++)
518 ((__le32 *)data_buf)[i] = __cpu_to_le32(((u32 *)data)[i]);
519
520 /*
521 * The address supplied by the caller is in the
522 * Target CPU virtual address space.
523 *
524 * In order to use this address with the diagnostic CE,
525 * convert it from
526 * Target CPU virtual address space
527 * to
528 * CE address space
529 */
530 ath10k_pci_wake(ar);
531 address = TARG_CPU_SPACE_TO_CE_SPACE(ar, ar_pci->mem, address);
532 ath10k_pci_sleep(ar);
533
534 remaining_bytes = orig_nbytes;
535 ce_data = ce_data_base;
536 while (remaining_bytes) {
537 /* FIXME: check cast */
538 nbytes = min_t(int, remaining_bytes, DIAG_TRANSFER_LIMIT);
539
540 /* Set up to receive directly into Target(!) address */
541 ret = ath10k_ce_recv_buf_enqueue(ce_diag, NULL, address);
542 if (ret != 0)
543 goto done;
544
545 /*
546 * Request CE to send caller-supplied data that
547 * was copied to bounce buffer to Target(!) address.
548 */
549 ret = ath10k_ce_send(ce_diag, NULL, (u32) ce_data,
550 nbytes, 0, 0);
551 if (ret != 0)
552 goto done;
553
554 i = 0;
555 while (ath10k_ce_completed_send_next(ce_diag, NULL, &buf,
556 &completed_nbytes,
557 &id) != 0) {
558 mdelay(1);
559
560 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
561 ret = -EBUSY;
562 goto done;
563 }
564 }
565
566 if (nbytes != completed_nbytes) {
567 ret = -EIO;
568 goto done;
569 }
570
571 if (buf != ce_data) {
572 ret = -EIO;
573 goto done;
574 }
575
576 i = 0;
577 while (ath10k_ce_completed_recv_next(ce_diag, NULL, &buf,
578 &completed_nbytes,
579 &id, &flags) != 0) {
580 mdelay(1);
581
582 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
583 ret = -EBUSY;
584 goto done;
585 }
586 }
587
588 if (nbytes != completed_nbytes) {
589 ret = -EIO;
590 goto done;
591 }
592
593 if (buf != address) {
594 ret = -EIO;
595 goto done;
596 }
597
598 remaining_bytes -= nbytes;
599 address += nbytes;
600 ce_data += nbytes;
601 }
602
603done:
604 if (data_buf) {
Michal Kazior68c03242014-03-28 10:02:35 +0200605 dma_free_coherent(ar->dev, orig_nbytes, data_buf,
606 ce_data_base);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300607 }
608
609 if (ret != 0)
Kalle Valo50f87a62014-03-28 09:32:52 +0200610 ath10k_warn("failed to write diag value at 0x%x: %d\n",
611 address, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300612
613 return ret;
614}
615
616/* Write 4B data to Target memory or register */
617static int ath10k_pci_diag_write_access(struct ath10k *ar, u32 address,
618 u32 data)
619{
620 /* Assume range doesn't cross this boundary */
621 if (address >= DRAM_BASE_ADDRESS)
622 return ath10k_pci_diag_write_mem(ar, address, &data,
623 sizeof(u32));
624
625 ath10k_pci_wake(ar);
626 ath10k_pci_write32(ar, address, data);
627 ath10k_pci_sleep(ar);
628 return 0;
629}
630
631static bool ath10k_pci_target_is_awake(struct ath10k *ar)
632{
633 void __iomem *mem = ath10k_pci_priv(ar)->mem;
634 u32 val;
635 val = ioread32(mem + PCIE_LOCAL_BASE_ADDRESS +
636 RTC_STATE_ADDRESS);
637 return (RTC_STATE_V_GET(val) == RTC_STATE_V_ON);
638}
639
Kalle Valo3aebe542013-09-01 10:02:07 +0300640int ath10k_do_pci_wake(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300641{
642 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
643 void __iomem *pci_addr = ar_pci->mem;
644 int tot_delay = 0;
645 int curr_delay = 5;
646
647 if (atomic_read(&ar_pci->keep_awake_count) == 0) {
648 /* Force AWAKE */
649 iowrite32(PCIE_SOC_WAKE_V_MASK,
650 pci_addr + PCIE_LOCAL_BASE_ADDRESS +
651 PCIE_SOC_WAKE_ADDRESS);
652 }
653 atomic_inc(&ar_pci->keep_awake_count);
654
655 if (ar_pci->verified_awake)
Kalle Valo3aebe542013-09-01 10:02:07 +0300656 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300657
658 for (;;) {
659 if (ath10k_pci_target_is_awake(ar)) {
660 ar_pci->verified_awake = true;
Kalle Valo3aebe542013-09-01 10:02:07 +0300661 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300662 }
663
664 if (tot_delay > PCIE_WAKE_TIMEOUT) {
Kalle Valo3aebe542013-09-01 10:02:07 +0300665 ath10k_warn("target took longer %d us to wake up (awake count %d)\n",
666 PCIE_WAKE_TIMEOUT,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300667 atomic_read(&ar_pci->keep_awake_count));
Kalle Valo3aebe542013-09-01 10:02:07 +0300668 return -ETIMEDOUT;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300669 }
670
671 udelay(curr_delay);
672 tot_delay += curr_delay;
673
674 if (curr_delay < 50)
675 curr_delay += 5;
676 }
677}
678
679void ath10k_do_pci_sleep(struct ath10k *ar)
680{
681 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
682 void __iomem *pci_addr = ar_pci->mem;
683
684 if (atomic_dec_and_test(&ar_pci->keep_awake_count)) {
685 /* Allow sleep */
686 ar_pci->verified_awake = false;
687 iowrite32(PCIE_SOC_WAKE_RESET,
688 pci_addr + PCIE_LOCAL_BASE_ADDRESS +
689 PCIE_SOC_WAKE_ADDRESS);
690 }
691}
692
Kalle Valo5e3dd152013-06-12 20:52:10 +0300693/* Called by lower (CE) layer when a send to Target completes. */
Michal Kazior5440ce22013-09-03 15:09:58 +0200694static void ath10k_pci_ce_send_done(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300695{
696 struct ath10k *ar = ce_state->ar;
697 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior2f5280d2014-02-27 18:50:05 +0200698 struct ath10k_hif_cb *cb = &ar_pci->msg_callbacks_current;
Michal Kazior5440ce22013-09-03 15:09:58 +0200699 void *transfer_context;
700 u32 ce_data;
701 unsigned int nbytes;
702 unsigned int transfer_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300703
Michal Kazior5440ce22013-09-03 15:09:58 +0200704 while (ath10k_ce_completed_send_next(ce_state, &transfer_context,
705 &ce_data, &nbytes,
706 &transfer_id) == 0) {
Michal Kaziora16942e2014-02-27 18:50:04 +0200707 /* no need to call tx completion for NULL pointers */
Michal Kazior726346f2014-02-27 18:50:04 +0200708 if (transfer_context == NULL)
709 continue;
710
Michal Kazior2f5280d2014-02-27 18:50:05 +0200711 cb->tx_completion(ar, transfer_context, transfer_id);
Michal Kazior5440ce22013-09-03 15:09:58 +0200712 }
Kalle Valo5e3dd152013-06-12 20:52:10 +0300713}
714
715/* Called by lower (CE) layer when data is received from the Target. */
Michal Kazior5440ce22013-09-03 15:09:58 +0200716static void ath10k_pci_ce_recv_data(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300717{
718 struct ath10k *ar = ce_state->ar;
719 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior87263e52013-08-27 13:08:01 +0200720 struct ath10k_pci_pipe *pipe_info = &ar_pci->pipe_info[ce_state->id];
Michal Kazior2f5280d2014-02-27 18:50:05 +0200721 struct ath10k_hif_cb *cb = &ar_pci->msg_callbacks_current;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300722 struct sk_buff *skb;
Michal Kazior5440ce22013-09-03 15:09:58 +0200723 void *transfer_context;
724 u32 ce_data;
Michal Kazior2f5280d2014-02-27 18:50:05 +0200725 unsigned int nbytes, max_nbytes;
Michal Kazior5440ce22013-09-03 15:09:58 +0200726 unsigned int transfer_id;
727 unsigned int flags;
Michal Kazior2f5280d2014-02-27 18:50:05 +0200728 int err;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300729
Michal Kazior5440ce22013-09-03 15:09:58 +0200730 while (ath10k_ce_completed_recv_next(ce_state, &transfer_context,
731 &ce_data, &nbytes, &transfer_id,
732 &flags) == 0) {
Michal Kazior2f5280d2014-02-27 18:50:05 +0200733 err = ath10k_pci_post_rx_pipe(pipe_info, 1);
734 if (unlikely(err)) {
735 /* FIXME: retry */
736 ath10k_warn("failed to replenish CE rx ring %d: %d\n",
737 pipe_info->pipe_num, err);
738 }
Kalle Valo5e3dd152013-06-12 20:52:10 +0300739
740 skb = transfer_context;
Michal Kazior2f5280d2014-02-27 18:50:05 +0200741 max_nbytes = skb->len + skb_tailroom(skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300742 dma_unmap_single(ar->dev, ATH10K_SKB_CB(skb)->paddr,
Michal Kazior2f5280d2014-02-27 18:50:05 +0200743 max_nbytes, DMA_FROM_DEVICE);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300744
Michal Kazior2f5280d2014-02-27 18:50:05 +0200745 if (unlikely(max_nbytes < nbytes)) {
746 ath10k_warn("rxed more than expected (nbytes %d, max %d)",
747 nbytes, max_nbytes);
748 dev_kfree_skb_any(skb);
749 continue;
750 }
751
752 skb_put(skb, nbytes);
753 cb->rx_completion(ar, skb, pipe_info->pipe_num);
754 }
Kalle Valo5e3dd152013-06-12 20:52:10 +0300755}
756
Michal Kazior726346f2014-02-27 18:50:04 +0200757static int ath10k_pci_hif_tx_sg(struct ath10k *ar, u8 pipe_id,
758 struct ath10k_hif_sg_item *items, int n_items)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300759{
Kalle Valo5e3dd152013-06-12 20:52:10 +0300760 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior726346f2014-02-27 18:50:04 +0200761 struct ath10k_pci_pipe *pci_pipe = &ar_pci->pipe_info[pipe_id];
762 struct ath10k_ce_pipe *ce_pipe = pci_pipe->ce_hdl;
763 struct ath10k_ce_ring *src_ring = ce_pipe->src_ring;
764 unsigned int nentries_mask = src_ring->nentries_mask;
765 unsigned int sw_index = src_ring->sw_index;
766 unsigned int write_index = src_ring->write_index;
767 int err, i;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300768
Michal Kazior726346f2014-02-27 18:50:04 +0200769 spin_lock_bh(&ar_pci->ce_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300770
Michal Kazior726346f2014-02-27 18:50:04 +0200771 if (unlikely(CE_RING_DELTA(nentries_mask,
772 write_index, sw_index - 1) < n_items)) {
773 err = -ENOBUFS;
774 goto unlock;
775 }
776
777 for (i = 0; i < n_items - 1; i++) {
778 ath10k_dbg(ATH10K_DBG_PCI,
779 "pci tx item %d paddr 0x%08x len %d n_items %d\n",
780 i, items[i].paddr, items[i].len, n_items);
781 ath10k_dbg_dump(ATH10K_DBG_PCI_DUMP, NULL, "item data: ",
782 items[i].vaddr, items[i].len);
783
784 err = ath10k_ce_send_nolock(ce_pipe,
785 items[i].transfer_context,
786 items[i].paddr,
787 items[i].len,
788 items[i].transfer_id,
789 CE_SEND_FLAG_GATHER);
790 if (err)
791 goto unlock;
792 }
793
794 /* `i` is equal to `n_items -1` after for() */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300795
796 ath10k_dbg(ATH10K_DBG_PCI,
Michal Kazior726346f2014-02-27 18:50:04 +0200797 "pci tx item %d paddr 0x%08x len %d n_items %d\n",
798 i, items[i].paddr, items[i].len, n_items);
799 ath10k_dbg_dump(ATH10K_DBG_PCI_DUMP, NULL, "item data: ",
800 items[i].vaddr, items[i].len);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300801
Michal Kazior726346f2014-02-27 18:50:04 +0200802 err = ath10k_ce_send_nolock(ce_pipe,
803 items[i].transfer_context,
804 items[i].paddr,
805 items[i].len,
806 items[i].transfer_id,
807 0);
808 if (err)
809 goto unlock;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300810
Michal Kazior726346f2014-02-27 18:50:04 +0200811 err = 0;
812unlock:
813 spin_unlock_bh(&ar_pci->ce_lock);
814 return err;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300815}
816
817static u16 ath10k_pci_hif_get_free_queue_number(struct ath10k *ar, u8 pipe)
818{
819 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo50f87a62014-03-28 09:32:52 +0200820
821 ath10k_dbg(ATH10K_DBG_PCI, "pci hif get free queue number\n");
822
Michal Kazior3efcb3b2013-10-02 11:03:41 +0200823 return ath10k_ce_num_free_src_entries(ar_pci->pipe_info[pipe].ce_hdl);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300824}
825
826static void ath10k_pci_hif_dump_area(struct ath10k *ar)
827{
828 u32 reg_dump_area = 0;
829 u32 reg_dump_values[REG_DUMP_COUNT_QCA988X] = {};
830 u32 host_addr;
831 int ret;
832 u32 i;
833
834 ath10k_err("firmware crashed!\n");
835 ath10k_err("hardware name %s version 0x%x\n",
836 ar->hw_params.name, ar->target_version);
Chun-Yeow Yeoh5ba88b32014-01-21 17:21:21 +0800837 ath10k_err("firmware version: %s\n", ar->hw->wiphy->fw_version);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300838
839 host_addr = host_interest_item_address(HI_ITEM(hi_failure_state));
Michal Kazior1d2b48d2013-11-08 08:01:34 +0100840 ret = ath10k_pci_diag_read_mem(ar, host_addr,
841 &reg_dump_area, sizeof(u32));
842 if (ret) {
843 ath10k_err("failed to read FW dump area address: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300844 return;
845 }
846
847 ath10k_err("target register Dump Location: 0x%08X\n", reg_dump_area);
848
849 ret = ath10k_pci_diag_read_mem(ar, reg_dump_area,
850 &reg_dump_values[0],
851 REG_DUMP_COUNT_QCA988X * sizeof(u32));
852 if (ret != 0) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +0100853 ath10k_err("failed to read FW dump area: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300854 return;
855 }
856
857 BUILD_BUG_ON(REG_DUMP_COUNT_QCA988X % 4);
858
859 ath10k_err("target Register Dump\n");
860 for (i = 0; i < REG_DUMP_COUNT_QCA988X; i += 4)
861 ath10k_err("[%02d]: 0x%08X 0x%08X 0x%08X 0x%08X\n",
862 i,
863 reg_dump_values[i],
864 reg_dump_values[i + 1],
865 reg_dump_values[i + 2],
866 reg_dump_values[i + 3]);
Michal Kazioraffd3212013-07-16 09:54:35 +0200867
Michal Kazior5e90de82013-10-16 16:46:05 +0300868 queue_work(ar->workqueue, &ar->restart_work);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300869}
870
871static void ath10k_pci_hif_send_complete_check(struct ath10k *ar, u8 pipe,
872 int force)
873{
Kalle Valo50f87a62014-03-28 09:32:52 +0200874 ath10k_dbg(ATH10K_DBG_PCI, "pci hif send complete check\n");
875
Kalle Valo5e3dd152013-06-12 20:52:10 +0300876 if (!force) {
877 int resources;
878 /*
879 * Decide whether to actually poll for completions, or just
880 * wait for a later chance.
881 * If there seem to be plenty of resources left, then just wait
882 * since checking involves reading a CE register, which is a
883 * relatively expensive operation.
884 */
885 resources = ath10k_pci_hif_get_free_queue_number(ar, pipe);
886
887 /*
888 * If at least 50% of the total resources are still available,
889 * don't bother checking again yet.
890 */
891 if (resources > (host_ce_config_wlan[pipe].src_nentries >> 1))
892 return;
893 }
894 ath10k_ce_per_engine_service(ar, pipe);
895}
896
Michal Kaziore799bbf2013-07-05 16:15:12 +0300897static void ath10k_pci_hif_set_callbacks(struct ath10k *ar,
898 struct ath10k_hif_cb *callbacks)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300899{
900 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
901
Kalle Valo50f87a62014-03-28 09:32:52 +0200902 ath10k_dbg(ATH10K_DBG_PCI, "pci hif set callbacks\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +0300903
904 memcpy(&ar_pci->msg_callbacks_current, callbacks,
905 sizeof(ar_pci->msg_callbacks_current));
906}
907
Michal Kaziorc80de122013-11-25 14:06:23 +0100908static int ath10k_pci_setup_ce_irq(struct ath10k *ar)
909{
910 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
911 const struct ce_attr *attr;
912 struct ath10k_pci_pipe *pipe_info;
913 int pipe_num, disable_interrupts;
914
915 for (pipe_num = 0; pipe_num < CE_COUNT; pipe_num++) {
916 pipe_info = &ar_pci->pipe_info[pipe_num];
917
918 /* Handle Diagnostic CE specially */
919 if (pipe_info->ce_hdl == ar_pci->ce_diag)
920 continue;
921
922 attr = &host_ce_config_wlan[pipe_num];
923
924 if (attr->src_nentries) {
925 disable_interrupts = attr->flags & CE_ATTR_DIS_INTR;
926 ath10k_ce_send_cb_register(pipe_info->ce_hdl,
927 ath10k_pci_ce_send_done,
928 disable_interrupts);
929 }
930
931 if (attr->dest_nentries)
932 ath10k_ce_recv_cb_register(pipe_info->ce_hdl,
933 ath10k_pci_ce_recv_data);
934 }
935
936 return 0;
937}
938
Michal Kazior96a9d0d2013-11-08 08:01:25 +0100939static void ath10k_pci_kill_tasklet(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300940{
941 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300942 int i;
943
Kalle Valo5e3dd152013-06-12 20:52:10 +0300944 tasklet_kill(&ar_pci->intr_tq);
Michal Kazior103d4f52013-11-08 08:01:24 +0100945 tasklet_kill(&ar_pci->msi_fw_err);
Michal Kaziorab977bd2013-11-25 14:06:26 +0100946 tasklet_kill(&ar_pci->early_irq_tasklet);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300947
948 for (i = 0; i < CE_COUNT; i++)
949 tasklet_kill(&ar_pci->pipe_info[i].intr);
Michal Kazior96a9d0d2013-11-08 08:01:25 +0100950}
951
Kalle Valo5e3dd152013-06-12 20:52:10 +0300952/* TODO - temporary mapping while we have too few CE's */
953static int ath10k_pci_hif_map_service_to_pipe(struct ath10k *ar,
954 u16 service_id, u8 *ul_pipe,
955 u8 *dl_pipe, int *ul_is_polled,
956 int *dl_is_polled)
957{
958 int ret = 0;
959
Kalle Valo50f87a62014-03-28 09:32:52 +0200960 ath10k_dbg(ATH10K_DBG_PCI, "pci hif map service\n");
961
Kalle Valo5e3dd152013-06-12 20:52:10 +0300962 /* polling for received messages not supported */
963 *dl_is_polled = 0;
964
965 switch (service_id) {
966 case ATH10K_HTC_SVC_ID_HTT_DATA_MSG:
967 /*
968 * Host->target HTT gets its own pipe, so it can be polled
969 * while other pipes are interrupt driven.
970 */
971 *ul_pipe = 4;
972 /*
973 * Use the same target->host pipe for HTC ctrl, HTC raw
974 * streams, and HTT.
975 */
976 *dl_pipe = 1;
977 break;
978
979 case ATH10K_HTC_SVC_ID_RSVD_CTRL:
980 case ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS:
981 /*
982 * Note: HTC_RAW_STREAMS_SVC is currently unused, and
983 * HTC_CTRL_RSVD_SVC could share the same pipe as the
984 * WMI services. So, if another CE is needed, change
985 * this to *ul_pipe = 3, which frees up CE 0.
986 */
987 /* *ul_pipe = 3; */
988 *ul_pipe = 0;
989 *dl_pipe = 1;
990 break;
991
992 case ATH10K_HTC_SVC_ID_WMI_DATA_BK:
993 case ATH10K_HTC_SVC_ID_WMI_DATA_BE:
994 case ATH10K_HTC_SVC_ID_WMI_DATA_VI:
995 case ATH10K_HTC_SVC_ID_WMI_DATA_VO:
996
997 case ATH10K_HTC_SVC_ID_WMI_CONTROL:
998 *ul_pipe = 3;
999 *dl_pipe = 2;
1000 break;
1001
1002 /* pipe 5 unused */
1003 /* pipe 6 reserved */
1004 /* pipe 7 reserved */
1005
1006 default:
1007 ret = -1;
1008 break;
1009 }
1010 *ul_is_polled =
1011 (host_ce_config_wlan[*ul_pipe].flags & CE_ATTR_DIS_INTR) != 0;
1012
1013 return ret;
1014}
1015
1016static void ath10k_pci_hif_get_default_pipe(struct ath10k *ar,
1017 u8 *ul_pipe, u8 *dl_pipe)
1018{
1019 int ul_is_polled, dl_is_polled;
1020
Kalle Valo50f87a62014-03-28 09:32:52 +02001021 ath10k_dbg(ATH10K_DBG_PCI, "pci hif get default pipe\n");
1022
Kalle Valo5e3dd152013-06-12 20:52:10 +03001023 (void)ath10k_pci_hif_map_service_to_pipe(ar,
1024 ATH10K_HTC_SVC_ID_RSVD_CTRL,
1025 ul_pipe,
1026 dl_pipe,
1027 &ul_is_polled,
1028 &dl_is_polled);
1029}
1030
Michal Kazior87263e52013-08-27 13:08:01 +02001031static int ath10k_pci_post_rx_pipe(struct ath10k_pci_pipe *pipe_info,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001032 int num)
1033{
1034 struct ath10k *ar = pipe_info->hif_ce_state;
1035 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior2aa39112013-08-27 13:08:02 +02001036 struct ath10k_ce_pipe *ce_state = pipe_info->ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001037 struct sk_buff *skb;
1038 dma_addr_t ce_data;
1039 int i, ret = 0;
1040
1041 if (pipe_info->buf_sz == 0)
1042 return 0;
1043
1044 for (i = 0; i < num; i++) {
1045 skb = dev_alloc_skb(pipe_info->buf_sz);
1046 if (!skb) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001047 ath10k_warn("failed to allocate skbuff for pipe %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001048 num);
1049 ret = -ENOMEM;
1050 goto err;
1051 }
1052
1053 WARN_ONCE((unsigned long)skb->data & 3, "unaligned skb");
1054
1055 ce_data = dma_map_single(ar->dev, skb->data,
1056 skb->len + skb_tailroom(skb),
1057 DMA_FROM_DEVICE);
1058
1059 if (unlikely(dma_mapping_error(ar->dev, ce_data))) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001060 ath10k_warn("failed to DMA map sk_buff\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001061 dev_kfree_skb_any(skb);
1062 ret = -EIO;
1063 goto err;
1064 }
1065
1066 ATH10K_SKB_CB(skb)->paddr = ce_data;
1067
1068 pci_dma_sync_single_for_device(ar_pci->pdev, ce_data,
1069 pipe_info->buf_sz,
1070 PCI_DMA_FROMDEVICE);
1071
1072 ret = ath10k_ce_recv_buf_enqueue(ce_state, (void *)skb,
1073 ce_data);
1074 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001075 ath10k_warn("failed to enqueue to pipe %d: %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001076 num, ret);
1077 goto err;
1078 }
1079 }
1080
1081 return ret;
1082
1083err:
1084 ath10k_pci_rx_pipe_cleanup(pipe_info);
1085 return ret;
1086}
1087
1088static int ath10k_pci_post_rx(struct ath10k *ar)
1089{
1090 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior87263e52013-08-27 13:08:01 +02001091 struct ath10k_pci_pipe *pipe_info;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001092 const struct ce_attr *attr;
1093 int pipe_num, ret = 0;
1094
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001095 for (pipe_num = 0; pipe_num < CE_COUNT; pipe_num++) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001096 pipe_info = &ar_pci->pipe_info[pipe_num];
1097 attr = &host_ce_config_wlan[pipe_num];
1098
1099 if (attr->dest_nentries == 0)
1100 continue;
1101
1102 ret = ath10k_pci_post_rx_pipe(pipe_info,
1103 attr->dest_nentries - 1);
1104 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001105 ath10k_warn("failed to post RX buffer for pipe %d: %d\n",
1106 pipe_num, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001107
1108 for (; pipe_num >= 0; pipe_num--) {
1109 pipe_info = &ar_pci->pipe_info[pipe_num];
1110 ath10k_pci_rx_pipe_cleanup(pipe_info);
1111 }
1112 return ret;
1113 }
1114 }
1115
1116 return 0;
1117}
1118
1119static int ath10k_pci_hif_start(struct ath10k *ar)
1120{
1121 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kaziorab977bd2013-11-25 14:06:26 +01001122 int ret, ret_early;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001123
Kalle Valo50f87a62014-03-28 09:32:52 +02001124 ath10k_dbg(ATH10K_DBG_BOOT, "boot hif start\n");
1125
Michal Kaziorab977bd2013-11-25 14:06:26 +01001126 ath10k_pci_free_early_irq(ar);
1127 ath10k_pci_kill_tasklet(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001128
Michal Kazior5d1aa942013-11-25 14:06:24 +01001129 ret = ath10k_pci_request_irq(ar);
1130 if (ret) {
1131 ath10k_warn("failed to post RX buffers for all pipes: %d\n",
1132 ret);
Michal Kazior2f5280d2014-02-27 18:50:05 +02001133 goto err_early_irq;
Michal Kazior5d1aa942013-11-25 14:06:24 +01001134 }
1135
Michal Kaziorc80de122013-11-25 14:06:23 +01001136 ret = ath10k_pci_setup_ce_irq(ar);
1137 if (ret) {
1138 ath10k_warn("failed to setup CE interrupts: %d\n", ret);
Michal Kazior5d1aa942013-11-25 14:06:24 +01001139 goto err_stop;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001140 }
1141
1142 /* Post buffers once to start things off. */
1143 ret = ath10k_pci_post_rx(ar);
1144 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001145 ath10k_warn("failed to post RX buffers for all pipes: %d\n",
1146 ret);
Michal Kazior5d1aa942013-11-25 14:06:24 +01001147 goto err_stop;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001148 }
1149
1150 ar_pci->started = 1;
1151 return 0;
Michal Kaziorc80de122013-11-25 14:06:23 +01001152
Michal Kazior5d1aa942013-11-25 14:06:24 +01001153err_stop:
1154 ath10k_ce_disable_interrupts(ar);
1155 ath10k_pci_free_irq(ar);
1156 ath10k_pci_kill_tasklet(ar);
Michal Kaziorab977bd2013-11-25 14:06:26 +01001157err_early_irq:
1158 /* Though there should be no interrupts (device was reset)
1159 * power_down() expects the early IRQ to be installed as per the
1160 * driver lifecycle. */
1161 ret_early = ath10k_pci_request_early_irq(ar);
1162 if (ret_early)
1163 ath10k_warn("failed to re-enable early irq: %d\n", ret_early);
1164
Michal Kaziorc80de122013-11-25 14:06:23 +01001165 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001166}
1167
Michal Kazior87263e52013-08-27 13:08:01 +02001168static void ath10k_pci_rx_pipe_cleanup(struct ath10k_pci_pipe *pipe_info)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001169{
1170 struct ath10k *ar;
1171 struct ath10k_pci *ar_pci;
Michal Kazior2aa39112013-08-27 13:08:02 +02001172 struct ath10k_ce_pipe *ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001173 u32 buf_sz;
1174 struct sk_buff *netbuf;
1175 u32 ce_data;
1176
1177 buf_sz = pipe_info->buf_sz;
1178
1179 /* Unused Copy Engine */
1180 if (buf_sz == 0)
1181 return;
1182
1183 ar = pipe_info->hif_ce_state;
1184 ar_pci = ath10k_pci_priv(ar);
1185
1186 if (!ar_pci->started)
1187 return;
1188
1189 ce_hdl = pipe_info->ce_hdl;
1190
1191 while (ath10k_ce_revoke_recv_next(ce_hdl, (void **)&netbuf,
1192 &ce_data) == 0) {
1193 dma_unmap_single(ar->dev, ATH10K_SKB_CB(netbuf)->paddr,
1194 netbuf->len + skb_tailroom(netbuf),
1195 DMA_FROM_DEVICE);
1196 dev_kfree_skb_any(netbuf);
1197 }
1198}
1199
Michal Kazior87263e52013-08-27 13:08:01 +02001200static void ath10k_pci_tx_pipe_cleanup(struct ath10k_pci_pipe *pipe_info)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001201{
1202 struct ath10k *ar;
1203 struct ath10k_pci *ar_pci;
Michal Kazior2aa39112013-08-27 13:08:02 +02001204 struct ath10k_ce_pipe *ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001205 struct sk_buff *netbuf;
1206 u32 ce_data;
1207 unsigned int nbytes;
1208 unsigned int id;
1209 u32 buf_sz;
1210
1211 buf_sz = pipe_info->buf_sz;
1212
1213 /* Unused Copy Engine */
1214 if (buf_sz == 0)
1215 return;
1216
1217 ar = pipe_info->hif_ce_state;
1218 ar_pci = ath10k_pci_priv(ar);
1219
1220 if (!ar_pci->started)
1221 return;
1222
1223 ce_hdl = pipe_info->ce_hdl;
1224
1225 while (ath10k_ce_cancel_send_next(ce_hdl, (void **)&netbuf,
1226 &ce_data, &nbytes, &id) == 0) {
Michal Kaziora16942e2014-02-27 18:50:04 +02001227 /* no need to call tx completion for NULL pointers */
1228 if (!netbuf)
Michal Kazior2415fc12013-11-08 08:01:32 +01001229 continue;
Michal Kazior2415fc12013-11-08 08:01:32 +01001230
Kalle Valoe9bb0aa2013-09-08 18:36:11 +03001231 ar_pci->msg_callbacks_current.tx_completion(ar,
1232 netbuf,
1233 id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001234 }
1235}
1236
1237/*
1238 * Cleanup residual buffers for device shutdown:
1239 * buffers that were enqueued for receive
1240 * buffers that were to be sent
1241 * Note: Buffers that had completed but which were
1242 * not yet processed are on a completion queue. They
1243 * are handled when the completion thread shuts down.
1244 */
1245static void ath10k_pci_buffer_cleanup(struct ath10k *ar)
1246{
1247 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1248 int pipe_num;
1249
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001250 for (pipe_num = 0; pipe_num < CE_COUNT; pipe_num++) {
Michal Kazior87263e52013-08-27 13:08:01 +02001251 struct ath10k_pci_pipe *pipe_info;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001252
1253 pipe_info = &ar_pci->pipe_info[pipe_num];
1254 ath10k_pci_rx_pipe_cleanup(pipe_info);
1255 ath10k_pci_tx_pipe_cleanup(pipe_info);
1256 }
1257}
1258
1259static void ath10k_pci_ce_deinit(struct ath10k *ar)
1260{
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001261 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001262
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001263 for (i = 0; i < CE_COUNT; i++)
1264 ath10k_ce_deinit_pipe(ar, i);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001265}
1266
1267static void ath10k_pci_hif_stop(struct ath10k *ar)
1268{
Michal Kazior32270b62013-08-02 09:15:47 +02001269 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior5d1aa942013-11-25 14:06:24 +01001270 int ret;
Michal Kazior32270b62013-08-02 09:15:47 +02001271
Kalle Valo50f87a62014-03-28 09:32:52 +02001272 ath10k_dbg(ATH10K_DBG_BOOT, "boot hif stop\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001273
Michal Kazior5d1aa942013-11-25 14:06:24 +01001274 ret = ath10k_ce_disable_interrupts(ar);
1275 if (ret)
1276 ath10k_warn("failed to disable CE interrupts: %d\n", ret);
Michal Kazior32270b62013-08-02 09:15:47 +02001277
Michal Kazior5d1aa942013-11-25 14:06:24 +01001278 ath10k_pci_free_irq(ar);
1279 ath10k_pci_kill_tasklet(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001280
Michal Kaziorab977bd2013-11-25 14:06:26 +01001281 ret = ath10k_pci_request_early_irq(ar);
1282 if (ret)
1283 ath10k_warn("failed to re-enable early irq: %d\n", ret);
1284
Kalle Valo5e3dd152013-06-12 20:52:10 +03001285 /* At this point, asynchronous threads are stopped, the target should
1286 * not DMA nor interrupt. We process the leftovers and then free
1287 * everything else up. */
1288
Kalle Valo5e3dd152013-06-12 20:52:10 +03001289 ath10k_pci_buffer_cleanup(ar);
Michal Kazior32270b62013-08-02 09:15:47 +02001290
Michal Kazior6a42a472013-11-08 08:01:35 +01001291 /* Make the sure the device won't access any structures on the host by
1292 * resetting it. The device was fed with PCI CE ringbuffer
1293 * configuration during init. If ringbuffers are freed and the device
1294 * were to access them this could lead to memory corruption on the
1295 * host. */
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001296 ath10k_pci_warm_reset(ar);
Michal Kazior6a42a472013-11-08 08:01:35 +01001297
Michal Kazior32270b62013-08-02 09:15:47 +02001298 ar_pci->started = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001299}
1300
1301static int ath10k_pci_hif_exchange_bmi_msg(struct ath10k *ar,
1302 void *req, u32 req_len,
1303 void *resp, u32 *resp_len)
1304{
1305 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior2aa39112013-08-27 13:08:02 +02001306 struct ath10k_pci_pipe *pci_tx = &ar_pci->pipe_info[BMI_CE_NUM_TO_TARG];
1307 struct ath10k_pci_pipe *pci_rx = &ar_pci->pipe_info[BMI_CE_NUM_TO_HOST];
1308 struct ath10k_ce_pipe *ce_tx = pci_tx->ce_hdl;
1309 struct ath10k_ce_pipe *ce_rx = pci_rx->ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001310 dma_addr_t req_paddr = 0;
1311 dma_addr_t resp_paddr = 0;
1312 struct bmi_xfer xfer = {};
1313 void *treq, *tresp = NULL;
1314 int ret = 0;
1315
Michal Kazior85622cd2013-11-25 14:06:22 +01001316 might_sleep();
1317
Kalle Valo5e3dd152013-06-12 20:52:10 +03001318 if (resp && !resp_len)
1319 return -EINVAL;
1320
1321 if (resp && resp_len && *resp_len == 0)
1322 return -EINVAL;
1323
1324 treq = kmemdup(req, req_len, GFP_KERNEL);
1325 if (!treq)
1326 return -ENOMEM;
1327
1328 req_paddr = dma_map_single(ar->dev, treq, req_len, DMA_TO_DEVICE);
1329 ret = dma_mapping_error(ar->dev, req_paddr);
1330 if (ret)
1331 goto err_dma;
1332
1333 if (resp && resp_len) {
1334 tresp = kzalloc(*resp_len, GFP_KERNEL);
1335 if (!tresp) {
1336 ret = -ENOMEM;
1337 goto err_req;
1338 }
1339
1340 resp_paddr = dma_map_single(ar->dev, tresp, *resp_len,
1341 DMA_FROM_DEVICE);
1342 ret = dma_mapping_error(ar->dev, resp_paddr);
1343 if (ret)
1344 goto err_req;
1345
1346 xfer.wait_for_resp = true;
1347 xfer.resp_len = 0;
1348
1349 ath10k_ce_recv_buf_enqueue(ce_rx, &xfer, resp_paddr);
1350 }
1351
1352 init_completion(&xfer.done);
1353
1354 ret = ath10k_ce_send(ce_tx, &xfer, req_paddr, req_len, -1, 0);
1355 if (ret)
1356 goto err_resp;
1357
Michal Kazior85622cd2013-11-25 14:06:22 +01001358 ret = ath10k_pci_bmi_wait(ce_tx, ce_rx, &xfer);
1359 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001360 u32 unused_buffer;
1361 unsigned int unused_nbytes;
1362 unsigned int unused_id;
1363
Kalle Valo5e3dd152013-06-12 20:52:10 +03001364 ath10k_ce_cancel_send_next(ce_tx, NULL, &unused_buffer,
1365 &unused_nbytes, &unused_id);
1366 } else {
1367 /* non-zero means we did not time out */
1368 ret = 0;
1369 }
1370
1371err_resp:
1372 if (resp) {
1373 u32 unused_buffer;
1374
1375 ath10k_ce_revoke_recv_next(ce_rx, NULL, &unused_buffer);
1376 dma_unmap_single(ar->dev, resp_paddr,
1377 *resp_len, DMA_FROM_DEVICE);
1378 }
1379err_req:
1380 dma_unmap_single(ar->dev, req_paddr, req_len, DMA_TO_DEVICE);
1381
1382 if (ret == 0 && resp_len) {
1383 *resp_len = min(*resp_len, xfer.resp_len);
1384 memcpy(resp, tresp, xfer.resp_len);
1385 }
1386err_dma:
1387 kfree(treq);
1388 kfree(tresp);
1389
1390 return ret;
1391}
1392
Michal Kazior5440ce22013-09-03 15:09:58 +02001393static void ath10k_pci_bmi_send_done(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001394{
Michal Kazior5440ce22013-09-03 15:09:58 +02001395 struct bmi_xfer *xfer;
1396 u32 ce_data;
1397 unsigned int nbytes;
1398 unsigned int transfer_id;
1399
1400 if (ath10k_ce_completed_send_next(ce_state, (void **)&xfer, &ce_data,
1401 &nbytes, &transfer_id))
1402 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001403
1404 if (xfer->wait_for_resp)
1405 return;
1406
1407 complete(&xfer->done);
1408}
1409
Michal Kazior5440ce22013-09-03 15:09:58 +02001410static void ath10k_pci_bmi_recv_data(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001411{
Michal Kazior5440ce22013-09-03 15:09:58 +02001412 struct bmi_xfer *xfer;
1413 u32 ce_data;
1414 unsigned int nbytes;
1415 unsigned int transfer_id;
1416 unsigned int flags;
1417
1418 if (ath10k_ce_completed_recv_next(ce_state, (void **)&xfer, &ce_data,
1419 &nbytes, &transfer_id, &flags))
1420 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001421
1422 if (!xfer->wait_for_resp) {
1423 ath10k_warn("unexpected: BMI data received; ignoring\n");
1424 return;
1425 }
1426
1427 xfer->resp_len = nbytes;
1428 complete(&xfer->done);
1429}
1430
Michal Kazior85622cd2013-11-25 14:06:22 +01001431static int ath10k_pci_bmi_wait(struct ath10k_ce_pipe *tx_pipe,
1432 struct ath10k_ce_pipe *rx_pipe,
1433 struct bmi_xfer *xfer)
1434{
1435 unsigned long timeout = jiffies + BMI_COMMUNICATION_TIMEOUT_HZ;
1436
1437 while (time_before_eq(jiffies, timeout)) {
1438 ath10k_pci_bmi_send_done(tx_pipe);
1439 ath10k_pci_bmi_recv_data(rx_pipe);
1440
1441 if (completion_done(&xfer->done))
1442 return 0;
1443
1444 schedule();
1445 }
1446
1447 return -ETIMEDOUT;
1448}
1449
Kalle Valo5e3dd152013-06-12 20:52:10 +03001450/*
1451 * Map from service/endpoint to Copy Engine.
1452 * This table is derived from the CE_PCI TABLE, above.
1453 * It is passed to the Target at startup for use by firmware.
1454 */
1455static const struct service_to_pipe target_service_to_ce_map_wlan[] = {
1456 {
1457 ATH10K_HTC_SVC_ID_WMI_DATA_VO,
1458 PIPEDIR_OUT, /* out = UL = host -> target */
1459 3,
1460 },
1461 {
1462 ATH10K_HTC_SVC_ID_WMI_DATA_VO,
1463 PIPEDIR_IN, /* in = DL = target -> host */
1464 2,
1465 },
1466 {
1467 ATH10K_HTC_SVC_ID_WMI_DATA_BK,
1468 PIPEDIR_OUT, /* out = UL = host -> target */
1469 3,
1470 },
1471 {
1472 ATH10K_HTC_SVC_ID_WMI_DATA_BK,
1473 PIPEDIR_IN, /* in = DL = target -> host */
1474 2,
1475 },
1476 {
1477 ATH10K_HTC_SVC_ID_WMI_DATA_BE,
1478 PIPEDIR_OUT, /* out = UL = host -> target */
1479 3,
1480 },
1481 {
1482 ATH10K_HTC_SVC_ID_WMI_DATA_BE,
1483 PIPEDIR_IN, /* in = DL = target -> host */
1484 2,
1485 },
1486 {
1487 ATH10K_HTC_SVC_ID_WMI_DATA_VI,
1488 PIPEDIR_OUT, /* out = UL = host -> target */
1489 3,
1490 },
1491 {
1492 ATH10K_HTC_SVC_ID_WMI_DATA_VI,
1493 PIPEDIR_IN, /* in = DL = target -> host */
1494 2,
1495 },
1496 {
1497 ATH10K_HTC_SVC_ID_WMI_CONTROL,
1498 PIPEDIR_OUT, /* out = UL = host -> target */
1499 3,
1500 },
1501 {
1502 ATH10K_HTC_SVC_ID_WMI_CONTROL,
1503 PIPEDIR_IN, /* in = DL = target -> host */
1504 2,
1505 },
1506 {
1507 ATH10K_HTC_SVC_ID_RSVD_CTRL,
1508 PIPEDIR_OUT, /* out = UL = host -> target */
1509 0, /* could be moved to 3 (share with WMI) */
1510 },
1511 {
1512 ATH10K_HTC_SVC_ID_RSVD_CTRL,
1513 PIPEDIR_IN, /* in = DL = target -> host */
1514 1,
1515 },
1516 {
1517 ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS, /* not currently used */
1518 PIPEDIR_OUT, /* out = UL = host -> target */
1519 0,
1520 },
1521 {
1522 ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS, /* not currently used */
1523 PIPEDIR_IN, /* in = DL = target -> host */
1524 1,
1525 },
1526 {
1527 ATH10K_HTC_SVC_ID_HTT_DATA_MSG,
1528 PIPEDIR_OUT, /* out = UL = host -> target */
1529 4,
1530 },
1531 {
1532 ATH10K_HTC_SVC_ID_HTT_DATA_MSG,
1533 PIPEDIR_IN, /* in = DL = target -> host */
1534 1,
1535 },
1536
1537 /* (Additions here) */
1538
1539 { /* Must be last */
1540 0,
1541 0,
1542 0,
1543 },
1544};
1545
1546/*
1547 * Send an interrupt to the device to wake up the Target CPU
1548 * so it has an opportunity to notice any changed state.
1549 */
1550static int ath10k_pci_wake_target_cpu(struct ath10k *ar)
1551{
1552 int ret;
1553 u32 core_ctrl;
1554
1555 ret = ath10k_pci_diag_read_access(ar, SOC_CORE_BASE_ADDRESS |
1556 CORE_CTRL_ADDRESS,
1557 &core_ctrl);
1558 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001559 ath10k_warn("failed to read core_ctrl: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001560 return ret;
1561 }
1562
1563 /* A_INUM_FIRMWARE interrupt to Target CPU */
1564 core_ctrl |= CORE_CTRL_CPU_INTR_MASK;
1565
1566 ret = ath10k_pci_diag_write_access(ar, SOC_CORE_BASE_ADDRESS |
1567 CORE_CTRL_ADDRESS,
1568 core_ctrl);
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001569 if (ret) {
1570 ath10k_warn("failed to set target CPU interrupt mask: %d\n",
1571 ret);
1572 return ret;
1573 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001574
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001575 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001576}
1577
1578static int ath10k_pci_init_config(struct ath10k *ar)
1579{
1580 u32 interconnect_targ_addr;
1581 u32 pcie_state_targ_addr = 0;
1582 u32 pipe_cfg_targ_addr = 0;
1583 u32 svc_to_pipe_map = 0;
1584 u32 pcie_config_flags = 0;
1585 u32 ealloc_value;
1586 u32 ealloc_targ_addr;
1587 u32 flag2_value;
1588 u32 flag2_targ_addr;
1589 int ret = 0;
1590
1591 /* Download to Target the CE Config and the service-to-CE map */
1592 interconnect_targ_addr =
1593 host_interest_item_address(HI_ITEM(hi_interconnect_state));
1594
1595 /* Supply Target-side CE configuration */
1596 ret = ath10k_pci_diag_read_access(ar, interconnect_targ_addr,
1597 &pcie_state_targ_addr);
1598 if (ret != 0) {
1599 ath10k_err("Failed to get pcie state addr: %d\n", ret);
1600 return ret;
1601 }
1602
1603 if (pcie_state_targ_addr == 0) {
1604 ret = -EIO;
1605 ath10k_err("Invalid pcie state addr\n");
1606 return ret;
1607 }
1608
1609 ret = ath10k_pci_diag_read_access(ar, pcie_state_targ_addr +
1610 offsetof(struct pcie_state,
1611 pipe_cfg_addr),
1612 &pipe_cfg_targ_addr);
1613 if (ret != 0) {
1614 ath10k_err("Failed to get pipe cfg addr: %d\n", ret);
1615 return ret;
1616 }
1617
1618 if (pipe_cfg_targ_addr == 0) {
1619 ret = -EIO;
1620 ath10k_err("Invalid pipe cfg addr\n");
1621 return ret;
1622 }
1623
1624 ret = ath10k_pci_diag_write_mem(ar, pipe_cfg_targ_addr,
1625 target_ce_config_wlan,
1626 sizeof(target_ce_config_wlan));
1627
1628 if (ret != 0) {
1629 ath10k_err("Failed to write pipe cfg: %d\n", ret);
1630 return ret;
1631 }
1632
1633 ret = ath10k_pci_diag_read_access(ar, pcie_state_targ_addr +
1634 offsetof(struct pcie_state,
1635 svc_to_pipe_map),
1636 &svc_to_pipe_map);
1637 if (ret != 0) {
1638 ath10k_err("Failed to get svc/pipe map: %d\n", ret);
1639 return ret;
1640 }
1641
1642 if (svc_to_pipe_map == 0) {
1643 ret = -EIO;
1644 ath10k_err("Invalid svc_to_pipe map\n");
1645 return ret;
1646 }
1647
1648 ret = ath10k_pci_diag_write_mem(ar, svc_to_pipe_map,
1649 target_service_to_ce_map_wlan,
1650 sizeof(target_service_to_ce_map_wlan));
1651 if (ret != 0) {
1652 ath10k_err("Failed to write svc/pipe map: %d\n", ret);
1653 return ret;
1654 }
1655
1656 ret = ath10k_pci_diag_read_access(ar, pcie_state_targ_addr +
1657 offsetof(struct pcie_state,
1658 config_flags),
1659 &pcie_config_flags);
1660 if (ret != 0) {
1661 ath10k_err("Failed to get pcie config_flags: %d\n", ret);
1662 return ret;
1663 }
1664
1665 pcie_config_flags &= ~PCIE_CONFIG_FLAG_ENABLE_L1;
1666
1667 ret = ath10k_pci_diag_write_mem(ar, pcie_state_targ_addr +
1668 offsetof(struct pcie_state, config_flags),
1669 &pcie_config_flags,
1670 sizeof(pcie_config_flags));
1671 if (ret != 0) {
1672 ath10k_err("Failed to write pcie config_flags: %d\n", ret);
1673 return ret;
1674 }
1675
1676 /* configure early allocation */
1677 ealloc_targ_addr = host_interest_item_address(HI_ITEM(hi_early_alloc));
1678
1679 ret = ath10k_pci_diag_read_access(ar, ealloc_targ_addr, &ealloc_value);
1680 if (ret != 0) {
1681 ath10k_err("Faile to get early alloc val: %d\n", ret);
1682 return ret;
1683 }
1684
1685 /* first bank is switched to IRAM */
1686 ealloc_value |= ((HI_EARLY_ALLOC_MAGIC << HI_EARLY_ALLOC_MAGIC_SHIFT) &
1687 HI_EARLY_ALLOC_MAGIC_MASK);
1688 ealloc_value |= ((1 << HI_EARLY_ALLOC_IRAM_BANKS_SHIFT) &
1689 HI_EARLY_ALLOC_IRAM_BANKS_MASK);
1690
1691 ret = ath10k_pci_diag_write_access(ar, ealloc_targ_addr, ealloc_value);
1692 if (ret != 0) {
1693 ath10k_err("Failed to set early alloc val: %d\n", ret);
1694 return ret;
1695 }
1696
1697 /* Tell Target to proceed with initialization */
1698 flag2_targ_addr = host_interest_item_address(HI_ITEM(hi_option_flag2));
1699
1700 ret = ath10k_pci_diag_read_access(ar, flag2_targ_addr, &flag2_value);
1701 if (ret != 0) {
1702 ath10k_err("Failed to get option val: %d\n", ret);
1703 return ret;
1704 }
1705
1706 flag2_value |= HI_OPTION_EARLY_CFG_DONE;
1707
1708 ret = ath10k_pci_diag_write_access(ar, flag2_targ_addr, flag2_value);
1709 if (ret != 0) {
1710 ath10k_err("Failed to set option val: %d\n", ret);
1711 return ret;
1712 }
1713
1714 return 0;
1715}
1716
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001717static int ath10k_pci_alloc_ce(struct ath10k *ar)
1718{
1719 int i, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001720
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001721 for (i = 0; i < CE_COUNT; i++) {
1722 ret = ath10k_ce_alloc_pipe(ar, i, &host_ce_config_wlan[i]);
1723 if (ret) {
1724 ath10k_err("failed to allocate copy engine pipe %d: %d\n",
1725 i, ret);
1726 return ret;
1727 }
1728 }
1729
1730 return 0;
1731}
1732
1733static void ath10k_pci_free_ce(struct ath10k *ar)
1734{
1735 int i;
1736
1737 for (i = 0; i < CE_COUNT; i++)
1738 ath10k_ce_free_pipe(ar, i);
1739}
Kalle Valo5e3dd152013-06-12 20:52:10 +03001740
1741static int ath10k_pci_ce_init(struct ath10k *ar)
1742{
1743 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior87263e52013-08-27 13:08:01 +02001744 struct ath10k_pci_pipe *pipe_info;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001745 const struct ce_attr *attr;
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001746 int pipe_num, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001747
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001748 for (pipe_num = 0; pipe_num < CE_COUNT; pipe_num++) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001749 pipe_info = &ar_pci->pipe_info[pipe_num];
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001750 pipe_info->ce_hdl = &ar_pci->ce_states[pipe_num];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001751 pipe_info->pipe_num = pipe_num;
1752 pipe_info->hif_ce_state = ar;
1753 attr = &host_ce_config_wlan[pipe_num];
1754
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001755 ret = ath10k_ce_init_pipe(ar, pipe_num, attr);
1756 if (ret) {
1757 ath10k_err("failed to initialize copy engine pipe %d: %d\n",
1758 pipe_num, ret);
1759 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001760 }
1761
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001762 if (pipe_num == CE_COUNT - 1) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001763 /*
1764 * Reserve the ultimate CE for
1765 * diagnostic Window support
1766 */
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001767 ar_pci->ce_diag = pipe_info->ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001768 continue;
1769 }
1770
1771 pipe_info->buf_sz = (size_t) (attr->src_sz_max);
1772 }
1773
Kalle Valo5e3dd152013-06-12 20:52:10 +03001774 return 0;
1775}
1776
1777static void ath10k_pci_fw_interrupt_handler(struct ath10k *ar)
1778{
1779 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valob39712c2014-03-28 09:32:46 +02001780 u32 fw_indicator;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001781
1782 ath10k_pci_wake(ar);
1783
Kalle Valob39712c2014-03-28 09:32:46 +02001784 fw_indicator = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001785
1786 if (fw_indicator & FW_IND_EVENT_PENDING) {
1787 /* ACK: clear Target-side pending event */
Kalle Valob39712c2014-03-28 09:32:46 +02001788 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001789 fw_indicator & ~FW_IND_EVENT_PENDING);
1790
1791 if (ar_pci->started) {
1792 ath10k_pci_hif_dump_area(ar);
1793 } else {
1794 /*
1795 * Probable Target failure before we're prepared
1796 * to handle it. Generally unexpected.
1797 */
1798 ath10k_warn("early firmware event indicated\n");
1799 }
1800 }
1801
1802 ath10k_pci_sleep(ar);
1803}
1804
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001805static int ath10k_pci_warm_reset(struct ath10k *ar)
1806{
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001807 int ret = 0;
1808 u32 val;
1809
Kalle Valo50f87a62014-03-28 09:32:52 +02001810 ath10k_dbg(ATH10K_DBG_BOOT, "boot warm reset\n");
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001811
1812 ret = ath10k_do_pci_wake(ar);
1813 if (ret) {
1814 ath10k_err("failed to wake up target: %d\n", ret);
1815 return ret;
1816 }
1817
1818 /* debug */
1819 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1820 PCIE_INTR_CAUSE_ADDRESS);
1821 ath10k_dbg(ATH10K_DBG_BOOT, "boot host cpu intr cause: 0x%08x\n", val);
1822
1823 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1824 CPU_INTR_ADDRESS);
1825 ath10k_dbg(ATH10K_DBG_BOOT, "boot target cpu intr cause: 0x%08x\n",
1826 val);
1827
1828 /* disable pending irqs */
1829 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
1830 PCIE_INTR_ENABLE_ADDRESS, 0);
1831
1832 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
1833 PCIE_INTR_CLR_ADDRESS, ~0);
1834
1835 msleep(100);
1836
1837 /* clear fw indicator */
Kalle Valob39712c2014-03-28 09:32:46 +02001838 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS, 0);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001839
1840 /* clear target LF timer interrupts */
1841 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1842 SOC_LF_TIMER_CONTROL0_ADDRESS);
1843 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS +
1844 SOC_LF_TIMER_CONTROL0_ADDRESS,
1845 val & ~SOC_LF_TIMER_CONTROL0_ENABLE_MASK);
1846
1847 /* reset CE */
1848 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1849 SOC_RESET_CONTROL_ADDRESS);
1850 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
1851 val | SOC_RESET_CONTROL_CE_RST_MASK);
1852 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1853 SOC_RESET_CONTROL_ADDRESS);
1854 msleep(10);
1855
1856 /* unreset CE */
1857 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
1858 val & ~SOC_RESET_CONTROL_CE_RST_MASK);
1859 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1860 SOC_RESET_CONTROL_ADDRESS);
1861 msleep(10);
1862
1863 /* debug */
1864 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1865 PCIE_INTR_CAUSE_ADDRESS);
1866 ath10k_dbg(ATH10K_DBG_BOOT, "boot host cpu intr cause: 0x%08x\n", val);
1867
1868 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1869 CPU_INTR_ADDRESS);
1870 ath10k_dbg(ATH10K_DBG_BOOT, "boot target cpu intr cause: 0x%08x\n",
1871 val);
1872
1873 /* CPU warm reset */
1874 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1875 SOC_RESET_CONTROL_ADDRESS);
1876 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
1877 val | SOC_RESET_CONTROL_CPU_WARM_RST_MASK);
1878
1879 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1880 SOC_RESET_CONTROL_ADDRESS);
1881 ath10k_dbg(ATH10K_DBG_BOOT, "boot target reset state: 0x%08x\n", val);
1882
1883 msleep(100);
1884
1885 ath10k_dbg(ATH10K_DBG_BOOT, "boot warm reset complete\n");
1886
1887 ath10k_do_pci_sleep(ar);
1888 return ret;
1889}
1890
1891static int __ath10k_pci_hif_power_up(struct ath10k *ar, bool cold_reset)
Michal Kazior8c5c5362013-07-16 09:38:50 +02001892{
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02001893 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo95cbb6a2013-11-20 10:00:35 +02001894 const char *irq_mode;
Michal Kazior8c5c5362013-07-16 09:38:50 +02001895 int ret;
1896
1897 /*
1898 * Bring the target up cleanly.
1899 *
1900 * The target may be in an undefined state with an AUX-powered Target
1901 * and a Host in WoW mode. If the Host crashes, loses power, or is
1902 * restarted (without unloading the driver) then the Target is left
1903 * (aux) powered and running. On a subsequent driver load, the Target
1904 * is in an unexpected state. We try to catch that here in order to
1905 * reset the Target and retry the probe.
1906 */
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001907 if (cold_reset)
1908 ret = ath10k_pci_cold_reset(ar);
1909 else
1910 ret = ath10k_pci_warm_reset(ar);
1911
Michal Kazior5b2589f2013-11-08 08:01:30 +01001912 if (ret) {
1913 ath10k_err("failed to reset target: %d\n", ret);
Michal Kazior98563d52013-11-08 08:01:33 +01001914 goto err;
Michal Kazior5b2589f2013-11-08 08:01:30 +01001915 }
Michal Kazior8c5c5362013-07-16 09:38:50 +02001916
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02001917 if (!test_bit(ATH10K_PCI_FEATURE_SOC_POWER_SAVE, ar_pci->features))
Michal Kazior8c5c5362013-07-16 09:38:50 +02001918 /* Force AWAKE forever */
Michal Kazior8c5c5362013-07-16 09:38:50 +02001919 ath10k_do_pci_wake(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02001920
1921 ret = ath10k_pci_ce_init(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02001922 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001923 ath10k_err("failed to initialize CE: %d\n", ret);
Michal Kazior8c5c5362013-07-16 09:38:50 +02001924 goto err_ps;
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001925 }
Michal Kazior8c5c5362013-07-16 09:38:50 +02001926
Michal Kazior98563d52013-11-08 08:01:33 +01001927 ret = ath10k_ce_disable_interrupts(ar);
1928 if (ret) {
1929 ath10k_err("failed to disable CE interrupts: %d\n", ret);
Michal Kazior8c5c5362013-07-16 09:38:50 +02001930 goto err_ce;
1931 }
1932
Michal Kaziorfc15ca12013-11-25 14:06:21 +01001933 ret = ath10k_pci_init_irq(ar);
Michal Kazior98563d52013-11-08 08:01:33 +01001934 if (ret) {
Michal Kaziorfc15ca12013-11-25 14:06:21 +01001935 ath10k_err("failed to init irqs: %d\n", ret);
Michal Kazior98563d52013-11-08 08:01:33 +01001936 goto err_ce;
1937 }
1938
Michal Kaziorab977bd2013-11-25 14:06:26 +01001939 ret = ath10k_pci_request_early_irq(ar);
1940 if (ret) {
1941 ath10k_err("failed to request early irq: %d\n", ret);
1942 goto err_deinit_irq;
1943 }
1944
Michal Kazior98563d52013-11-08 08:01:33 +01001945 ret = ath10k_pci_wait_for_target_init(ar);
1946 if (ret) {
1947 ath10k_err("failed to wait for target to init: %d\n", ret);
Michal Kaziorab977bd2013-11-25 14:06:26 +01001948 goto err_free_early_irq;
Michal Kazior98563d52013-11-08 08:01:33 +01001949 }
1950
1951 ret = ath10k_pci_init_config(ar);
1952 if (ret) {
1953 ath10k_err("failed to setup init config: %d\n", ret);
Michal Kaziorab977bd2013-11-25 14:06:26 +01001954 goto err_free_early_irq;
Michal Kazior98563d52013-11-08 08:01:33 +01001955 }
Michal Kazior8c5c5362013-07-16 09:38:50 +02001956
1957 ret = ath10k_pci_wake_target_cpu(ar);
1958 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001959 ath10k_err("could not wake up target CPU: %d\n", ret);
Michal Kaziorab977bd2013-11-25 14:06:26 +01001960 goto err_free_early_irq;
Michal Kazior8c5c5362013-07-16 09:38:50 +02001961 }
1962
Kalle Valo95cbb6a2013-11-20 10:00:35 +02001963 if (ar_pci->num_msi_intrs > 1)
1964 irq_mode = "MSI-X";
1965 else if (ar_pci->num_msi_intrs == 1)
1966 irq_mode = "MSI";
1967 else
1968 irq_mode = "legacy";
1969
Kalle Valo650b91f2013-11-20 10:00:49 +02001970 if (!test_bit(ATH10K_FLAG_FIRST_BOOT_DONE, &ar->dev_flags))
Kalle Valo78a9cb42014-03-28 09:32:58 +02001971 ath10k_info("pci irq %s irq_mode %d reset_mode %d\n",
1972 irq_mode, ath10k_pci_irq_mode,
1973 ath10k_pci_reset_mode);
Kalle Valo95cbb6a2013-11-20 10:00:35 +02001974
Michal Kazior8c5c5362013-07-16 09:38:50 +02001975 return 0;
1976
Michal Kaziorab977bd2013-11-25 14:06:26 +01001977err_free_early_irq:
1978 ath10k_pci_free_early_irq(ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01001979err_deinit_irq:
1980 ath10k_pci_deinit_irq(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02001981err_ce:
1982 ath10k_pci_ce_deinit(ar);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001983 ath10k_pci_warm_reset(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02001984err_ps:
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02001985 if (!test_bit(ATH10K_PCI_FEATURE_SOC_POWER_SAVE, ar_pci->features))
Michal Kazior8c5c5362013-07-16 09:38:50 +02001986 ath10k_do_pci_sleep(ar);
1987err:
1988 return ret;
1989}
1990
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001991static int ath10k_pci_hif_power_up(struct ath10k *ar)
1992{
1993 int ret;
1994
Kalle Valo50f87a62014-03-28 09:32:52 +02001995 ath10k_dbg(ATH10K_DBG_BOOT, "boot hif power up\n");
1996
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001997 /*
1998 * Hardware CUS232 version 2 has some issues with cold reset and the
1999 * preferred (and safer) way to perform a device reset is through a
2000 * warm reset.
2001 *
2002 * Warm reset doesn't always work though (notably after a firmware
2003 * crash) so fall back to cold reset if necessary.
2004 */
2005 ret = __ath10k_pci_hif_power_up(ar, false);
2006 if (ret) {
Kalle Valo35098462014-03-28 09:32:27 +02002007 ath10k_warn("failed to power up target using warm reset: %d\n",
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002008 ret);
2009
Kalle Valo35098462014-03-28 09:32:27 +02002010 if (ath10k_pci_reset_mode == ATH10K_PCI_RESET_WARM_ONLY)
2011 return ret;
2012
2013 ath10k_warn("trying cold reset\n");
2014
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002015 ret = __ath10k_pci_hif_power_up(ar, true);
2016 if (ret) {
2017 ath10k_err("failed to power up target using cold reset too (%d)\n",
2018 ret);
2019 return ret;
2020 }
2021 }
2022
2023 return 0;
2024}
2025
Michal Kazior8c5c5362013-07-16 09:38:50 +02002026static void ath10k_pci_hif_power_down(struct ath10k *ar)
2027{
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02002028 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2029
Kalle Valo50f87a62014-03-28 09:32:52 +02002030 ath10k_dbg(ATH10K_DBG_BOOT, "boot hif power down\n");
2031
Michal Kaziorab977bd2013-11-25 14:06:26 +01002032 ath10k_pci_free_early_irq(ar);
2033 ath10k_pci_kill_tasklet(ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002034 ath10k_pci_deinit_irq(ar);
Michal Kaziordf5e8522014-03-28 10:02:45 +02002035 ath10k_pci_ce_deinit(ar);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002036 ath10k_pci_warm_reset(ar);
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02002037
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02002038 if (!test_bit(ATH10K_PCI_FEATURE_SOC_POWER_SAVE, ar_pci->features))
Michal Kazior8c5c5362013-07-16 09:38:50 +02002039 ath10k_do_pci_sleep(ar);
2040}
2041
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002042#ifdef CONFIG_PM
2043
2044#define ATH10K_PCI_PM_CONTROL 0x44
2045
2046static int ath10k_pci_hif_suspend(struct ath10k *ar)
2047{
2048 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2049 struct pci_dev *pdev = ar_pci->pdev;
2050 u32 val;
2051
2052 pci_read_config_dword(pdev, ATH10K_PCI_PM_CONTROL, &val);
2053
2054 if ((val & 0x000000ff) != 0x3) {
2055 pci_save_state(pdev);
2056 pci_disable_device(pdev);
2057 pci_write_config_dword(pdev, ATH10K_PCI_PM_CONTROL,
2058 (val & 0xffffff00) | 0x03);
2059 }
2060
2061 return 0;
2062}
2063
2064static int ath10k_pci_hif_resume(struct ath10k *ar)
2065{
2066 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2067 struct pci_dev *pdev = ar_pci->pdev;
2068 u32 val;
2069
2070 pci_read_config_dword(pdev, ATH10K_PCI_PM_CONTROL, &val);
2071
2072 if ((val & 0x000000ff) != 0) {
2073 pci_restore_state(pdev);
2074 pci_write_config_dword(pdev, ATH10K_PCI_PM_CONTROL,
2075 val & 0xffffff00);
2076 /*
2077 * Suspend/Resume resets the PCI configuration space,
2078 * so we have to re-disable the RETRY_TIMEOUT register (0x41)
2079 * to keep PCI Tx retries from interfering with C3 CPU state
2080 */
2081 pci_read_config_dword(pdev, 0x40, &val);
2082
2083 if ((val & 0x0000ff00) != 0)
2084 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2085 }
2086
2087 return 0;
2088}
2089#endif
2090
Kalle Valo5e3dd152013-06-12 20:52:10 +03002091static const struct ath10k_hif_ops ath10k_pci_hif_ops = {
Michal Kazior726346f2014-02-27 18:50:04 +02002092 .tx_sg = ath10k_pci_hif_tx_sg,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002093 .exchange_bmi_msg = ath10k_pci_hif_exchange_bmi_msg,
2094 .start = ath10k_pci_hif_start,
2095 .stop = ath10k_pci_hif_stop,
2096 .map_service_to_pipe = ath10k_pci_hif_map_service_to_pipe,
2097 .get_default_pipe = ath10k_pci_hif_get_default_pipe,
2098 .send_complete_check = ath10k_pci_hif_send_complete_check,
Michal Kaziore799bbf2013-07-05 16:15:12 +03002099 .set_callbacks = ath10k_pci_hif_set_callbacks,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002100 .get_free_queue_number = ath10k_pci_hif_get_free_queue_number,
Michal Kazior8c5c5362013-07-16 09:38:50 +02002101 .power_up = ath10k_pci_hif_power_up,
2102 .power_down = ath10k_pci_hif_power_down,
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002103#ifdef CONFIG_PM
2104 .suspend = ath10k_pci_hif_suspend,
2105 .resume = ath10k_pci_hif_resume,
2106#endif
Kalle Valo5e3dd152013-06-12 20:52:10 +03002107};
2108
2109static void ath10k_pci_ce_tasklet(unsigned long ptr)
2110{
Michal Kazior87263e52013-08-27 13:08:01 +02002111 struct ath10k_pci_pipe *pipe = (struct ath10k_pci_pipe *)ptr;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002112 struct ath10k_pci *ar_pci = pipe->ar_pci;
2113
2114 ath10k_ce_per_engine_service(ar_pci->ar, pipe->pipe_num);
2115}
2116
2117static void ath10k_msi_err_tasklet(unsigned long data)
2118{
2119 struct ath10k *ar = (struct ath10k *)data;
2120
2121 ath10k_pci_fw_interrupt_handler(ar);
2122}
2123
2124/*
2125 * Handler for a per-engine interrupt on a PARTICULAR CE.
2126 * This is used in cases where each CE has a private MSI interrupt.
2127 */
2128static irqreturn_t ath10k_pci_per_engine_handler(int irq, void *arg)
2129{
2130 struct ath10k *ar = arg;
2131 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2132 int ce_id = irq - ar_pci->pdev->irq - MSI_ASSIGN_CE_INITIAL;
2133
Dan Carpentere5742672013-06-18 10:28:46 +03002134 if (ce_id < 0 || ce_id >= ARRAY_SIZE(ar_pci->pipe_info)) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002135 ath10k_warn("unexpected/invalid irq %d ce_id %d\n", irq, ce_id);
2136 return IRQ_HANDLED;
2137 }
2138
2139 /*
2140 * NOTE: We are able to derive ce_id from irq because we
2141 * use a one-to-one mapping for CE's 0..5.
2142 * CE's 6 & 7 do not use interrupts at all.
2143 *
2144 * This mapping must be kept in sync with the mapping
2145 * used by firmware.
2146 */
2147 tasklet_schedule(&ar_pci->pipe_info[ce_id].intr);
2148 return IRQ_HANDLED;
2149}
2150
2151static irqreturn_t ath10k_pci_msi_fw_handler(int irq, void *arg)
2152{
2153 struct ath10k *ar = arg;
2154 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2155
2156 tasklet_schedule(&ar_pci->msi_fw_err);
2157 return IRQ_HANDLED;
2158}
2159
2160/*
2161 * Top-level interrupt handler for all PCI interrupts from a Target.
2162 * When a block of MSI interrupts is allocated, this top-level handler
2163 * is not used; instead, we directly call the correct sub-handler.
2164 */
2165static irqreturn_t ath10k_pci_interrupt_handler(int irq, void *arg)
2166{
2167 struct ath10k *ar = arg;
2168 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2169
2170 if (ar_pci->num_msi_intrs == 0) {
Michal Kaziore5398872013-11-25 14:06:20 +01002171 if (!ath10k_pci_irq_pending(ar))
2172 return IRQ_NONE;
2173
Michal Kazior26852182013-11-25 14:06:25 +01002174 ath10k_pci_disable_and_clear_legacy_irq(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002175 }
2176
2177 tasklet_schedule(&ar_pci->intr_tq);
2178
2179 return IRQ_HANDLED;
2180}
2181
Michal Kaziorab977bd2013-11-25 14:06:26 +01002182static void ath10k_pci_early_irq_tasklet(unsigned long data)
2183{
2184 struct ath10k *ar = (struct ath10k *)data;
Michal Kaziorab977bd2013-11-25 14:06:26 +01002185 u32 fw_ind;
2186 int ret;
2187
2188 ret = ath10k_pci_wake(ar);
2189 if (ret) {
2190 ath10k_warn("failed to wake target in early irq tasklet: %d\n",
2191 ret);
2192 return;
2193 }
2194
Kalle Valob39712c2014-03-28 09:32:46 +02002195 fw_ind = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
Michal Kaziorab977bd2013-11-25 14:06:26 +01002196 if (fw_ind & FW_IND_EVENT_PENDING) {
Kalle Valob39712c2014-03-28 09:32:46 +02002197 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS,
Michal Kaziorab977bd2013-11-25 14:06:26 +01002198 fw_ind & ~FW_IND_EVENT_PENDING);
2199
2200 /* Some structures are unavailable during early boot or at
2201 * driver teardown so just print that the device has crashed. */
2202 ath10k_warn("device crashed - no diagnostics available\n");
2203 }
2204
2205 ath10k_pci_sleep(ar);
2206 ath10k_pci_enable_legacy_irq(ar);
2207}
2208
Kalle Valo5e3dd152013-06-12 20:52:10 +03002209static void ath10k_pci_tasklet(unsigned long data)
2210{
2211 struct ath10k *ar = (struct ath10k *)data;
2212 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2213
2214 ath10k_pci_fw_interrupt_handler(ar); /* FIXME: Handle FW error */
2215 ath10k_ce_per_engine_service_any(ar);
2216
Michal Kazior26852182013-11-25 14:06:25 +01002217 /* Re-enable legacy irq that was disabled in the irq handler */
2218 if (ar_pci->num_msi_intrs == 0)
2219 ath10k_pci_enable_legacy_irq(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002220}
2221
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002222static int ath10k_pci_request_irq_msix(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002223{
2224 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002225 int ret, i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002226
2227 ret = request_irq(ar_pci->pdev->irq + MSI_ASSIGN_FW,
2228 ath10k_pci_msi_fw_handler,
2229 IRQF_SHARED, "ath10k_pci", ar);
Michal Kazior591ecdb2013-07-31 10:55:15 +02002230 if (ret) {
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002231 ath10k_warn("failed to request MSI-X fw irq %d: %d\n",
Michal Kazior591ecdb2013-07-31 10:55:15 +02002232 ar_pci->pdev->irq + MSI_ASSIGN_FW, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002233 return ret;
Michal Kazior591ecdb2013-07-31 10:55:15 +02002234 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002235
2236 for (i = MSI_ASSIGN_CE_INITIAL; i <= MSI_ASSIGN_CE_MAX; i++) {
2237 ret = request_irq(ar_pci->pdev->irq + i,
2238 ath10k_pci_per_engine_handler,
2239 IRQF_SHARED, "ath10k_pci", ar);
2240 if (ret) {
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002241 ath10k_warn("failed to request MSI-X ce irq %d: %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03002242 ar_pci->pdev->irq + i, ret);
2243
Michal Kazior87b14232013-06-26 08:50:50 +02002244 for (i--; i >= MSI_ASSIGN_CE_INITIAL; i--)
2245 free_irq(ar_pci->pdev->irq + i, ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002246
Michal Kazior87b14232013-06-26 08:50:50 +02002247 free_irq(ar_pci->pdev->irq + MSI_ASSIGN_FW, ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002248 return ret;
2249 }
2250 }
2251
Kalle Valo5e3dd152013-06-12 20:52:10 +03002252 return 0;
2253}
2254
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002255static int ath10k_pci_request_irq_msi(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002256{
2257 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2258 int ret;
2259
2260 ret = request_irq(ar_pci->pdev->irq,
2261 ath10k_pci_interrupt_handler,
2262 IRQF_SHARED, "ath10k_pci", ar);
Kalle Valof3782742013-10-17 11:36:15 +03002263 if (ret) {
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002264 ath10k_warn("failed to request MSI irq %d: %d\n",
2265 ar_pci->pdev->irq, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002266 return ret;
Kalle Valof3782742013-10-17 11:36:15 +03002267 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002268
Kalle Valo5e3dd152013-06-12 20:52:10 +03002269 return 0;
2270}
2271
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002272static int ath10k_pci_request_irq_legacy(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002273{
2274 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002275 int ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002276
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002277 ret = request_irq(ar_pci->pdev->irq,
2278 ath10k_pci_interrupt_handler,
2279 IRQF_SHARED, "ath10k_pci", ar);
Kalle Valof3782742013-10-17 11:36:15 +03002280 if (ret) {
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002281 ath10k_warn("failed to request legacy irq %d: %d\n",
2282 ar_pci->pdev->irq, ret);
Kalle Valof3782742013-10-17 11:36:15 +03002283 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002284 }
2285
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002286 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002287}
2288
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002289static int ath10k_pci_request_irq(struct ath10k *ar)
2290{
2291 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2292
2293 switch (ar_pci->num_msi_intrs) {
2294 case 0:
2295 return ath10k_pci_request_irq_legacy(ar);
2296 case 1:
2297 return ath10k_pci_request_irq_msi(ar);
2298 case MSI_NUM_REQUEST:
2299 return ath10k_pci_request_irq_msix(ar);
2300 }
2301
2302 ath10k_warn("unknown irq configuration upon request\n");
2303 return -EINVAL;
2304}
2305
2306static void ath10k_pci_free_irq(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002307{
2308 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2309 int i;
2310
2311 /* There's at least one interrupt irregardless whether its legacy INTR
2312 * or MSI or MSI-X */
2313 for (i = 0; i < max(1, ar_pci->num_msi_intrs); i++)
2314 free_irq(ar_pci->pdev->irq + i, ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002315}
2316
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002317static void ath10k_pci_init_irq_tasklets(struct ath10k *ar)
2318{
2319 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2320 int i;
2321
2322 tasklet_init(&ar_pci->intr_tq, ath10k_pci_tasklet, (unsigned long)ar);
2323 tasklet_init(&ar_pci->msi_fw_err, ath10k_msi_err_tasklet,
2324 (unsigned long)ar);
Michal Kaziorab977bd2013-11-25 14:06:26 +01002325 tasklet_init(&ar_pci->early_irq_tasklet, ath10k_pci_early_irq_tasklet,
2326 (unsigned long)ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002327
2328 for (i = 0; i < CE_COUNT; i++) {
2329 ar_pci->pipe_info[i].ar_pci = ar_pci;
2330 tasklet_init(&ar_pci->pipe_info[i].intr, ath10k_pci_ce_tasklet,
2331 (unsigned long)&ar_pci->pipe_info[i]);
2332 }
2333}
2334
2335static int ath10k_pci_init_irq(struct ath10k *ar)
2336{
2337 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002338 bool msix_supported = test_bit(ATH10K_PCI_FEATURE_MSI_X,
2339 ar_pci->features);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002340 int ret;
2341
2342 ath10k_pci_init_irq_tasklets(ar);
2343
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002344 if (ath10k_pci_irq_mode != ATH10K_PCI_IRQ_AUTO &&
2345 !test_bit(ATH10K_FLAG_FIRST_BOOT_DONE, &ar->dev_flags))
2346 ath10k_info("limiting irq mode to: %d\n", ath10k_pci_irq_mode);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002347
2348 /* Try MSI-X */
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002349 if (ath10k_pci_irq_mode == ATH10K_PCI_IRQ_AUTO && msix_supported) {
2350 ar_pci->num_msi_intrs = MSI_NUM_REQUEST;
Alexander Gordeev5ad68672014-02-13 17:50:02 +02002351 ret = pci_enable_msi_range(ar_pci->pdev, ar_pci->num_msi_intrs,
2352 ar_pci->num_msi_intrs);
2353 if (ret > 0)
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002354 return 0;
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002355
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002356 /* fall-through */
2357 }
2358
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002359 /* Try MSI */
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002360 if (ath10k_pci_irq_mode != ATH10K_PCI_IRQ_LEGACY) {
2361 ar_pci->num_msi_intrs = 1;
2362 ret = pci_enable_msi(ar_pci->pdev);
2363 if (ret == 0)
2364 return 0;
2365
2366 /* fall-through */
2367 }
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002368
2369 /* Try legacy irq
2370 *
2371 * A potential race occurs here: The CORE_BASE write
2372 * depends on target correctly decoding AXI address but
2373 * host won't know when target writes BAR to CORE_CTRL.
2374 * This write might get lost if target has NOT written BAR.
2375 * For now, fix the race by repeating the write in below
2376 * synchronization checking. */
2377 ar_pci->num_msi_intrs = 0;
2378
2379 ret = ath10k_pci_wake(ar);
2380 if (ret) {
2381 ath10k_warn("failed to wake target: %d\n", ret);
2382 return ret;
2383 }
2384
2385 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
2386 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
2387 ath10k_pci_sleep(ar);
2388
2389 return 0;
2390}
2391
2392static int ath10k_pci_deinit_irq_legacy(struct ath10k *ar)
2393{
2394 int ret;
2395
2396 ret = ath10k_pci_wake(ar);
2397 if (ret) {
2398 ath10k_warn("failed to wake target: %d\n", ret);
2399 return ret;
2400 }
2401
2402 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
2403 0);
2404 ath10k_pci_sleep(ar);
2405
2406 return 0;
2407}
2408
2409static int ath10k_pci_deinit_irq(struct ath10k *ar)
2410{
2411 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2412
2413 switch (ar_pci->num_msi_intrs) {
2414 case 0:
2415 return ath10k_pci_deinit_irq_legacy(ar);
2416 case 1:
2417 /* fall-through */
2418 case MSI_NUM_REQUEST:
2419 pci_disable_msi(ar_pci->pdev);
2420 return 0;
Alexander Gordeevbb8b6212014-02-13 17:50:01 +02002421 default:
2422 pci_disable_msi(ar_pci->pdev);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002423 }
2424
2425 ath10k_warn("unknown irq configuration upon deinit\n");
2426 return -EINVAL;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002427}
2428
Michal Kaziord7fb47f2013-11-08 08:01:26 +01002429static int ath10k_pci_wait_for_target_init(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002430{
2431 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo0399eca2014-03-28 09:32:21 +02002432 unsigned long timeout;
Kalle Valof3782742013-10-17 11:36:15 +03002433 int ret;
Kalle Valo0399eca2014-03-28 09:32:21 +02002434 u32 val;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002435
Kalle Valo50f87a62014-03-28 09:32:52 +02002436 ath10k_dbg(ATH10K_DBG_BOOT, "boot waiting target to initialise\n");
2437
Michal Kazior98563d52013-11-08 08:01:33 +01002438 ret = ath10k_pci_wake(ar);
Kalle Valof3782742013-10-17 11:36:15 +03002439 if (ret) {
Kalle Valo0399eca2014-03-28 09:32:21 +02002440 ath10k_err("failed to wake up target for init: %d\n", ret);
Kalle Valof3782742013-10-17 11:36:15 +03002441 return ret;
2442 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002443
Kalle Valo0399eca2014-03-28 09:32:21 +02002444 timeout = jiffies + msecs_to_jiffies(ATH10K_PCI_TARGET_WAIT);
2445
2446 do {
2447 val = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
2448
Kalle Valo50f87a62014-03-28 09:32:52 +02002449 ath10k_dbg(ATH10K_DBG_BOOT, "boot target indicator %x\n", val);
2450
Kalle Valo0399eca2014-03-28 09:32:21 +02002451 /* target should never return this */
2452 if (val == 0xffffffff)
2453 continue;
2454
2455 if (val & FW_IND_INITIALIZED)
2456 break;
2457
Kalle Valo5e3dd152013-06-12 20:52:10 +03002458 if (ar_pci->num_msi_intrs == 0)
2459 /* Fix potential race by repeating CORE_BASE writes */
Kalle Valo0399eca2014-03-28 09:32:21 +02002460 ath10k_pci_soc_write32(ar, PCIE_INTR_ENABLE_ADDRESS,
2461 PCIE_INTR_FIRMWARE_MASK |
2462 PCIE_INTR_CE_MASK_ALL);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002463
Kalle Valo0399eca2014-03-28 09:32:21 +02002464 mdelay(10);
2465 } while (time_before(jiffies, timeout));
2466
2467 if (val == 0xffffffff || !(val & FW_IND_INITIALIZED)) {
2468 ath10k_err("failed to receive initialized event from target: %08x\n",
2469 val);
2470 ret = -ETIMEDOUT;
Michal Kazior5b2589f2013-11-08 08:01:30 +01002471 goto out;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002472 }
2473
Kalle Valo50f87a62014-03-28 09:32:52 +02002474 ath10k_dbg(ATH10K_DBG_BOOT, "boot target initialised\n");
2475
Michal Kazior5b2589f2013-11-08 08:01:30 +01002476out:
Michal Kazior98563d52013-11-08 08:01:33 +01002477 ath10k_pci_sleep(ar);
Michal Kazior5b2589f2013-11-08 08:01:30 +01002478 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002479}
2480
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002481static int ath10k_pci_cold_reset(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002482{
Michal Kazior5b2589f2013-11-08 08:01:30 +01002483 int i, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002484 u32 val;
2485
Kalle Valo50f87a62014-03-28 09:32:52 +02002486 ath10k_dbg(ATH10K_DBG_BOOT, "boot cold reset\n");
2487
Michal Kazior5b2589f2013-11-08 08:01:30 +01002488 ret = ath10k_do_pci_wake(ar);
2489 if (ret) {
2490 ath10k_err("failed to wake up target: %d\n",
2491 ret);
2492 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002493 }
2494
2495 /* Put Target, including PCIe, into RESET. */
Kalle Valoe479ed42013-09-01 10:01:53 +03002496 val = ath10k_pci_reg_read32(ar, SOC_GLOBAL_RESET_ADDRESS);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002497 val |= 1;
Kalle Valoe479ed42013-09-01 10:01:53 +03002498 ath10k_pci_reg_write32(ar, SOC_GLOBAL_RESET_ADDRESS, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002499
2500 for (i = 0; i < ATH_PCI_RESET_WAIT_MAX; i++) {
Kalle Valoe479ed42013-09-01 10:01:53 +03002501 if (ath10k_pci_reg_read32(ar, RTC_STATE_ADDRESS) &
Kalle Valo5e3dd152013-06-12 20:52:10 +03002502 RTC_STATE_COLD_RESET_MASK)
2503 break;
2504 msleep(1);
2505 }
2506
2507 /* Pull Target, including PCIe, out of RESET. */
2508 val &= ~1;
Kalle Valoe479ed42013-09-01 10:01:53 +03002509 ath10k_pci_reg_write32(ar, SOC_GLOBAL_RESET_ADDRESS, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002510
2511 for (i = 0; i < ATH_PCI_RESET_WAIT_MAX; i++) {
Kalle Valoe479ed42013-09-01 10:01:53 +03002512 if (!(ath10k_pci_reg_read32(ar, RTC_STATE_ADDRESS) &
Kalle Valo5e3dd152013-06-12 20:52:10 +03002513 RTC_STATE_COLD_RESET_MASK))
2514 break;
2515 msleep(1);
2516 }
2517
Michal Kazior5b2589f2013-11-08 08:01:30 +01002518 ath10k_do_pci_sleep(ar);
Kalle Valo50f87a62014-03-28 09:32:52 +02002519
2520 ath10k_dbg(ATH10K_DBG_BOOT, "boot cold reset complete\n");
2521
Michal Kazior5b2589f2013-11-08 08:01:30 +01002522 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002523}
2524
2525static void ath10k_pci_dump_features(struct ath10k_pci *ar_pci)
2526{
2527 int i;
2528
2529 for (i = 0; i < ATH10K_PCI_FEATURE_COUNT; i++) {
2530 if (!test_bit(i, ar_pci->features))
2531 continue;
2532
2533 switch (i) {
2534 case ATH10K_PCI_FEATURE_MSI_X:
Kalle Valo24cfade2013-09-08 17:55:50 +03002535 ath10k_dbg(ATH10K_DBG_BOOT, "device supports MSI-X\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002536 break;
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02002537 case ATH10K_PCI_FEATURE_SOC_POWER_SAVE:
Kalle Valo24cfade2013-09-08 17:55:50 +03002538 ath10k_dbg(ATH10K_DBG_BOOT, "QCA98XX SoC power save enabled\n");
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02002539 break;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002540 }
2541 }
2542}
2543
2544static int ath10k_pci_probe(struct pci_dev *pdev,
2545 const struct pci_device_id *pci_dev)
2546{
2547 void __iomem *mem;
2548 int ret = 0;
2549 struct ath10k *ar;
2550 struct ath10k_pci *ar_pci;
Kalle Valoe01ae682013-09-01 11:22:14 +03002551 u32 lcr_val, chip_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002552
Kalle Valo50f87a62014-03-28 09:32:52 +02002553 ath10k_dbg(ATH10K_DBG_PCI, "pci probe\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002554
2555 ar_pci = kzalloc(sizeof(*ar_pci), GFP_KERNEL);
2556 if (ar_pci == NULL)
2557 return -ENOMEM;
2558
2559 ar_pci->pdev = pdev;
2560 ar_pci->dev = &pdev->dev;
2561
2562 switch (pci_dev->device) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002563 case QCA988X_2_0_DEVICE_ID:
2564 set_bit(ATH10K_PCI_FEATURE_MSI_X, ar_pci->features);
2565 break;
2566 default:
2567 ret = -ENODEV;
Masanari Iida6d3be302013-09-30 23:19:09 +09002568 ath10k_err("Unknown device ID: %d\n", pci_dev->device);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002569 goto err_ar_pci;
2570 }
2571
Kalle Valoe42c1fb2014-03-28 09:32:33 +02002572 if (ath10k_pci_target_ps)
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02002573 set_bit(ATH10K_PCI_FEATURE_SOC_POWER_SAVE, ar_pci->features);
2574
Kalle Valo5e3dd152013-06-12 20:52:10 +03002575 ath10k_pci_dump_features(ar_pci);
2576
Michal Kazior3a0861f2013-07-05 16:15:06 +03002577 ar = ath10k_core_create(ar_pci, ar_pci->dev, &ath10k_pci_hif_ops);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002578 if (!ar) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01002579 ath10k_err("failed to create driver core\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002580 ret = -EINVAL;
2581 goto err_ar_pci;
2582 }
2583
Kalle Valo5e3dd152013-06-12 20:52:10 +03002584 ar_pci->ar = ar;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002585 atomic_set(&ar_pci->keep_awake_count, 0);
2586
2587 pci_set_drvdata(pdev, ar);
2588
2589 /*
2590 * Without any knowledge of the Host, the Target may have been reset or
2591 * power cycled and its Config Space may no longer reflect the PCI
2592 * address space that was assigned earlier by the PCI infrastructure.
2593 * Refresh it now.
2594 */
2595 ret = pci_assign_resource(pdev, BAR_NUM);
2596 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01002597 ath10k_err("failed to assign PCI space: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002598 goto err_ar;
2599 }
2600
2601 ret = pci_enable_device(pdev);
2602 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01002603 ath10k_err("failed to enable PCI device: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002604 goto err_ar;
2605 }
2606
2607 /* Request MMIO resources */
2608 ret = pci_request_region(pdev, BAR_NUM, "ath");
2609 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01002610 ath10k_err("failed to request MMIO region: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002611 goto err_device;
2612 }
2613
2614 /*
2615 * Target structures have a limit of 32 bit DMA pointers.
2616 * DMA pointers can be wider than 32 bits by default on some systems.
2617 */
2618 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
2619 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01002620 ath10k_err("failed to set DMA mask to 32-bit: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002621 goto err_region;
2622 }
2623
2624 ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
2625 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01002626 ath10k_err("failed to set consistent DMA mask to 32-bit\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002627 goto err_region;
2628 }
2629
2630 /* Set bus master bit in PCI_COMMAND to enable DMA */
2631 pci_set_master(pdev);
2632
2633 /*
2634 * Temporary FIX: disable ASPM
2635 * Will be removed after the OTP is programmed
2636 */
2637 pci_read_config_dword(pdev, 0x80, &lcr_val);
2638 pci_write_config_dword(pdev, 0x80, (lcr_val & 0xffffff00));
2639
2640 /* Arrange for access to Target SoC registers. */
2641 mem = pci_iomap(pdev, BAR_NUM, 0);
2642 if (!mem) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01002643 ath10k_err("failed to perform IOMAP for BAR%d\n", BAR_NUM);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002644 ret = -EIO;
2645 goto err_master;
2646 }
2647
2648 ar_pci->mem = mem;
2649
2650 spin_lock_init(&ar_pci->ce_lock);
2651
Kalle Valoe01ae682013-09-01 11:22:14 +03002652 ret = ath10k_do_pci_wake(ar);
2653 if (ret) {
2654 ath10k_err("Failed to get chip id: %d\n", ret);
Wei Yongjun12eb0872013-10-30 13:24:39 +08002655 goto err_iomap;
Kalle Valoe01ae682013-09-01 11:22:14 +03002656 }
2657
Kalle Valo233eb972013-10-16 16:46:11 +03002658 chip_id = ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS);
Kalle Valoe01ae682013-09-01 11:22:14 +03002659
2660 ath10k_do_pci_sleep(ar);
2661
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002662 ret = ath10k_pci_alloc_ce(ar);
2663 if (ret) {
2664 ath10k_err("failed to allocate copy engine pipes: %d\n", ret);
2665 goto err_iomap;
2666 }
2667
Kalle Valo24cfade2013-09-08 17:55:50 +03002668 ath10k_dbg(ATH10K_DBG_BOOT, "boot pci_mem 0x%p\n", ar_pci->mem);
2669
Kalle Valoe01ae682013-09-01 11:22:14 +03002670 ret = ath10k_core_register(ar, chip_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002671 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01002672 ath10k_err("failed to register driver core: %d\n", ret);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002673 goto err_free_ce;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002674 }
2675
2676 return 0;
2677
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002678err_free_ce:
2679 ath10k_pci_free_ce(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002680err_iomap:
2681 pci_iounmap(pdev, mem);
2682err_master:
2683 pci_clear_master(pdev);
2684err_region:
2685 pci_release_region(pdev, BAR_NUM);
2686err_device:
2687 pci_disable_device(pdev);
2688err_ar:
Kalle Valo5e3dd152013-06-12 20:52:10 +03002689 ath10k_core_destroy(ar);
2690err_ar_pci:
2691 /* call HIF PCI free here */
2692 kfree(ar_pci);
2693
2694 return ret;
2695}
2696
2697static void ath10k_pci_remove(struct pci_dev *pdev)
2698{
2699 struct ath10k *ar = pci_get_drvdata(pdev);
2700 struct ath10k_pci *ar_pci;
2701
Kalle Valo50f87a62014-03-28 09:32:52 +02002702 ath10k_dbg(ATH10K_DBG_PCI, "pci remove\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002703
2704 if (!ar)
2705 return;
2706
2707 ar_pci = ath10k_pci_priv(ar);
2708
2709 if (!ar_pci)
2710 return;
2711
2712 tasklet_kill(&ar_pci->msi_fw_err);
2713
2714 ath10k_core_unregister(ar);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002715 ath10k_pci_free_ce(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002716
Kalle Valo5e3dd152013-06-12 20:52:10 +03002717 pci_iounmap(pdev, ar_pci->mem);
2718 pci_release_region(pdev, BAR_NUM);
2719 pci_clear_master(pdev);
2720 pci_disable_device(pdev);
2721
2722 ath10k_core_destroy(ar);
2723 kfree(ar_pci);
2724}
2725
Kalle Valo5e3dd152013-06-12 20:52:10 +03002726MODULE_DEVICE_TABLE(pci, ath10k_pci_id_table);
2727
2728static struct pci_driver ath10k_pci_driver = {
2729 .name = "ath10k_pci",
2730 .id_table = ath10k_pci_id_table,
2731 .probe = ath10k_pci_probe,
2732 .remove = ath10k_pci_remove,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002733};
2734
2735static int __init ath10k_pci_init(void)
2736{
2737 int ret;
2738
2739 ret = pci_register_driver(&ath10k_pci_driver);
2740 if (ret)
Michal Kazior1d2b48d2013-11-08 08:01:34 +01002741 ath10k_err("failed to register PCI driver: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002742
2743 return ret;
2744}
2745module_init(ath10k_pci_init);
2746
2747static void __exit ath10k_pci_exit(void)
2748{
2749 pci_unregister_driver(&ath10k_pci_driver);
2750}
2751
2752module_exit(ath10k_pci_exit);
2753
2754MODULE_AUTHOR("Qualcomm Atheros");
2755MODULE_DESCRIPTION("Driver support for Atheros QCA988X PCIe devices");
2756MODULE_LICENSE("Dual BSD/GPL");
Kalle Valo929417c2014-03-28 09:32:39 +02002757MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" QCA988X_HW_2_0_FW_2_FILE);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002758MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" QCA988X_HW_2_0_BOARD_DATA_FILE);