1 // SPDX-License-Identifier: ISC
3 * Copyright (c) 2005-2011 Atheros Communications Inc.
4 * Copyright (c) 2011-2017 Qualcomm Atheros, Inc.
8 #include <linux/module.h>
9 #include <linux/interrupt.h>
10 #include <linux/spinlock.h>
11 #include <linux/bitops.h>
17 #include "targaddrs.h"
26 enum ath10k_pci_reset_mode
{
27 ATH10K_PCI_RESET_AUTO
= 0,
28 ATH10K_PCI_RESET_WARM_ONLY
= 1,
31 static unsigned int ath10k_pci_irq_mode
= ATH10K_PCI_IRQ_AUTO
;
32 static unsigned int ath10k_pci_reset_mode
= ATH10K_PCI_RESET_AUTO
;
34 module_param_named(irq_mode
, ath10k_pci_irq_mode
, uint
, 0644);
35 MODULE_PARM_DESC(irq_mode
, "0: auto, 1: legacy, 2: msi (default: 0)");
37 module_param_named(reset_mode
, ath10k_pci_reset_mode
, uint
, 0644);
38 MODULE_PARM_DESC(reset_mode
, "0: auto, 1: warm only (default: 0)");
40 /* how long wait to wait for target to initialise, in ms */
41 #define ATH10K_PCI_TARGET_WAIT 3000
42 #define ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS 3
44 /* Maximum number of bytes that can be handled atomically by
45 * diag read and write.
47 #define ATH10K_DIAG_TRANSFER_LIMIT 0x5000
49 #define QCA99X0_PCIE_BAR0_START_REG 0x81030
50 #define QCA99X0_CPU_MEM_ADDR_REG 0x4d00c
51 #define QCA99X0_CPU_MEM_DATA_REG 0x4d010
53 static const struct pci_device_id ath10k_pci_id_table
[] = {
54 /* PCI-E QCA988X V2 (Ubiquiti branded) */
55 { PCI_VDEVICE(UBIQUITI
, QCA988X_2_0_DEVICE_ID_UBNT
) },
57 { PCI_VDEVICE(ATHEROS
, QCA988X_2_0_DEVICE_ID
) }, /* PCI-E QCA988X V2 */
58 { PCI_VDEVICE(ATHEROS
, QCA6164_2_1_DEVICE_ID
) }, /* PCI-E QCA6164 V2.1 */
59 { PCI_VDEVICE(ATHEROS
, QCA6174_2_1_DEVICE_ID
) }, /* PCI-E QCA6174 V2.1 */
60 { PCI_VDEVICE(ATHEROS
, QCA99X0_2_0_DEVICE_ID
) }, /* PCI-E QCA99X0 V2 */
61 { PCI_VDEVICE(ATHEROS
, QCA9888_2_0_DEVICE_ID
) }, /* PCI-E QCA9888 V2 */
62 { PCI_VDEVICE(ATHEROS
, QCA9984_1_0_DEVICE_ID
) }, /* PCI-E QCA9984 V1 */
63 { PCI_VDEVICE(ATHEROS
, QCA9377_1_0_DEVICE_ID
) }, /* PCI-E QCA9377 V1 */
64 { PCI_VDEVICE(ATHEROS
, QCA9887_1_0_DEVICE_ID
) }, /* PCI-E QCA9887 */
68 static const struct ath10k_pci_supp_chip ath10k_pci_supp_chips
[] = {
69 /* QCA988X pre 2.0 chips are not supported because they need some nasty
70 * hacks. ath10k doesn't have them and these devices crash horribly
73 { QCA988X_2_0_DEVICE_ID_UBNT
, QCA988X_HW_2_0_CHIP_ID_REV
},
74 { QCA988X_2_0_DEVICE_ID
, QCA988X_HW_2_0_CHIP_ID_REV
},
76 { QCA6164_2_1_DEVICE_ID
, QCA6174_HW_2_1_CHIP_ID_REV
},
77 { QCA6164_2_1_DEVICE_ID
, QCA6174_HW_2_2_CHIP_ID_REV
},
78 { QCA6164_2_1_DEVICE_ID
, QCA6174_HW_3_0_CHIP_ID_REV
},
79 { QCA6164_2_1_DEVICE_ID
, QCA6174_HW_3_1_CHIP_ID_REV
},
80 { QCA6164_2_1_DEVICE_ID
, QCA6174_HW_3_2_CHIP_ID_REV
},
82 { QCA6174_2_1_DEVICE_ID
, QCA6174_HW_2_1_CHIP_ID_REV
},
83 { QCA6174_2_1_DEVICE_ID
, QCA6174_HW_2_2_CHIP_ID_REV
},
84 { QCA6174_2_1_DEVICE_ID
, QCA6174_HW_3_0_CHIP_ID_REV
},
85 { QCA6174_2_1_DEVICE_ID
, QCA6174_HW_3_1_CHIP_ID_REV
},
86 { QCA6174_2_1_DEVICE_ID
, QCA6174_HW_3_2_CHIP_ID_REV
},
88 { QCA99X0_2_0_DEVICE_ID
, QCA99X0_HW_2_0_CHIP_ID_REV
},
90 { QCA9984_1_0_DEVICE_ID
, QCA9984_HW_1_0_CHIP_ID_REV
},
92 { QCA9888_2_0_DEVICE_ID
, QCA9888_HW_2_0_CHIP_ID_REV
},
94 { QCA9377_1_0_DEVICE_ID
, QCA9377_HW_1_0_CHIP_ID_REV
},
95 { QCA9377_1_0_DEVICE_ID
, QCA9377_HW_1_1_CHIP_ID_REV
},
97 { QCA9887_1_0_DEVICE_ID
, QCA9887_HW_1_0_CHIP_ID_REV
},
100 static void ath10k_pci_buffer_cleanup(struct ath10k
*ar
);
101 static int ath10k_pci_cold_reset(struct ath10k
*ar
);
102 static int ath10k_pci_safe_chip_reset(struct ath10k
*ar
);
103 static int ath10k_pci_init_irq(struct ath10k
*ar
);
104 static int ath10k_pci_deinit_irq(struct ath10k
*ar
);
105 static int ath10k_pci_request_irq(struct ath10k
*ar
);
106 static void ath10k_pci_free_irq(struct ath10k
*ar
);
107 static int ath10k_pci_bmi_wait(struct ath10k
*ar
,
108 struct ath10k_ce_pipe
*tx_pipe
,
109 struct ath10k_ce_pipe
*rx_pipe
,
110 struct bmi_xfer
*xfer
);
111 static int ath10k_pci_qca99x0_chip_reset(struct ath10k
*ar
);
112 static void ath10k_pci_htc_tx_cb(struct ath10k_ce_pipe
*ce_state
);
113 static void ath10k_pci_htc_rx_cb(struct ath10k_ce_pipe
*ce_state
);
114 static void ath10k_pci_htt_tx_cb(struct ath10k_ce_pipe
*ce_state
);
115 static void ath10k_pci_htt_rx_cb(struct ath10k_ce_pipe
*ce_state
);
116 static void ath10k_pci_htt_htc_rx_cb(struct ath10k_ce_pipe
*ce_state
);
117 static void ath10k_pci_pktlog_rx_cb(struct ath10k_ce_pipe
*ce_state
);
119 static struct ce_attr host_ce_config_wlan
[] = {
120 /* CE0: host->target HTC control and raw streams */
122 .flags
= CE_ATTR_FLAGS
,
126 .send_cb
= ath10k_pci_htc_tx_cb
,
129 /* CE1: target->host HTT + HTC control */
131 .flags
= CE_ATTR_FLAGS
,
134 .dest_nentries
= 512,
135 .recv_cb
= ath10k_pci_htt_htc_rx_cb
,
138 /* CE2: target->host WMI */
140 .flags
= CE_ATTR_FLAGS
,
143 .dest_nentries
= 128,
144 .recv_cb
= ath10k_pci_htc_rx_cb
,
147 /* CE3: host->target WMI */
149 .flags
= CE_ATTR_FLAGS
,
153 .send_cb
= ath10k_pci_htc_tx_cb
,
156 /* CE4: host->target HTT */
158 .flags
= CE_ATTR_FLAGS
| CE_ATTR_DIS_INTR
,
159 .src_nentries
= CE_HTT_H2T_MSG_SRC_NENTRIES
,
162 .send_cb
= ath10k_pci_htt_tx_cb
,
165 /* CE5: target->host HTT (HIF->HTT) */
167 .flags
= CE_ATTR_FLAGS
,
170 .dest_nentries
= 512,
171 .recv_cb
= ath10k_pci_htt_rx_cb
,
174 /* CE6: target autonomous hif_memcpy */
176 .flags
= CE_ATTR_FLAGS
,
182 /* CE7: ce_diag, the Diagnostic Window */
184 .flags
= CE_ATTR_FLAGS
| CE_ATTR_POLL
,
186 .src_sz_max
= DIAG_TRANSFER_LIMIT
,
190 /* CE8: target->host pktlog */
192 .flags
= CE_ATTR_FLAGS
,
195 .dest_nentries
= 128,
196 .recv_cb
= ath10k_pci_pktlog_rx_cb
,
199 /* CE9 target autonomous qcache memcpy */
201 .flags
= CE_ATTR_FLAGS
,
207 /* CE10: target autonomous hif memcpy */
209 .flags
= CE_ATTR_FLAGS
,
215 /* CE11: target autonomous hif memcpy */
217 .flags
= CE_ATTR_FLAGS
,
224 /* Target firmware's Copy Engine configuration. */
225 static struct ce_pipe_config target_ce_config_wlan
[] = {
226 /* CE0: host->target HTC control and raw streams */
228 .pipenum
= __cpu_to_le32(0),
229 .pipedir
= __cpu_to_le32(PIPEDIR_OUT
),
230 .nentries
= __cpu_to_le32(32),
231 .nbytes_max
= __cpu_to_le32(256),
232 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
233 .reserved
= __cpu_to_le32(0),
236 /* CE1: target->host HTT + HTC control */
238 .pipenum
= __cpu_to_le32(1),
239 .pipedir
= __cpu_to_le32(PIPEDIR_IN
),
240 .nentries
= __cpu_to_le32(32),
241 .nbytes_max
= __cpu_to_le32(2048),
242 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
243 .reserved
= __cpu_to_le32(0),
246 /* CE2: target->host WMI */
248 .pipenum
= __cpu_to_le32(2),
249 .pipedir
= __cpu_to_le32(PIPEDIR_IN
),
250 .nentries
= __cpu_to_le32(64),
251 .nbytes_max
= __cpu_to_le32(2048),
252 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
253 .reserved
= __cpu_to_le32(0),
256 /* CE3: host->target WMI */
258 .pipenum
= __cpu_to_le32(3),
259 .pipedir
= __cpu_to_le32(PIPEDIR_OUT
),
260 .nentries
= __cpu_to_le32(32),
261 .nbytes_max
= __cpu_to_le32(2048),
262 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
263 .reserved
= __cpu_to_le32(0),
266 /* CE4: host->target HTT */
268 .pipenum
= __cpu_to_le32(4),
269 .pipedir
= __cpu_to_le32(PIPEDIR_OUT
),
270 .nentries
= __cpu_to_le32(256),
271 .nbytes_max
= __cpu_to_le32(256),
272 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
273 .reserved
= __cpu_to_le32(0),
276 /* NB: 50% of src nentries, since tx has 2 frags */
278 /* CE5: target->host HTT (HIF->HTT) */
280 .pipenum
= __cpu_to_le32(5),
281 .pipedir
= __cpu_to_le32(PIPEDIR_IN
),
282 .nentries
= __cpu_to_le32(32),
283 .nbytes_max
= __cpu_to_le32(512),
284 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
285 .reserved
= __cpu_to_le32(0),
288 /* CE6: Reserved for target autonomous hif_memcpy */
290 .pipenum
= __cpu_to_le32(6),
291 .pipedir
= __cpu_to_le32(PIPEDIR_INOUT
),
292 .nentries
= __cpu_to_le32(32),
293 .nbytes_max
= __cpu_to_le32(4096),
294 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
295 .reserved
= __cpu_to_le32(0),
298 /* CE7 used only by Host */
300 .pipenum
= __cpu_to_le32(7),
301 .pipedir
= __cpu_to_le32(PIPEDIR_INOUT
),
302 .nentries
= __cpu_to_le32(0),
303 .nbytes_max
= __cpu_to_le32(0),
304 .flags
= __cpu_to_le32(0),
305 .reserved
= __cpu_to_le32(0),
308 /* CE8 target->host packtlog */
310 .pipenum
= __cpu_to_le32(8),
311 .pipedir
= __cpu_to_le32(PIPEDIR_IN
),
312 .nentries
= __cpu_to_le32(64),
313 .nbytes_max
= __cpu_to_le32(2048),
314 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
| CE_ATTR_DIS_INTR
),
315 .reserved
= __cpu_to_le32(0),
318 /* CE9 target autonomous qcache memcpy */
320 .pipenum
= __cpu_to_le32(9),
321 .pipedir
= __cpu_to_le32(PIPEDIR_INOUT
),
322 .nentries
= __cpu_to_le32(32),
323 .nbytes_max
= __cpu_to_le32(2048),
324 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
| CE_ATTR_DIS_INTR
),
325 .reserved
= __cpu_to_le32(0),
328 /* It not necessary to send target wlan configuration for CE10 & CE11
329 * as these CEs are not actively used in target.
334 * Map from service/endpoint to Copy Engine.
335 * This table is derived from the CE_PCI TABLE, above.
336 * It is passed to the Target at startup for use by firmware.
338 static struct service_to_pipe target_service_to_ce_map_wlan
[] = {
340 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VO
),
341 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
345 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VO
),
346 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
350 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BK
),
351 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
355 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BK
),
356 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
360 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BE
),
361 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
365 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BE
),
366 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
370 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VI
),
371 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
375 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VI
),
376 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
380 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_CONTROL
),
381 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
385 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_CONTROL
),
386 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
390 __cpu_to_le32(ATH10K_HTC_SVC_ID_RSVD_CTRL
),
391 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
395 __cpu_to_le32(ATH10K_HTC_SVC_ID_RSVD_CTRL
),
396 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
400 __cpu_to_le32(ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS
),
401 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
405 __cpu_to_le32(ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS
),
406 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
410 __cpu_to_le32(ATH10K_HTC_SVC_ID_HTT_DATA_MSG
),
411 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
415 __cpu_to_le32(ATH10K_HTC_SVC_ID_HTT_DATA_MSG
),
416 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
420 /* (Additions here) */
429 static bool ath10k_pci_is_awake(struct ath10k
*ar
)
431 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
432 u32 val
= ioread32(ar_pci
->mem
+ PCIE_LOCAL_BASE_ADDRESS
+
435 return RTC_STATE_V_GET(val
) == RTC_STATE_V_ON
;
438 static void __ath10k_pci_wake(struct ath10k
*ar
)
440 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
442 lockdep_assert_held(&ar_pci
->ps_lock
);
444 ath10k_dbg(ar
, ATH10K_DBG_PCI_PS
, "pci ps wake reg refcount %lu awake %d\n",
445 ar_pci
->ps_wake_refcount
, ar_pci
->ps_awake
);
447 iowrite32(PCIE_SOC_WAKE_V_MASK
,
448 ar_pci
->mem
+ PCIE_LOCAL_BASE_ADDRESS
+
449 PCIE_SOC_WAKE_ADDRESS
);
452 static void __ath10k_pci_sleep(struct ath10k
*ar
)
454 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
456 lockdep_assert_held(&ar_pci
->ps_lock
);
458 ath10k_dbg(ar
, ATH10K_DBG_PCI_PS
, "pci ps sleep reg refcount %lu awake %d\n",
459 ar_pci
->ps_wake_refcount
, ar_pci
->ps_awake
);
461 iowrite32(PCIE_SOC_WAKE_RESET
,
462 ar_pci
->mem
+ PCIE_LOCAL_BASE_ADDRESS
+
463 PCIE_SOC_WAKE_ADDRESS
);
464 ar_pci
->ps_awake
= false;
467 static int ath10k_pci_wake_wait(struct ath10k
*ar
)
472 while (tot_delay
< PCIE_WAKE_TIMEOUT
) {
473 if (ath10k_pci_is_awake(ar
)) {
474 if (tot_delay
> PCIE_WAKE_LATE_US
)
475 ath10k_warn(ar
, "device wakeup took %d ms which is unusually long, otherwise it works normally.\n",
481 tot_delay
+= curr_delay
;
490 static int ath10k_pci_force_wake(struct ath10k
*ar
)
492 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
499 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
501 if (!ar_pci
->ps_awake
) {
502 iowrite32(PCIE_SOC_WAKE_V_MASK
,
503 ar_pci
->mem
+ PCIE_LOCAL_BASE_ADDRESS
+
504 PCIE_SOC_WAKE_ADDRESS
);
506 ret
= ath10k_pci_wake_wait(ar
);
508 ar_pci
->ps_awake
= true;
511 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
516 static void ath10k_pci_force_sleep(struct ath10k
*ar
)
518 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
521 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
523 iowrite32(PCIE_SOC_WAKE_RESET
,
524 ar_pci
->mem
+ PCIE_LOCAL_BASE_ADDRESS
+
525 PCIE_SOC_WAKE_ADDRESS
);
526 ar_pci
->ps_awake
= false;
528 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
531 static int ath10k_pci_wake(struct ath10k
*ar
)
533 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
537 if (ar_pci
->pci_ps
== 0)
540 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
542 ath10k_dbg(ar
, ATH10K_DBG_PCI_PS
, "pci ps wake refcount %lu awake %d\n",
543 ar_pci
->ps_wake_refcount
, ar_pci
->ps_awake
);
545 /* This function can be called very frequently. To avoid excessive
546 * CPU stalls for MMIO reads use a cache var to hold the device state.
548 if (!ar_pci
->ps_awake
) {
549 __ath10k_pci_wake(ar
);
551 ret
= ath10k_pci_wake_wait(ar
);
553 ar_pci
->ps_awake
= true;
557 ar_pci
->ps_wake_refcount
++;
558 WARN_ON(ar_pci
->ps_wake_refcount
== 0);
561 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
566 static void ath10k_pci_sleep(struct ath10k
*ar
)
568 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
571 if (ar_pci
->pci_ps
== 0)
574 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
576 ath10k_dbg(ar
, ATH10K_DBG_PCI_PS
, "pci ps sleep refcount %lu awake %d\n",
577 ar_pci
->ps_wake_refcount
, ar_pci
->ps_awake
);
579 if (WARN_ON(ar_pci
->ps_wake_refcount
== 0))
582 ar_pci
->ps_wake_refcount
--;
584 mod_timer(&ar_pci
->ps_timer
, jiffies
+
585 msecs_to_jiffies(ATH10K_PCI_SLEEP_GRACE_PERIOD_MSEC
));
588 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
591 static void ath10k_pci_ps_timer(struct timer_list
*t
)
593 struct ath10k_pci
*ar_pci
= from_timer(ar_pci
, t
, ps_timer
);
594 struct ath10k
*ar
= ar_pci
->ar
;
597 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
599 ath10k_dbg(ar
, ATH10K_DBG_PCI_PS
, "pci ps timer refcount %lu awake %d\n",
600 ar_pci
->ps_wake_refcount
, ar_pci
->ps_awake
);
602 if (ar_pci
->ps_wake_refcount
> 0)
605 __ath10k_pci_sleep(ar
);
608 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
611 static void ath10k_pci_sleep_sync(struct ath10k
*ar
)
613 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
616 if (ar_pci
->pci_ps
== 0) {
617 ath10k_pci_force_sleep(ar
);
621 del_timer_sync(&ar_pci
->ps_timer
);
623 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
624 WARN_ON(ar_pci
->ps_wake_refcount
> 0);
625 __ath10k_pci_sleep(ar
);
626 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
629 static void ath10k_bus_pci_write32(struct ath10k
*ar
, u32 offset
, u32 value
)
631 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
634 if (unlikely(offset
+ sizeof(value
) > ar_pci
->mem_len
)) {
635 ath10k_warn(ar
, "refusing to write mmio out of bounds at 0x%08x - 0x%08zx (max 0x%08zx)\n",
636 offset
, offset
+ sizeof(value
), ar_pci
->mem_len
);
640 ret
= ath10k_pci_wake(ar
);
642 ath10k_warn(ar
, "failed to wake target for write32 of 0x%08x at 0x%08x: %d\n",
647 iowrite32(value
, ar_pci
->mem
+ offset
);
648 ath10k_pci_sleep(ar
);
651 static u32
ath10k_bus_pci_read32(struct ath10k
*ar
, u32 offset
)
653 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
657 if (unlikely(offset
+ sizeof(val
) > ar_pci
->mem_len
)) {
658 ath10k_warn(ar
, "refusing to read mmio out of bounds at 0x%08x - 0x%08zx (max 0x%08zx)\n",
659 offset
, offset
+ sizeof(val
), ar_pci
->mem_len
);
663 ret
= ath10k_pci_wake(ar
);
665 ath10k_warn(ar
, "failed to wake target for read32 at 0x%08x: %d\n",
670 val
= ioread32(ar_pci
->mem
+ offset
);
671 ath10k_pci_sleep(ar
);
676 inline void ath10k_pci_write32(struct ath10k
*ar
, u32 offset
, u32 value
)
678 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
680 ce
->bus_ops
->write32(ar
, offset
, value
);
683 inline u32
ath10k_pci_read32(struct ath10k
*ar
, u32 offset
)
685 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
687 return ce
->bus_ops
->read32(ar
, offset
);
690 u32
ath10k_pci_soc_read32(struct ath10k
*ar
, u32 addr
)
692 return ath10k_pci_read32(ar
, RTC_SOC_BASE_ADDRESS
+ addr
);
695 void ath10k_pci_soc_write32(struct ath10k
*ar
, u32 addr
, u32 val
)
697 ath10k_pci_write32(ar
, RTC_SOC_BASE_ADDRESS
+ addr
, val
);
700 u32
ath10k_pci_reg_read32(struct ath10k
*ar
, u32 addr
)
702 return ath10k_pci_read32(ar
, PCIE_LOCAL_BASE_ADDRESS
+ addr
);
705 void ath10k_pci_reg_write32(struct ath10k
*ar
, u32 addr
, u32 val
)
707 ath10k_pci_write32(ar
, PCIE_LOCAL_BASE_ADDRESS
+ addr
, val
);
710 bool ath10k_pci_irq_pending(struct ath10k
*ar
)
714 /* Check if the shared legacy irq is for us */
715 cause
= ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
716 PCIE_INTR_CAUSE_ADDRESS
);
717 if (cause
& (PCIE_INTR_FIRMWARE_MASK
| PCIE_INTR_CE_MASK_ALL
))
723 void ath10k_pci_disable_and_clear_legacy_irq(struct ath10k
*ar
)
725 /* IMPORTANT: INTR_CLR register has to be set after
726 * INTR_ENABLE is set to 0, otherwise interrupt can not be
729 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+ PCIE_INTR_ENABLE_ADDRESS
,
731 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+ PCIE_INTR_CLR_ADDRESS
,
732 PCIE_INTR_FIRMWARE_MASK
| PCIE_INTR_CE_MASK_ALL
);
734 /* IMPORTANT: this extra read transaction is required to
735 * flush the posted write buffer.
737 (void)ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
738 PCIE_INTR_ENABLE_ADDRESS
);
741 void ath10k_pci_enable_legacy_irq(struct ath10k
*ar
)
743 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+
744 PCIE_INTR_ENABLE_ADDRESS
,
745 PCIE_INTR_FIRMWARE_MASK
| PCIE_INTR_CE_MASK_ALL
);
747 /* IMPORTANT: this extra read transaction is required to
748 * flush the posted write buffer.
750 (void)ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
751 PCIE_INTR_ENABLE_ADDRESS
);
754 static inline const char *ath10k_pci_get_irq_method(struct ath10k
*ar
)
756 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
758 if (ar_pci
->oper_irq_mode
== ATH10K_PCI_IRQ_MSI
)
764 static int __ath10k_pci_rx_post_buf(struct ath10k_pci_pipe
*pipe
)
766 struct ath10k
*ar
= pipe
->hif_ce_state
;
767 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
768 struct ath10k_ce_pipe
*ce_pipe
= pipe
->ce_hdl
;
773 skb
= dev_alloc_skb(pipe
->buf_sz
);
777 WARN_ONCE((unsigned long)skb
->data
& 3, "unaligned skb");
779 paddr
= dma_map_single(ar
->dev
, skb
->data
,
780 skb
->len
+ skb_tailroom(skb
),
782 if (unlikely(dma_mapping_error(ar
->dev
, paddr
))) {
783 ath10k_warn(ar
, "failed to dma map pci rx buf\n");
784 dev_kfree_skb_any(skb
);
788 ATH10K_SKB_RXCB(skb
)->paddr
= paddr
;
790 spin_lock_bh(&ce
->ce_lock
);
791 ret
= ce_pipe
->ops
->ce_rx_post_buf(ce_pipe
, skb
, paddr
);
792 spin_unlock_bh(&ce
->ce_lock
);
794 dma_unmap_single(ar
->dev
, paddr
, skb
->len
+ skb_tailroom(skb
),
796 dev_kfree_skb_any(skb
);
803 static void ath10k_pci_rx_post_pipe(struct ath10k_pci_pipe
*pipe
)
805 struct ath10k
*ar
= pipe
->hif_ce_state
;
806 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
807 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
808 struct ath10k_ce_pipe
*ce_pipe
= pipe
->ce_hdl
;
811 if (pipe
->buf_sz
== 0)
814 if (!ce_pipe
->dest_ring
)
817 spin_lock_bh(&ce
->ce_lock
);
818 num
= __ath10k_ce_rx_num_free_bufs(ce_pipe
);
819 spin_unlock_bh(&ce
->ce_lock
);
822 ret
= __ath10k_pci_rx_post_buf(pipe
);
826 ath10k_warn(ar
, "failed to post pci rx buf: %d\n", ret
);
827 mod_timer(&ar_pci
->rx_post_retry
, jiffies
+
828 ATH10K_PCI_RX_POST_RETRY_MS
);
835 void ath10k_pci_rx_post(struct ath10k
*ar
)
837 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
840 for (i
= 0; i
< CE_COUNT
; i
++)
841 ath10k_pci_rx_post_pipe(&ar_pci
->pipe_info
[i
]);
844 void ath10k_pci_rx_replenish_retry(struct timer_list
*t
)
846 struct ath10k_pci
*ar_pci
= from_timer(ar_pci
, t
, rx_post_retry
);
847 struct ath10k
*ar
= ar_pci
->ar
;
849 ath10k_pci_rx_post(ar
);
852 static u32
ath10k_pci_qca988x_targ_cpu_to_ce_addr(struct ath10k
*ar
, u32 addr
)
854 u32 val
= 0, region
= addr
& 0xfffff;
856 val
= (ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+ CORE_CTRL_ADDRESS
)
858 val
|= 0x100000 | region
;
862 /* Refactor from ath10k_pci_qca988x_targ_cpu_to_ce_addr.
863 * Support to access target space below 1M for qca6174 and qca9377.
864 * If target space is below 1M, the bit[20] of converted CE addr is 0.
865 * Otherwise bit[20] of converted CE addr is 1.
867 static u32
ath10k_pci_qca6174_targ_cpu_to_ce_addr(struct ath10k
*ar
, u32 addr
)
869 u32 val
= 0, region
= addr
& 0xfffff;
871 val
= (ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+ CORE_CTRL_ADDRESS
)
873 val
|= ((addr
>= 0x100000) ? 0x100000 : 0) | region
;
877 static u32
ath10k_pci_qca99x0_targ_cpu_to_ce_addr(struct ath10k
*ar
, u32 addr
)
879 u32 val
= 0, region
= addr
& 0xfffff;
881 val
= ath10k_pci_read32(ar
, PCIE_BAR_REG_ADDRESS
);
882 val
|= 0x100000 | region
;
886 static u32
ath10k_pci_targ_cpu_to_ce_addr(struct ath10k
*ar
, u32 addr
)
888 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
890 if (WARN_ON_ONCE(!ar_pci
->targ_cpu_to_ce_addr
))
893 return ar_pci
->targ_cpu_to_ce_addr(ar
, addr
);
897 * Diagnostic read/write access is provided for startup/config/debug usage.
898 * Caller must guarantee proper alignment, when applicable, and single user
901 static int ath10k_pci_diag_read_mem(struct ath10k
*ar
, u32 address
, void *data
,
904 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
907 unsigned int completed_nbytes
, alloc_nbytes
, remaining_bytes
;
908 struct ath10k_ce_pipe
*ce_diag
;
909 /* Host buffer address in CE space */
911 dma_addr_t ce_data_base
= 0;
915 mutex_lock(&ar_pci
->ce_diag_mutex
);
916 ce_diag
= ar_pci
->ce_diag
;
919 * Allocate a temporary bounce buffer to hold caller's data
920 * to be DMA'ed from Target. This guarantees
921 * 1) 4-byte alignment
922 * 2) Buffer in DMA-able space
924 alloc_nbytes
= min_t(unsigned int, nbytes
, DIAG_TRANSFER_LIMIT
);
926 data_buf
= dma_alloc_coherent(ar
->dev
, alloc_nbytes
, &ce_data_base
,
933 /* The address supplied by the caller is in the
934 * Target CPU virtual address space.
936 * In order to use this address with the diagnostic CE,
937 * convert it from Target CPU virtual address space
938 * to CE address space
940 address
= ath10k_pci_targ_cpu_to_ce_addr(ar
, address
);
942 remaining_bytes
= nbytes
;
943 ce_data
= ce_data_base
;
944 while (remaining_bytes
) {
945 nbytes
= min_t(unsigned int, remaining_bytes
,
946 DIAG_TRANSFER_LIMIT
);
948 ret
= ath10k_ce_rx_post_buf(ce_diag
, &ce_data
, ce_data
);
952 /* Request CE to send from Target(!) address to Host buffer */
953 ret
= ath10k_ce_send(ce_diag
, NULL
, (u32
)address
, nbytes
, 0, 0);
958 while (ath10k_ce_completed_send_next(ce_diag
, NULL
) != 0) {
959 udelay(DIAG_ACCESS_CE_WAIT_US
);
960 i
+= DIAG_ACCESS_CE_WAIT_US
;
962 if (i
> DIAG_ACCESS_CE_TIMEOUT_US
) {
969 while (ath10k_ce_completed_recv_next(ce_diag
, (void **)&buf
,
970 &completed_nbytes
) != 0) {
971 udelay(DIAG_ACCESS_CE_WAIT_US
);
972 i
+= DIAG_ACCESS_CE_WAIT_US
;
974 if (i
> DIAG_ACCESS_CE_TIMEOUT_US
) {
980 if (nbytes
!= completed_nbytes
) {
985 if (*buf
!= ce_data
) {
990 remaining_bytes
-= nbytes
;
991 memcpy(data
, data_buf
, nbytes
);
1000 dma_free_coherent(ar
->dev
, alloc_nbytes
, data_buf
,
1003 mutex_unlock(&ar_pci
->ce_diag_mutex
);
1008 static int ath10k_pci_diag_read32(struct ath10k
*ar
, u32 address
, u32
*value
)
1013 ret
= ath10k_pci_diag_read_mem(ar
, address
, &val
, sizeof(val
));
1014 *value
= __le32_to_cpu(val
);
1019 static int __ath10k_pci_diag_read_hi(struct ath10k
*ar
, void *dest
,
1022 u32 host_addr
, addr
;
1025 host_addr
= host_interest_item_address(src
);
1027 ret
= ath10k_pci_diag_read32(ar
, host_addr
, &addr
);
1029 ath10k_warn(ar
, "failed to get memcpy hi address for firmware address %d: %d\n",
1034 ret
= ath10k_pci_diag_read_mem(ar
, addr
, dest
, len
);
1036 ath10k_warn(ar
, "failed to memcpy firmware memory from %d (%d B): %d\n",
1044 #define ath10k_pci_diag_read_hi(ar, dest, src, len) \
1045 __ath10k_pci_diag_read_hi(ar, dest, HI_ITEM(src), len)
1047 int ath10k_pci_diag_write_mem(struct ath10k
*ar
, u32 address
,
1048 const void *data
, int nbytes
)
1050 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1053 unsigned int completed_nbytes
, alloc_nbytes
, remaining_bytes
;
1054 struct ath10k_ce_pipe
*ce_diag
;
1056 dma_addr_t ce_data_base
= 0;
1059 mutex_lock(&ar_pci
->ce_diag_mutex
);
1060 ce_diag
= ar_pci
->ce_diag
;
1063 * Allocate a temporary bounce buffer to hold caller's data
1064 * to be DMA'ed to Target. This guarantees
1065 * 1) 4-byte alignment
1066 * 2) Buffer in DMA-able space
1068 alloc_nbytes
= min_t(unsigned int, nbytes
, DIAG_TRANSFER_LIMIT
);
1070 data_buf
= dma_alloc_coherent(ar
->dev
, alloc_nbytes
, &ce_data_base
,
1078 * The address supplied by the caller is in the
1079 * Target CPU virtual address space.
1081 * In order to use this address with the diagnostic CE,
1083 * Target CPU virtual address space
1087 address
= ath10k_pci_targ_cpu_to_ce_addr(ar
, address
);
1089 remaining_bytes
= nbytes
;
1090 while (remaining_bytes
) {
1091 /* FIXME: check cast */
1092 nbytes
= min_t(int, remaining_bytes
, DIAG_TRANSFER_LIMIT
);
1094 /* Copy caller's data to allocated DMA buf */
1095 memcpy(data_buf
, data
, nbytes
);
1097 /* Set up to receive directly into Target(!) address */
1098 ret
= ath10k_ce_rx_post_buf(ce_diag
, &address
, address
);
1103 * Request CE to send caller-supplied data that
1104 * was copied to bounce buffer to Target(!) address.
1106 ret
= ath10k_ce_send(ce_diag
, NULL
, ce_data_base
, nbytes
, 0, 0);
1111 while (ath10k_ce_completed_send_next(ce_diag
, NULL
) != 0) {
1112 udelay(DIAG_ACCESS_CE_WAIT_US
);
1113 i
+= DIAG_ACCESS_CE_WAIT_US
;
1115 if (i
> DIAG_ACCESS_CE_TIMEOUT_US
) {
1122 while (ath10k_ce_completed_recv_next(ce_diag
, (void **)&buf
,
1123 &completed_nbytes
) != 0) {
1124 udelay(DIAG_ACCESS_CE_WAIT_US
);
1125 i
+= DIAG_ACCESS_CE_WAIT_US
;
1127 if (i
> DIAG_ACCESS_CE_TIMEOUT_US
) {
1133 if (nbytes
!= completed_nbytes
) {
1138 if (*buf
!= address
) {
1143 remaining_bytes
-= nbytes
;
1150 dma_free_coherent(ar
->dev
, alloc_nbytes
, data_buf
,
1155 ath10k_warn(ar
, "failed to write diag value at 0x%x: %d\n",
1158 mutex_unlock(&ar_pci
->ce_diag_mutex
);
1163 static int ath10k_pci_diag_write32(struct ath10k
*ar
, u32 address
, u32 value
)
1165 __le32 val
= __cpu_to_le32(value
);
1167 return ath10k_pci_diag_write_mem(ar
, address
, &val
, sizeof(val
));
1170 /* Called by lower (CE) layer when a send to Target completes. */
1171 static void ath10k_pci_htc_tx_cb(struct ath10k_ce_pipe
*ce_state
)
1173 struct ath10k
*ar
= ce_state
->ar
;
1174 struct sk_buff_head list
;
1175 struct sk_buff
*skb
;
1177 __skb_queue_head_init(&list
);
1178 while (ath10k_ce_completed_send_next(ce_state
, (void **)&skb
) == 0) {
1179 /* no need to call tx completion for NULL pointers */
1183 __skb_queue_tail(&list
, skb
);
1186 while ((skb
= __skb_dequeue(&list
)))
1187 ath10k_htc_tx_completion_handler(ar
, skb
);
1190 static void ath10k_pci_process_rx_cb(struct ath10k_ce_pipe
*ce_state
,
1191 void (*callback
)(struct ath10k
*ar
,
1192 struct sk_buff
*skb
))
1194 struct ath10k
*ar
= ce_state
->ar
;
1195 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1196 struct ath10k_pci_pipe
*pipe_info
= &ar_pci
->pipe_info
[ce_state
->id
];
1197 struct sk_buff
*skb
;
1198 struct sk_buff_head list
;
1199 void *transfer_context
;
1200 unsigned int nbytes
, max_nbytes
;
1202 __skb_queue_head_init(&list
);
1203 while (ath10k_ce_completed_recv_next(ce_state
, &transfer_context
,
1205 skb
= transfer_context
;
1206 max_nbytes
= skb
->len
+ skb_tailroom(skb
);
1207 dma_unmap_single(ar
->dev
, ATH10K_SKB_RXCB(skb
)->paddr
,
1208 max_nbytes
, DMA_FROM_DEVICE
);
1210 if (unlikely(max_nbytes
< nbytes
)) {
1211 ath10k_warn(ar
, "rxed more than expected (nbytes %d, max %d)",
1212 nbytes
, max_nbytes
);
1213 dev_kfree_skb_any(skb
);
1217 skb_put(skb
, nbytes
);
1218 __skb_queue_tail(&list
, skb
);
1221 while ((skb
= __skb_dequeue(&list
))) {
1222 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci rx ce pipe %d len %d\n",
1223 ce_state
->id
, skb
->len
);
1224 ath10k_dbg_dump(ar
, ATH10K_DBG_PCI_DUMP
, NULL
, "pci rx: ",
1225 skb
->data
, skb
->len
);
1230 ath10k_pci_rx_post_pipe(pipe_info
);
1233 static void ath10k_pci_process_htt_rx_cb(struct ath10k_ce_pipe
*ce_state
,
1234 void (*callback
)(struct ath10k
*ar
,
1235 struct sk_buff
*skb
))
1237 struct ath10k
*ar
= ce_state
->ar
;
1238 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1239 struct ath10k_pci_pipe
*pipe_info
= &ar_pci
->pipe_info
[ce_state
->id
];
1240 struct ath10k_ce_pipe
*ce_pipe
= pipe_info
->ce_hdl
;
1241 struct sk_buff
*skb
;
1242 struct sk_buff_head list
;
1243 void *transfer_context
;
1244 unsigned int nbytes
, max_nbytes
, nentries
;
1247 /* No need to aquire ce_lock for CE5, since this is the only place CE5
1248 * is processed other than init and deinit. Before releasing CE5
1249 * buffers, interrupts are disabled. Thus CE5 access is serialized.
1251 __skb_queue_head_init(&list
);
1252 while (ath10k_ce_completed_recv_next_nolock(ce_state
, &transfer_context
,
1254 skb
= transfer_context
;
1255 max_nbytes
= skb
->len
+ skb_tailroom(skb
);
1257 if (unlikely(max_nbytes
< nbytes
)) {
1258 ath10k_warn(ar
, "rxed more than expected (nbytes %d, max %d)",
1259 nbytes
, max_nbytes
);
1263 dma_sync_single_for_cpu(ar
->dev
, ATH10K_SKB_RXCB(skb
)->paddr
,
1264 max_nbytes
, DMA_FROM_DEVICE
);
1265 skb_put(skb
, nbytes
);
1266 __skb_queue_tail(&list
, skb
);
1269 nentries
= skb_queue_len(&list
);
1270 while ((skb
= __skb_dequeue(&list
))) {
1271 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci rx ce pipe %d len %d\n",
1272 ce_state
->id
, skb
->len
);
1273 ath10k_dbg_dump(ar
, ATH10K_DBG_PCI_DUMP
, NULL
, "pci rx: ",
1274 skb
->data
, skb
->len
);
1276 orig_len
= skb
->len
;
1278 skb_push(skb
, orig_len
- skb
->len
);
1279 skb_reset_tail_pointer(skb
);
1282 /*let device gain the buffer again*/
1283 dma_sync_single_for_device(ar
->dev
, ATH10K_SKB_RXCB(skb
)->paddr
,
1284 skb
->len
+ skb_tailroom(skb
),
1287 ath10k_ce_rx_update_write_idx(ce_pipe
, nentries
);
1290 /* Called by lower (CE) layer when data is received from the Target. */
1291 static void ath10k_pci_htc_rx_cb(struct ath10k_ce_pipe
*ce_state
)
1293 ath10k_pci_process_rx_cb(ce_state
, ath10k_htc_rx_completion_handler
);
1296 static void ath10k_pci_htt_htc_rx_cb(struct ath10k_ce_pipe
*ce_state
)
1298 /* CE4 polling needs to be done whenever CE pipe which transports
1299 * HTT Rx (target->host) is processed.
1301 ath10k_ce_per_engine_service(ce_state
->ar
, 4);
1303 ath10k_pci_process_rx_cb(ce_state
, ath10k_htc_rx_completion_handler
);
1306 /* Called by lower (CE) layer when data is received from the Target.
1307 * Only 10.4 firmware uses separate CE to transfer pktlog data.
1309 static void ath10k_pci_pktlog_rx_cb(struct ath10k_ce_pipe
*ce_state
)
1311 ath10k_pci_process_rx_cb(ce_state
,
1312 ath10k_htt_rx_pktlog_completion_handler
);
1315 /* Called by lower (CE) layer when a send to HTT Target completes. */
1316 static void ath10k_pci_htt_tx_cb(struct ath10k_ce_pipe
*ce_state
)
1318 struct ath10k
*ar
= ce_state
->ar
;
1319 struct sk_buff
*skb
;
1321 while (ath10k_ce_completed_send_next(ce_state
, (void **)&skb
) == 0) {
1322 /* no need to call tx completion for NULL pointers */
1326 dma_unmap_single(ar
->dev
, ATH10K_SKB_CB(skb
)->paddr
,
1327 skb
->len
, DMA_TO_DEVICE
);
1328 ath10k_htt_hif_tx_complete(ar
, skb
);
1332 static void ath10k_pci_htt_rx_deliver(struct ath10k
*ar
, struct sk_buff
*skb
)
1334 skb_pull(skb
, sizeof(struct ath10k_htc_hdr
));
1335 ath10k_htt_t2h_msg_handler(ar
, skb
);
1338 /* Called by lower (CE) layer when HTT data is received from the Target. */
1339 static void ath10k_pci_htt_rx_cb(struct ath10k_ce_pipe
*ce_state
)
1341 /* CE4 polling needs to be done whenever CE pipe which transports
1342 * HTT Rx (target->host) is processed.
1344 ath10k_ce_per_engine_service(ce_state
->ar
, 4);
1346 ath10k_pci_process_htt_rx_cb(ce_state
, ath10k_pci_htt_rx_deliver
);
1349 int ath10k_pci_hif_tx_sg(struct ath10k
*ar
, u8 pipe_id
,
1350 struct ath10k_hif_sg_item
*items
, int n_items
)
1352 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1353 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
1354 struct ath10k_pci_pipe
*pci_pipe
= &ar_pci
->pipe_info
[pipe_id
];
1355 struct ath10k_ce_pipe
*ce_pipe
= pci_pipe
->ce_hdl
;
1356 struct ath10k_ce_ring
*src_ring
= ce_pipe
->src_ring
;
1357 unsigned int nentries_mask
;
1358 unsigned int sw_index
;
1359 unsigned int write_index
;
1362 spin_lock_bh(&ce
->ce_lock
);
1364 nentries_mask
= src_ring
->nentries_mask
;
1365 sw_index
= src_ring
->sw_index
;
1366 write_index
= src_ring
->write_index
;
1368 if (unlikely(CE_RING_DELTA(nentries_mask
,
1369 write_index
, sw_index
- 1) < n_items
)) {
1374 for (i
= 0; i
< n_items
- 1; i
++) {
1375 ath10k_dbg(ar
, ATH10K_DBG_PCI
,
1376 "pci tx item %d paddr %pad len %d n_items %d\n",
1377 i
, &items
[i
].paddr
, items
[i
].len
, n_items
);
1378 ath10k_dbg_dump(ar
, ATH10K_DBG_PCI_DUMP
, NULL
, "pci tx data: ",
1379 items
[i
].vaddr
, items
[i
].len
);
1381 err
= ath10k_ce_send_nolock(ce_pipe
,
1382 items
[i
].transfer_context
,
1385 items
[i
].transfer_id
,
1386 CE_SEND_FLAG_GATHER
);
1391 /* `i` is equal to `n_items -1` after for() */
1393 ath10k_dbg(ar
, ATH10K_DBG_PCI
,
1394 "pci tx item %d paddr %pad len %d n_items %d\n",
1395 i
, &items
[i
].paddr
, items
[i
].len
, n_items
);
1396 ath10k_dbg_dump(ar
, ATH10K_DBG_PCI_DUMP
, NULL
, "pci tx data: ",
1397 items
[i
].vaddr
, items
[i
].len
);
1399 err
= ath10k_ce_send_nolock(ce_pipe
,
1400 items
[i
].transfer_context
,
1403 items
[i
].transfer_id
,
1408 spin_unlock_bh(&ce
->ce_lock
);
1413 __ath10k_ce_send_revert(ce_pipe
);
1415 spin_unlock_bh(&ce
->ce_lock
);
1419 int ath10k_pci_hif_diag_read(struct ath10k
*ar
, u32 address
, void *buf
,
1422 return ath10k_pci_diag_read_mem(ar
, address
, buf
, buf_len
);
1425 u16
ath10k_pci_hif_get_free_queue_number(struct ath10k
*ar
, u8 pipe
)
1427 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1429 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci hif get free queue number\n");
1431 return ath10k_ce_num_free_src_entries(ar_pci
->pipe_info
[pipe
].ce_hdl
);
1434 static void ath10k_pci_dump_registers(struct ath10k
*ar
,
1435 struct ath10k_fw_crash_data
*crash_data
)
1437 __le32 reg_dump_values
[REG_DUMP_COUNT_QCA988X
] = {};
1440 lockdep_assert_held(&ar
->dump_mutex
);
1442 ret
= ath10k_pci_diag_read_hi(ar
, ®_dump_values
[0],
1444 REG_DUMP_COUNT_QCA988X
* sizeof(__le32
));
1446 ath10k_err(ar
, "failed to read firmware dump area: %d\n", ret
);
1450 BUILD_BUG_ON(REG_DUMP_COUNT_QCA988X
% 4);
1452 ath10k_err(ar
, "firmware register dump:\n");
1453 for (i
= 0; i
< REG_DUMP_COUNT_QCA988X
; i
+= 4)
1454 ath10k_err(ar
, "[%02d]: 0x%08X 0x%08X 0x%08X 0x%08X\n",
1456 __le32_to_cpu(reg_dump_values
[i
]),
1457 __le32_to_cpu(reg_dump_values
[i
+ 1]),
1458 __le32_to_cpu(reg_dump_values
[i
+ 2]),
1459 __le32_to_cpu(reg_dump_values
[i
+ 3]));
1464 for (i
= 0; i
< REG_DUMP_COUNT_QCA988X
; i
++)
1465 crash_data
->registers
[i
] = reg_dump_values
[i
];
1468 static int ath10k_pci_dump_memory_section(struct ath10k
*ar
,
1469 const struct ath10k_mem_region
*mem_region
,
1470 u8
*buf
, size_t buf_len
)
1472 const struct ath10k_mem_section
*cur_section
, *next_section
;
1473 unsigned int count
, section_size
, skip_size
;
1476 if (!mem_region
|| !buf
)
1479 cur_section
= &mem_region
->section_table
.sections
[0];
1481 if (mem_region
->start
> cur_section
->start
) {
1482 ath10k_warn(ar
, "incorrect memdump region 0x%x with section start address 0x%x.\n",
1483 mem_region
->start
, cur_section
->start
);
1487 skip_size
= cur_section
->start
- mem_region
->start
;
1489 /* fill the gap between the first register section and register
1492 for (i
= 0; i
< skip_size
; i
++) {
1493 *buf
= ATH10K_MAGIC_NOT_COPIED
;
1499 for (i
= 0; cur_section
!= NULL
; i
++) {
1500 section_size
= cur_section
->end
- cur_section
->start
;
1502 if (section_size
<= 0) {
1503 ath10k_warn(ar
, "incorrect ramdump format with start address 0x%x and stop address 0x%x\n",
1509 if ((i
+ 1) == mem_region
->section_table
.size
) {
1511 next_section
= NULL
;
1514 next_section
= cur_section
+ 1;
1516 if (cur_section
->end
> next_section
->start
) {
1517 ath10k_warn(ar
, "next ramdump section 0x%x is smaller than current end address 0x%x\n",
1518 next_section
->start
,
1523 skip_size
= next_section
->start
- cur_section
->end
;
1526 if (buf_len
< (skip_size
+ section_size
)) {
1527 ath10k_warn(ar
, "ramdump buffer is too small: %zu\n", buf_len
);
1531 buf_len
-= skip_size
+ section_size
;
1533 /* read section to dest memory */
1534 ret
= ath10k_pci_diag_read_mem(ar
, cur_section
->start
,
1537 ath10k_warn(ar
, "failed to read ramdump from section 0x%x: %d\n",
1538 cur_section
->start
, ret
);
1542 buf
+= section_size
;
1543 count
+= section_size
;
1545 /* fill in the gap between this section and the next */
1546 for (j
= 0; j
< skip_size
; j
++) {
1547 *buf
= ATH10K_MAGIC_NOT_COPIED
;
1554 /* this was the last section */
1557 cur_section
= next_section
;
1563 static int ath10k_pci_set_ram_config(struct ath10k
*ar
, u32 config
)
1567 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+
1568 FW_RAM_CONFIG_ADDRESS
, config
);
1570 val
= ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
1571 FW_RAM_CONFIG_ADDRESS
);
1572 if (val
!= config
) {
1573 ath10k_warn(ar
, "failed to set RAM config from 0x%x to 0x%x\n",
1581 /* Always returns the length */
1582 static int ath10k_pci_dump_memory_sram(struct ath10k
*ar
,
1583 const struct ath10k_mem_region
*region
,
1586 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1589 base_addr
= ioread32(ar_pci
->mem
+ QCA99X0_PCIE_BAR0_START_REG
);
1590 base_addr
+= region
->start
;
1592 for (i
= 0; i
< region
->len
; i
+= 4) {
1593 iowrite32(base_addr
+ i
, ar_pci
->mem
+ QCA99X0_CPU_MEM_ADDR_REG
);
1594 *(u32
*)(buf
+ i
) = ioread32(ar_pci
->mem
+ QCA99X0_CPU_MEM_DATA_REG
);
1600 /* if an error happened returns < 0, otherwise the length */
1601 static int ath10k_pci_dump_memory_reg(struct ath10k
*ar
,
1602 const struct ath10k_mem_region
*region
,
1605 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1609 mutex_lock(&ar
->conf_mutex
);
1610 if (ar
->state
!= ATH10K_STATE_ON
) {
1611 ath10k_warn(ar
, "Skipping pci_dump_memory_reg invalid state\n");
1616 for (i
= 0; i
< region
->len
; i
+= 4)
1617 *(u32
*)(buf
+ i
) = ioread32(ar_pci
->mem
+ region
->start
+ i
);
1621 mutex_unlock(&ar
->conf_mutex
);
1625 /* if an error happened returns < 0, otherwise the length */
1626 static int ath10k_pci_dump_memory_generic(struct ath10k
*ar
,
1627 const struct ath10k_mem_region
*current_region
,
1632 if (current_region
->section_table
.size
> 0)
1633 /* Copy each section individually. */
1634 return ath10k_pci_dump_memory_section(ar
,
1637 current_region
->len
);
1639 /* No individiual memory sections defined so we can
1640 * copy the entire memory region.
1642 ret
= ath10k_pci_diag_read_mem(ar
,
1643 current_region
->start
,
1645 current_region
->len
);
1647 ath10k_warn(ar
, "failed to copy ramdump region %s: %d\n",
1648 current_region
->name
, ret
);
1652 return current_region
->len
;
1655 static void ath10k_pci_dump_memory(struct ath10k
*ar
,
1656 struct ath10k_fw_crash_data
*crash_data
)
1658 const struct ath10k_hw_mem_layout
*mem_layout
;
1659 const struct ath10k_mem_region
*current_region
;
1660 struct ath10k_dump_ram_data_hdr
*hdr
;
1666 lockdep_assert_held(&ar
->dump_mutex
);
1671 mem_layout
= ath10k_coredump_get_mem_layout(ar
);
1675 current_region
= &mem_layout
->region_table
.regions
[0];
1677 buf
= crash_data
->ramdump_buf
;
1678 buf_len
= crash_data
->ramdump_buf_len
;
1680 memset(buf
, 0, buf_len
);
1682 for (i
= 0; i
< mem_layout
->region_table
.size
; i
++) {
1685 if (current_region
->len
> buf_len
) {
1686 ath10k_warn(ar
, "memory region %s size %d is larger that remaining ramdump buffer size %zu\n",
1687 current_region
->name
,
1688 current_region
->len
,
1693 /* To get IRAM dump, the host driver needs to switch target
1694 * ram config from DRAM to IRAM.
1696 if (current_region
->type
== ATH10K_MEM_REGION_TYPE_IRAM1
||
1697 current_region
->type
== ATH10K_MEM_REGION_TYPE_IRAM2
) {
1698 shift
= current_region
->start
>> 20;
1700 ret
= ath10k_pci_set_ram_config(ar
, shift
);
1702 ath10k_warn(ar
, "failed to switch ram config to IRAM for section %s: %d\n",
1703 current_region
->name
, ret
);
1708 /* Reserve space for the header. */
1710 buf
+= sizeof(*hdr
);
1711 buf_len
-= sizeof(*hdr
);
1713 switch (current_region
->type
) {
1714 case ATH10K_MEM_REGION_TYPE_IOSRAM
:
1715 count
= ath10k_pci_dump_memory_sram(ar
, current_region
, buf
);
1717 case ATH10K_MEM_REGION_TYPE_IOREG
:
1718 ret
= ath10k_pci_dump_memory_reg(ar
, current_region
, buf
);
1725 ret
= ath10k_pci_dump_memory_generic(ar
, current_region
, buf
);
1733 hdr
->region_type
= cpu_to_le32(current_region
->type
);
1734 hdr
->start
= cpu_to_le32(current_region
->start
);
1735 hdr
->length
= cpu_to_le32(count
);
1738 /* Note: the header remains, just with zero length. */
1748 static void ath10k_pci_fw_dump_work(struct work_struct
*work
)
1750 struct ath10k_pci
*ar_pci
= container_of(work
, struct ath10k_pci
,
1752 struct ath10k_fw_crash_data
*crash_data
;
1753 struct ath10k
*ar
= ar_pci
->ar
;
1754 char guid
[UUID_STRING_LEN
+ 1];
1756 mutex_lock(&ar
->dump_mutex
);
1758 spin_lock_bh(&ar
->data_lock
);
1759 ar
->stats
.fw_crash_counter
++;
1760 spin_unlock_bh(&ar
->data_lock
);
1762 crash_data
= ath10k_coredump_new(ar
);
1765 scnprintf(guid
, sizeof(guid
), "%pUl", &crash_data
->guid
);
1767 scnprintf(guid
, sizeof(guid
), "n/a");
1769 ath10k_err(ar
, "firmware crashed! (guid %s)\n", guid
);
1770 ath10k_print_driver_info(ar
);
1771 ath10k_pci_dump_registers(ar
, crash_data
);
1772 ath10k_ce_dump_registers(ar
, crash_data
);
1773 ath10k_pci_dump_memory(ar
, crash_data
);
1775 mutex_unlock(&ar
->dump_mutex
);
1777 queue_work(ar
->workqueue
, &ar
->restart_work
);
1780 static void ath10k_pci_fw_crashed_dump(struct ath10k
*ar
)
1782 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1784 queue_work(ar
->workqueue
, &ar_pci
->dump_work
);
1787 void ath10k_pci_hif_send_complete_check(struct ath10k
*ar
, u8 pipe
,
1790 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci hif send complete check\n");
1795 * Decide whether to actually poll for completions, or just
1796 * wait for a later chance.
1797 * If there seem to be plenty of resources left, then just wait
1798 * since checking involves reading a CE register, which is a
1799 * relatively expensive operation.
1801 resources
= ath10k_pci_hif_get_free_queue_number(ar
, pipe
);
1804 * If at least 50% of the total resources are still available,
1805 * don't bother checking again yet.
1807 if (resources
> (host_ce_config_wlan
[pipe
].src_nentries
>> 1))
1810 ath10k_ce_per_engine_service(ar
, pipe
);
1813 static void ath10k_pci_rx_retry_sync(struct ath10k
*ar
)
1815 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1817 del_timer_sync(&ar_pci
->rx_post_retry
);
1820 int ath10k_pci_hif_map_service_to_pipe(struct ath10k
*ar
, u16 service_id
,
1821 u8
*ul_pipe
, u8
*dl_pipe
)
1823 const struct service_to_pipe
*entry
;
1824 bool ul_set
= false, dl_set
= false;
1827 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci hif map service\n");
1829 for (i
= 0; i
< ARRAY_SIZE(target_service_to_ce_map_wlan
); i
++) {
1830 entry
= &target_service_to_ce_map_wlan
[i
];
1832 if (__le32_to_cpu(entry
->service_id
) != service_id
)
1835 switch (__le32_to_cpu(entry
->pipedir
)) {
1840 *dl_pipe
= __le32_to_cpu(entry
->pipenum
);
1845 *ul_pipe
= __le32_to_cpu(entry
->pipenum
);
1851 *dl_pipe
= __le32_to_cpu(entry
->pipenum
);
1852 *ul_pipe
= __le32_to_cpu(entry
->pipenum
);
1859 if (!ul_set
|| !dl_set
)
1865 void ath10k_pci_hif_get_default_pipe(struct ath10k
*ar
,
1866 u8
*ul_pipe
, u8
*dl_pipe
)
1868 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci hif get default pipe\n");
1870 (void)ath10k_pci_hif_map_service_to_pipe(ar
,
1871 ATH10K_HTC_SVC_ID_RSVD_CTRL
,
1875 void ath10k_pci_irq_msi_fw_mask(struct ath10k
*ar
)
1879 switch (ar
->hw_rev
) {
1880 case ATH10K_HW_QCA988X
:
1881 case ATH10K_HW_QCA9887
:
1882 case ATH10K_HW_QCA6174
:
1883 case ATH10K_HW_QCA9377
:
1884 val
= ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
1886 val
&= ~CORE_CTRL_PCIE_REG_31_MASK
;
1887 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+
1888 CORE_CTRL_ADDRESS
, val
);
1890 case ATH10K_HW_QCA99X0
:
1891 case ATH10K_HW_QCA9984
:
1892 case ATH10K_HW_QCA9888
:
1893 case ATH10K_HW_QCA4019
:
1894 /* TODO: Find appropriate register configuration for QCA99X0
1898 case ATH10K_HW_WCN3990
:
1903 static void ath10k_pci_irq_msi_fw_unmask(struct ath10k
*ar
)
1907 switch (ar
->hw_rev
) {
1908 case ATH10K_HW_QCA988X
:
1909 case ATH10K_HW_QCA9887
:
1910 case ATH10K_HW_QCA6174
:
1911 case ATH10K_HW_QCA9377
:
1912 val
= ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
1914 val
|= CORE_CTRL_PCIE_REG_31_MASK
;
1915 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+
1916 CORE_CTRL_ADDRESS
, val
);
1918 case ATH10K_HW_QCA99X0
:
1919 case ATH10K_HW_QCA9984
:
1920 case ATH10K_HW_QCA9888
:
1921 case ATH10K_HW_QCA4019
:
1922 /* TODO: Find appropriate register configuration for QCA99X0
1923 * to unmask irq/MSI.
1926 case ATH10K_HW_WCN3990
:
1931 static void ath10k_pci_irq_disable(struct ath10k
*ar
)
1933 ath10k_ce_disable_interrupts(ar
);
1934 ath10k_pci_disable_and_clear_legacy_irq(ar
);
1935 ath10k_pci_irq_msi_fw_mask(ar
);
1938 static void ath10k_pci_irq_sync(struct ath10k
*ar
)
1940 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1942 synchronize_irq(ar_pci
->pdev
->irq
);
1945 static void ath10k_pci_irq_enable(struct ath10k
*ar
)
1947 ath10k_ce_enable_interrupts(ar
);
1948 ath10k_pci_enable_legacy_irq(ar
);
1949 ath10k_pci_irq_msi_fw_unmask(ar
);
1952 static int ath10k_pci_hif_start(struct ath10k
*ar
)
1954 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1956 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot hif start\n");
1958 napi_enable(&ar
->napi
);
1960 ath10k_pci_irq_enable(ar
);
1961 ath10k_pci_rx_post(ar
);
1963 pcie_capability_write_word(ar_pci
->pdev
, PCI_EXP_LNKCTL
,
1969 static void ath10k_pci_rx_pipe_cleanup(struct ath10k_pci_pipe
*pci_pipe
)
1972 struct ath10k_ce_pipe
*ce_pipe
;
1973 struct ath10k_ce_ring
*ce_ring
;
1974 struct sk_buff
*skb
;
1977 ar
= pci_pipe
->hif_ce_state
;
1978 ce_pipe
= pci_pipe
->ce_hdl
;
1979 ce_ring
= ce_pipe
->dest_ring
;
1984 if (!pci_pipe
->buf_sz
)
1987 for (i
= 0; i
< ce_ring
->nentries
; i
++) {
1988 skb
= ce_ring
->per_transfer_context
[i
];
1992 ce_ring
->per_transfer_context
[i
] = NULL
;
1994 dma_unmap_single(ar
->dev
, ATH10K_SKB_RXCB(skb
)->paddr
,
1995 skb
->len
+ skb_tailroom(skb
),
1997 dev_kfree_skb_any(skb
);
2001 static void ath10k_pci_tx_pipe_cleanup(struct ath10k_pci_pipe
*pci_pipe
)
2004 struct ath10k_ce_pipe
*ce_pipe
;
2005 struct ath10k_ce_ring
*ce_ring
;
2006 struct sk_buff
*skb
;
2009 ar
= pci_pipe
->hif_ce_state
;
2010 ce_pipe
= pci_pipe
->ce_hdl
;
2011 ce_ring
= ce_pipe
->src_ring
;
2016 if (!pci_pipe
->buf_sz
)
2019 for (i
= 0; i
< ce_ring
->nentries
; i
++) {
2020 skb
= ce_ring
->per_transfer_context
[i
];
2024 ce_ring
->per_transfer_context
[i
] = NULL
;
2026 ath10k_htc_tx_completion_handler(ar
, skb
);
2031 * Cleanup residual buffers for device shutdown:
2032 * buffers that were enqueued for receive
2033 * buffers that were to be sent
2034 * Note: Buffers that had completed but which were
2035 * not yet processed are on a completion queue. They
2036 * are handled when the completion thread shuts down.
2038 static void ath10k_pci_buffer_cleanup(struct ath10k
*ar
)
2040 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2043 for (pipe_num
= 0; pipe_num
< CE_COUNT
; pipe_num
++) {
2044 struct ath10k_pci_pipe
*pipe_info
;
2046 pipe_info
= &ar_pci
->pipe_info
[pipe_num
];
2047 ath10k_pci_rx_pipe_cleanup(pipe_info
);
2048 ath10k_pci_tx_pipe_cleanup(pipe_info
);
2052 void ath10k_pci_ce_deinit(struct ath10k
*ar
)
2056 for (i
= 0; i
< CE_COUNT
; i
++)
2057 ath10k_ce_deinit_pipe(ar
, i
);
2060 void ath10k_pci_flush(struct ath10k
*ar
)
2062 ath10k_pci_rx_retry_sync(ar
);
2063 ath10k_pci_buffer_cleanup(ar
);
2066 static void ath10k_pci_hif_stop(struct ath10k
*ar
)
2068 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2069 unsigned long flags
;
2071 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot hif stop\n");
2073 ath10k_pci_irq_disable(ar
);
2074 ath10k_pci_irq_sync(ar
);
2075 napi_synchronize(&ar
->napi
);
2076 napi_disable(&ar
->napi
);
2078 /* Most likely the device has HTT Rx ring configured. The only way to
2079 * prevent the device from accessing (and possible corrupting) host
2080 * memory is to reset the chip now.
2082 * There's also no known way of masking MSI interrupts on the device.
2083 * For ranged MSI the CE-related interrupts can be masked. However
2084 * regardless how many MSI interrupts are assigned the first one
2085 * is always used for firmware indications (crashes) and cannot be
2086 * masked. To prevent the device from asserting the interrupt reset it
2087 * before proceeding with cleanup.
2089 ath10k_pci_safe_chip_reset(ar
);
2091 ath10k_pci_flush(ar
);
2093 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
2094 WARN_ON(ar_pci
->ps_wake_refcount
> 0);
2095 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
2098 int ath10k_pci_hif_exchange_bmi_msg(struct ath10k
*ar
,
2099 void *req
, u32 req_len
,
2100 void *resp
, u32
*resp_len
)
2102 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2103 struct ath10k_pci_pipe
*pci_tx
= &ar_pci
->pipe_info
[BMI_CE_NUM_TO_TARG
];
2104 struct ath10k_pci_pipe
*pci_rx
= &ar_pci
->pipe_info
[BMI_CE_NUM_TO_HOST
];
2105 struct ath10k_ce_pipe
*ce_tx
= pci_tx
->ce_hdl
;
2106 struct ath10k_ce_pipe
*ce_rx
= pci_rx
->ce_hdl
;
2107 dma_addr_t req_paddr
= 0;
2108 dma_addr_t resp_paddr
= 0;
2109 struct bmi_xfer xfer
= {};
2110 void *treq
, *tresp
= NULL
;
2115 if (resp
&& !resp_len
)
2118 if (resp
&& resp_len
&& *resp_len
== 0)
2121 treq
= kmemdup(req
, req_len
, GFP_KERNEL
);
2125 req_paddr
= dma_map_single(ar
->dev
, treq
, req_len
, DMA_TO_DEVICE
);
2126 ret
= dma_mapping_error(ar
->dev
, req_paddr
);
2132 if (resp
&& resp_len
) {
2133 tresp
= kzalloc(*resp_len
, GFP_KERNEL
);
2139 resp_paddr
= dma_map_single(ar
->dev
, tresp
, *resp_len
,
2141 ret
= dma_mapping_error(ar
->dev
, resp_paddr
);
2147 xfer
.wait_for_resp
= true;
2150 ath10k_ce_rx_post_buf(ce_rx
, &xfer
, resp_paddr
);
2153 ret
= ath10k_ce_send(ce_tx
, &xfer
, req_paddr
, req_len
, -1, 0);
2157 ret
= ath10k_pci_bmi_wait(ar
, ce_tx
, ce_rx
, &xfer
);
2159 dma_addr_t unused_buffer
;
2160 unsigned int unused_nbytes
;
2161 unsigned int unused_id
;
2163 ath10k_ce_cancel_send_next(ce_tx
, NULL
, &unused_buffer
,
2164 &unused_nbytes
, &unused_id
);
2166 /* non-zero means we did not time out */
2172 dma_addr_t unused_buffer
;
2174 ath10k_ce_revoke_recv_next(ce_rx
, NULL
, &unused_buffer
);
2175 dma_unmap_single(ar
->dev
, resp_paddr
,
2176 *resp_len
, DMA_FROM_DEVICE
);
2179 dma_unmap_single(ar
->dev
, req_paddr
, req_len
, DMA_TO_DEVICE
);
2181 if (ret
== 0 && resp_len
) {
2182 *resp_len
= min(*resp_len
, xfer
.resp_len
);
2183 memcpy(resp
, tresp
, xfer
.resp_len
);
2192 static void ath10k_pci_bmi_send_done(struct ath10k_ce_pipe
*ce_state
)
2194 struct bmi_xfer
*xfer
;
2196 if (ath10k_ce_completed_send_next(ce_state
, (void **)&xfer
))
2199 xfer
->tx_done
= true;
2202 static void ath10k_pci_bmi_recv_data(struct ath10k_ce_pipe
*ce_state
)
2204 struct ath10k
*ar
= ce_state
->ar
;
2205 struct bmi_xfer
*xfer
;
2206 unsigned int nbytes
;
2208 if (ath10k_ce_completed_recv_next(ce_state
, (void **)&xfer
,
2212 if (WARN_ON_ONCE(!xfer
))
2215 if (!xfer
->wait_for_resp
) {
2216 ath10k_warn(ar
, "unexpected: BMI data received; ignoring\n");
2220 xfer
->resp_len
= nbytes
;
2221 xfer
->rx_done
= true;
2224 static int ath10k_pci_bmi_wait(struct ath10k
*ar
,
2225 struct ath10k_ce_pipe
*tx_pipe
,
2226 struct ath10k_ce_pipe
*rx_pipe
,
2227 struct bmi_xfer
*xfer
)
2229 unsigned long timeout
= jiffies
+ BMI_COMMUNICATION_TIMEOUT_HZ
;
2230 unsigned long started
= jiffies
;
2234 while (time_before_eq(jiffies
, timeout
)) {
2235 ath10k_pci_bmi_send_done(tx_pipe
);
2236 ath10k_pci_bmi_recv_data(rx_pipe
);
2238 if (xfer
->tx_done
&& (xfer
->rx_done
== xfer
->wait_for_resp
)) {
2249 dur
= jiffies
- started
;
2251 ath10k_dbg(ar
, ATH10K_DBG_BMI
,
2252 "bmi cmd took %lu jiffies hz %d ret %d\n",
2258 * Send an interrupt to the device to wake up the Target CPU
2259 * so it has an opportunity to notice any changed state.
2261 static int ath10k_pci_wake_target_cpu(struct ath10k
*ar
)
2265 addr
= SOC_CORE_BASE_ADDRESS
+ CORE_CTRL_ADDRESS
;
2266 val
= ath10k_pci_read32(ar
, addr
);
2267 val
|= CORE_CTRL_CPU_INTR_MASK
;
2268 ath10k_pci_write32(ar
, addr
, val
);
2273 static int ath10k_pci_get_num_banks(struct ath10k
*ar
)
2275 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2277 switch (ar_pci
->pdev
->device
) {
2278 case QCA988X_2_0_DEVICE_ID_UBNT
:
2279 case QCA988X_2_0_DEVICE_ID
:
2280 case QCA99X0_2_0_DEVICE_ID
:
2281 case QCA9888_2_0_DEVICE_ID
:
2282 case QCA9984_1_0_DEVICE_ID
:
2283 case QCA9887_1_0_DEVICE_ID
:
2285 case QCA6164_2_1_DEVICE_ID
:
2286 case QCA6174_2_1_DEVICE_ID
:
2287 switch (MS(ar
->bus_param
.chip_id
, SOC_CHIP_ID_REV
)) {
2288 case QCA6174_HW_1_0_CHIP_ID_REV
:
2289 case QCA6174_HW_1_1_CHIP_ID_REV
:
2290 case QCA6174_HW_2_1_CHIP_ID_REV
:
2291 case QCA6174_HW_2_2_CHIP_ID_REV
:
2293 case QCA6174_HW_1_3_CHIP_ID_REV
:
2295 case QCA6174_HW_3_0_CHIP_ID_REV
:
2296 case QCA6174_HW_3_1_CHIP_ID_REV
:
2297 case QCA6174_HW_3_2_CHIP_ID_REV
:
2301 case QCA9377_1_0_DEVICE_ID
:
2305 ath10k_warn(ar
, "unknown number of banks, assuming 1\n");
2309 static int ath10k_bus_get_num_banks(struct ath10k
*ar
)
2311 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
2313 return ce
->bus_ops
->get_num_banks(ar
);
2316 int ath10k_pci_init_config(struct ath10k
*ar
)
2318 u32 interconnect_targ_addr
;
2319 u32 pcie_state_targ_addr
= 0;
2320 u32 pipe_cfg_targ_addr
= 0;
2321 u32 svc_to_pipe_map
= 0;
2322 u32 pcie_config_flags
= 0;
2324 u32 ealloc_targ_addr
;
2326 u32 flag2_targ_addr
;
2329 /* Download to Target the CE Config and the service-to-CE map */
2330 interconnect_targ_addr
=
2331 host_interest_item_address(HI_ITEM(hi_interconnect_state
));
2333 /* Supply Target-side CE configuration */
2334 ret
= ath10k_pci_diag_read32(ar
, interconnect_targ_addr
,
2335 &pcie_state_targ_addr
);
2337 ath10k_err(ar
, "Failed to get pcie state addr: %d\n", ret
);
2341 if (pcie_state_targ_addr
== 0) {
2343 ath10k_err(ar
, "Invalid pcie state addr\n");
2347 ret
= ath10k_pci_diag_read32(ar
, (pcie_state_targ_addr
+
2348 offsetof(struct pcie_state
,
2350 &pipe_cfg_targ_addr
);
2352 ath10k_err(ar
, "Failed to get pipe cfg addr: %d\n", ret
);
2356 if (pipe_cfg_targ_addr
== 0) {
2358 ath10k_err(ar
, "Invalid pipe cfg addr\n");
2362 ret
= ath10k_pci_diag_write_mem(ar
, pipe_cfg_targ_addr
,
2363 target_ce_config_wlan
,
2364 sizeof(struct ce_pipe_config
) *
2365 NUM_TARGET_CE_CONFIG_WLAN
);
2368 ath10k_err(ar
, "Failed to write pipe cfg: %d\n", ret
);
2372 ret
= ath10k_pci_diag_read32(ar
, (pcie_state_targ_addr
+
2373 offsetof(struct pcie_state
,
2377 ath10k_err(ar
, "Failed to get svc/pipe map: %d\n", ret
);
2381 if (svc_to_pipe_map
== 0) {
2383 ath10k_err(ar
, "Invalid svc_to_pipe map\n");
2387 ret
= ath10k_pci_diag_write_mem(ar
, svc_to_pipe_map
,
2388 target_service_to_ce_map_wlan
,
2389 sizeof(target_service_to_ce_map_wlan
));
2391 ath10k_err(ar
, "Failed to write svc/pipe map: %d\n", ret
);
2395 ret
= ath10k_pci_diag_read32(ar
, (pcie_state_targ_addr
+
2396 offsetof(struct pcie_state
,
2398 &pcie_config_flags
);
2400 ath10k_err(ar
, "Failed to get pcie config_flags: %d\n", ret
);
2404 pcie_config_flags
&= ~PCIE_CONFIG_FLAG_ENABLE_L1
;
2406 ret
= ath10k_pci_diag_write32(ar
, (pcie_state_targ_addr
+
2407 offsetof(struct pcie_state
,
2411 ath10k_err(ar
, "Failed to write pcie config_flags: %d\n", ret
);
2415 /* configure early allocation */
2416 ealloc_targ_addr
= host_interest_item_address(HI_ITEM(hi_early_alloc
));
2418 ret
= ath10k_pci_diag_read32(ar
, ealloc_targ_addr
, &ealloc_value
);
2420 ath10k_err(ar
, "Failed to get early alloc val: %d\n", ret
);
2424 /* first bank is switched to IRAM */
2425 ealloc_value
|= ((HI_EARLY_ALLOC_MAGIC
<< HI_EARLY_ALLOC_MAGIC_SHIFT
) &
2426 HI_EARLY_ALLOC_MAGIC_MASK
);
2427 ealloc_value
|= ((ath10k_bus_get_num_banks(ar
) <<
2428 HI_EARLY_ALLOC_IRAM_BANKS_SHIFT
) &
2429 HI_EARLY_ALLOC_IRAM_BANKS_MASK
);
2431 ret
= ath10k_pci_diag_write32(ar
, ealloc_targ_addr
, ealloc_value
);
2433 ath10k_err(ar
, "Failed to set early alloc val: %d\n", ret
);
2437 /* Tell Target to proceed with initialization */
2438 flag2_targ_addr
= host_interest_item_address(HI_ITEM(hi_option_flag2
));
2440 ret
= ath10k_pci_diag_read32(ar
, flag2_targ_addr
, &flag2_value
);
2442 ath10k_err(ar
, "Failed to get option val: %d\n", ret
);
2446 flag2_value
|= HI_OPTION_EARLY_CFG_DONE
;
2448 ret
= ath10k_pci_diag_write32(ar
, flag2_targ_addr
, flag2_value
);
2450 ath10k_err(ar
, "Failed to set option val: %d\n", ret
);
2457 static void ath10k_pci_override_ce_config(struct ath10k
*ar
)
2459 struct ce_attr
*attr
;
2460 struct ce_pipe_config
*config
;
2462 /* For QCA6174 we're overriding the Copy Engine 5 configuration,
2463 * since it is currently used for other feature.
2466 /* Override Host's Copy Engine 5 configuration */
2467 attr
= &host_ce_config_wlan
[5];
2468 attr
->src_sz_max
= 0;
2469 attr
->dest_nentries
= 0;
2471 /* Override Target firmware's Copy Engine configuration */
2472 config
= &target_ce_config_wlan
[5];
2473 config
->pipedir
= __cpu_to_le32(PIPEDIR_OUT
);
2474 config
->nbytes_max
= __cpu_to_le32(2048);
2476 /* Map from service/endpoint to Copy Engine */
2477 target_service_to_ce_map_wlan
[15].pipenum
= __cpu_to_le32(1);
2480 int ath10k_pci_alloc_pipes(struct ath10k
*ar
)
2482 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2483 struct ath10k_pci_pipe
*pipe
;
2484 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
2487 for (i
= 0; i
< CE_COUNT
; i
++) {
2488 pipe
= &ar_pci
->pipe_info
[i
];
2489 pipe
->ce_hdl
= &ce
->ce_states
[i
];
2491 pipe
->hif_ce_state
= ar
;
2493 ret
= ath10k_ce_alloc_pipe(ar
, i
, &host_ce_config_wlan
[i
]);
2495 ath10k_err(ar
, "failed to allocate copy engine pipe %d: %d\n",
2500 /* Last CE is Diagnostic Window */
2501 if (i
== CE_DIAG_PIPE
) {
2502 ar_pci
->ce_diag
= pipe
->ce_hdl
;
2506 pipe
->buf_sz
= (size_t)(host_ce_config_wlan
[i
].src_sz_max
);
2512 void ath10k_pci_free_pipes(struct ath10k
*ar
)
2516 for (i
= 0; i
< CE_COUNT
; i
++)
2517 ath10k_ce_free_pipe(ar
, i
);
2520 int ath10k_pci_init_pipes(struct ath10k
*ar
)
2524 for (i
= 0; i
< CE_COUNT
; i
++) {
2525 ret
= ath10k_ce_init_pipe(ar
, i
, &host_ce_config_wlan
[i
]);
2527 ath10k_err(ar
, "failed to initialize copy engine pipe %d: %d\n",
2536 static bool ath10k_pci_has_fw_crashed(struct ath10k
*ar
)
2538 return ath10k_pci_read32(ar
, FW_INDICATOR_ADDRESS
) &
2539 FW_IND_EVENT_PENDING
;
2542 static void ath10k_pci_fw_crashed_clear(struct ath10k
*ar
)
2546 val
= ath10k_pci_read32(ar
, FW_INDICATOR_ADDRESS
);
2547 val
&= ~FW_IND_EVENT_PENDING
;
2548 ath10k_pci_write32(ar
, FW_INDICATOR_ADDRESS
, val
);
2551 static bool ath10k_pci_has_device_gone(struct ath10k
*ar
)
2555 val
= ath10k_pci_read32(ar
, FW_INDICATOR_ADDRESS
);
2556 return (val
== 0xffffffff);
2559 /* this function effectively clears target memory controller assert line */
2560 static void ath10k_pci_warm_reset_si0(struct ath10k
*ar
)
2564 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2565 ath10k_pci_soc_write32(ar
, SOC_RESET_CONTROL_ADDRESS
,
2566 val
| SOC_RESET_CONTROL_SI0_RST_MASK
);
2567 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2571 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2572 ath10k_pci_soc_write32(ar
, SOC_RESET_CONTROL_ADDRESS
,
2573 val
& ~SOC_RESET_CONTROL_SI0_RST_MASK
);
2574 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2579 static void ath10k_pci_warm_reset_cpu(struct ath10k
*ar
)
2583 ath10k_pci_write32(ar
, FW_INDICATOR_ADDRESS
, 0);
2585 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2586 ath10k_pci_soc_write32(ar
, SOC_RESET_CONTROL_ADDRESS
,
2587 val
| SOC_RESET_CONTROL_CPU_WARM_RST_MASK
);
2590 static void ath10k_pci_warm_reset_ce(struct ath10k
*ar
)
2594 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2596 ath10k_pci_soc_write32(ar
, SOC_RESET_CONTROL_ADDRESS
,
2597 val
| SOC_RESET_CONTROL_CE_RST_MASK
);
2599 ath10k_pci_soc_write32(ar
, SOC_RESET_CONTROL_ADDRESS
,
2600 val
& ~SOC_RESET_CONTROL_CE_RST_MASK
);
2603 static void ath10k_pci_warm_reset_clear_lf(struct ath10k
*ar
)
2607 val
= ath10k_pci_soc_read32(ar
, SOC_LF_TIMER_CONTROL0_ADDRESS
);
2608 ath10k_pci_soc_write32(ar
, SOC_LF_TIMER_CONTROL0_ADDRESS
,
2609 val
& ~SOC_LF_TIMER_CONTROL0_ENABLE_MASK
);
2612 static int ath10k_pci_warm_reset(struct ath10k
*ar
)
2616 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot warm reset\n");
2618 spin_lock_bh(&ar
->data_lock
);
2619 ar
->stats
.fw_warm_reset_counter
++;
2620 spin_unlock_bh(&ar
->data_lock
);
2622 ath10k_pci_irq_disable(ar
);
2624 /* Make sure the target CPU is not doing anything dangerous, e.g. if it
2625 * were to access copy engine while host performs copy engine reset
2626 * then it is possible for the device to confuse pci-e controller to
2627 * the point of bringing host system to a complete stop (i.e. hang).
2629 ath10k_pci_warm_reset_si0(ar
);
2630 ath10k_pci_warm_reset_cpu(ar
);
2631 ath10k_pci_init_pipes(ar
);
2632 ath10k_pci_wait_for_target_init(ar
);
2634 ath10k_pci_warm_reset_clear_lf(ar
);
2635 ath10k_pci_warm_reset_ce(ar
);
2636 ath10k_pci_warm_reset_cpu(ar
);
2637 ath10k_pci_init_pipes(ar
);
2639 ret
= ath10k_pci_wait_for_target_init(ar
);
2641 ath10k_warn(ar
, "failed to wait for target init: %d\n", ret
);
2645 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot warm reset complete\n");
2650 static int ath10k_pci_qca99x0_soft_chip_reset(struct ath10k
*ar
)
2652 ath10k_pci_irq_disable(ar
);
2653 return ath10k_pci_qca99x0_chip_reset(ar
);
2656 static int ath10k_pci_safe_chip_reset(struct ath10k
*ar
)
2658 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2660 if (!ar_pci
->pci_soft_reset
)
2663 return ar_pci
->pci_soft_reset(ar
);
2666 static int ath10k_pci_qca988x_chip_reset(struct ath10k
*ar
)
2671 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot 988x chip reset\n");
2673 /* Some hardware revisions (e.g. CUS223v2) has issues with cold reset.
2674 * It is thus preferred to use warm reset which is safer but may not be
2675 * able to recover the device from all possible fail scenarios.
2677 * Warm reset doesn't always work on first try so attempt it a few
2678 * times before giving up.
2680 for (i
= 0; i
< ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS
; i
++) {
2681 ret
= ath10k_pci_warm_reset(ar
);
2683 ath10k_warn(ar
, "failed to warm reset attempt %d of %d: %d\n",
2684 i
+ 1, ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS
,
2689 /* FIXME: Sometimes copy engine doesn't recover after warm
2690 * reset. In most cases this needs cold reset. In some of these
2691 * cases the device is in such a state that a cold reset may
2694 * Reading any host interest register via copy engine is
2695 * sufficient to verify if device is capable of booting
2698 ret
= ath10k_pci_init_pipes(ar
);
2700 ath10k_warn(ar
, "failed to init copy engine: %d\n",
2705 ret
= ath10k_pci_diag_read32(ar
, QCA988X_HOST_INTEREST_ADDRESS
,
2708 ath10k_warn(ar
, "failed to poke copy engine: %d\n",
2713 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot chip reset complete (warm)\n");
2717 if (ath10k_pci_reset_mode
== ATH10K_PCI_RESET_WARM_ONLY
) {
2718 ath10k_warn(ar
, "refusing cold reset as requested\n");
2722 ret
= ath10k_pci_cold_reset(ar
);
2724 ath10k_warn(ar
, "failed to cold reset: %d\n", ret
);
2728 ret
= ath10k_pci_wait_for_target_init(ar
);
2730 ath10k_warn(ar
, "failed to wait for target after cold reset: %d\n",
2735 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot qca988x chip reset complete (cold)\n");
2740 static int ath10k_pci_qca6174_chip_reset(struct ath10k
*ar
)
2744 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot qca6174 chip reset\n");
2746 /* FIXME: QCA6174 requires cold + warm reset to work. */
2748 ret
= ath10k_pci_cold_reset(ar
);
2750 ath10k_warn(ar
, "failed to cold reset: %d\n", ret
);
2754 ret
= ath10k_pci_wait_for_target_init(ar
);
2756 ath10k_warn(ar
, "failed to wait for target after cold reset: %d\n",
2761 ret
= ath10k_pci_warm_reset(ar
);
2763 ath10k_warn(ar
, "failed to warm reset: %d\n", ret
);
2767 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot qca6174 chip reset complete (cold)\n");
2772 static int ath10k_pci_qca99x0_chip_reset(struct ath10k
*ar
)
2776 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot qca99x0 chip reset\n");
2778 ret
= ath10k_pci_cold_reset(ar
);
2780 ath10k_warn(ar
, "failed to cold reset: %d\n", ret
);
2784 ret
= ath10k_pci_wait_for_target_init(ar
);
2786 ath10k_warn(ar
, "failed to wait for target after cold reset: %d\n",
2791 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot qca99x0 chip reset complete (cold)\n");
2796 static int ath10k_pci_chip_reset(struct ath10k
*ar
)
2798 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2800 if (WARN_ON(!ar_pci
->pci_hard_reset
))
2803 return ar_pci
->pci_hard_reset(ar
);
2806 static int ath10k_pci_hif_power_up(struct ath10k
*ar
,
2807 enum ath10k_firmware_mode fw_mode
)
2809 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2812 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot hif power up\n");
2814 pcie_capability_read_word(ar_pci
->pdev
, PCI_EXP_LNKCTL
,
2816 pcie_capability_write_word(ar_pci
->pdev
, PCI_EXP_LNKCTL
,
2817 ar_pci
->link_ctl
& ~PCI_EXP_LNKCTL_ASPMC
);
2820 * Bring the target up cleanly.
2822 * The target may be in an undefined state with an AUX-powered Target
2823 * and a Host in WoW mode. If the Host crashes, loses power, or is
2824 * restarted (without unloading the driver) then the Target is left
2825 * (aux) powered and running. On a subsequent driver load, the Target
2826 * is in an unexpected state. We try to catch that here in order to
2827 * reset the Target and retry the probe.
2829 ret
= ath10k_pci_chip_reset(ar
);
2831 if (ath10k_pci_has_fw_crashed(ar
)) {
2832 ath10k_warn(ar
, "firmware crashed during chip reset\n");
2833 ath10k_pci_fw_crashed_clear(ar
);
2834 ath10k_pci_fw_crashed_dump(ar
);
2837 ath10k_err(ar
, "failed to reset chip: %d\n", ret
);
2841 ret
= ath10k_pci_init_pipes(ar
);
2843 ath10k_err(ar
, "failed to initialize CE: %d\n", ret
);
2847 ret
= ath10k_pci_init_config(ar
);
2849 ath10k_err(ar
, "failed to setup init config: %d\n", ret
);
2853 ret
= ath10k_pci_wake_target_cpu(ar
);
2855 ath10k_err(ar
, "could not wake up target CPU: %d\n", ret
);
2862 ath10k_pci_ce_deinit(ar
);
2868 void ath10k_pci_hif_power_down(struct ath10k
*ar
)
2870 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot hif power down\n");
2872 /* Currently hif_power_up performs effectively a reset and hif_stop
2873 * resets the chip as well so there's no point in resetting here.
2877 static int ath10k_pci_hif_suspend(struct ath10k
*ar
)
2879 /* Nothing to do; the important stuff is in the driver suspend. */
2883 static int ath10k_pci_suspend(struct ath10k
*ar
)
2885 /* The grace timer can still be counting down and ar->ps_awake be true.
2886 * It is known that the device may be asleep after resuming regardless
2887 * of the SoC powersave state before suspending. Hence make sure the
2888 * device is asleep before proceeding.
2890 ath10k_pci_sleep_sync(ar
);
2895 static int ath10k_pci_hif_resume(struct ath10k
*ar
)
2897 /* Nothing to do; the important stuff is in the driver resume. */
2901 static int ath10k_pci_resume(struct ath10k
*ar
)
2903 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2904 struct pci_dev
*pdev
= ar_pci
->pdev
;
2908 ret
= ath10k_pci_force_wake(ar
);
2910 ath10k_err(ar
, "failed to wake up target: %d\n", ret
);
2914 /* Suspend/Resume resets the PCI configuration space, so we have to
2915 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
2916 * from interfering with C3 CPU state. pci_restore_state won't help
2917 * here since it only restores the first 64 bytes pci config header.
2919 pci_read_config_dword(pdev
, 0x40, &val
);
2920 if ((val
& 0x0000ff00) != 0)
2921 pci_write_config_dword(pdev
, 0x40, val
& 0xffff00ff);
2926 static bool ath10k_pci_validate_cal(void *data
, size_t size
)
2928 __le16
*cal_words
= data
;
2935 for (i
= 0; i
< size
/ 2; i
++)
2936 checksum
^= le16_to_cpu(cal_words
[i
]);
2938 return checksum
== 0xffff;
2941 static void ath10k_pci_enable_eeprom(struct ath10k
*ar
)
2943 /* Enable SI clock */
2944 ath10k_pci_soc_write32(ar
, CLOCK_CONTROL_OFFSET
, 0x0);
2946 /* Configure GPIOs for I2C operation */
2947 ath10k_pci_write32(ar
,
2948 GPIO_BASE_ADDRESS
+ GPIO_PIN0_OFFSET
+
2949 4 * QCA9887_1_0_I2C_SDA_GPIO_PIN
,
2950 SM(QCA9887_1_0_I2C_SDA_PIN_CONFIG
,
2952 SM(1, GPIO_PIN0_PAD_PULL
));
2954 ath10k_pci_write32(ar
,
2955 GPIO_BASE_ADDRESS
+ GPIO_PIN0_OFFSET
+
2956 4 * QCA9887_1_0_SI_CLK_GPIO_PIN
,
2957 SM(QCA9887_1_0_SI_CLK_PIN_CONFIG
, GPIO_PIN0_CONFIG
) |
2958 SM(1, GPIO_PIN0_PAD_PULL
));
2960 ath10k_pci_write32(ar
,
2962 QCA9887_1_0_GPIO_ENABLE_W1TS_LOW_ADDRESS
,
2963 1u << QCA9887_1_0_SI_CLK_GPIO_PIN
);
2965 /* In Swift ASIC - EEPROM clock will be (110MHz/512) = 214KHz */
2966 ath10k_pci_write32(ar
,
2967 SI_BASE_ADDRESS
+ SI_CONFIG_OFFSET
,
2968 SM(1, SI_CONFIG_ERR_INT
) |
2969 SM(1, SI_CONFIG_BIDIR_OD_DATA
) |
2970 SM(1, SI_CONFIG_I2C
) |
2971 SM(1, SI_CONFIG_POS_SAMPLE
) |
2972 SM(1, SI_CONFIG_INACTIVE_DATA
) |
2973 SM(1, SI_CONFIG_INACTIVE_CLK
) |
2974 SM(8, SI_CONFIG_DIVIDER
));
2977 static int ath10k_pci_read_eeprom(struct ath10k
*ar
, u16 addr
, u8
*out
)
2982 /* set device select byte and for the read operation */
2983 reg
= QCA9887_EEPROM_SELECT_READ
|
2984 SM(addr
, QCA9887_EEPROM_ADDR_LO
) |
2985 SM(addr
>> 8, QCA9887_EEPROM_ADDR_HI
);
2986 ath10k_pci_write32(ar
, SI_BASE_ADDRESS
+ SI_TX_DATA0_OFFSET
, reg
);
2988 /* write transmit data, transfer length, and START bit */
2989 ath10k_pci_write32(ar
, SI_BASE_ADDRESS
+ SI_CS_OFFSET
,
2990 SM(1, SI_CS_START
) | SM(1, SI_CS_RX_CNT
) |
2991 SM(4, SI_CS_TX_CNT
));
2993 /* wait max 1 sec */
2994 wait_limit
= 100000;
2996 /* wait for SI_CS_DONE_INT */
2998 reg
= ath10k_pci_read32(ar
, SI_BASE_ADDRESS
+ SI_CS_OFFSET
);
2999 if (MS(reg
, SI_CS_DONE_INT
))
3004 } while (wait_limit
> 0);
3006 if (!MS(reg
, SI_CS_DONE_INT
)) {
3007 ath10k_err(ar
, "timeout while reading device EEPROM at %04x\n",
3012 /* clear SI_CS_DONE_INT */
3013 ath10k_pci_write32(ar
, SI_BASE_ADDRESS
+ SI_CS_OFFSET
, reg
);
3015 if (MS(reg
, SI_CS_DONE_ERR
)) {
3016 ath10k_err(ar
, "failed to read device EEPROM at %04x\n", addr
);
3020 /* extract receive data */
3021 reg
= ath10k_pci_read32(ar
, SI_BASE_ADDRESS
+ SI_RX_DATA0_OFFSET
);
3027 static int ath10k_pci_hif_fetch_cal_eeprom(struct ath10k
*ar
, void **data
,
3034 if (!QCA_REV_9887(ar
))
3037 calsize
= ar
->hw_params
.cal_data_len
;
3038 caldata
= kmalloc(calsize
, GFP_KERNEL
);
3042 ath10k_pci_enable_eeprom(ar
);
3044 for (i
= 0; i
< calsize
; i
++) {
3045 ret
= ath10k_pci_read_eeprom(ar
, i
, &caldata
[i
]);
3050 if (!ath10k_pci_validate_cal(caldata
, calsize
))
3054 *data_len
= calsize
;
3064 static const struct ath10k_hif_ops ath10k_pci_hif_ops
= {
3065 .tx_sg
= ath10k_pci_hif_tx_sg
,
3066 .diag_read
= ath10k_pci_hif_diag_read
,
3067 .diag_write
= ath10k_pci_diag_write_mem
,
3068 .exchange_bmi_msg
= ath10k_pci_hif_exchange_bmi_msg
,
3069 .start
= ath10k_pci_hif_start
,
3070 .stop
= ath10k_pci_hif_stop
,
3071 .map_service_to_pipe
= ath10k_pci_hif_map_service_to_pipe
,
3072 .get_default_pipe
= ath10k_pci_hif_get_default_pipe
,
3073 .send_complete_check
= ath10k_pci_hif_send_complete_check
,
3074 .get_free_queue_number
= ath10k_pci_hif_get_free_queue_number
,
3075 .power_up
= ath10k_pci_hif_power_up
,
3076 .power_down
= ath10k_pci_hif_power_down
,
3077 .read32
= ath10k_pci_read32
,
3078 .write32
= ath10k_pci_write32
,
3079 .suspend
= ath10k_pci_hif_suspend
,
3080 .resume
= ath10k_pci_hif_resume
,
3081 .fetch_cal_eeprom
= ath10k_pci_hif_fetch_cal_eeprom
,
3085 * Top-level interrupt handler for all PCI interrupts from a Target.
3086 * When a block of MSI interrupts is allocated, this top-level handler
3087 * is not used; instead, we directly call the correct sub-handler.
3089 static irqreturn_t
ath10k_pci_interrupt_handler(int irq
, void *arg
)
3091 struct ath10k
*ar
= arg
;
3092 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3095 if (ath10k_pci_has_device_gone(ar
))
3098 ret
= ath10k_pci_force_wake(ar
);
3100 ath10k_warn(ar
, "failed to wake device up on irq: %d\n", ret
);
3104 if ((ar_pci
->oper_irq_mode
== ATH10K_PCI_IRQ_LEGACY
) &&
3105 !ath10k_pci_irq_pending(ar
))
3108 ath10k_pci_disable_and_clear_legacy_irq(ar
);
3109 ath10k_pci_irq_msi_fw_mask(ar
);
3110 napi_schedule(&ar
->napi
);
3115 static int ath10k_pci_napi_poll(struct napi_struct
*ctx
, int budget
)
3117 struct ath10k
*ar
= container_of(ctx
, struct ath10k
, napi
);
3120 if (ath10k_pci_has_fw_crashed(ar
)) {
3121 ath10k_pci_fw_crashed_clear(ar
);
3122 ath10k_pci_fw_crashed_dump(ar
);
3127 ath10k_ce_per_engine_service_any(ar
);
3129 done
= ath10k_htt_txrx_compl_task(ar
, budget
);
3131 if (done
< budget
) {
3132 napi_complete_done(ctx
, done
);
3133 /* In case of MSI, it is possible that interrupts are received
3134 * while NAPI poll is inprogress. So pending interrupts that are
3135 * received after processing all copy engine pipes by NAPI poll
3136 * will not be handled again. This is causing failure to
3137 * complete boot sequence in x86 platform. So before enabling
3138 * interrupts safer to check for pending interrupts for
3139 * immediate servicing.
3141 if (ath10k_ce_interrupt_summary(ar
)) {
3142 napi_reschedule(ctx
);
3145 ath10k_pci_enable_legacy_irq(ar
);
3146 ath10k_pci_irq_msi_fw_unmask(ar
);
3153 static int ath10k_pci_request_irq_msi(struct ath10k
*ar
)
3155 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3158 ret
= request_irq(ar_pci
->pdev
->irq
,
3159 ath10k_pci_interrupt_handler
,
3160 IRQF_SHARED
, "ath10k_pci", ar
);
3162 ath10k_warn(ar
, "failed to request MSI irq %d: %d\n",
3163 ar_pci
->pdev
->irq
, ret
);
3170 static int ath10k_pci_request_irq_legacy(struct ath10k
*ar
)
3172 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3175 ret
= request_irq(ar_pci
->pdev
->irq
,
3176 ath10k_pci_interrupt_handler
,
3177 IRQF_SHARED
, "ath10k_pci", ar
);
3179 ath10k_warn(ar
, "failed to request legacy irq %d: %d\n",
3180 ar_pci
->pdev
->irq
, ret
);
3187 static int ath10k_pci_request_irq(struct ath10k
*ar
)
3189 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3191 switch (ar_pci
->oper_irq_mode
) {
3192 case ATH10K_PCI_IRQ_LEGACY
:
3193 return ath10k_pci_request_irq_legacy(ar
);
3194 case ATH10K_PCI_IRQ_MSI
:
3195 return ath10k_pci_request_irq_msi(ar
);
3201 static void ath10k_pci_free_irq(struct ath10k
*ar
)
3203 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3205 free_irq(ar_pci
->pdev
->irq
, ar
);
3208 void ath10k_pci_init_napi(struct ath10k
*ar
)
3210 netif_napi_add(&ar
->napi_dev
, &ar
->napi
, ath10k_pci_napi_poll
,
3211 ATH10K_NAPI_BUDGET
);
3214 static int ath10k_pci_init_irq(struct ath10k
*ar
)
3216 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3219 ath10k_pci_init_napi(ar
);
3221 if (ath10k_pci_irq_mode
!= ATH10K_PCI_IRQ_AUTO
)
3222 ath10k_info(ar
, "limiting irq mode to: %d\n",
3223 ath10k_pci_irq_mode
);
3226 if (ath10k_pci_irq_mode
!= ATH10K_PCI_IRQ_LEGACY
) {
3227 ar_pci
->oper_irq_mode
= ATH10K_PCI_IRQ_MSI
;
3228 ret
= pci_enable_msi(ar_pci
->pdev
);
3237 * A potential race occurs here: The CORE_BASE write
3238 * depends on target correctly decoding AXI address but
3239 * host won't know when target writes BAR to CORE_CTRL.
3240 * This write might get lost if target has NOT written BAR.
3241 * For now, fix the race by repeating the write in below
3242 * synchronization checking.
3244 ar_pci
->oper_irq_mode
= ATH10K_PCI_IRQ_LEGACY
;
3246 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+ PCIE_INTR_ENABLE_ADDRESS
,
3247 PCIE_INTR_FIRMWARE_MASK
| PCIE_INTR_CE_MASK_ALL
);
3252 static void ath10k_pci_deinit_irq_legacy(struct ath10k
*ar
)
3254 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+ PCIE_INTR_ENABLE_ADDRESS
,
3258 static int ath10k_pci_deinit_irq(struct ath10k
*ar
)
3260 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3262 switch (ar_pci
->oper_irq_mode
) {
3263 case ATH10K_PCI_IRQ_LEGACY
:
3264 ath10k_pci_deinit_irq_legacy(ar
);
3267 pci_disable_msi(ar_pci
->pdev
);
3274 int ath10k_pci_wait_for_target_init(struct ath10k
*ar
)
3276 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3277 unsigned long timeout
;
3280 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot waiting target to initialise\n");
3282 timeout
= jiffies
+ msecs_to_jiffies(ATH10K_PCI_TARGET_WAIT
);
3285 val
= ath10k_pci_read32(ar
, FW_INDICATOR_ADDRESS
);
3287 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot target indicator %x\n",
3290 /* target should never return this */
3291 if (val
== 0xffffffff)
3294 /* the device has crashed so don't bother trying anymore */
3295 if (val
& FW_IND_EVENT_PENDING
)
3298 if (val
& FW_IND_INITIALIZED
)
3301 if (ar_pci
->oper_irq_mode
== ATH10K_PCI_IRQ_LEGACY
)
3302 /* Fix potential race by repeating CORE_BASE writes */
3303 ath10k_pci_enable_legacy_irq(ar
);
3306 } while (time_before(jiffies
, timeout
));
3308 ath10k_pci_disable_and_clear_legacy_irq(ar
);
3309 ath10k_pci_irq_msi_fw_mask(ar
);
3311 if (val
== 0xffffffff) {
3312 ath10k_err(ar
, "failed to read device register, device is gone\n");
3316 if (val
& FW_IND_EVENT_PENDING
) {
3317 ath10k_warn(ar
, "device has crashed during init\n");
3321 if (!(val
& FW_IND_INITIALIZED
)) {
3322 ath10k_err(ar
, "failed to receive initialized event from target: %08x\n",
3327 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot target initialised\n");
3331 static int ath10k_pci_cold_reset(struct ath10k
*ar
)
3335 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot cold reset\n");
3337 spin_lock_bh(&ar
->data_lock
);
3339 ar
->stats
.fw_cold_reset_counter
++;
3341 spin_unlock_bh(&ar
->data_lock
);
3343 /* Put Target, including PCIe, into RESET. */
3344 val
= ath10k_pci_reg_read32(ar
, SOC_GLOBAL_RESET_ADDRESS
);
3346 ath10k_pci_reg_write32(ar
, SOC_GLOBAL_RESET_ADDRESS
, val
);
3348 /* After writing into SOC_GLOBAL_RESET to put device into
3349 * reset and pulling out of reset pcie may not be stable
3350 * for any immediate pcie register access and cause bus error,
3351 * add delay before any pcie access request to fix this issue.
3355 /* Pull Target, including PCIe, out of RESET. */
3357 ath10k_pci_reg_write32(ar
, SOC_GLOBAL_RESET_ADDRESS
, val
);
3361 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot cold reset complete\n");
3366 static int ath10k_pci_claim(struct ath10k
*ar
)
3368 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3369 struct pci_dev
*pdev
= ar_pci
->pdev
;
3372 pci_set_drvdata(pdev
, ar
);
3374 ret
= pci_enable_device(pdev
);
3376 ath10k_err(ar
, "failed to enable pci device: %d\n", ret
);
3380 ret
= pci_request_region(pdev
, BAR_NUM
, "ath");
3382 ath10k_err(ar
, "failed to request region BAR%d: %d\n", BAR_NUM
,
3387 /* Target expects 32 bit DMA. Enforce it. */
3388 ret
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
3390 ath10k_err(ar
, "failed to set dma mask to 32-bit: %d\n", ret
);
3394 ret
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(32));
3396 ath10k_err(ar
, "failed to set consistent dma mask to 32-bit: %d\n",
3401 pci_set_master(pdev
);
3403 /* Arrange for access to Target SoC registers. */
3404 ar_pci
->mem_len
= pci_resource_len(pdev
, BAR_NUM
);
3405 ar_pci
->mem
= pci_iomap(pdev
, BAR_NUM
, 0);
3407 ath10k_err(ar
, "failed to iomap BAR%d\n", BAR_NUM
);
3412 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot pci_mem 0x%pK\n", ar_pci
->mem
);
3416 pci_clear_master(pdev
);
3419 pci_release_region(pdev
, BAR_NUM
);
3422 pci_disable_device(pdev
);
3427 static void ath10k_pci_release(struct ath10k
*ar
)
3429 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3430 struct pci_dev
*pdev
= ar_pci
->pdev
;
3432 pci_iounmap(pdev
, ar_pci
->mem
);
3433 pci_release_region(pdev
, BAR_NUM
);
3434 pci_clear_master(pdev
);
3435 pci_disable_device(pdev
);
3438 static bool ath10k_pci_chip_is_supported(u32 dev_id
, u32 chip_id
)
3440 const struct ath10k_pci_supp_chip
*supp_chip
;
3442 u32 rev_id
= MS(chip_id
, SOC_CHIP_ID_REV
);
3444 for (i
= 0; i
< ARRAY_SIZE(ath10k_pci_supp_chips
); i
++) {
3445 supp_chip
= &ath10k_pci_supp_chips
[i
];
3447 if (supp_chip
->dev_id
== dev_id
&&
3448 supp_chip
->rev_id
== rev_id
)
3455 int ath10k_pci_setup_resource(struct ath10k
*ar
)
3457 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3458 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
3461 spin_lock_init(&ce
->ce_lock
);
3462 spin_lock_init(&ar_pci
->ps_lock
);
3463 mutex_init(&ar_pci
->ce_diag_mutex
);
3465 INIT_WORK(&ar_pci
->dump_work
, ath10k_pci_fw_dump_work
);
3467 timer_setup(&ar_pci
->rx_post_retry
, ath10k_pci_rx_replenish_retry
, 0);
3469 if (QCA_REV_6174(ar
) || QCA_REV_9377(ar
))
3470 ath10k_pci_override_ce_config(ar
);
3472 ret
= ath10k_pci_alloc_pipes(ar
);
3474 ath10k_err(ar
, "failed to allocate copy engine pipes: %d\n",
3482 void ath10k_pci_release_resource(struct ath10k
*ar
)
3484 ath10k_pci_rx_retry_sync(ar
);
3485 netif_napi_del(&ar
->napi
);
3486 ath10k_pci_ce_deinit(ar
);
3487 ath10k_pci_free_pipes(ar
);
3490 static const struct ath10k_bus_ops ath10k_pci_bus_ops
= {
3491 .read32
= ath10k_bus_pci_read32
,
3492 .write32
= ath10k_bus_pci_write32
,
3493 .get_num_banks
= ath10k_pci_get_num_banks
,
3496 static int ath10k_pci_probe(struct pci_dev
*pdev
,
3497 const struct pci_device_id
*pci_dev
)
3501 struct ath10k_pci
*ar_pci
;
3502 enum ath10k_hw_rev hw_rev
;
3503 struct ath10k_bus_params bus_params
= {};
3504 bool pci_ps
, is_qca988x
= false;
3505 int (*pci_soft_reset
)(struct ath10k
*ar
);
3506 int (*pci_hard_reset
)(struct ath10k
*ar
);
3507 u32 (*targ_cpu_to_ce_addr
)(struct ath10k
*ar
, u32 addr
);
3509 switch (pci_dev
->device
) {
3510 case QCA988X_2_0_DEVICE_ID_UBNT
:
3511 case QCA988X_2_0_DEVICE_ID
:
3512 hw_rev
= ATH10K_HW_QCA988X
;
3515 pci_soft_reset
= ath10k_pci_warm_reset
;
3516 pci_hard_reset
= ath10k_pci_qca988x_chip_reset
;
3517 targ_cpu_to_ce_addr
= ath10k_pci_qca988x_targ_cpu_to_ce_addr
;
3519 case QCA9887_1_0_DEVICE_ID
:
3520 hw_rev
= ATH10K_HW_QCA9887
;
3522 pci_soft_reset
= ath10k_pci_warm_reset
;
3523 pci_hard_reset
= ath10k_pci_qca988x_chip_reset
;
3524 targ_cpu_to_ce_addr
= ath10k_pci_qca988x_targ_cpu_to_ce_addr
;
3526 case QCA6164_2_1_DEVICE_ID
:
3527 case QCA6174_2_1_DEVICE_ID
:
3528 hw_rev
= ATH10K_HW_QCA6174
;
3530 pci_soft_reset
= ath10k_pci_warm_reset
;
3531 pci_hard_reset
= ath10k_pci_qca6174_chip_reset
;
3532 targ_cpu_to_ce_addr
= ath10k_pci_qca6174_targ_cpu_to_ce_addr
;
3534 case QCA99X0_2_0_DEVICE_ID
:
3535 hw_rev
= ATH10K_HW_QCA99X0
;
3537 pci_soft_reset
= ath10k_pci_qca99x0_soft_chip_reset
;
3538 pci_hard_reset
= ath10k_pci_qca99x0_chip_reset
;
3539 targ_cpu_to_ce_addr
= ath10k_pci_qca99x0_targ_cpu_to_ce_addr
;
3541 case QCA9984_1_0_DEVICE_ID
:
3542 hw_rev
= ATH10K_HW_QCA9984
;
3544 pci_soft_reset
= ath10k_pci_qca99x0_soft_chip_reset
;
3545 pci_hard_reset
= ath10k_pci_qca99x0_chip_reset
;
3546 targ_cpu_to_ce_addr
= ath10k_pci_qca99x0_targ_cpu_to_ce_addr
;
3548 case QCA9888_2_0_DEVICE_ID
:
3549 hw_rev
= ATH10K_HW_QCA9888
;
3551 pci_soft_reset
= ath10k_pci_qca99x0_soft_chip_reset
;
3552 pci_hard_reset
= ath10k_pci_qca99x0_chip_reset
;
3553 targ_cpu_to_ce_addr
= ath10k_pci_qca99x0_targ_cpu_to_ce_addr
;
3555 case QCA9377_1_0_DEVICE_ID
:
3556 hw_rev
= ATH10K_HW_QCA9377
;
3558 pci_soft_reset
= ath10k_pci_warm_reset
;
3559 pci_hard_reset
= ath10k_pci_qca6174_chip_reset
;
3560 targ_cpu_to_ce_addr
= ath10k_pci_qca6174_targ_cpu_to_ce_addr
;
3567 ar
= ath10k_core_create(sizeof(*ar_pci
), &pdev
->dev
, ATH10K_BUS_PCI
,
3568 hw_rev
, &ath10k_pci_hif_ops
);
3570 dev_err(&pdev
->dev
, "failed to allocate core\n");
3574 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "pci probe %04x:%04x %04x:%04x\n",
3575 pdev
->vendor
, pdev
->device
,
3576 pdev
->subsystem_vendor
, pdev
->subsystem_device
);
3578 ar_pci
= ath10k_pci_priv(ar
);
3579 ar_pci
->pdev
= pdev
;
3580 ar_pci
->dev
= &pdev
->dev
;
3582 ar
->dev_id
= pci_dev
->device
;
3583 ar_pci
->pci_ps
= pci_ps
;
3584 ar_pci
->ce
.bus_ops
= &ath10k_pci_bus_ops
;
3585 ar_pci
->pci_soft_reset
= pci_soft_reset
;
3586 ar_pci
->pci_hard_reset
= pci_hard_reset
;
3587 ar_pci
->targ_cpu_to_ce_addr
= targ_cpu_to_ce_addr
;
3588 ar
->ce_priv
= &ar_pci
->ce
;
3590 ar
->id
.vendor
= pdev
->vendor
;
3591 ar
->id
.device
= pdev
->device
;
3592 ar
->id
.subsystem_vendor
= pdev
->subsystem_vendor
;
3593 ar
->id
.subsystem_device
= pdev
->subsystem_device
;
3595 timer_setup(&ar_pci
->ps_timer
, ath10k_pci_ps_timer
, 0);
3597 ret
= ath10k_pci_setup_resource(ar
);
3599 ath10k_err(ar
, "failed to setup resource: %d\n", ret
);
3600 goto err_core_destroy
;
3603 ret
= ath10k_pci_claim(ar
);
3605 ath10k_err(ar
, "failed to claim device: %d\n", ret
);
3606 goto err_free_pipes
;
3609 ret
= ath10k_pci_force_wake(ar
);
3611 ath10k_warn(ar
, "failed to wake up device : %d\n", ret
);
3615 ath10k_pci_ce_deinit(ar
);
3616 ath10k_pci_irq_disable(ar
);
3618 ret
= ath10k_pci_init_irq(ar
);
3620 ath10k_err(ar
, "failed to init irqs: %d\n", ret
);
3624 ath10k_info(ar
, "pci irq %s oper_irq_mode %d irq_mode %d reset_mode %d\n",
3625 ath10k_pci_get_irq_method(ar
), ar_pci
->oper_irq_mode
,
3626 ath10k_pci_irq_mode
, ath10k_pci_reset_mode
);
3628 ret
= ath10k_pci_request_irq(ar
);
3630 ath10k_warn(ar
, "failed to request irqs: %d\n", ret
);
3631 goto err_deinit_irq
;
3634 bus_params
.dev_type
= ATH10K_DEV_TYPE_LL
;
3635 bus_params
.link_can_suspend
= true;
3636 /* Read CHIP_ID before reset to catch QCA9880-AR1A v1 devices that
3637 * fall off the bus during chip_reset. These chips have the same pci
3638 * device id as the QCA9880 BR4A or 2R4E. So that's why the check.
3641 bus_params
.chip_id
=
3642 ath10k_pci_soc_read32(ar
, SOC_CHIP_ID_ADDRESS
);
3643 if (bus_params
.chip_id
!= 0xffffffff) {
3644 if (!ath10k_pci_chip_is_supported(pdev
->device
,
3645 bus_params
.chip_id
))
3646 goto err_unsupported
;
3650 ret
= ath10k_pci_chip_reset(ar
);
3652 ath10k_err(ar
, "failed to reset chip: %d\n", ret
);
3656 bus_params
.chip_id
= ath10k_pci_soc_read32(ar
, SOC_CHIP_ID_ADDRESS
);
3657 if (bus_params
.chip_id
== 0xffffffff)
3658 goto err_unsupported
;
3660 if (!ath10k_pci_chip_is_supported(pdev
->device
, bus_params
.chip_id
))
3663 ret
= ath10k_core_register(ar
, &bus_params
);
3665 ath10k_err(ar
, "failed to register driver core: %d\n", ret
);
3672 ath10k_err(ar
, "device %04x with chip_id %08x isn't supported\n",
3673 pdev
->device
, bus_params
.chip_id
);
3676 ath10k_pci_free_irq(ar
);
3677 ath10k_pci_rx_retry_sync(ar
);
3680 ath10k_pci_deinit_irq(ar
);
3683 ath10k_pci_sleep_sync(ar
);
3684 ath10k_pci_release(ar
);
3687 ath10k_pci_free_pipes(ar
);
3690 ath10k_core_destroy(ar
);
3695 static void ath10k_pci_remove(struct pci_dev
*pdev
)
3697 struct ath10k
*ar
= pci_get_drvdata(pdev
);
3698 struct ath10k_pci
*ar_pci
;
3700 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci remove\n");
3705 ar_pci
= ath10k_pci_priv(ar
);
3710 ath10k_core_unregister(ar
);
3711 ath10k_pci_free_irq(ar
);
3712 ath10k_pci_deinit_irq(ar
);
3713 ath10k_pci_release_resource(ar
);
3714 ath10k_pci_sleep_sync(ar
);
3715 ath10k_pci_release(ar
);
3716 ath10k_core_destroy(ar
);
3719 MODULE_DEVICE_TABLE(pci
, ath10k_pci_id_table
);
3721 static __maybe_unused
int ath10k_pci_pm_suspend(struct device
*dev
)
3723 struct ath10k
*ar
= dev_get_drvdata(dev
);
3726 ret
= ath10k_pci_suspend(ar
);
3728 ath10k_warn(ar
, "failed to suspend hif: %d\n", ret
);
3733 static __maybe_unused
int ath10k_pci_pm_resume(struct device
*dev
)
3735 struct ath10k
*ar
= dev_get_drvdata(dev
);
3738 ret
= ath10k_pci_resume(ar
);
3740 ath10k_warn(ar
, "failed to resume hif: %d\n", ret
);
3745 static SIMPLE_DEV_PM_OPS(ath10k_pci_pm_ops
,
3746 ath10k_pci_pm_suspend
,
3747 ath10k_pci_pm_resume
);
3749 static struct pci_driver ath10k_pci_driver
= {
3750 .name
= "ath10k_pci",
3751 .id_table
= ath10k_pci_id_table
,
3752 .probe
= ath10k_pci_probe
,
3753 .remove
= ath10k_pci_remove
,
3755 .driver
.pm
= &ath10k_pci_pm_ops
,
3759 static int __init
ath10k_pci_init(void)
3763 ret
= pci_register_driver(&ath10k_pci_driver
);
3765 printk(KERN_ERR
"failed to register ath10k pci driver: %d\n",
3768 ret
= ath10k_ahb_init();
3770 printk(KERN_ERR
"ahb init failed: %d\n", ret
);
3774 module_init(ath10k_pci_init
);
3776 static void __exit
ath10k_pci_exit(void)
3778 pci_unregister_driver(&ath10k_pci_driver
);
3782 module_exit(ath10k_pci_exit
);
3784 MODULE_AUTHOR("Qualcomm Atheros");
3785 MODULE_DESCRIPTION("Driver support for Qualcomm Atheros 802.11ac WLAN PCIe/AHB devices");
3786 MODULE_LICENSE("Dual BSD/GPL");
3788 /* QCA988x 2.0 firmware files */
3789 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_FW_API2_FILE
);
3790 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_FW_API3_FILE
);
3791 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_FW_API4_FILE
);
3792 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_FW_API5_FILE
);
3793 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" QCA988X_HW_2_0_BOARD_DATA_FILE
);
3794 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_BOARD_API2_FILE
);
3796 /* QCA9887 1.0 firmware files */
3797 MODULE_FIRMWARE(QCA9887_HW_1_0_FW_DIR
"/" ATH10K_FW_API5_FILE
);
3798 MODULE_FIRMWARE(QCA9887_HW_1_0_FW_DIR
"/" QCA9887_HW_1_0_BOARD_DATA_FILE
);
3799 MODULE_FIRMWARE(QCA9887_HW_1_0_FW_DIR
"/" ATH10K_BOARD_API2_FILE
);
3801 /* QCA6174 2.1 firmware files */
3802 MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR
"/" ATH10K_FW_API4_FILE
);
3803 MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR
"/" ATH10K_FW_API5_FILE
);
3804 MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR
"/" QCA6174_HW_2_1_BOARD_DATA_FILE
);
3805 MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR
"/" ATH10K_BOARD_API2_FILE
);
3807 /* QCA6174 3.1 firmware files */
3808 MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR
"/" ATH10K_FW_API4_FILE
);
3809 MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR
"/" ATH10K_FW_API5_FILE
);
3810 MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR
"/" ATH10K_FW_API6_FILE
);
3811 MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR
"/" QCA6174_HW_3_0_BOARD_DATA_FILE
);
3812 MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR
"/" ATH10K_BOARD_API2_FILE
);
3814 /* QCA9377 1.0 firmware files */
3815 MODULE_FIRMWARE(QCA9377_HW_1_0_FW_DIR
"/" ATH10K_FW_API6_FILE
);
3816 MODULE_FIRMWARE(QCA9377_HW_1_0_FW_DIR
"/" ATH10K_FW_API5_FILE
);
3817 MODULE_FIRMWARE(QCA9377_HW_1_0_FW_DIR
"/" QCA9377_HW_1_0_BOARD_DATA_FILE
);