blob: c764dd713f009df24eaca31ba15dc8d266a76a52 [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
Michal Kaziorcfe9c452013-11-25 14:06:27 +010047static unsigned int ath10k_pci_irq_mode = ATH10K_PCI_IRQ_AUTO;
Kalle Valo35098462014-03-28 09:32:27 +020048static unsigned int ath10k_pci_reset_mode = ATH10K_PCI_RESET_AUTO;
Michal Kaziorcfe9c452013-11-25 14:06:27 +010049
Michal Kaziorcfe9c452013-11-25 14:06:27 +010050module_param_named(irq_mode, ath10k_pci_irq_mode, uint, 0644);
51MODULE_PARM_DESC(irq_mode, "0: auto, 1: legacy, 2: msi (default: 0)");
52
Kalle Valo35098462014-03-28 09:32:27 +020053module_param_named(reset_mode, ath10k_pci_reset_mode, uint, 0644);
54MODULE_PARM_DESC(reset_mode, "0: auto, 1: warm only (default: 0)");
55
Kalle Valo0399eca2014-03-28 09:32:21 +020056/* how long wait to wait for target to initialise, in ms */
57#define ATH10K_PCI_TARGET_WAIT 3000
Michal Kazior61c95ce2014-05-14 16:56:16 +030058#define ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS 3
Kalle Valo0399eca2014-03-28 09:32:21 +020059
Kalle Valo5e3dd152013-06-12 20:52:10 +030060#define QCA988X_2_0_DEVICE_ID (0x003c)
61
62static DEFINE_PCI_DEVICE_TABLE(ath10k_pci_id_table) = {
Kalle Valo5e3dd152013-06-12 20:52:10 +030063 { PCI_VDEVICE(ATHEROS, QCA988X_2_0_DEVICE_ID) }, /* PCI-E QCA988X V2 */
64 {0}
65};
66
67static int ath10k_pci_diag_read_access(struct ath10k *ar, u32 address,
68 u32 *data);
69
Kalle Valo5e3dd152013-06-12 20:52:10 +030070static int ath10k_pci_post_rx(struct ath10k *ar);
Michal Kazior87263e52013-08-27 13:08:01 +020071static int ath10k_pci_post_rx_pipe(struct ath10k_pci_pipe *pipe_info,
Kalle Valo5e3dd152013-06-12 20:52:10 +030072 int num);
Michal Kazior87263e52013-08-27 13:08:01 +020073static void ath10k_pci_rx_pipe_cleanup(struct ath10k_pci_pipe *pipe_info);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +010074static int ath10k_pci_cold_reset(struct ath10k *ar);
75static int ath10k_pci_warm_reset(struct ath10k *ar);
Michal Kaziord7fb47f2013-11-08 08:01:26 +010076static int ath10k_pci_wait_for_target_init(struct ath10k *ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +010077static int ath10k_pci_init_irq(struct ath10k *ar);
78static int ath10k_pci_deinit_irq(struct ath10k *ar);
79static int ath10k_pci_request_irq(struct ath10k *ar);
80static void ath10k_pci_free_irq(struct ath10k *ar);
Michal Kazior85622cd2013-11-25 14:06:22 +010081static int ath10k_pci_bmi_wait(struct ath10k_ce_pipe *tx_pipe,
82 struct ath10k_ce_pipe *rx_pipe,
83 struct bmi_xfer *xfer);
Kalle Valo5e3dd152013-06-12 20:52:10 +030084
85static const struct ce_attr host_ce_config_wlan[] = {
Kalle Valo48e9c222013-09-01 10:01:32 +030086 /* CE0: host->target HTC control and raw streams */
87 {
88 .flags = CE_ATTR_FLAGS,
89 .src_nentries = 16,
90 .src_sz_max = 256,
91 .dest_nentries = 0,
92 },
93
94 /* CE1: target->host HTT + HTC control */
95 {
96 .flags = CE_ATTR_FLAGS,
97 .src_nentries = 0,
98 .src_sz_max = 512,
99 .dest_nentries = 512,
100 },
101
102 /* CE2: target->host WMI */
103 {
104 .flags = CE_ATTR_FLAGS,
105 .src_nentries = 0,
106 .src_sz_max = 2048,
107 .dest_nentries = 32,
108 },
109
110 /* CE3: host->target WMI */
111 {
112 .flags = CE_ATTR_FLAGS,
113 .src_nentries = 32,
114 .src_sz_max = 2048,
115 .dest_nentries = 0,
116 },
117
118 /* CE4: host->target HTT */
119 {
120 .flags = CE_ATTR_FLAGS | CE_ATTR_DIS_INTR,
121 .src_nentries = CE_HTT_H2T_MSG_SRC_NENTRIES,
122 .src_sz_max = 256,
123 .dest_nentries = 0,
124 },
125
126 /* CE5: unused */
127 {
128 .flags = CE_ATTR_FLAGS,
129 .src_nentries = 0,
130 .src_sz_max = 0,
131 .dest_nentries = 0,
132 },
133
134 /* CE6: target autonomous hif_memcpy */
135 {
136 .flags = CE_ATTR_FLAGS,
137 .src_nentries = 0,
138 .src_sz_max = 0,
139 .dest_nentries = 0,
140 },
141
142 /* CE7: ce_diag, the Diagnostic Window */
143 {
144 .flags = CE_ATTR_FLAGS,
145 .src_nentries = 2,
146 .src_sz_max = DIAG_TRANSFER_LIMIT,
147 .dest_nentries = 2,
148 },
Kalle Valo5e3dd152013-06-12 20:52:10 +0300149};
150
151/* Target firmware's Copy Engine configuration. */
152static const struct ce_pipe_config target_ce_config_wlan[] = {
Kalle Valod88effb2013-09-01 10:01:39 +0300153 /* CE0: host->target HTC control and raw streams */
154 {
155 .pipenum = 0,
156 .pipedir = PIPEDIR_OUT,
157 .nentries = 32,
158 .nbytes_max = 256,
159 .flags = CE_ATTR_FLAGS,
160 .reserved = 0,
161 },
162
163 /* CE1: target->host HTT + HTC control */
164 {
165 .pipenum = 1,
166 .pipedir = PIPEDIR_IN,
167 .nentries = 32,
168 .nbytes_max = 512,
169 .flags = CE_ATTR_FLAGS,
170 .reserved = 0,
171 },
172
173 /* CE2: target->host WMI */
174 {
175 .pipenum = 2,
176 .pipedir = PIPEDIR_IN,
177 .nentries = 32,
178 .nbytes_max = 2048,
179 .flags = CE_ATTR_FLAGS,
180 .reserved = 0,
181 },
182
183 /* CE3: host->target WMI */
184 {
185 .pipenum = 3,
186 .pipedir = PIPEDIR_OUT,
187 .nentries = 32,
188 .nbytes_max = 2048,
189 .flags = CE_ATTR_FLAGS,
190 .reserved = 0,
191 },
192
193 /* CE4: host->target HTT */
194 {
195 .pipenum = 4,
196 .pipedir = PIPEDIR_OUT,
197 .nentries = 256,
198 .nbytes_max = 256,
199 .flags = CE_ATTR_FLAGS,
200 .reserved = 0,
201 },
202
Kalle Valo5e3dd152013-06-12 20:52:10 +0300203 /* NB: 50% of src nentries, since tx has 2 frags */
Kalle Valod88effb2013-09-01 10:01:39 +0300204
205 /* CE5: unused */
206 {
207 .pipenum = 5,
208 .pipedir = PIPEDIR_OUT,
209 .nentries = 32,
210 .nbytes_max = 2048,
211 .flags = CE_ATTR_FLAGS,
212 .reserved = 0,
213 },
214
215 /* CE6: Reserved for target autonomous hif_memcpy */
216 {
217 .pipenum = 6,
218 .pipedir = PIPEDIR_INOUT,
219 .nentries = 32,
220 .nbytes_max = 4096,
221 .flags = CE_ATTR_FLAGS,
222 .reserved = 0,
223 },
224
Kalle Valo5e3dd152013-06-12 20:52:10 +0300225 /* CE7 used only by Host */
226};
227
Michal Kaziore5398872013-11-25 14:06:20 +0100228static bool ath10k_pci_irq_pending(struct ath10k *ar)
229{
230 u32 cause;
231
232 /* Check if the shared legacy irq is for us */
233 cause = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
234 PCIE_INTR_CAUSE_ADDRESS);
235 if (cause & (PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL))
236 return true;
237
238 return false;
239}
240
Michal Kazior26852182013-11-25 14:06:25 +0100241static void ath10k_pci_disable_and_clear_legacy_irq(struct ath10k *ar)
242{
243 /* IMPORTANT: INTR_CLR register has to be set after
244 * INTR_ENABLE is set to 0, otherwise interrupt can not be
245 * really cleared. */
246 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
247 0);
248 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_CLR_ADDRESS,
249 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
250
251 /* IMPORTANT: this extra read transaction is required to
252 * flush the posted write buffer. */
253 (void) ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
254 PCIE_INTR_ENABLE_ADDRESS);
255}
256
257static void ath10k_pci_enable_legacy_irq(struct ath10k *ar)
258{
259 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
260 PCIE_INTR_ENABLE_ADDRESS,
261 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
262
263 /* IMPORTANT: this extra read transaction is required to
264 * flush the posted write buffer. */
265 (void) ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
266 PCIE_INTR_ENABLE_ADDRESS);
267}
268
Michal Kaziorab977bd2013-11-25 14:06:26 +0100269static irqreturn_t ath10k_pci_early_irq_handler(int irq, void *arg)
270{
271 struct ath10k *ar = arg;
272 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
273
274 if (ar_pci->num_msi_intrs == 0) {
275 if (!ath10k_pci_irq_pending(ar))
276 return IRQ_NONE;
277
278 ath10k_pci_disable_and_clear_legacy_irq(ar);
279 }
280
281 tasklet_schedule(&ar_pci->early_irq_tasklet);
282
283 return IRQ_HANDLED;
284}
285
286static int ath10k_pci_request_early_irq(struct ath10k *ar)
287{
288 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
289 int ret;
290
291 /* Regardless whether MSI-X/MSI/legacy irqs have been set up the first
292 * interrupt from irq vector is triggered in all cases for FW
293 * indication/errors */
294 ret = request_irq(ar_pci->pdev->irq, ath10k_pci_early_irq_handler,
295 IRQF_SHARED, "ath10k_pci (early)", ar);
296 if (ret) {
297 ath10k_warn("failed to request early irq: %d\n", ret);
298 return ret;
299 }
300
301 return 0;
302}
303
304static void ath10k_pci_free_early_irq(struct ath10k *ar)
305{
306 free_irq(ath10k_pci_priv(ar)->pdev->irq, ar);
307}
308
Michal Kazior403d6272014-08-22 14:23:31 +0200309static inline const char *ath10k_pci_get_irq_method(struct ath10k *ar)
310{
311 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
312
313 if (ar_pci->num_msi_intrs > 1)
314 return "msi-x";
315 else if (ar_pci->num_msi_intrs == 1)
316 return "msi";
317 else
318 return "legacy";
319}
320
Kalle Valo5e3dd152013-06-12 20:52:10 +0300321/*
322 * Diagnostic read/write access is provided for startup/config/debug usage.
323 * Caller must guarantee proper alignment, when applicable, and single user
324 * at any moment.
325 */
326static int ath10k_pci_diag_read_mem(struct ath10k *ar, u32 address, void *data,
327 int nbytes)
328{
329 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
330 int ret = 0;
331 u32 buf;
332 unsigned int completed_nbytes, orig_nbytes, remaining_bytes;
333 unsigned int id;
334 unsigned int flags;
Michal Kazior2aa39112013-08-27 13:08:02 +0200335 struct ath10k_ce_pipe *ce_diag;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300336 /* Host buffer address in CE space */
337 u32 ce_data;
338 dma_addr_t ce_data_base = 0;
339 void *data_buf = NULL;
340 int i;
341
342 /*
343 * This code cannot handle reads to non-memory space. Redirect to the
344 * register read fn but preserve the multi word read capability of
345 * this fn
346 */
347 if (address < DRAM_BASE_ADDRESS) {
348 if (!IS_ALIGNED(address, 4) ||
349 !IS_ALIGNED((unsigned long)data, 4))
350 return -EIO;
351
352 while ((nbytes >= 4) && ((ret = ath10k_pci_diag_read_access(
353 ar, address, (u32 *)data)) == 0)) {
354 nbytes -= sizeof(u32);
355 address += sizeof(u32);
356 data += sizeof(u32);
357 }
358 return ret;
359 }
360
361 ce_diag = ar_pci->ce_diag;
362
363 /*
364 * Allocate a temporary bounce buffer to hold caller's data
365 * to be DMA'ed from Target. This guarantees
366 * 1) 4-byte alignment
367 * 2) Buffer in DMA-able space
368 */
369 orig_nbytes = nbytes;
Michal Kazior68c03242014-03-28 10:02:35 +0200370 data_buf = (unsigned char *)dma_alloc_coherent(ar->dev,
371 orig_nbytes,
372 &ce_data_base,
373 GFP_ATOMIC);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300374
375 if (!data_buf) {
376 ret = -ENOMEM;
377 goto done;
378 }
379 memset(data_buf, 0, orig_nbytes);
380
381 remaining_bytes = orig_nbytes;
382 ce_data = ce_data_base;
383 while (remaining_bytes) {
384 nbytes = min_t(unsigned int, remaining_bytes,
385 DIAG_TRANSFER_LIMIT);
386
387 ret = ath10k_ce_recv_buf_enqueue(ce_diag, NULL, ce_data);
388 if (ret != 0)
389 goto done;
390
391 /* Request CE to send from Target(!) address to Host buffer */
392 /*
393 * The address supplied by the caller is in the
394 * Target CPU virtual address space.
395 *
396 * In order to use this address with the diagnostic CE,
397 * convert it from Target CPU virtual address space
398 * to CE address space
399 */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300400 address = TARG_CPU_SPACE_TO_CE_SPACE(ar, ar_pci->mem,
401 address);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300402
403 ret = ath10k_ce_send(ce_diag, NULL, (u32)address, nbytes, 0,
404 0);
405 if (ret)
406 goto done;
407
408 i = 0;
409 while (ath10k_ce_completed_send_next(ce_diag, NULL, &buf,
410 &completed_nbytes,
411 &id) != 0) {
412 mdelay(1);
413 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
414 ret = -EBUSY;
415 goto done;
416 }
417 }
418
419 if (nbytes != completed_nbytes) {
420 ret = -EIO;
421 goto done;
422 }
423
424 if (buf != (u32) address) {
425 ret = -EIO;
426 goto done;
427 }
428
429 i = 0;
430 while (ath10k_ce_completed_recv_next(ce_diag, NULL, &buf,
431 &completed_nbytes,
432 &id, &flags) != 0) {
433 mdelay(1);
434
435 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
436 ret = -EBUSY;
437 goto done;
438 }
439 }
440
441 if (nbytes != completed_nbytes) {
442 ret = -EIO;
443 goto done;
444 }
445
446 if (buf != ce_data) {
447 ret = -EIO;
448 goto done;
449 }
450
451 remaining_bytes -= nbytes;
452 address += nbytes;
453 ce_data += nbytes;
454 }
455
456done:
457 if (ret == 0) {
458 /* Copy data from allocated DMA buf to caller's buf */
459 WARN_ON_ONCE(orig_nbytes & 3);
460 for (i = 0; i < orig_nbytes / sizeof(__le32); i++) {
461 ((u32 *)data)[i] =
462 __le32_to_cpu(((__le32 *)data_buf)[i]);
463 }
464 } else
Kalle Valo50f87a62014-03-28 09:32:52 +0200465 ath10k_warn("failed to read diag value at 0x%x: %d\n",
466 address, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300467
468 if (data_buf)
Michal Kazior68c03242014-03-28 10:02:35 +0200469 dma_free_coherent(ar->dev, orig_nbytes, data_buf,
470 ce_data_base);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300471
472 return ret;
473}
474
Kalle Valo3d29a3e2014-08-25 08:37:26 +0300475static int ath10k_pci_diag_read32(struct ath10k *ar, u32 address, u32 *value)
476{
477 return ath10k_pci_diag_read_mem(ar, address, value, sizeof(u32));
478}
479
480static int __ath10k_pci_diag_read_hi(struct ath10k *ar, void *dest,
481 u32 src, u32 len)
482{
483 u32 host_addr, addr;
484 int ret;
485
486 host_addr = host_interest_item_address(src);
487
488 ret = ath10k_pci_diag_read32(ar, host_addr, &addr);
489 if (ret != 0) {
490 ath10k_warn("failed to get memcpy hi address for firmware address %d: %d\n",
491 src, ret);
492 return ret;
493 }
494
495 ret = ath10k_pci_diag_read_mem(ar, addr, dest, len);
496 if (ret != 0) {
497 ath10k_warn("failed to memcpy firmware memory from %d (%d B): %d\n",
498 addr, len, ret);
499 return ret;
500 }
501
502 return 0;
503}
504
505#define ath10k_pci_diag_read_hi(ar, dest, src, len) \
506 __ath10k_pci_diag_read_hi(ar, dest, HI_ITEM(src), len);
507
Kalle Valo5e3dd152013-06-12 20:52:10 +0300508/* Read 4-byte aligned data from Target memory or register */
509static int ath10k_pci_diag_read_access(struct ath10k *ar, u32 address,
510 u32 *data)
511{
512 /* Assume range doesn't cross this boundary */
513 if (address >= DRAM_BASE_ADDRESS)
Kalle Valo3d29a3e2014-08-25 08:37:26 +0300514 return ath10k_pci_diag_read32(ar, address, data);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300515
Kalle Valo5e3dd152013-06-12 20:52:10 +0300516 *data = ath10k_pci_read32(ar, address);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300517 return 0;
518}
519
520static int ath10k_pci_diag_write_mem(struct ath10k *ar, u32 address,
521 const void *data, int nbytes)
522{
523 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
524 int ret = 0;
525 u32 buf;
526 unsigned int completed_nbytes, orig_nbytes, remaining_bytes;
527 unsigned int id;
528 unsigned int flags;
Michal Kazior2aa39112013-08-27 13:08:02 +0200529 struct ath10k_ce_pipe *ce_diag;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300530 void *data_buf = NULL;
531 u32 ce_data; /* Host buffer address in CE space */
532 dma_addr_t ce_data_base = 0;
533 int i;
534
535 ce_diag = ar_pci->ce_diag;
536
537 /*
538 * Allocate a temporary bounce buffer to hold caller's data
539 * to be DMA'ed to Target. This guarantees
540 * 1) 4-byte alignment
541 * 2) Buffer in DMA-able space
542 */
543 orig_nbytes = nbytes;
Michal Kazior68c03242014-03-28 10:02:35 +0200544 data_buf = (unsigned char *)dma_alloc_coherent(ar->dev,
545 orig_nbytes,
546 &ce_data_base,
547 GFP_ATOMIC);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300548 if (!data_buf) {
549 ret = -ENOMEM;
550 goto done;
551 }
552
553 /* Copy caller's data to allocated DMA buf */
554 WARN_ON_ONCE(orig_nbytes & 3);
555 for (i = 0; i < orig_nbytes / sizeof(__le32); i++)
556 ((__le32 *)data_buf)[i] = __cpu_to_le32(((u32 *)data)[i]);
557
558 /*
559 * The address supplied by the caller is in the
560 * Target CPU virtual address space.
561 *
562 * In order to use this address with the diagnostic CE,
563 * convert it from
564 * Target CPU virtual address space
565 * to
566 * CE address space
567 */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300568 address = TARG_CPU_SPACE_TO_CE_SPACE(ar, ar_pci->mem, address);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300569
570 remaining_bytes = orig_nbytes;
571 ce_data = ce_data_base;
572 while (remaining_bytes) {
573 /* FIXME: check cast */
574 nbytes = min_t(int, remaining_bytes, DIAG_TRANSFER_LIMIT);
575
576 /* Set up to receive directly into Target(!) address */
577 ret = ath10k_ce_recv_buf_enqueue(ce_diag, NULL, address);
578 if (ret != 0)
579 goto done;
580
581 /*
582 * Request CE to send caller-supplied data that
583 * was copied to bounce buffer to Target(!) address.
584 */
585 ret = ath10k_ce_send(ce_diag, NULL, (u32) ce_data,
586 nbytes, 0, 0);
587 if (ret != 0)
588 goto done;
589
590 i = 0;
591 while (ath10k_ce_completed_send_next(ce_diag, NULL, &buf,
592 &completed_nbytes,
593 &id) != 0) {
594 mdelay(1);
595
596 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
597 ret = -EBUSY;
598 goto done;
599 }
600 }
601
602 if (nbytes != completed_nbytes) {
603 ret = -EIO;
604 goto done;
605 }
606
607 if (buf != ce_data) {
608 ret = -EIO;
609 goto done;
610 }
611
612 i = 0;
613 while (ath10k_ce_completed_recv_next(ce_diag, NULL, &buf,
614 &completed_nbytes,
615 &id, &flags) != 0) {
616 mdelay(1);
617
618 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
619 ret = -EBUSY;
620 goto done;
621 }
622 }
623
624 if (nbytes != completed_nbytes) {
625 ret = -EIO;
626 goto done;
627 }
628
629 if (buf != address) {
630 ret = -EIO;
631 goto done;
632 }
633
634 remaining_bytes -= nbytes;
635 address += nbytes;
636 ce_data += nbytes;
637 }
638
639done:
640 if (data_buf) {
Michal Kazior68c03242014-03-28 10:02:35 +0200641 dma_free_coherent(ar->dev, orig_nbytes, data_buf,
642 ce_data_base);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300643 }
644
645 if (ret != 0)
Kalle Valo50f87a62014-03-28 09:32:52 +0200646 ath10k_warn("failed to write diag value at 0x%x: %d\n",
647 address, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300648
649 return ret;
650}
651
652/* Write 4B data to Target memory or register */
653static int ath10k_pci_diag_write_access(struct ath10k *ar, u32 address,
654 u32 data)
655{
656 /* Assume range doesn't cross this boundary */
657 if (address >= DRAM_BASE_ADDRESS)
658 return ath10k_pci_diag_write_mem(ar, address, &data,
659 sizeof(u32));
660
Kalle Valo5e3dd152013-06-12 20:52:10 +0300661 ath10k_pci_write32(ar, address, data);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300662 return 0;
663}
664
Michal Kaziorc0c378f2014-08-07 11:03:28 +0200665static bool ath10k_pci_is_awake(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300666{
Michal Kaziorc0c378f2014-08-07 11:03:28 +0200667 u32 val = ath10k_pci_reg_read32(ar, RTC_STATE_ADDRESS);
668
669 return RTC_STATE_V_GET(val) == RTC_STATE_V_ON;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300670}
671
Michal Kaziorc0c378f2014-08-07 11:03:28 +0200672static int ath10k_pci_wake_wait(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300673{
Kalle Valo5e3dd152013-06-12 20:52:10 +0300674 int tot_delay = 0;
675 int curr_delay = 5;
676
Michal Kaziorc0c378f2014-08-07 11:03:28 +0200677 while (tot_delay < PCIE_WAKE_TIMEOUT) {
678 if (ath10k_pci_is_awake(ar))
Kalle Valo3aebe542013-09-01 10:02:07 +0300679 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300680
681 udelay(curr_delay);
682 tot_delay += curr_delay;
683
684 if (curr_delay < 50)
685 curr_delay += 5;
686 }
Michal Kaziorc0c378f2014-08-07 11:03:28 +0200687
688 return -ETIMEDOUT;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300689}
690
Michal Kaziorc0c378f2014-08-07 11:03:28 +0200691static int ath10k_pci_wake(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300692{
Michal Kaziorc0c378f2014-08-07 11:03:28 +0200693 ath10k_pci_reg_write32(ar, PCIE_SOC_WAKE_ADDRESS,
694 PCIE_SOC_WAKE_V_MASK);
695 return ath10k_pci_wake_wait(ar);
696}
Kalle Valo5e3dd152013-06-12 20:52:10 +0300697
Michal Kaziorc0c378f2014-08-07 11:03:28 +0200698static void ath10k_pci_sleep(struct ath10k *ar)
699{
700 ath10k_pci_reg_write32(ar, PCIE_SOC_WAKE_ADDRESS,
701 PCIE_SOC_WAKE_RESET);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300702}
703
Kalle Valo5e3dd152013-06-12 20:52:10 +0300704/* Called by lower (CE) layer when a send to Target completes. */
Michal Kazior5440ce22013-09-03 15:09:58 +0200705static void ath10k_pci_ce_send_done(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300706{
707 struct ath10k *ar = ce_state->ar;
708 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior2f5280d2014-02-27 18:50:05 +0200709 struct ath10k_hif_cb *cb = &ar_pci->msg_callbacks_current;
Michal Kazior5440ce22013-09-03 15:09:58 +0200710 void *transfer_context;
711 u32 ce_data;
712 unsigned int nbytes;
713 unsigned int transfer_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300714
Michal Kazior5440ce22013-09-03 15:09:58 +0200715 while (ath10k_ce_completed_send_next(ce_state, &transfer_context,
716 &ce_data, &nbytes,
717 &transfer_id) == 0) {
Michal Kaziora16942e2014-02-27 18:50:04 +0200718 /* no need to call tx completion for NULL pointers */
Michal Kazior726346f2014-02-27 18:50:04 +0200719 if (transfer_context == NULL)
720 continue;
721
Michal Kazior2f5280d2014-02-27 18:50:05 +0200722 cb->tx_completion(ar, transfer_context, transfer_id);
Michal Kazior5440ce22013-09-03 15:09:58 +0200723 }
Kalle Valo5e3dd152013-06-12 20:52:10 +0300724}
725
726/* Called by lower (CE) layer when data is received from the Target. */
Michal Kazior5440ce22013-09-03 15:09:58 +0200727static void ath10k_pci_ce_recv_data(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300728{
729 struct ath10k *ar = ce_state->ar;
730 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior87263e52013-08-27 13:08:01 +0200731 struct ath10k_pci_pipe *pipe_info = &ar_pci->pipe_info[ce_state->id];
Michal Kazior2f5280d2014-02-27 18:50:05 +0200732 struct ath10k_hif_cb *cb = &ar_pci->msg_callbacks_current;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300733 struct sk_buff *skb;
Michal Kazior5440ce22013-09-03 15:09:58 +0200734 void *transfer_context;
735 u32 ce_data;
Michal Kazior2f5280d2014-02-27 18:50:05 +0200736 unsigned int nbytes, max_nbytes;
Michal Kazior5440ce22013-09-03 15:09:58 +0200737 unsigned int transfer_id;
738 unsigned int flags;
Michal Kaziorc29a3802014-07-21 21:03:10 +0300739 int err, num_replenish = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300740
Michal Kazior5440ce22013-09-03 15:09:58 +0200741 while (ath10k_ce_completed_recv_next(ce_state, &transfer_context,
742 &ce_data, &nbytes, &transfer_id,
743 &flags) == 0) {
Michal Kaziorc29a3802014-07-21 21:03:10 +0300744 num_replenish++;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300745 skb = transfer_context;
Michal Kazior2f5280d2014-02-27 18:50:05 +0200746 max_nbytes = skb->len + skb_tailroom(skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300747 dma_unmap_single(ar->dev, ATH10K_SKB_CB(skb)->paddr,
Michal Kazior2f5280d2014-02-27 18:50:05 +0200748 max_nbytes, DMA_FROM_DEVICE);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300749
Michal Kazior2f5280d2014-02-27 18:50:05 +0200750 if (unlikely(max_nbytes < nbytes)) {
751 ath10k_warn("rxed more than expected (nbytes %d, max %d)",
752 nbytes, max_nbytes);
753 dev_kfree_skb_any(skb);
754 continue;
755 }
756
757 skb_put(skb, nbytes);
758 cb->rx_completion(ar, skb, pipe_info->pipe_num);
759 }
Michal Kaziorc29a3802014-07-21 21:03:10 +0300760
761 err = ath10k_pci_post_rx_pipe(pipe_info, num_replenish);
762 if (unlikely(err)) {
763 /* FIXME: retry */
764 ath10k_warn("failed to replenish CE rx ring %d (%d bufs): %d\n",
765 pipe_info->pipe_num, num_replenish, err);
766 }
Kalle Valo5e3dd152013-06-12 20:52:10 +0300767}
768
Michal Kazior726346f2014-02-27 18:50:04 +0200769static int ath10k_pci_hif_tx_sg(struct ath10k *ar, u8 pipe_id,
770 struct ath10k_hif_sg_item *items, int n_items)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300771{
Kalle Valo5e3dd152013-06-12 20:52:10 +0300772 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior726346f2014-02-27 18:50:04 +0200773 struct ath10k_pci_pipe *pci_pipe = &ar_pci->pipe_info[pipe_id];
774 struct ath10k_ce_pipe *ce_pipe = pci_pipe->ce_hdl;
775 struct ath10k_ce_ring *src_ring = ce_pipe->src_ring;
Michal Kazior7147a132014-05-26 12:02:58 +0200776 unsigned int nentries_mask;
777 unsigned int sw_index;
778 unsigned int write_index;
Michal Kazior08b8aa02014-05-26 12:02:59 +0200779 int err, i = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300780
Michal Kazior726346f2014-02-27 18:50:04 +0200781 spin_lock_bh(&ar_pci->ce_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300782
Michal Kazior7147a132014-05-26 12:02:58 +0200783 nentries_mask = src_ring->nentries_mask;
784 sw_index = src_ring->sw_index;
785 write_index = src_ring->write_index;
786
Michal Kazior726346f2014-02-27 18:50:04 +0200787 if (unlikely(CE_RING_DELTA(nentries_mask,
788 write_index, sw_index - 1) < n_items)) {
789 err = -ENOBUFS;
Michal Kazior08b8aa02014-05-26 12:02:59 +0200790 goto err;
Michal Kazior726346f2014-02-27 18:50:04 +0200791 }
792
793 for (i = 0; i < n_items - 1; i++) {
794 ath10k_dbg(ATH10K_DBG_PCI,
795 "pci tx item %d paddr 0x%08x len %d n_items %d\n",
796 i, items[i].paddr, items[i].len, n_items);
797 ath10k_dbg_dump(ATH10K_DBG_PCI_DUMP, NULL, "item data: ",
798 items[i].vaddr, items[i].len);
799
800 err = ath10k_ce_send_nolock(ce_pipe,
801 items[i].transfer_context,
802 items[i].paddr,
803 items[i].len,
804 items[i].transfer_id,
805 CE_SEND_FLAG_GATHER);
806 if (err)
Michal Kazior08b8aa02014-05-26 12:02:59 +0200807 goto err;
Michal Kazior726346f2014-02-27 18:50:04 +0200808 }
809
810 /* `i` is equal to `n_items -1` after for() */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300811
812 ath10k_dbg(ATH10K_DBG_PCI,
Michal Kazior726346f2014-02-27 18:50:04 +0200813 "pci tx item %d paddr 0x%08x len %d n_items %d\n",
814 i, items[i].paddr, items[i].len, n_items);
815 ath10k_dbg_dump(ATH10K_DBG_PCI_DUMP, NULL, "item data: ",
816 items[i].vaddr, items[i].len);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300817
Michal Kazior726346f2014-02-27 18:50:04 +0200818 err = ath10k_ce_send_nolock(ce_pipe,
819 items[i].transfer_context,
820 items[i].paddr,
821 items[i].len,
822 items[i].transfer_id,
823 0);
824 if (err)
Michal Kazior08b8aa02014-05-26 12:02:59 +0200825 goto err;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300826
Michal Kazior08b8aa02014-05-26 12:02:59 +0200827 spin_unlock_bh(&ar_pci->ce_lock);
828 return 0;
829
830err:
831 for (; i > 0; i--)
832 __ath10k_ce_send_revert(ce_pipe);
833
Michal Kazior726346f2014-02-27 18:50:04 +0200834 spin_unlock_bh(&ar_pci->ce_lock);
835 return err;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300836}
837
838static u16 ath10k_pci_hif_get_free_queue_number(struct ath10k *ar, u8 pipe)
839{
840 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo50f87a62014-03-28 09:32:52 +0200841
842 ath10k_dbg(ATH10K_DBG_PCI, "pci hif get free queue number\n");
843
Michal Kazior3efcb3b2013-10-02 11:03:41 +0200844 return ath10k_ce_num_free_src_entries(ar_pci->pipe_info[pipe].ce_hdl);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300845}
846
Ben Greear384914b2014-08-25 08:37:32 +0300847static void ath10k_pci_dump_registers(struct ath10k *ar,
848 struct ath10k_fw_crash_data *crash_data)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300849{
Ben Greear384914b2014-08-25 08:37:32 +0300850 u32 i, reg_dump_values[REG_DUMP_COUNT_QCA988X] = {};
Kalle Valo5e3dd152013-06-12 20:52:10 +0300851 int ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300852
Ben Greear384914b2014-08-25 08:37:32 +0300853 lockdep_assert_held(&ar->data_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300854
Kalle Valo3d29a3e2014-08-25 08:37:26 +0300855 ret = ath10k_pci_diag_read_hi(ar, &reg_dump_values[0],
856 hi_failure_state,
857 REG_DUMP_COUNT_QCA988X * sizeof(u32));
Michal Kazior1d2b48d2013-11-08 08:01:34 +0100858 if (ret) {
Kalle Valo3d29a3e2014-08-25 08:37:26 +0300859 ath10k_err("failed to read firmware dump area: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300860 return;
861 }
862
863 BUILD_BUG_ON(REG_DUMP_COUNT_QCA988X % 4);
864
Kalle Valo0e9848c2014-08-25 08:37:37 +0300865 ath10k_err("firmware register dump:\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +0300866 for (i = 0; i < REG_DUMP_COUNT_QCA988X; i += 4)
867 ath10k_err("[%02d]: 0x%08X 0x%08X 0x%08X 0x%08X\n",
868 i,
869 reg_dump_values[i],
870 reg_dump_values[i + 1],
871 reg_dump_values[i + 2],
872 reg_dump_values[i + 3]);
Michal Kazioraffd3212013-07-16 09:54:35 +0200873
Ben Greear384914b2014-08-25 08:37:32 +0300874 /* crash_data is in little endian */
875 for (i = 0; i < REG_DUMP_COUNT_QCA988X; i++)
876 crash_data->registers[i] = cpu_to_le32(reg_dump_values[i]);
877}
878
Kalle Valo0e9848c2014-08-25 08:37:37 +0300879static void ath10k_pci_fw_crashed_dump(struct ath10k *ar)
Ben Greear384914b2014-08-25 08:37:32 +0300880{
881 struct ath10k_fw_crash_data *crash_data;
882 char uuid[50];
883
884 spin_lock_bh(&ar->data_lock);
885
886 crash_data = ath10k_debug_get_new_fw_crash_data(ar);
887
888 if (crash_data)
889 scnprintf(uuid, sizeof(uuid), "%pUl", &crash_data->uuid);
890 else
891 scnprintf(uuid, sizeof(uuid), "n/a");
892
893 ath10k_err("firmware crashed! (uuid %s)\n", uuid);
Kalle Valo8a0c7972014-08-25 08:37:45 +0300894 ath10k_print_driver_info(ar);
Ben Greear384914b2014-08-25 08:37:32 +0300895
896 if (!crash_data)
897 goto exit;
898
899 ath10k_pci_dump_registers(ar, crash_data);
900
901exit:
902 spin_unlock_bh(&ar->data_lock);
903
Michal Kazior5e90de82013-10-16 16:46:05 +0300904 queue_work(ar->workqueue, &ar->restart_work);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300905}
906
907static void ath10k_pci_hif_send_complete_check(struct ath10k *ar, u8 pipe,
908 int force)
909{
Kalle Valo50f87a62014-03-28 09:32:52 +0200910 ath10k_dbg(ATH10K_DBG_PCI, "pci hif send complete check\n");
911
Kalle Valo5e3dd152013-06-12 20:52:10 +0300912 if (!force) {
913 int resources;
914 /*
915 * Decide whether to actually poll for completions, or just
916 * wait for a later chance.
917 * If there seem to be plenty of resources left, then just wait
918 * since checking involves reading a CE register, which is a
919 * relatively expensive operation.
920 */
921 resources = ath10k_pci_hif_get_free_queue_number(ar, pipe);
922
923 /*
924 * If at least 50% of the total resources are still available,
925 * don't bother checking again yet.
926 */
927 if (resources > (host_ce_config_wlan[pipe].src_nentries >> 1))
928 return;
929 }
930 ath10k_ce_per_engine_service(ar, pipe);
931}
932
Michal Kaziore799bbf2013-07-05 16:15:12 +0300933static void ath10k_pci_hif_set_callbacks(struct ath10k *ar,
934 struct ath10k_hif_cb *callbacks)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300935{
936 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
937
Kalle Valo50f87a62014-03-28 09:32:52 +0200938 ath10k_dbg(ATH10K_DBG_PCI, "pci hif set callbacks\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +0300939
940 memcpy(&ar_pci->msg_callbacks_current, callbacks,
941 sizeof(ar_pci->msg_callbacks_current));
942}
943
Michal Kazior96a9d0d2013-11-08 08:01:25 +0100944static void ath10k_pci_kill_tasklet(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +0300945{
946 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300947 int i;
948
Kalle Valo5e3dd152013-06-12 20:52:10 +0300949 tasklet_kill(&ar_pci->intr_tq);
Michal Kazior103d4f52013-11-08 08:01:24 +0100950 tasklet_kill(&ar_pci->msi_fw_err);
Michal Kaziorab977bd2013-11-25 14:06:26 +0100951 tasklet_kill(&ar_pci->early_irq_tasklet);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300952
953 for (i = 0; i < CE_COUNT; i++)
954 tasklet_kill(&ar_pci->pipe_info[i].intr);
Michal Kazior96a9d0d2013-11-08 08:01:25 +0100955}
956
Kalle Valo5e3dd152013-06-12 20:52:10 +0300957/* TODO - temporary mapping while we have too few CE's */
958static int ath10k_pci_hif_map_service_to_pipe(struct ath10k *ar,
959 u16 service_id, u8 *ul_pipe,
960 u8 *dl_pipe, int *ul_is_polled,
961 int *dl_is_polled)
962{
963 int ret = 0;
964
Kalle Valo50f87a62014-03-28 09:32:52 +0200965 ath10k_dbg(ATH10K_DBG_PCI, "pci hif map service\n");
966
Kalle Valo5e3dd152013-06-12 20:52:10 +0300967 /* polling for received messages not supported */
968 *dl_is_polled = 0;
969
970 switch (service_id) {
971 case ATH10K_HTC_SVC_ID_HTT_DATA_MSG:
972 /*
973 * Host->target HTT gets its own pipe, so it can be polled
974 * while other pipes are interrupt driven.
975 */
976 *ul_pipe = 4;
977 /*
978 * Use the same target->host pipe for HTC ctrl, HTC raw
979 * streams, and HTT.
980 */
981 *dl_pipe = 1;
982 break;
983
984 case ATH10K_HTC_SVC_ID_RSVD_CTRL:
985 case ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS:
986 /*
987 * Note: HTC_RAW_STREAMS_SVC is currently unused, and
988 * HTC_CTRL_RSVD_SVC could share the same pipe as the
989 * WMI services. So, if another CE is needed, change
990 * this to *ul_pipe = 3, which frees up CE 0.
991 */
992 /* *ul_pipe = 3; */
993 *ul_pipe = 0;
994 *dl_pipe = 1;
995 break;
996
997 case ATH10K_HTC_SVC_ID_WMI_DATA_BK:
998 case ATH10K_HTC_SVC_ID_WMI_DATA_BE:
999 case ATH10K_HTC_SVC_ID_WMI_DATA_VI:
1000 case ATH10K_HTC_SVC_ID_WMI_DATA_VO:
1001
1002 case ATH10K_HTC_SVC_ID_WMI_CONTROL:
1003 *ul_pipe = 3;
1004 *dl_pipe = 2;
1005 break;
1006
1007 /* pipe 5 unused */
1008 /* pipe 6 reserved */
1009 /* pipe 7 reserved */
1010
1011 default:
1012 ret = -1;
1013 break;
1014 }
1015 *ul_is_polled =
1016 (host_ce_config_wlan[*ul_pipe].flags & CE_ATTR_DIS_INTR) != 0;
1017
1018 return ret;
1019}
1020
1021static void ath10k_pci_hif_get_default_pipe(struct ath10k *ar,
1022 u8 *ul_pipe, u8 *dl_pipe)
1023{
1024 int ul_is_polled, dl_is_polled;
1025
Kalle Valo50f87a62014-03-28 09:32:52 +02001026 ath10k_dbg(ATH10K_DBG_PCI, "pci hif get default pipe\n");
1027
Kalle Valo5e3dd152013-06-12 20:52:10 +03001028 (void)ath10k_pci_hif_map_service_to_pipe(ar,
1029 ATH10K_HTC_SVC_ID_RSVD_CTRL,
1030 ul_pipe,
1031 dl_pipe,
1032 &ul_is_polled,
1033 &dl_is_polled);
1034}
1035
Michal Kazior87263e52013-08-27 13:08:01 +02001036static int ath10k_pci_post_rx_pipe(struct ath10k_pci_pipe *pipe_info,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001037 int num)
1038{
1039 struct ath10k *ar = pipe_info->hif_ce_state;
1040 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior2aa39112013-08-27 13:08:02 +02001041 struct ath10k_ce_pipe *ce_state = pipe_info->ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001042 struct sk_buff *skb;
1043 dma_addr_t ce_data;
1044 int i, ret = 0;
1045
1046 if (pipe_info->buf_sz == 0)
1047 return 0;
1048
1049 for (i = 0; i < num; i++) {
1050 skb = dev_alloc_skb(pipe_info->buf_sz);
1051 if (!skb) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001052 ath10k_warn("failed to allocate skbuff for pipe %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001053 num);
1054 ret = -ENOMEM;
1055 goto err;
1056 }
1057
1058 WARN_ONCE((unsigned long)skb->data & 3, "unaligned skb");
1059
1060 ce_data = dma_map_single(ar->dev, skb->data,
1061 skb->len + skb_tailroom(skb),
1062 DMA_FROM_DEVICE);
1063
1064 if (unlikely(dma_mapping_error(ar->dev, ce_data))) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001065 ath10k_warn("failed to DMA map sk_buff\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001066 dev_kfree_skb_any(skb);
1067 ret = -EIO;
1068 goto err;
1069 }
1070
1071 ATH10K_SKB_CB(skb)->paddr = ce_data;
1072
1073 pci_dma_sync_single_for_device(ar_pci->pdev, ce_data,
1074 pipe_info->buf_sz,
1075 PCI_DMA_FROMDEVICE);
1076
1077 ret = ath10k_ce_recv_buf_enqueue(ce_state, (void *)skb,
1078 ce_data);
1079 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001080 ath10k_warn("failed to enqueue to pipe %d: %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001081 num, ret);
1082 goto err;
1083 }
1084 }
1085
1086 return ret;
1087
1088err:
1089 ath10k_pci_rx_pipe_cleanup(pipe_info);
1090 return ret;
1091}
1092
1093static int ath10k_pci_post_rx(struct ath10k *ar)
1094{
1095 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior87263e52013-08-27 13:08:01 +02001096 struct ath10k_pci_pipe *pipe_info;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001097 const struct ce_attr *attr;
1098 int pipe_num, ret = 0;
1099
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001100 for (pipe_num = 0; pipe_num < CE_COUNT; pipe_num++) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001101 pipe_info = &ar_pci->pipe_info[pipe_num];
1102 attr = &host_ce_config_wlan[pipe_num];
1103
1104 if (attr->dest_nentries == 0)
1105 continue;
1106
1107 ret = ath10k_pci_post_rx_pipe(pipe_info,
1108 attr->dest_nentries - 1);
1109 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001110 ath10k_warn("failed to post RX buffer for pipe %d: %d\n",
1111 pipe_num, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001112
1113 for (; pipe_num >= 0; pipe_num--) {
1114 pipe_info = &ar_pci->pipe_info[pipe_num];
1115 ath10k_pci_rx_pipe_cleanup(pipe_info);
1116 }
1117 return ret;
1118 }
1119 }
1120
1121 return 0;
1122}
1123
1124static int ath10k_pci_hif_start(struct ath10k *ar)
1125{
1126 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kaziorab977bd2013-11-25 14:06:26 +01001127 int ret, ret_early;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001128
Kalle Valo50f87a62014-03-28 09:32:52 +02001129 ath10k_dbg(ATH10K_DBG_BOOT, "boot hif start\n");
1130
Michal Kaziorab977bd2013-11-25 14:06:26 +01001131 ath10k_pci_free_early_irq(ar);
1132 ath10k_pci_kill_tasklet(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001133
Michal Kazior5d1aa942013-11-25 14:06:24 +01001134 ret = ath10k_pci_request_irq(ar);
1135 if (ret) {
1136 ath10k_warn("failed to post RX buffers for all pipes: %d\n",
1137 ret);
Michal Kazior2f5280d2014-02-27 18:50:05 +02001138 goto err_early_irq;
Michal Kazior5d1aa942013-11-25 14:06:24 +01001139 }
1140
Michal Kazior145cc122014-08-22 14:23:32 +02001141 ath10k_ce_enable_interrupts(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001142
1143 /* Post buffers once to start things off. */
1144 ret = ath10k_pci_post_rx(ar);
1145 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001146 ath10k_warn("failed to post RX buffers for all pipes: %d\n",
1147 ret);
Michal Kazior5d1aa942013-11-25 14:06:24 +01001148 goto err_stop;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001149 }
1150
1151 ar_pci->started = 1;
1152 return 0;
Michal Kaziorc80de122013-11-25 14:06:23 +01001153
Michal Kazior5d1aa942013-11-25 14:06:24 +01001154err_stop:
1155 ath10k_ce_disable_interrupts(ar);
1156 ath10k_pci_free_irq(ar);
1157 ath10k_pci_kill_tasklet(ar);
Michal Kaziorab977bd2013-11-25 14:06:26 +01001158err_early_irq:
1159 /* Though there should be no interrupts (device was reset)
1160 * power_down() expects the early IRQ to be installed as per the
1161 * driver lifecycle. */
1162 ret_early = ath10k_pci_request_early_irq(ar);
1163 if (ret_early)
1164 ath10k_warn("failed to re-enable early irq: %d\n", ret_early);
1165
Michal Kaziorc80de122013-11-25 14:06:23 +01001166 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001167}
1168
Michal Kazior87263e52013-08-27 13:08:01 +02001169static void ath10k_pci_rx_pipe_cleanup(struct ath10k_pci_pipe *pipe_info)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001170{
1171 struct ath10k *ar;
1172 struct ath10k_pci *ar_pci;
Michal Kazior2aa39112013-08-27 13:08:02 +02001173 struct ath10k_ce_pipe *ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001174 u32 buf_sz;
1175 struct sk_buff *netbuf;
1176 u32 ce_data;
1177
1178 buf_sz = pipe_info->buf_sz;
1179
1180 /* Unused Copy Engine */
1181 if (buf_sz == 0)
1182 return;
1183
1184 ar = pipe_info->hif_ce_state;
1185 ar_pci = ath10k_pci_priv(ar);
1186
1187 if (!ar_pci->started)
1188 return;
1189
1190 ce_hdl = pipe_info->ce_hdl;
1191
1192 while (ath10k_ce_revoke_recv_next(ce_hdl, (void **)&netbuf,
1193 &ce_data) == 0) {
1194 dma_unmap_single(ar->dev, ATH10K_SKB_CB(netbuf)->paddr,
1195 netbuf->len + skb_tailroom(netbuf),
1196 DMA_FROM_DEVICE);
1197 dev_kfree_skb_any(netbuf);
1198 }
1199}
1200
Michal Kazior87263e52013-08-27 13:08:01 +02001201static void ath10k_pci_tx_pipe_cleanup(struct ath10k_pci_pipe *pipe_info)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001202{
1203 struct ath10k *ar;
1204 struct ath10k_pci *ar_pci;
Michal Kazior2aa39112013-08-27 13:08:02 +02001205 struct ath10k_ce_pipe *ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001206 struct sk_buff *netbuf;
1207 u32 ce_data;
1208 unsigned int nbytes;
1209 unsigned int id;
1210 u32 buf_sz;
1211
1212 buf_sz = pipe_info->buf_sz;
1213
1214 /* Unused Copy Engine */
1215 if (buf_sz == 0)
1216 return;
1217
1218 ar = pipe_info->hif_ce_state;
1219 ar_pci = ath10k_pci_priv(ar);
1220
1221 if (!ar_pci->started)
1222 return;
1223
1224 ce_hdl = pipe_info->ce_hdl;
1225
1226 while (ath10k_ce_cancel_send_next(ce_hdl, (void **)&netbuf,
1227 &ce_data, &nbytes, &id) == 0) {
Michal Kaziora16942e2014-02-27 18:50:04 +02001228 /* no need to call tx completion for NULL pointers */
1229 if (!netbuf)
Michal Kazior2415fc12013-11-08 08:01:32 +01001230 continue;
Michal Kazior2415fc12013-11-08 08:01:32 +01001231
Kalle Valoe9bb0aa2013-09-08 18:36:11 +03001232 ar_pci->msg_callbacks_current.tx_completion(ar,
1233 netbuf,
1234 id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001235 }
1236}
1237
1238/*
1239 * Cleanup residual buffers for device shutdown:
1240 * buffers that were enqueued for receive
1241 * buffers that were to be sent
1242 * Note: Buffers that had completed but which were
1243 * not yet processed are on a completion queue. They
1244 * are handled when the completion thread shuts down.
1245 */
1246static void ath10k_pci_buffer_cleanup(struct ath10k *ar)
1247{
1248 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1249 int pipe_num;
1250
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001251 for (pipe_num = 0; pipe_num < CE_COUNT; pipe_num++) {
Michal Kazior87263e52013-08-27 13:08:01 +02001252 struct ath10k_pci_pipe *pipe_info;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001253
1254 pipe_info = &ar_pci->pipe_info[pipe_num];
1255 ath10k_pci_rx_pipe_cleanup(pipe_info);
1256 ath10k_pci_tx_pipe_cleanup(pipe_info);
1257 }
1258}
1259
1260static void ath10k_pci_ce_deinit(struct ath10k *ar)
1261{
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001262 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001263
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001264 for (i = 0; i < CE_COUNT; i++)
1265 ath10k_ce_deinit_pipe(ar, i);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001266}
1267
1268static void ath10k_pci_hif_stop(struct ath10k *ar)
1269{
Michal Kazior32270b62013-08-02 09:15:47 +02001270 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior5d1aa942013-11-25 14:06:24 +01001271 int ret;
Michal Kazior32270b62013-08-02 09:15:47 +02001272
Kalle Valo50f87a62014-03-28 09:32:52 +02001273 ath10k_dbg(ATH10K_DBG_BOOT, "boot hif stop\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001274
Michal Kaziorf2708be2014-05-16 17:15:39 +03001275 if (WARN_ON(!ar_pci->started))
1276 return;
1277
Michal Kazior5d1aa942013-11-25 14:06:24 +01001278 ret = ath10k_ce_disable_interrupts(ar);
1279 if (ret)
1280 ath10k_warn("failed to disable CE interrupts: %d\n", ret);
Michal Kazior32270b62013-08-02 09:15:47 +02001281
Michal Kazior5d1aa942013-11-25 14:06:24 +01001282 ath10k_pci_free_irq(ar);
1283 ath10k_pci_kill_tasklet(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001284
Michal Kaziorab977bd2013-11-25 14:06:26 +01001285 ret = ath10k_pci_request_early_irq(ar);
1286 if (ret)
1287 ath10k_warn("failed to re-enable early irq: %d\n", ret);
1288
Kalle Valo5e3dd152013-06-12 20:52:10 +03001289 /* At this point, asynchronous threads are stopped, the target should
1290 * not DMA nor interrupt. We process the leftovers and then free
1291 * everything else up. */
1292
Kalle Valo5e3dd152013-06-12 20:52:10 +03001293 ath10k_pci_buffer_cleanup(ar);
Michal Kazior32270b62013-08-02 09:15:47 +02001294
Michal Kazior6a42a472013-11-08 08:01:35 +01001295 /* Make the sure the device won't access any structures on the host by
1296 * resetting it. The device was fed with PCI CE ringbuffer
1297 * configuration during init. If ringbuffers are freed and the device
1298 * were to access them this could lead to memory corruption on the
1299 * host. */
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001300 ath10k_pci_warm_reset(ar);
Michal Kazior6a42a472013-11-08 08:01:35 +01001301
Michal Kazior32270b62013-08-02 09:15:47 +02001302 ar_pci->started = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001303}
1304
1305static int ath10k_pci_hif_exchange_bmi_msg(struct ath10k *ar,
1306 void *req, u32 req_len,
1307 void *resp, u32 *resp_len)
1308{
1309 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior2aa39112013-08-27 13:08:02 +02001310 struct ath10k_pci_pipe *pci_tx = &ar_pci->pipe_info[BMI_CE_NUM_TO_TARG];
1311 struct ath10k_pci_pipe *pci_rx = &ar_pci->pipe_info[BMI_CE_NUM_TO_HOST];
1312 struct ath10k_ce_pipe *ce_tx = pci_tx->ce_hdl;
1313 struct ath10k_ce_pipe *ce_rx = pci_rx->ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001314 dma_addr_t req_paddr = 0;
1315 dma_addr_t resp_paddr = 0;
1316 struct bmi_xfer xfer = {};
1317 void *treq, *tresp = NULL;
1318 int ret = 0;
1319
Michal Kazior85622cd2013-11-25 14:06:22 +01001320 might_sleep();
1321
Kalle Valo5e3dd152013-06-12 20:52:10 +03001322 if (resp && !resp_len)
1323 return -EINVAL;
1324
1325 if (resp && resp_len && *resp_len == 0)
1326 return -EINVAL;
1327
1328 treq = kmemdup(req, req_len, GFP_KERNEL);
1329 if (!treq)
1330 return -ENOMEM;
1331
1332 req_paddr = dma_map_single(ar->dev, treq, req_len, DMA_TO_DEVICE);
1333 ret = dma_mapping_error(ar->dev, req_paddr);
1334 if (ret)
1335 goto err_dma;
1336
1337 if (resp && resp_len) {
1338 tresp = kzalloc(*resp_len, GFP_KERNEL);
1339 if (!tresp) {
1340 ret = -ENOMEM;
1341 goto err_req;
1342 }
1343
1344 resp_paddr = dma_map_single(ar->dev, tresp, *resp_len,
1345 DMA_FROM_DEVICE);
1346 ret = dma_mapping_error(ar->dev, resp_paddr);
1347 if (ret)
1348 goto err_req;
1349
1350 xfer.wait_for_resp = true;
1351 xfer.resp_len = 0;
1352
1353 ath10k_ce_recv_buf_enqueue(ce_rx, &xfer, resp_paddr);
1354 }
1355
Kalle Valo5e3dd152013-06-12 20:52:10 +03001356 ret = ath10k_ce_send(ce_tx, &xfer, req_paddr, req_len, -1, 0);
1357 if (ret)
1358 goto err_resp;
1359
Michal Kazior85622cd2013-11-25 14:06:22 +01001360 ret = ath10k_pci_bmi_wait(ce_tx, ce_rx, &xfer);
1361 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001362 u32 unused_buffer;
1363 unsigned int unused_nbytes;
1364 unsigned int unused_id;
1365
Kalle Valo5e3dd152013-06-12 20:52:10 +03001366 ath10k_ce_cancel_send_next(ce_tx, NULL, &unused_buffer,
1367 &unused_nbytes, &unused_id);
1368 } else {
1369 /* non-zero means we did not time out */
1370 ret = 0;
1371 }
1372
1373err_resp:
1374 if (resp) {
1375 u32 unused_buffer;
1376
1377 ath10k_ce_revoke_recv_next(ce_rx, NULL, &unused_buffer);
1378 dma_unmap_single(ar->dev, resp_paddr,
1379 *resp_len, DMA_FROM_DEVICE);
1380 }
1381err_req:
1382 dma_unmap_single(ar->dev, req_paddr, req_len, DMA_TO_DEVICE);
1383
1384 if (ret == 0 && resp_len) {
1385 *resp_len = min(*resp_len, xfer.resp_len);
1386 memcpy(resp, tresp, xfer.resp_len);
1387 }
1388err_dma:
1389 kfree(treq);
1390 kfree(tresp);
1391
1392 return ret;
1393}
1394
Michal Kazior5440ce22013-09-03 15:09:58 +02001395static void ath10k_pci_bmi_send_done(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001396{
Michal Kazior5440ce22013-09-03 15:09:58 +02001397 struct bmi_xfer *xfer;
1398 u32 ce_data;
1399 unsigned int nbytes;
1400 unsigned int transfer_id;
1401
1402 if (ath10k_ce_completed_send_next(ce_state, (void **)&xfer, &ce_data,
1403 &nbytes, &transfer_id))
1404 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001405
Michal Kazior2374b182014-07-14 16:25:25 +03001406 xfer->tx_done = true;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001407}
1408
Michal Kazior5440ce22013-09-03 15:09:58 +02001409static void ath10k_pci_bmi_recv_data(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001410{
Michal Kazior5440ce22013-09-03 15:09:58 +02001411 struct bmi_xfer *xfer;
1412 u32 ce_data;
1413 unsigned int nbytes;
1414 unsigned int transfer_id;
1415 unsigned int flags;
1416
1417 if (ath10k_ce_completed_recv_next(ce_state, (void **)&xfer, &ce_data,
1418 &nbytes, &transfer_id, &flags))
1419 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001420
1421 if (!xfer->wait_for_resp) {
1422 ath10k_warn("unexpected: BMI data received; ignoring\n");
1423 return;
1424 }
1425
1426 xfer->resp_len = nbytes;
Michal Kazior2374b182014-07-14 16:25:25 +03001427 xfer->rx_done = true;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001428}
1429
Michal Kazior85622cd2013-11-25 14:06:22 +01001430static int ath10k_pci_bmi_wait(struct ath10k_ce_pipe *tx_pipe,
1431 struct ath10k_ce_pipe *rx_pipe,
1432 struct bmi_xfer *xfer)
1433{
1434 unsigned long timeout = jiffies + BMI_COMMUNICATION_TIMEOUT_HZ;
1435
1436 while (time_before_eq(jiffies, timeout)) {
1437 ath10k_pci_bmi_send_done(tx_pipe);
1438 ath10k_pci_bmi_recv_data(rx_pipe);
1439
Michal Kazior2374b182014-07-14 16:25:25 +03001440 if (xfer->tx_done && (xfer->rx_done == xfer->wait_for_resp))
Michal Kazior85622cd2013-11-25 14:06:22 +01001441 return 0;
1442
1443 schedule();
1444 }
1445
1446 return -ETIMEDOUT;
1447}
1448
Kalle Valo5e3dd152013-06-12 20:52:10 +03001449/*
1450 * Map from service/endpoint to Copy Engine.
1451 * This table is derived from the CE_PCI TABLE, above.
1452 * It is passed to the Target at startup for use by firmware.
1453 */
1454static const struct service_to_pipe target_service_to_ce_map_wlan[] = {
1455 {
1456 ATH10K_HTC_SVC_ID_WMI_DATA_VO,
1457 PIPEDIR_OUT, /* out = UL = host -> target */
1458 3,
1459 },
1460 {
1461 ATH10K_HTC_SVC_ID_WMI_DATA_VO,
1462 PIPEDIR_IN, /* in = DL = target -> host */
1463 2,
1464 },
1465 {
1466 ATH10K_HTC_SVC_ID_WMI_DATA_BK,
1467 PIPEDIR_OUT, /* out = UL = host -> target */
1468 3,
1469 },
1470 {
1471 ATH10K_HTC_SVC_ID_WMI_DATA_BK,
1472 PIPEDIR_IN, /* in = DL = target -> host */
1473 2,
1474 },
1475 {
1476 ATH10K_HTC_SVC_ID_WMI_DATA_BE,
1477 PIPEDIR_OUT, /* out = UL = host -> target */
1478 3,
1479 },
1480 {
1481 ATH10K_HTC_SVC_ID_WMI_DATA_BE,
1482 PIPEDIR_IN, /* in = DL = target -> host */
1483 2,
1484 },
1485 {
1486 ATH10K_HTC_SVC_ID_WMI_DATA_VI,
1487 PIPEDIR_OUT, /* out = UL = host -> target */
1488 3,
1489 },
1490 {
1491 ATH10K_HTC_SVC_ID_WMI_DATA_VI,
1492 PIPEDIR_IN, /* in = DL = target -> host */
1493 2,
1494 },
1495 {
1496 ATH10K_HTC_SVC_ID_WMI_CONTROL,
1497 PIPEDIR_OUT, /* out = UL = host -> target */
1498 3,
1499 },
1500 {
1501 ATH10K_HTC_SVC_ID_WMI_CONTROL,
1502 PIPEDIR_IN, /* in = DL = target -> host */
1503 2,
1504 },
1505 {
1506 ATH10K_HTC_SVC_ID_RSVD_CTRL,
1507 PIPEDIR_OUT, /* out = UL = host -> target */
1508 0, /* could be moved to 3 (share with WMI) */
1509 },
1510 {
1511 ATH10K_HTC_SVC_ID_RSVD_CTRL,
1512 PIPEDIR_IN, /* in = DL = target -> host */
1513 1,
1514 },
1515 {
1516 ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS, /* not currently used */
1517 PIPEDIR_OUT, /* out = UL = host -> target */
1518 0,
1519 },
1520 {
1521 ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS, /* not currently used */
1522 PIPEDIR_IN, /* in = DL = target -> host */
1523 1,
1524 },
1525 {
1526 ATH10K_HTC_SVC_ID_HTT_DATA_MSG,
1527 PIPEDIR_OUT, /* out = UL = host -> target */
1528 4,
1529 },
1530 {
1531 ATH10K_HTC_SVC_ID_HTT_DATA_MSG,
1532 PIPEDIR_IN, /* in = DL = target -> host */
1533 1,
1534 },
1535
1536 /* (Additions here) */
1537
1538 { /* Must be last */
1539 0,
1540 0,
1541 0,
1542 },
1543};
1544
1545/*
1546 * Send an interrupt to the device to wake up the Target CPU
1547 * so it has an opportunity to notice any changed state.
1548 */
1549static int ath10k_pci_wake_target_cpu(struct ath10k *ar)
1550{
1551 int ret;
1552 u32 core_ctrl;
1553
1554 ret = ath10k_pci_diag_read_access(ar, SOC_CORE_BASE_ADDRESS |
1555 CORE_CTRL_ADDRESS,
1556 &core_ctrl);
1557 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001558 ath10k_warn("failed to read core_ctrl: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001559 return ret;
1560 }
1561
1562 /* A_INUM_FIRMWARE interrupt to Target CPU */
1563 core_ctrl |= CORE_CTRL_CPU_INTR_MASK;
1564
1565 ret = ath10k_pci_diag_write_access(ar, SOC_CORE_BASE_ADDRESS |
1566 CORE_CTRL_ADDRESS,
1567 core_ctrl);
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001568 if (ret) {
1569 ath10k_warn("failed to set target CPU interrupt mask: %d\n",
1570 ret);
1571 return ret;
1572 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001573
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001574 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001575}
1576
1577static int ath10k_pci_init_config(struct ath10k *ar)
1578{
1579 u32 interconnect_targ_addr;
1580 u32 pcie_state_targ_addr = 0;
1581 u32 pipe_cfg_targ_addr = 0;
1582 u32 svc_to_pipe_map = 0;
1583 u32 pcie_config_flags = 0;
1584 u32 ealloc_value;
1585 u32 ealloc_targ_addr;
1586 u32 flag2_value;
1587 u32 flag2_targ_addr;
1588 int ret = 0;
1589
1590 /* Download to Target the CE Config and the service-to-CE map */
1591 interconnect_targ_addr =
1592 host_interest_item_address(HI_ITEM(hi_interconnect_state));
1593
1594 /* Supply Target-side CE configuration */
1595 ret = ath10k_pci_diag_read_access(ar, interconnect_targ_addr,
1596 &pcie_state_targ_addr);
1597 if (ret != 0) {
1598 ath10k_err("Failed to get pcie state addr: %d\n", ret);
1599 return ret;
1600 }
1601
1602 if (pcie_state_targ_addr == 0) {
1603 ret = -EIO;
1604 ath10k_err("Invalid pcie state addr\n");
1605 return ret;
1606 }
1607
1608 ret = ath10k_pci_diag_read_access(ar, pcie_state_targ_addr +
1609 offsetof(struct pcie_state,
1610 pipe_cfg_addr),
1611 &pipe_cfg_targ_addr);
1612 if (ret != 0) {
1613 ath10k_err("Failed to get pipe cfg addr: %d\n", ret);
1614 return ret;
1615 }
1616
1617 if (pipe_cfg_targ_addr == 0) {
1618 ret = -EIO;
1619 ath10k_err("Invalid pipe cfg addr\n");
1620 return ret;
1621 }
1622
1623 ret = ath10k_pci_diag_write_mem(ar, pipe_cfg_targ_addr,
1624 target_ce_config_wlan,
1625 sizeof(target_ce_config_wlan));
1626
1627 if (ret != 0) {
1628 ath10k_err("Failed to write pipe cfg: %d\n", ret);
1629 return ret;
1630 }
1631
1632 ret = ath10k_pci_diag_read_access(ar, pcie_state_targ_addr +
1633 offsetof(struct pcie_state,
1634 svc_to_pipe_map),
1635 &svc_to_pipe_map);
1636 if (ret != 0) {
1637 ath10k_err("Failed to get svc/pipe map: %d\n", ret);
1638 return ret;
1639 }
1640
1641 if (svc_to_pipe_map == 0) {
1642 ret = -EIO;
1643 ath10k_err("Invalid svc_to_pipe map\n");
1644 return ret;
1645 }
1646
1647 ret = ath10k_pci_diag_write_mem(ar, svc_to_pipe_map,
1648 target_service_to_ce_map_wlan,
1649 sizeof(target_service_to_ce_map_wlan));
1650 if (ret != 0) {
1651 ath10k_err("Failed to write svc/pipe map: %d\n", ret);
1652 return ret;
1653 }
1654
1655 ret = ath10k_pci_diag_read_access(ar, pcie_state_targ_addr +
1656 offsetof(struct pcie_state,
1657 config_flags),
1658 &pcie_config_flags);
1659 if (ret != 0) {
1660 ath10k_err("Failed to get pcie config_flags: %d\n", ret);
1661 return ret;
1662 }
1663
1664 pcie_config_flags &= ~PCIE_CONFIG_FLAG_ENABLE_L1;
1665
1666 ret = ath10k_pci_diag_write_mem(ar, pcie_state_targ_addr +
1667 offsetof(struct pcie_state, config_flags),
1668 &pcie_config_flags,
1669 sizeof(pcie_config_flags));
1670 if (ret != 0) {
1671 ath10k_err("Failed to write pcie config_flags: %d\n", ret);
1672 return ret;
1673 }
1674
1675 /* configure early allocation */
1676 ealloc_targ_addr = host_interest_item_address(HI_ITEM(hi_early_alloc));
1677
1678 ret = ath10k_pci_diag_read_access(ar, ealloc_targ_addr, &ealloc_value);
1679 if (ret != 0) {
1680 ath10k_err("Faile to get early alloc val: %d\n", ret);
1681 return ret;
1682 }
1683
1684 /* first bank is switched to IRAM */
1685 ealloc_value |= ((HI_EARLY_ALLOC_MAGIC << HI_EARLY_ALLOC_MAGIC_SHIFT) &
1686 HI_EARLY_ALLOC_MAGIC_MASK);
1687 ealloc_value |= ((1 << HI_EARLY_ALLOC_IRAM_BANKS_SHIFT) &
1688 HI_EARLY_ALLOC_IRAM_BANKS_MASK);
1689
1690 ret = ath10k_pci_diag_write_access(ar, ealloc_targ_addr, ealloc_value);
1691 if (ret != 0) {
1692 ath10k_err("Failed to set early alloc val: %d\n", ret);
1693 return ret;
1694 }
1695
1696 /* Tell Target to proceed with initialization */
1697 flag2_targ_addr = host_interest_item_address(HI_ITEM(hi_option_flag2));
1698
1699 ret = ath10k_pci_diag_read_access(ar, flag2_targ_addr, &flag2_value);
1700 if (ret != 0) {
1701 ath10k_err("Failed to get option val: %d\n", ret);
1702 return ret;
1703 }
1704
1705 flag2_value |= HI_OPTION_EARLY_CFG_DONE;
1706
1707 ret = ath10k_pci_diag_write_access(ar, flag2_targ_addr, flag2_value);
1708 if (ret != 0) {
1709 ath10k_err("Failed to set option val: %d\n", ret);
1710 return ret;
1711 }
1712
1713 return 0;
1714}
1715
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001716static int ath10k_pci_alloc_ce(struct ath10k *ar)
1717{
1718 int i, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001719
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001720 for (i = 0; i < CE_COUNT; i++) {
1721 ret = ath10k_ce_alloc_pipe(ar, i, &host_ce_config_wlan[i]);
1722 if (ret) {
1723 ath10k_err("failed to allocate copy engine pipe %d: %d\n",
1724 i, ret);
1725 return ret;
1726 }
1727 }
1728
1729 return 0;
1730}
1731
1732static void ath10k_pci_free_ce(struct ath10k *ar)
1733{
1734 int i;
1735
1736 for (i = 0; i < CE_COUNT; i++)
1737 ath10k_ce_free_pipe(ar, i);
1738}
Kalle Valo5e3dd152013-06-12 20:52:10 +03001739
1740static int ath10k_pci_ce_init(struct ath10k *ar)
1741{
1742 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior87263e52013-08-27 13:08:01 +02001743 struct ath10k_pci_pipe *pipe_info;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001744 const struct ce_attr *attr;
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001745 int pipe_num, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001746
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001747 for (pipe_num = 0; pipe_num < CE_COUNT; pipe_num++) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001748 pipe_info = &ar_pci->pipe_info[pipe_num];
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001749 pipe_info->ce_hdl = &ar_pci->ce_states[pipe_num];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001750 pipe_info->pipe_num = pipe_num;
1751 pipe_info->hif_ce_state = ar;
1752 attr = &host_ce_config_wlan[pipe_num];
1753
Michal Kazior145cc122014-08-22 14:23:32 +02001754 ret = ath10k_ce_init_pipe(ar, pipe_num, attr,
1755 ath10k_pci_ce_send_done,
1756 ath10k_pci_ce_recv_data);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001757 if (ret) {
1758 ath10k_err("failed to initialize copy engine pipe %d: %d\n",
1759 pipe_num, ret);
1760 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001761 }
1762
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001763 if (pipe_num == CE_COUNT - 1) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001764 /*
1765 * Reserve the ultimate CE for
1766 * diagnostic Window support
1767 */
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001768 ar_pci->ce_diag = pipe_info->ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001769 continue;
1770 }
1771
1772 pipe_info->buf_sz = (size_t) (attr->src_sz_max);
1773 }
1774
Kalle Valo5e3dd152013-06-12 20:52:10 +03001775 return 0;
1776}
1777
1778static void ath10k_pci_fw_interrupt_handler(struct ath10k *ar)
1779{
1780 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valob39712c2014-03-28 09:32:46 +02001781 u32 fw_indicator;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001782
Kalle Valob39712c2014-03-28 09:32:46 +02001783 fw_indicator = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001784
1785 if (fw_indicator & FW_IND_EVENT_PENDING) {
1786 /* ACK: clear Target-side pending event */
Kalle Valob39712c2014-03-28 09:32:46 +02001787 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001788 fw_indicator & ~FW_IND_EVENT_PENDING);
1789
1790 if (ar_pci->started) {
Kalle Valo0e9848c2014-08-25 08:37:37 +03001791 ath10k_pci_fw_crashed_dump(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001792 } else {
1793 /*
1794 * Probable Target failure before we're prepared
1795 * to handle it. Generally unexpected.
1796 */
1797 ath10k_warn("early firmware event indicated\n");
1798 }
1799 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001800}
1801
Michal Kaziorde013572014-05-14 16:56:16 +03001802/* this function effectively clears target memory controller assert line */
1803static void ath10k_pci_warm_reset_si0(struct ath10k *ar)
1804{
1805 u32 val;
1806
1807 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
1808 ath10k_pci_soc_write32(ar, SOC_RESET_CONTROL_ADDRESS,
1809 val | SOC_RESET_CONTROL_SI0_RST_MASK);
1810 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
1811
1812 msleep(10);
1813
1814 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
1815 ath10k_pci_soc_write32(ar, SOC_RESET_CONTROL_ADDRESS,
1816 val & ~SOC_RESET_CONTROL_SI0_RST_MASK);
1817 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
1818
1819 msleep(10);
1820}
1821
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001822static int ath10k_pci_warm_reset(struct ath10k *ar)
1823{
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001824 u32 val;
1825
Kalle Valo50f87a62014-03-28 09:32:52 +02001826 ath10k_dbg(ATH10K_DBG_BOOT, "boot warm reset\n");
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001827
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001828 /* debug */
1829 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1830 PCIE_INTR_CAUSE_ADDRESS);
1831 ath10k_dbg(ATH10K_DBG_BOOT, "boot host cpu intr cause: 0x%08x\n", val);
1832
1833 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1834 CPU_INTR_ADDRESS);
1835 ath10k_dbg(ATH10K_DBG_BOOT, "boot target cpu intr cause: 0x%08x\n",
1836 val);
1837
1838 /* disable pending irqs */
1839 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
1840 PCIE_INTR_ENABLE_ADDRESS, 0);
1841
1842 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
1843 PCIE_INTR_CLR_ADDRESS, ~0);
1844
1845 msleep(100);
1846
1847 /* clear fw indicator */
Kalle Valob39712c2014-03-28 09:32:46 +02001848 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS, 0);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001849
1850 /* clear target LF timer interrupts */
1851 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1852 SOC_LF_TIMER_CONTROL0_ADDRESS);
1853 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS +
1854 SOC_LF_TIMER_CONTROL0_ADDRESS,
1855 val & ~SOC_LF_TIMER_CONTROL0_ENABLE_MASK);
1856
1857 /* reset CE */
1858 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1859 SOC_RESET_CONTROL_ADDRESS);
1860 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
1861 val | SOC_RESET_CONTROL_CE_RST_MASK);
1862 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1863 SOC_RESET_CONTROL_ADDRESS);
1864 msleep(10);
1865
1866 /* unreset CE */
1867 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
1868 val & ~SOC_RESET_CONTROL_CE_RST_MASK);
1869 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1870 SOC_RESET_CONTROL_ADDRESS);
1871 msleep(10);
1872
Michal Kaziorde013572014-05-14 16:56:16 +03001873 ath10k_pci_warm_reset_si0(ar);
1874
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001875 /* debug */
1876 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1877 PCIE_INTR_CAUSE_ADDRESS);
1878 ath10k_dbg(ATH10K_DBG_BOOT, "boot host cpu intr cause: 0x%08x\n", val);
1879
1880 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1881 CPU_INTR_ADDRESS);
1882 ath10k_dbg(ATH10K_DBG_BOOT, "boot target cpu intr cause: 0x%08x\n",
1883 val);
1884
1885 /* CPU warm reset */
1886 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1887 SOC_RESET_CONTROL_ADDRESS);
1888 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
1889 val | SOC_RESET_CONTROL_CPU_WARM_RST_MASK);
1890
1891 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
1892 SOC_RESET_CONTROL_ADDRESS);
1893 ath10k_dbg(ATH10K_DBG_BOOT, "boot target reset state: 0x%08x\n", val);
1894
1895 msleep(100);
1896
1897 ath10k_dbg(ATH10K_DBG_BOOT, "boot warm reset complete\n");
1898
Michal Kaziorc0c378f2014-08-07 11:03:28 +02001899 return 0;
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001900}
1901
1902static int __ath10k_pci_hif_power_up(struct ath10k *ar, bool cold_reset)
Michal Kazior8c5c5362013-07-16 09:38:50 +02001903{
1904 int ret;
1905
1906 /*
1907 * Bring the target up cleanly.
1908 *
1909 * The target may be in an undefined state with an AUX-powered Target
1910 * and a Host in WoW mode. If the Host crashes, loses power, or is
1911 * restarted (without unloading the driver) then the Target is left
1912 * (aux) powered and running. On a subsequent driver load, the Target
1913 * is in an unexpected state. We try to catch that here in order to
1914 * reset the Target and retry the probe.
1915 */
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001916 if (cold_reset)
1917 ret = ath10k_pci_cold_reset(ar);
1918 else
1919 ret = ath10k_pci_warm_reset(ar);
1920
Michal Kazior5b2589f2013-11-08 08:01:30 +01001921 if (ret) {
1922 ath10k_err("failed to reset target: %d\n", ret);
Michal Kazior98563d52013-11-08 08:01:33 +01001923 goto err;
Michal Kazior5b2589f2013-11-08 08:01:30 +01001924 }
Michal Kazior8c5c5362013-07-16 09:38:50 +02001925
Michal Kazior8c5c5362013-07-16 09:38:50 +02001926 ret = ath10k_pci_ce_init(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02001927 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001928 ath10k_err("failed to initialize CE: %d\n", ret);
Michal Kaziorc0c378f2014-08-07 11:03:28 +02001929 goto err;
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001930 }
Michal Kazior8c5c5362013-07-16 09:38:50 +02001931
Michal Kaziorab977bd2013-11-25 14:06:26 +01001932 ret = ath10k_pci_request_early_irq(ar);
1933 if (ret) {
1934 ath10k_err("failed to request early irq: %d\n", ret);
Michal Kazior403d6272014-08-22 14:23:31 +02001935 goto err_ce;
Michal Kaziorab977bd2013-11-25 14:06:26 +01001936 }
1937
Michal Kazior98563d52013-11-08 08:01:33 +01001938 ret = ath10k_pci_wait_for_target_init(ar);
1939 if (ret) {
1940 ath10k_err("failed to wait for target to init: %d\n", ret);
Michal Kaziorab977bd2013-11-25 14:06:26 +01001941 goto err_free_early_irq;
Michal Kazior98563d52013-11-08 08:01:33 +01001942 }
1943
1944 ret = ath10k_pci_init_config(ar);
1945 if (ret) {
1946 ath10k_err("failed to setup init config: %d\n", ret);
Michal Kaziorab977bd2013-11-25 14:06:26 +01001947 goto err_free_early_irq;
Michal Kazior98563d52013-11-08 08:01:33 +01001948 }
Michal Kazior8c5c5362013-07-16 09:38:50 +02001949
1950 ret = ath10k_pci_wake_target_cpu(ar);
1951 if (ret) {
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001952 ath10k_err("could not wake up target CPU: %d\n", ret);
Michal Kaziorab977bd2013-11-25 14:06:26 +01001953 goto err_free_early_irq;
Michal Kazior8c5c5362013-07-16 09:38:50 +02001954 }
1955
1956 return 0;
1957
Michal Kaziorab977bd2013-11-25 14:06:26 +01001958err_free_early_irq:
1959 ath10k_pci_free_early_irq(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02001960err_ce:
1961 ath10k_pci_ce_deinit(ar);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001962 ath10k_pci_warm_reset(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02001963err:
1964 return ret;
1965}
1966
Michal Kazior61c95ce2014-05-14 16:56:16 +03001967static int ath10k_pci_hif_power_up_warm(struct ath10k *ar)
1968{
1969 int i, ret;
1970
1971 /*
1972 * Sometime warm reset succeeds after retries.
1973 *
1974 * FIXME: It might be possible to tune ath10k_pci_warm_reset() to work
1975 * at first try.
1976 */
1977 for (i = 0; i < ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS; i++) {
1978 ret = __ath10k_pci_hif_power_up(ar, false);
1979 if (ret == 0)
1980 break;
1981
1982 ath10k_warn("failed to warm reset (attempt %d out of %d): %d\n",
1983 i + 1, ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS, ret);
1984 }
1985
1986 return ret;
1987}
1988
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001989static int ath10k_pci_hif_power_up(struct ath10k *ar)
1990{
1991 int ret;
1992
Kalle Valo50f87a62014-03-28 09:32:52 +02001993 ath10k_dbg(ATH10K_DBG_BOOT, "boot hif power up\n");
1994
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01001995 /*
1996 * Hardware CUS232 version 2 has some issues with cold reset and the
1997 * preferred (and safer) way to perform a device reset is through a
1998 * warm reset.
1999 *
Michal Kazior61c95ce2014-05-14 16:56:16 +03002000 * Warm reset doesn't always work though so fall back to cold reset may
2001 * be necessary.
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002002 */
Michal Kazior61c95ce2014-05-14 16:56:16 +03002003 ret = ath10k_pci_hif_power_up_warm(ar);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002004 if (ret) {
Kalle Valo35098462014-03-28 09:32:27 +02002005 ath10k_warn("failed to power up target using warm reset: %d\n",
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002006 ret);
2007
Kalle Valo35098462014-03-28 09:32:27 +02002008 if (ath10k_pci_reset_mode == ATH10K_PCI_RESET_WARM_ONLY)
2009 return ret;
2010
2011 ath10k_warn("trying cold reset\n");
2012
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002013 ret = __ath10k_pci_hif_power_up(ar, true);
2014 if (ret) {
2015 ath10k_err("failed to power up target using cold reset too (%d)\n",
2016 ret);
2017 return ret;
2018 }
2019 }
2020
2021 return 0;
2022}
2023
Michal Kazior8c5c5362013-07-16 09:38:50 +02002024static void ath10k_pci_hif_power_down(struct ath10k *ar)
2025{
Kalle Valo50f87a62014-03-28 09:32:52 +02002026 ath10k_dbg(ATH10K_DBG_BOOT, "boot hif power down\n");
2027
Michal Kaziorab977bd2013-11-25 14:06:26 +01002028 ath10k_pci_free_early_irq(ar);
2029 ath10k_pci_kill_tasklet(ar);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002030 ath10k_pci_warm_reset(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02002031}
2032
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002033#ifdef CONFIG_PM
2034
2035#define ATH10K_PCI_PM_CONTROL 0x44
2036
2037static int ath10k_pci_hif_suspend(struct ath10k *ar)
2038{
2039 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2040 struct pci_dev *pdev = ar_pci->pdev;
2041 u32 val;
2042
2043 pci_read_config_dword(pdev, ATH10K_PCI_PM_CONTROL, &val);
2044
2045 if ((val & 0x000000ff) != 0x3) {
2046 pci_save_state(pdev);
2047 pci_disable_device(pdev);
2048 pci_write_config_dword(pdev, ATH10K_PCI_PM_CONTROL,
2049 (val & 0xffffff00) | 0x03);
2050 }
2051
2052 return 0;
2053}
2054
2055static int ath10k_pci_hif_resume(struct ath10k *ar)
2056{
2057 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2058 struct pci_dev *pdev = ar_pci->pdev;
2059 u32 val;
2060
2061 pci_read_config_dword(pdev, ATH10K_PCI_PM_CONTROL, &val);
2062
2063 if ((val & 0x000000ff) != 0) {
2064 pci_restore_state(pdev);
2065 pci_write_config_dword(pdev, ATH10K_PCI_PM_CONTROL,
2066 val & 0xffffff00);
2067 /*
2068 * Suspend/Resume resets the PCI configuration space,
2069 * so we have to re-disable the RETRY_TIMEOUT register (0x41)
2070 * to keep PCI Tx retries from interfering with C3 CPU state
2071 */
2072 pci_read_config_dword(pdev, 0x40, &val);
2073
2074 if ((val & 0x0000ff00) != 0)
2075 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
2076 }
2077
2078 return 0;
2079}
2080#endif
2081
Kalle Valo5e3dd152013-06-12 20:52:10 +03002082static const struct ath10k_hif_ops ath10k_pci_hif_ops = {
Michal Kazior726346f2014-02-27 18:50:04 +02002083 .tx_sg = ath10k_pci_hif_tx_sg,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002084 .exchange_bmi_msg = ath10k_pci_hif_exchange_bmi_msg,
2085 .start = ath10k_pci_hif_start,
2086 .stop = ath10k_pci_hif_stop,
2087 .map_service_to_pipe = ath10k_pci_hif_map_service_to_pipe,
2088 .get_default_pipe = ath10k_pci_hif_get_default_pipe,
2089 .send_complete_check = ath10k_pci_hif_send_complete_check,
Michal Kaziore799bbf2013-07-05 16:15:12 +03002090 .set_callbacks = ath10k_pci_hif_set_callbacks,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002091 .get_free_queue_number = ath10k_pci_hif_get_free_queue_number,
Michal Kazior8c5c5362013-07-16 09:38:50 +02002092 .power_up = ath10k_pci_hif_power_up,
2093 .power_down = ath10k_pci_hif_power_down,
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002094#ifdef CONFIG_PM
2095 .suspend = ath10k_pci_hif_suspend,
2096 .resume = ath10k_pci_hif_resume,
2097#endif
Kalle Valo5e3dd152013-06-12 20:52:10 +03002098};
2099
2100static void ath10k_pci_ce_tasklet(unsigned long ptr)
2101{
Michal Kazior87263e52013-08-27 13:08:01 +02002102 struct ath10k_pci_pipe *pipe = (struct ath10k_pci_pipe *)ptr;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002103 struct ath10k_pci *ar_pci = pipe->ar_pci;
2104
2105 ath10k_ce_per_engine_service(ar_pci->ar, pipe->pipe_num);
2106}
2107
2108static void ath10k_msi_err_tasklet(unsigned long data)
2109{
2110 struct ath10k *ar = (struct ath10k *)data;
2111
2112 ath10k_pci_fw_interrupt_handler(ar);
2113}
2114
2115/*
2116 * Handler for a per-engine interrupt on a PARTICULAR CE.
2117 * This is used in cases where each CE has a private MSI interrupt.
2118 */
2119static irqreturn_t ath10k_pci_per_engine_handler(int irq, void *arg)
2120{
2121 struct ath10k *ar = arg;
2122 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2123 int ce_id = irq - ar_pci->pdev->irq - MSI_ASSIGN_CE_INITIAL;
2124
Dan Carpentere5742672013-06-18 10:28:46 +03002125 if (ce_id < 0 || ce_id >= ARRAY_SIZE(ar_pci->pipe_info)) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002126 ath10k_warn("unexpected/invalid irq %d ce_id %d\n", irq, ce_id);
2127 return IRQ_HANDLED;
2128 }
2129
2130 /*
2131 * NOTE: We are able to derive ce_id from irq because we
2132 * use a one-to-one mapping for CE's 0..5.
2133 * CE's 6 & 7 do not use interrupts at all.
2134 *
2135 * This mapping must be kept in sync with the mapping
2136 * used by firmware.
2137 */
2138 tasklet_schedule(&ar_pci->pipe_info[ce_id].intr);
2139 return IRQ_HANDLED;
2140}
2141
2142static irqreturn_t ath10k_pci_msi_fw_handler(int irq, void *arg)
2143{
2144 struct ath10k *ar = arg;
2145 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2146
2147 tasklet_schedule(&ar_pci->msi_fw_err);
2148 return IRQ_HANDLED;
2149}
2150
2151/*
2152 * Top-level interrupt handler for all PCI interrupts from a Target.
2153 * When a block of MSI interrupts is allocated, this top-level handler
2154 * is not used; instead, we directly call the correct sub-handler.
2155 */
2156static irqreturn_t ath10k_pci_interrupt_handler(int irq, void *arg)
2157{
2158 struct ath10k *ar = arg;
2159 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2160
2161 if (ar_pci->num_msi_intrs == 0) {
Michal Kaziore5398872013-11-25 14:06:20 +01002162 if (!ath10k_pci_irq_pending(ar))
2163 return IRQ_NONE;
2164
Michal Kazior26852182013-11-25 14:06:25 +01002165 ath10k_pci_disable_and_clear_legacy_irq(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002166 }
2167
2168 tasklet_schedule(&ar_pci->intr_tq);
2169
2170 return IRQ_HANDLED;
2171}
2172
Michal Kaziorab977bd2013-11-25 14:06:26 +01002173static void ath10k_pci_early_irq_tasklet(unsigned long data)
2174{
2175 struct ath10k *ar = (struct ath10k *)data;
Michal Kaziorab977bd2013-11-25 14:06:26 +01002176 u32 fw_ind;
Michal Kaziorab977bd2013-11-25 14:06:26 +01002177
Kalle Valob39712c2014-03-28 09:32:46 +02002178 fw_ind = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
Michal Kaziorab977bd2013-11-25 14:06:26 +01002179 if (fw_ind & FW_IND_EVENT_PENDING) {
Kalle Valob39712c2014-03-28 09:32:46 +02002180 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS,
Michal Kaziorab977bd2013-11-25 14:06:26 +01002181 fw_ind & ~FW_IND_EVENT_PENDING);
Kalle Valo0e9848c2014-08-25 08:37:37 +03002182 ath10k_pci_fw_crashed_dump(ar);
Michal Kaziorab977bd2013-11-25 14:06:26 +01002183 }
2184
Michal Kaziorab977bd2013-11-25 14:06:26 +01002185 ath10k_pci_enable_legacy_irq(ar);
2186}
2187
Kalle Valo5e3dd152013-06-12 20:52:10 +03002188static void ath10k_pci_tasklet(unsigned long data)
2189{
2190 struct ath10k *ar = (struct ath10k *)data;
2191 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2192
2193 ath10k_pci_fw_interrupt_handler(ar); /* FIXME: Handle FW error */
2194 ath10k_ce_per_engine_service_any(ar);
2195
Michal Kazior26852182013-11-25 14:06:25 +01002196 /* Re-enable legacy irq that was disabled in the irq handler */
2197 if (ar_pci->num_msi_intrs == 0)
2198 ath10k_pci_enable_legacy_irq(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002199}
2200
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002201static int ath10k_pci_request_irq_msix(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002202{
2203 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002204 int ret, i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002205
2206 ret = request_irq(ar_pci->pdev->irq + MSI_ASSIGN_FW,
2207 ath10k_pci_msi_fw_handler,
2208 IRQF_SHARED, "ath10k_pci", ar);
Michal Kazior591ecdb2013-07-31 10:55:15 +02002209 if (ret) {
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002210 ath10k_warn("failed to request MSI-X fw irq %d: %d\n",
Michal Kazior591ecdb2013-07-31 10:55:15 +02002211 ar_pci->pdev->irq + MSI_ASSIGN_FW, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002212 return ret;
Michal Kazior591ecdb2013-07-31 10:55:15 +02002213 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002214
2215 for (i = MSI_ASSIGN_CE_INITIAL; i <= MSI_ASSIGN_CE_MAX; i++) {
2216 ret = request_irq(ar_pci->pdev->irq + i,
2217 ath10k_pci_per_engine_handler,
2218 IRQF_SHARED, "ath10k_pci", ar);
2219 if (ret) {
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002220 ath10k_warn("failed to request MSI-X ce irq %d: %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03002221 ar_pci->pdev->irq + i, ret);
2222
Michal Kazior87b14232013-06-26 08:50:50 +02002223 for (i--; i >= MSI_ASSIGN_CE_INITIAL; i--)
2224 free_irq(ar_pci->pdev->irq + i, ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002225
Michal Kazior87b14232013-06-26 08:50:50 +02002226 free_irq(ar_pci->pdev->irq + MSI_ASSIGN_FW, ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002227 return ret;
2228 }
2229 }
2230
Kalle Valo5e3dd152013-06-12 20:52:10 +03002231 return 0;
2232}
2233
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002234static int ath10k_pci_request_irq_msi(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002235{
2236 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2237 int ret;
2238
2239 ret = request_irq(ar_pci->pdev->irq,
2240 ath10k_pci_interrupt_handler,
2241 IRQF_SHARED, "ath10k_pci", ar);
Kalle Valof3782742013-10-17 11:36:15 +03002242 if (ret) {
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002243 ath10k_warn("failed to request MSI irq %d: %d\n",
2244 ar_pci->pdev->irq, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002245 return ret;
Kalle Valof3782742013-10-17 11:36:15 +03002246 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002247
Kalle Valo5e3dd152013-06-12 20:52:10 +03002248 return 0;
2249}
2250
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002251static int ath10k_pci_request_irq_legacy(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002252{
2253 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002254 int ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002255
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002256 ret = request_irq(ar_pci->pdev->irq,
2257 ath10k_pci_interrupt_handler,
2258 IRQF_SHARED, "ath10k_pci", ar);
Kalle Valof3782742013-10-17 11:36:15 +03002259 if (ret) {
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002260 ath10k_warn("failed to request legacy irq %d: %d\n",
2261 ar_pci->pdev->irq, ret);
Kalle Valof3782742013-10-17 11:36:15 +03002262 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002263 }
2264
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002265 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002266}
2267
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002268static int ath10k_pci_request_irq(struct ath10k *ar)
2269{
2270 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2271
2272 switch (ar_pci->num_msi_intrs) {
2273 case 0:
2274 return ath10k_pci_request_irq_legacy(ar);
2275 case 1:
2276 return ath10k_pci_request_irq_msi(ar);
2277 case MSI_NUM_REQUEST:
2278 return ath10k_pci_request_irq_msix(ar);
2279 }
2280
2281 ath10k_warn("unknown irq configuration upon request\n");
2282 return -EINVAL;
2283}
2284
2285static void ath10k_pci_free_irq(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002286{
2287 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2288 int i;
2289
2290 /* There's at least one interrupt irregardless whether its legacy INTR
2291 * or MSI or MSI-X */
2292 for (i = 0; i < max(1, ar_pci->num_msi_intrs); i++)
2293 free_irq(ar_pci->pdev->irq + i, ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002294}
2295
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002296static void ath10k_pci_init_irq_tasklets(struct ath10k *ar)
2297{
2298 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2299 int i;
2300
2301 tasklet_init(&ar_pci->intr_tq, ath10k_pci_tasklet, (unsigned long)ar);
2302 tasklet_init(&ar_pci->msi_fw_err, ath10k_msi_err_tasklet,
2303 (unsigned long)ar);
Michal Kaziorab977bd2013-11-25 14:06:26 +01002304 tasklet_init(&ar_pci->early_irq_tasklet, ath10k_pci_early_irq_tasklet,
2305 (unsigned long)ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002306
2307 for (i = 0; i < CE_COUNT; i++) {
2308 ar_pci->pipe_info[i].ar_pci = ar_pci;
2309 tasklet_init(&ar_pci->pipe_info[i].intr, ath10k_pci_ce_tasklet,
2310 (unsigned long)&ar_pci->pipe_info[i]);
2311 }
2312}
2313
2314static int ath10k_pci_init_irq(struct ath10k *ar)
2315{
2316 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2317 int ret;
2318
2319 ath10k_pci_init_irq_tasklets(ar);
2320
Michal Kazior403d6272014-08-22 14:23:31 +02002321 if (ath10k_pci_irq_mode != ATH10K_PCI_IRQ_AUTO)
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002322 ath10k_info("limiting irq mode to: %d\n", ath10k_pci_irq_mode);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002323
2324 /* Try MSI-X */
Michal Kazior0edf2572014-08-07 11:03:29 +02002325 if (ath10k_pci_irq_mode == ATH10K_PCI_IRQ_AUTO) {
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002326 ar_pci->num_msi_intrs = MSI_NUM_REQUEST;
Alexander Gordeev5ad68672014-02-13 17:50:02 +02002327 ret = pci_enable_msi_range(ar_pci->pdev, ar_pci->num_msi_intrs,
2328 ar_pci->num_msi_intrs);
2329 if (ret > 0)
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002330 return 0;
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002331
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002332 /* fall-through */
2333 }
2334
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002335 /* Try MSI */
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002336 if (ath10k_pci_irq_mode != ATH10K_PCI_IRQ_LEGACY) {
2337 ar_pci->num_msi_intrs = 1;
2338 ret = pci_enable_msi(ar_pci->pdev);
2339 if (ret == 0)
2340 return 0;
2341
2342 /* fall-through */
2343 }
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002344
2345 /* Try legacy irq
2346 *
2347 * A potential race occurs here: The CORE_BASE write
2348 * depends on target correctly decoding AXI address but
2349 * host won't know when target writes BAR to CORE_CTRL.
2350 * This write might get lost if target has NOT written BAR.
2351 * For now, fix the race by repeating the write in below
2352 * synchronization checking. */
2353 ar_pci->num_msi_intrs = 0;
2354
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002355 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
2356 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002357
2358 return 0;
2359}
2360
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002361static void ath10k_pci_deinit_irq_legacy(struct ath10k *ar)
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002362{
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002363 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
2364 0);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002365}
2366
2367static int ath10k_pci_deinit_irq(struct ath10k *ar)
2368{
2369 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2370
2371 switch (ar_pci->num_msi_intrs) {
2372 case 0:
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002373 ath10k_pci_deinit_irq_legacy(ar);
2374 return 0;
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002375 case 1:
2376 /* fall-through */
2377 case MSI_NUM_REQUEST:
2378 pci_disable_msi(ar_pci->pdev);
2379 return 0;
Alexander Gordeevbb8b6212014-02-13 17:50:01 +02002380 default:
2381 pci_disable_msi(ar_pci->pdev);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002382 }
2383
2384 ath10k_warn("unknown irq configuration upon deinit\n");
2385 return -EINVAL;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002386}
2387
Michal Kaziord7fb47f2013-11-08 08:01:26 +01002388static int ath10k_pci_wait_for_target_init(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002389{
2390 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo0399eca2014-03-28 09:32:21 +02002391 unsigned long timeout;
Kalle Valo0399eca2014-03-28 09:32:21 +02002392 u32 val;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002393
Kalle Valo50f87a62014-03-28 09:32:52 +02002394 ath10k_dbg(ATH10K_DBG_BOOT, "boot waiting target to initialise\n");
2395
Kalle Valo0399eca2014-03-28 09:32:21 +02002396 timeout = jiffies + msecs_to_jiffies(ATH10K_PCI_TARGET_WAIT);
2397
2398 do {
2399 val = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
2400
Kalle Valo50f87a62014-03-28 09:32:52 +02002401 ath10k_dbg(ATH10K_DBG_BOOT, "boot target indicator %x\n", val);
2402
Kalle Valo0399eca2014-03-28 09:32:21 +02002403 /* target should never return this */
2404 if (val == 0xffffffff)
2405 continue;
2406
Michal Kazior7710cd22014-04-23 19:30:04 +03002407 /* the device has crashed so don't bother trying anymore */
2408 if (val & FW_IND_EVENT_PENDING)
2409 break;
2410
Kalle Valo0399eca2014-03-28 09:32:21 +02002411 if (val & FW_IND_INITIALIZED)
2412 break;
2413
Kalle Valo5e3dd152013-06-12 20:52:10 +03002414 if (ar_pci->num_msi_intrs == 0)
2415 /* Fix potential race by repeating CORE_BASE writes */
Michal Kaziorc947a9e2014-08-22 14:23:30 +02002416 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
2417 PCIE_INTR_ENABLE_ADDRESS,
2418 PCIE_INTR_FIRMWARE_MASK |
2419 PCIE_INTR_CE_MASK_ALL);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002420
Kalle Valo0399eca2014-03-28 09:32:21 +02002421 mdelay(10);
2422 } while (time_before(jiffies, timeout));
2423
Michal Kazior6a4f6e12014-04-23 19:30:03 +03002424 if (val == 0xffffffff) {
2425 ath10k_err("failed to read device register, device is gone\n");
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002426 return -EIO;
Michal Kazior6a4f6e12014-04-23 19:30:03 +03002427 }
2428
Michal Kazior7710cd22014-04-23 19:30:04 +03002429 if (val & FW_IND_EVENT_PENDING) {
2430 ath10k_warn("device has crashed during init\n");
Michal Kazior1a4ab282014-05-14 16:56:16 +03002431 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS,
2432 val & ~FW_IND_EVENT_PENDING);
Kalle Valo0e9848c2014-08-25 08:37:37 +03002433 ath10k_pci_fw_crashed_dump(ar);
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002434 return -ECOMM;
Michal Kazior7710cd22014-04-23 19:30:04 +03002435 }
2436
Michal Kazior6a4f6e12014-04-23 19:30:03 +03002437 if (!(val & FW_IND_INITIALIZED)) {
Kalle Valo0399eca2014-03-28 09:32:21 +02002438 ath10k_err("failed to receive initialized event from target: %08x\n",
2439 val);
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002440 return -ETIMEDOUT;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002441 }
2442
Kalle Valo50f87a62014-03-28 09:32:52 +02002443 ath10k_dbg(ATH10K_DBG_BOOT, "boot target initialised\n");
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002444 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002445}
2446
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002447static int ath10k_pci_cold_reset(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002448{
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002449 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002450 u32 val;
2451
Kalle Valo50f87a62014-03-28 09:32:52 +02002452 ath10k_dbg(ATH10K_DBG_BOOT, "boot cold reset\n");
2453
Kalle Valo5e3dd152013-06-12 20:52:10 +03002454 /* Put Target, including PCIe, into RESET. */
Kalle Valoe479ed42013-09-01 10:01:53 +03002455 val = ath10k_pci_reg_read32(ar, SOC_GLOBAL_RESET_ADDRESS);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002456 val |= 1;
Kalle Valoe479ed42013-09-01 10:01:53 +03002457 ath10k_pci_reg_write32(ar, SOC_GLOBAL_RESET_ADDRESS, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002458
2459 for (i = 0; i < ATH_PCI_RESET_WAIT_MAX; i++) {
Kalle Valoe479ed42013-09-01 10:01:53 +03002460 if (ath10k_pci_reg_read32(ar, RTC_STATE_ADDRESS) &
Kalle Valo5e3dd152013-06-12 20:52:10 +03002461 RTC_STATE_COLD_RESET_MASK)
2462 break;
2463 msleep(1);
2464 }
2465
2466 /* Pull Target, including PCIe, out of RESET. */
2467 val &= ~1;
Kalle Valoe479ed42013-09-01 10:01:53 +03002468 ath10k_pci_reg_write32(ar, SOC_GLOBAL_RESET_ADDRESS, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002469
2470 for (i = 0; i < ATH_PCI_RESET_WAIT_MAX; i++) {
Kalle Valoe479ed42013-09-01 10:01:53 +03002471 if (!(ath10k_pci_reg_read32(ar, RTC_STATE_ADDRESS) &
Kalle Valo5e3dd152013-06-12 20:52:10 +03002472 RTC_STATE_COLD_RESET_MASK))
2473 break;
2474 msleep(1);
2475 }
2476
Kalle Valo50f87a62014-03-28 09:32:52 +02002477 ath10k_dbg(ATH10K_DBG_BOOT, "boot cold reset complete\n");
2478
Michal Kazior5b2589f2013-11-08 08:01:30 +01002479 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002480}
2481
Michal Kazior2986e3e2014-08-07 11:03:30 +02002482static int ath10k_pci_claim(struct ath10k *ar)
2483{
2484 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2485 struct pci_dev *pdev = ar_pci->pdev;
2486 u32 lcr_val;
2487 int ret;
2488
2489 pci_set_drvdata(pdev, ar);
2490
2491 ret = pci_enable_device(pdev);
2492 if (ret) {
2493 ath10k_err("failed to enable pci device: %d\n", ret);
2494 return ret;
2495 }
2496
2497 ret = pci_request_region(pdev, BAR_NUM, "ath");
2498 if (ret) {
2499 ath10k_err("failed to request region BAR%d: %d\n", BAR_NUM,
2500 ret);
2501 goto err_device;
2502 }
2503
2504 /* Target expects 32 bit DMA. Enforce it. */
2505 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
2506 if (ret) {
2507 ath10k_err("failed to set dma mask to 32-bit: %d\n", ret);
2508 goto err_region;
2509 }
2510
2511 ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
2512 if (ret) {
2513 ath10k_err("failed to set consistent dma mask to 32-bit: %d\n",
2514 ret);
2515 goto err_region;
2516 }
2517
2518 pci_set_master(pdev);
2519
2520 /* Workaround: Disable ASPM */
2521 pci_read_config_dword(pdev, 0x80, &lcr_val);
2522 pci_write_config_dword(pdev, 0x80, (lcr_val & 0xffffff00));
2523
2524 /* Arrange for access to Target SoC registers. */
2525 ar_pci->mem = pci_iomap(pdev, BAR_NUM, 0);
2526 if (!ar_pci->mem) {
2527 ath10k_err("failed to iomap BAR%d\n", BAR_NUM);
2528 ret = -EIO;
2529 goto err_master;
2530 }
2531
2532 ath10k_dbg(ATH10K_DBG_BOOT, "boot pci_mem 0x%p\n", ar_pci->mem);
2533 return 0;
2534
2535err_master:
2536 pci_clear_master(pdev);
2537
2538err_region:
2539 pci_release_region(pdev, BAR_NUM);
2540
2541err_device:
2542 pci_disable_device(pdev);
2543
2544 return ret;
2545}
2546
2547static void ath10k_pci_release(struct ath10k *ar)
2548{
2549 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2550 struct pci_dev *pdev = ar_pci->pdev;
2551
2552 pci_iounmap(pdev, ar_pci->mem);
2553 pci_release_region(pdev, BAR_NUM);
2554 pci_clear_master(pdev);
2555 pci_disable_device(pdev);
2556}
2557
Kalle Valo5e3dd152013-06-12 20:52:10 +03002558static int ath10k_pci_probe(struct pci_dev *pdev,
2559 const struct pci_device_id *pci_dev)
2560{
Kalle Valo5e3dd152013-06-12 20:52:10 +03002561 int ret = 0;
2562 struct ath10k *ar;
2563 struct ath10k_pci *ar_pci;
Michal Kazior2986e3e2014-08-07 11:03:30 +02002564 u32 chip_id;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002565
Kalle Valo50f87a62014-03-28 09:32:52 +02002566 ath10k_dbg(ATH10K_DBG_PCI, "pci probe\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002567
Michal Kaziore7b54192014-08-07 11:03:27 +02002568 ar = ath10k_core_create(sizeof(*ar_pci), &pdev->dev,
2569 &ath10k_pci_hif_ops);
2570 if (!ar) {
2571 ath10k_err("failed to allocate core\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002572 return -ENOMEM;
Michal Kaziore7b54192014-08-07 11:03:27 +02002573 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002574
Michal Kaziore7b54192014-08-07 11:03:27 +02002575 ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002576 ar_pci->pdev = pdev;
2577 ar_pci->dev = &pdev->dev;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002578 ar_pci->ar = ar;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002579
Michal Kazior2986e3e2014-08-07 11:03:30 +02002580 spin_lock_init(&ar_pci->ce_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002581
Michal Kazior2986e3e2014-08-07 11:03:30 +02002582 ret = ath10k_pci_claim(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002583 if (ret) {
Michal Kazior2986e3e2014-08-07 11:03:30 +02002584 ath10k_err("failed to claim device: %d\n", ret);
Michal Kaziore7b54192014-08-07 11:03:27 +02002585 goto err_core_destroy;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002586 }
2587
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002588 ret = ath10k_pci_wake(ar);
Kalle Valoe01ae682013-09-01 11:22:14 +03002589 if (ret) {
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002590 ath10k_err("failed to wake up: %d\n", ret);
Michal Kazior2986e3e2014-08-07 11:03:30 +02002591 goto err_release;
Kalle Valoe01ae682013-09-01 11:22:14 +03002592 }
2593
Kalle Valo233eb972013-10-16 16:46:11 +03002594 chip_id = ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS);
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002595 if (chip_id == 0xffffffff) {
2596 ath10k_err("failed to get chip id\n");
2597 goto err_sleep;
2598 }
Kalle Valoe01ae682013-09-01 11:22:14 +03002599
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002600 ret = ath10k_pci_alloc_ce(ar);
2601 if (ret) {
2602 ath10k_err("failed to allocate copy engine pipes: %d\n", ret);
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002603 goto err_sleep;
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002604 }
2605
Michal Kazior403d6272014-08-22 14:23:31 +02002606 ath10k_pci_ce_deinit(ar);
2607
2608 ret = ath10k_ce_disable_interrupts(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002609 if (ret) {
Michal Kazior403d6272014-08-22 14:23:31 +02002610 ath10k_err("failed to disable copy engine interrupts: %d\n",
2611 ret);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002612 goto err_free_ce;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002613 }
2614
Michal Kazior403d6272014-08-22 14:23:31 +02002615 ret = ath10k_pci_init_irq(ar);
2616 if (ret) {
2617 ath10k_err("failed to init irqs: %d\n", ret);
2618 goto err_free_ce;
2619 }
2620
2621 ath10k_info("pci irq %s interrupts %d irq_mode %d reset_mode %d\n",
2622 ath10k_pci_get_irq_method(ar), ar_pci->num_msi_intrs,
2623 ath10k_pci_irq_mode, ath10k_pci_reset_mode);
2624
2625 ret = ath10k_core_register(ar, chip_id);
2626 if (ret) {
2627 ath10k_err("failed to register driver core: %d\n", ret);
2628 goto err_deinit_irq;
2629 }
2630
Kalle Valo5e3dd152013-06-12 20:52:10 +03002631 return 0;
2632
Michal Kazior403d6272014-08-22 14:23:31 +02002633err_deinit_irq:
2634 ath10k_pci_deinit_irq(ar);
2635
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002636err_free_ce:
2637 ath10k_pci_free_ce(ar);
Michal Kazior2986e3e2014-08-07 11:03:30 +02002638
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002639err_sleep:
2640 ath10k_pci_sleep(ar);
Michal Kazior2986e3e2014-08-07 11:03:30 +02002641
2642err_release:
2643 ath10k_pci_release(ar);
2644
Michal Kaziore7b54192014-08-07 11:03:27 +02002645err_core_destroy:
Kalle Valo5e3dd152013-06-12 20:52:10 +03002646 ath10k_core_destroy(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002647
2648 return ret;
2649}
2650
2651static void ath10k_pci_remove(struct pci_dev *pdev)
2652{
2653 struct ath10k *ar = pci_get_drvdata(pdev);
2654 struct ath10k_pci *ar_pci;
2655
Kalle Valo50f87a62014-03-28 09:32:52 +02002656 ath10k_dbg(ATH10K_DBG_PCI, "pci remove\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002657
2658 if (!ar)
2659 return;
2660
2661 ar_pci = ath10k_pci_priv(ar);
2662
2663 if (!ar_pci)
2664 return;
2665
Kalle Valo5e3dd152013-06-12 20:52:10 +03002666 ath10k_core_unregister(ar);
Michal Kazior403d6272014-08-22 14:23:31 +02002667 ath10k_pci_deinit_irq(ar);
2668 ath10k_pci_ce_deinit(ar);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002669 ath10k_pci_free_ce(ar);
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002670 ath10k_pci_sleep(ar);
Michal Kazior2986e3e2014-08-07 11:03:30 +02002671 ath10k_pci_release(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002672 ath10k_core_destroy(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002673}
2674
Kalle Valo5e3dd152013-06-12 20:52:10 +03002675MODULE_DEVICE_TABLE(pci, ath10k_pci_id_table);
2676
2677static struct pci_driver ath10k_pci_driver = {
2678 .name = "ath10k_pci",
2679 .id_table = ath10k_pci_id_table,
2680 .probe = ath10k_pci_probe,
2681 .remove = ath10k_pci_remove,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002682};
2683
2684static int __init ath10k_pci_init(void)
2685{
2686 int ret;
2687
2688 ret = pci_register_driver(&ath10k_pci_driver);
2689 if (ret)
Michal Kazior1d2b48d2013-11-08 08:01:34 +01002690 ath10k_err("failed to register PCI driver: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002691
2692 return ret;
2693}
2694module_init(ath10k_pci_init);
2695
2696static void __exit ath10k_pci_exit(void)
2697{
2698 pci_unregister_driver(&ath10k_pci_driver);
2699}
2700
2701module_exit(ath10k_pci_exit);
2702
2703MODULE_AUTHOR("Qualcomm Atheros");
2704MODULE_DESCRIPTION("Driver support for Atheros QCA988X PCIe devices");
2705MODULE_LICENSE("Dual BSD/GPL");
Michal Kazior24c88f72014-07-25 13:32:17 +02002706MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" QCA988X_HW_2_0_FW_3_FILE);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002707MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" QCA988X_HW_2_0_BOARD_DATA_FILE);