1 // SPDX-License-Identifier: ISC
3 * Copyright (c) 2005-2011 Atheros Communications Inc.
4 * Copyright (c) 2011-2017 Qualcomm Atheros, Inc.
5 * Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved.
9 #include <linux/module.h>
10 #include <linux/interrupt.h>
11 #include <linux/spinlock.h>
12 #include <linux/bitops.h>
18 #include "targaddrs.h"
27 enum ath10k_pci_reset_mode
{
28 ATH10K_PCI_RESET_AUTO
= 0,
29 ATH10K_PCI_RESET_WARM_ONLY
= 1,
32 static unsigned int ath10k_pci_irq_mode
= ATH10K_PCI_IRQ_AUTO
;
33 static unsigned int ath10k_pci_reset_mode
= ATH10K_PCI_RESET_AUTO
;
35 module_param_named(irq_mode
, ath10k_pci_irq_mode
, uint
, 0644);
36 MODULE_PARM_DESC(irq_mode
, "0: auto, 1: legacy, 2: msi (default: 0)");
38 module_param_named(reset_mode
, ath10k_pci_reset_mode
, uint
, 0644);
39 MODULE_PARM_DESC(reset_mode
, "0: auto, 1: warm only (default: 0)");
41 /* how long wait to wait for target to initialise, in ms */
42 #define ATH10K_PCI_TARGET_WAIT 3000
43 #define ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS 3
45 /* Maximum number of bytes that can be handled atomically by
46 * diag read and write.
48 #define ATH10K_DIAG_TRANSFER_LIMIT 0x5000
50 #define QCA99X0_PCIE_BAR0_START_REG 0x81030
51 #define QCA99X0_CPU_MEM_ADDR_REG 0x4d00c
52 #define QCA99X0_CPU_MEM_DATA_REG 0x4d010
54 static const struct pci_device_id ath10k_pci_id_table
[] = {
55 /* PCI-E QCA988X V2 (Ubiquiti branded) */
56 { PCI_VDEVICE(UBIQUITI
, QCA988X_2_0_DEVICE_ID_UBNT
) },
58 { PCI_VDEVICE(ATHEROS
, QCA988X_2_0_DEVICE_ID
) }, /* PCI-E QCA988X V2 */
59 { PCI_VDEVICE(ATHEROS
, QCA6164_2_1_DEVICE_ID
) }, /* PCI-E QCA6164 V2.1 */
60 { PCI_VDEVICE(ATHEROS
, QCA6174_2_1_DEVICE_ID
) }, /* PCI-E QCA6174 V2.1 */
61 { PCI_VDEVICE(ATHEROS
, QCA99X0_2_0_DEVICE_ID
) }, /* PCI-E QCA99X0 V2 */
62 { PCI_VDEVICE(ATHEROS
, QCA9888_2_0_DEVICE_ID
) }, /* PCI-E QCA9888 V2 */
63 { PCI_VDEVICE(ATHEROS
, QCA9984_1_0_DEVICE_ID
) }, /* PCI-E QCA9984 V1 */
64 { PCI_VDEVICE(ATHEROS
, QCA9377_1_0_DEVICE_ID
) }, /* PCI-E QCA9377 V1 */
65 { PCI_VDEVICE(ATHEROS
, QCA9887_1_0_DEVICE_ID
) }, /* PCI-E QCA9887 */
69 static const struct ath10k_pci_supp_chip ath10k_pci_supp_chips
[] = {
70 /* QCA988X pre 2.0 chips are not supported because they need some nasty
71 * hacks. ath10k doesn't have them and these devices crash horribly
74 { QCA988X_2_0_DEVICE_ID_UBNT
, QCA988X_HW_2_0_CHIP_ID_REV
},
75 { QCA988X_2_0_DEVICE_ID
, QCA988X_HW_2_0_CHIP_ID_REV
},
77 { QCA6164_2_1_DEVICE_ID
, QCA6174_HW_2_1_CHIP_ID_REV
},
78 { QCA6164_2_1_DEVICE_ID
, QCA6174_HW_2_2_CHIP_ID_REV
},
79 { QCA6164_2_1_DEVICE_ID
, QCA6174_HW_3_0_CHIP_ID_REV
},
80 { QCA6164_2_1_DEVICE_ID
, QCA6174_HW_3_1_CHIP_ID_REV
},
81 { QCA6164_2_1_DEVICE_ID
, QCA6174_HW_3_2_CHIP_ID_REV
},
83 { QCA6174_2_1_DEVICE_ID
, QCA6174_HW_2_1_CHIP_ID_REV
},
84 { QCA6174_2_1_DEVICE_ID
, QCA6174_HW_2_2_CHIP_ID_REV
},
85 { QCA6174_2_1_DEVICE_ID
, QCA6174_HW_3_0_CHIP_ID_REV
},
86 { QCA6174_2_1_DEVICE_ID
, QCA6174_HW_3_1_CHIP_ID_REV
},
87 { QCA6174_2_1_DEVICE_ID
, QCA6174_HW_3_2_CHIP_ID_REV
},
89 { QCA99X0_2_0_DEVICE_ID
, QCA99X0_HW_2_0_CHIP_ID_REV
},
91 { QCA9984_1_0_DEVICE_ID
, QCA9984_HW_1_0_CHIP_ID_REV
},
93 { QCA9888_2_0_DEVICE_ID
, QCA9888_HW_2_0_CHIP_ID_REV
},
95 { QCA9377_1_0_DEVICE_ID
, QCA9377_HW_1_0_CHIP_ID_REV
},
96 { QCA9377_1_0_DEVICE_ID
, QCA9377_HW_1_1_CHIP_ID_REV
},
98 { QCA9887_1_0_DEVICE_ID
, QCA9887_HW_1_0_CHIP_ID_REV
},
101 static void ath10k_pci_buffer_cleanup(struct ath10k
*ar
);
102 static int ath10k_pci_cold_reset(struct ath10k
*ar
);
103 static int ath10k_pci_safe_chip_reset(struct ath10k
*ar
);
104 static int ath10k_pci_init_irq(struct ath10k
*ar
);
105 static int ath10k_pci_deinit_irq(struct ath10k
*ar
);
106 static int ath10k_pci_request_irq(struct ath10k
*ar
);
107 static void ath10k_pci_free_irq(struct ath10k
*ar
);
108 static int ath10k_pci_bmi_wait(struct ath10k
*ar
,
109 struct ath10k_ce_pipe
*tx_pipe
,
110 struct ath10k_ce_pipe
*rx_pipe
,
111 struct bmi_xfer
*xfer
);
112 static int ath10k_pci_qca99x0_chip_reset(struct ath10k
*ar
);
113 static void ath10k_pci_htc_tx_cb(struct ath10k_ce_pipe
*ce_state
);
114 static void ath10k_pci_htc_rx_cb(struct ath10k_ce_pipe
*ce_state
);
115 static void ath10k_pci_htt_tx_cb(struct ath10k_ce_pipe
*ce_state
);
116 static void ath10k_pci_htt_rx_cb(struct ath10k_ce_pipe
*ce_state
);
117 static void ath10k_pci_htt_htc_rx_cb(struct ath10k_ce_pipe
*ce_state
);
118 static void ath10k_pci_pktlog_rx_cb(struct ath10k_ce_pipe
*ce_state
);
120 static const struct ce_attr pci_host_ce_config_wlan
[] = {
121 /* CE0: host->target HTC control and raw streams */
123 .flags
= CE_ATTR_FLAGS
,
127 .send_cb
= ath10k_pci_htc_tx_cb
,
130 /* CE1: target->host HTT + HTC control */
132 .flags
= CE_ATTR_FLAGS
,
135 .dest_nentries
= 512,
136 .recv_cb
= ath10k_pci_htt_htc_rx_cb
,
139 /* CE2: target->host WMI */
141 .flags
= CE_ATTR_FLAGS
,
144 .dest_nentries
= 128,
145 .recv_cb
= ath10k_pci_htc_rx_cb
,
148 /* CE3: host->target WMI */
150 .flags
= CE_ATTR_FLAGS
,
154 .send_cb
= ath10k_pci_htc_tx_cb
,
157 /* CE4: host->target HTT */
159 .flags
= CE_ATTR_FLAGS
| CE_ATTR_DIS_INTR
,
160 .src_nentries
= CE_HTT_H2T_MSG_SRC_NENTRIES
,
163 .send_cb
= ath10k_pci_htt_tx_cb
,
166 /* CE5: target->host HTT (HIF->HTT) */
168 .flags
= CE_ATTR_FLAGS
,
171 .dest_nentries
= 512,
172 .recv_cb
= ath10k_pci_htt_rx_cb
,
175 /* CE6: target autonomous hif_memcpy */
177 .flags
= CE_ATTR_FLAGS
,
183 /* CE7: ce_diag, the Diagnostic Window */
185 .flags
= CE_ATTR_FLAGS
| CE_ATTR_POLL
,
187 .src_sz_max
= DIAG_TRANSFER_LIMIT
,
191 /* CE8: target->host pktlog */
193 .flags
= CE_ATTR_FLAGS
,
196 .dest_nentries
= 128,
197 .recv_cb
= ath10k_pci_pktlog_rx_cb
,
200 /* CE9 target autonomous qcache memcpy */
202 .flags
= CE_ATTR_FLAGS
,
208 /* CE10: target autonomous hif memcpy */
210 .flags
= CE_ATTR_FLAGS
,
216 /* CE11: target autonomous hif memcpy */
218 .flags
= CE_ATTR_FLAGS
,
225 /* Target firmware's Copy Engine configuration. */
226 static const struct ce_pipe_config pci_target_ce_config_wlan
[] = {
227 /* CE0: host->target HTC control and raw streams */
229 .pipenum
= __cpu_to_le32(0),
230 .pipedir
= __cpu_to_le32(PIPEDIR_OUT
),
231 .nentries
= __cpu_to_le32(32),
232 .nbytes_max
= __cpu_to_le32(256),
233 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
234 .reserved
= __cpu_to_le32(0),
237 /* CE1: target->host HTT + HTC control */
239 .pipenum
= __cpu_to_le32(1),
240 .pipedir
= __cpu_to_le32(PIPEDIR_IN
),
241 .nentries
= __cpu_to_le32(32),
242 .nbytes_max
= __cpu_to_le32(2048),
243 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
244 .reserved
= __cpu_to_le32(0),
247 /* CE2: target->host WMI */
249 .pipenum
= __cpu_to_le32(2),
250 .pipedir
= __cpu_to_le32(PIPEDIR_IN
),
251 .nentries
= __cpu_to_le32(64),
252 .nbytes_max
= __cpu_to_le32(2048),
253 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
254 .reserved
= __cpu_to_le32(0),
257 /* CE3: host->target WMI */
259 .pipenum
= __cpu_to_le32(3),
260 .pipedir
= __cpu_to_le32(PIPEDIR_OUT
),
261 .nentries
= __cpu_to_le32(32),
262 .nbytes_max
= __cpu_to_le32(2048),
263 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
264 .reserved
= __cpu_to_le32(0),
267 /* CE4: host->target HTT */
269 .pipenum
= __cpu_to_le32(4),
270 .pipedir
= __cpu_to_le32(PIPEDIR_OUT
),
271 .nentries
= __cpu_to_le32(256),
272 .nbytes_max
= __cpu_to_le32(256),
273 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
274 .reserved
= __cpu_to_le32(0),
277 /* NB: 50% of src nentries, since tx has 2 frags */
279 /* CE5: target->host HTT (HIF->HTT) */
281 .pipenum
= __cpu_to_le32(5),
282 .pipedir
= __cpu_to_le32(PIPEDIR_IN
),
283 .nentries
= __cpu_to_le32(32),
284 .nbytes_max
= __cpu_to_le32(512),
285 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
286 .reserved
= __cpu_to_le32(0),
289 /* CE6: Reserved for target autonomous hif_memcpy */
291 .pipenum
= __cpu_to_le32(6),
292 .pipedir
= __cpu_to_le32(PIPEDIR_INOUT
),
293 .nentries
= __cpu_to_le32(32),
294 .nbytes_max
= __cpu_to_le32(4096),
295 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
),
296 .reserved
= __cpu_to_le32(0),
299 /* CE7 used only by Host */
301 .pipenum
= __cpu_to_le32(7),
302 .pipedir
= __cpu_to_le32(PIPEDIR_INOUT
),
303 .nentries
= __cpu_to_le32(0),
304 .nbytes_max
= __cpu_to_le32(0),
305 .flags
= __cpu_to_le32(0),
306 .reserved
= __cpu_to_le32(0),
309 /* CE8 target->host packtlog */
311 .pipenum
= __cpu_to_le32(8),
312 .pipedir
= __cpu_to_le32(PIPEDIR_IN
),
313 .nentries
= __cpu_to_le32(64),
314 .nbytes_max
= __cpu_to_le32(2048),
315 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
| CE_ATTR_DIS_INTR
),
316 .reserved
= __cpu_to_le32(0),
319 /* CE9 target autonomous qcache memcpy */
321 .pipenum
= __cpu_to_le32(9),
322 .pipedir
= __cpu_to_le32(PIPEDIR_INOUT
),
323 .nentries
= __cpu_to_le32(32),
324 .nbytes_max
= __cpu_to_le32(2048),
325 .flags
= __cpu_to_le32(CE_ATTR_FLAGS
| CE_ATTR_DIS_INTR
),
326 .reserved
= __cpu_to_le32(0),
329 /* It not necessary to send target wlan configuration for CE10 & CE11
330 * as these CEs are not actively used in target.
335 * Map from service/endpoint to Copy Engine.
336 * This table is derived from the CE_PCI TABLE, above.
337 * It is passed to the Target at startup for use by firmware.
339 static const struct ce_service_to_pipe pci_target_service_to_ce_map_wlan
[] = {
341 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VO
),
342 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
346 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VO
),
347 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
351 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BK
),
352 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
356 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BK
),
357 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
361 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BE
),
362 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
366 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BE
),
367 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
371 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VI
),
372 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
376 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VI
),
377 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
381 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_CONTROL
),
382 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
386 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_CONTROL
),
387 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
391 __cpu_to_le32(ATH10K_HTC_SVC_ID_RSVD_CTRL
),
392 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
396 __cpu_to_le32(ATH10K_HTC_SVC_ID_RSVD_CTRL
),
397 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
401 __cpu_to_le32(ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS
),
402 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
406 __cpu_to_le32(ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS
),
407 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
411 __cpu_to_le32(ATH10K_HTC_SVC_ID_HTT_DATA_MSG
),
412 __cpu_to_le32(PIPEDIR_OUT
), /* out = UL = host -> target */
416 __cpu_to_le32(ATH10K_HTC_SVC_ID_HTT_DATA_MSG
),
417 __cpu_to_le32(PIPEDIR_IN
), /* in = DL = target -> host */
421 /* (Additions here) */
430 static bool ath10k_pci_is_awake(struct ath10k
*ar
)
432 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
433 u32 val
= ioread32(ar_pci
->mem
+ PCIE_LOCAL_BASE_ADDRESS
+
436 return RTC_STATE_V_GET(val
) == RTC_STATE_V_ON
;
439 static void __ath10k_pci_wake(struct ath10k
*ar
)
441 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
443 lockdep_assert_held(&ar_pci
->ps_lock
);
445 ath10k_dbg(ar
, ATH10K_DBG_PCI_PS
, "pci ps wake reg refcount %lu awake %d\n",
446 ar_pci
->ps_wake_refcount
, ar_pci
->ps_awake
);
448 iowrite32(PCIE_SOC_WAKE_V_MASK
,
449 ar_pci
->mem
+ PCIE_LOCAL_BASE_ADDRESS
+
450 PCIE_SOC_WAKE_ADDRESS
);
453 static void __ath10k_pci_sleep(struct ath10k
*ar
)
455 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
457 lockdep_assert_held(&ar_pci
->ps_lock
);
459 ath10k_dbg(ar
, ATH10K_DBG_PCI_PS
, "pci ps sleep reg refcount %lu awake %d\n",
460 ar_pci
->ps_wake_refcount
, ar_pci
->ps_awake
);
462 iowrite32(PCIE_SOC_WAKE_RESET
,
463 ar_pci
->mem
+ PCIE_LOCAL_BASE_ADDRESS
+
464 PCIE_SOC_WAKE_ADDRESS
);
465 ar_pci
->ps_awake
= false;
468 static int ath10k_pci_wake_wait(struct ath10k
*ar
)
473 while (tot_delay
< PCIE_WAKE_TIMEOUT
) {
474 if (ath10k_pci_is_awake(ar
)) {
475 if (tot_delay
> PCIE_WAKE_LATE_US
)
476 ath10k_warn(ar
, "device wakeup took %d ms which is unusually long, otherwise it works normally.\n",
482 tot_delay
+= curr_delay
;
491 static int ath10k_pci_force_wake(struct ath10k
*ar
)
493 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
500 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
502 if (!ar_pci
->ps_awake
) {
503 iowrite32(PCIE_SOC_WAKE_V_MASK
,
504 ar_pci
->mem
+ PCIE_LOCAL_BASE_ADDRESS
+
505 PCIE_SOC_WAKE_ADDRESS
);
507 ret
= ath10k_pci_wake_wait(ar
);
509 ar_pci
->ps_awake
= true;
512 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
517 static void ath10k_pci_force_sleep(struct ath10k
*ar
)
519 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
522 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
524 iowrite32(PCIE_SOC_WAKE_RESET
,
525 ar_pci
->mem
+ PCIE_LOCAL_BASE_ADDRESS
+
526 PCIE_SOC_WAKE_ADDRESS
);
527 ar_pci
->ps_awake
= false;
529 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
532 static int ath10k_pci_wake(struct ath10k
*ar
)
534 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
538 if (ar_pci
->pci_ps
== 0)
541 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
543 ath10k_dbg(ar
, ATH10K_DBG_PCI_PS
, "pci ps wake refcount %lu awake %d\n",
544 ar_pci
->ps_wake_refcount
, ar_pci
->ps_awake
);
546 /* This function can be called very frequently. To avoid excessive
547 * CPU stalls for MMIO reads use a cache var to hold the device state.
549 if (!ar_pci
->ps_awake
) {
550 __ath10k_pci_wake(ar
);
552 ret
= ath10k_pci_wake_wait(ar
);
554 ar_pci
->ps_awake
= true;
558 ar_pci
->ps_wake_refcount
++;
559 WARN_ON(ar_pci
->ps_wake_refcount
== 0);
562 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
567 static void ath10k_pci_sleep(struct ath10k
*ar
)
569 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
572 if (ar_pci
->pci_ps
== 0)
575 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
577 ath10k_dbg(ar
, ATH10K_DBG_PCI_PS
, "pci ps sleep refcount %lu awake %d\n",
578 ar_pci
->ps_wake_refcount
, ar_pci
->ps_awake
);
580 if (WARN_ON(ar_pci
->ps_wake_refcount
== 0))
583 ar_pci
->ps_wake_refcount
--;
585 mod_timer(&ar_pci
->ps_timer
, jiffies
+
586 msecs_to_jiffies(ATH10K_PCI_SLEEP_GRACE_PERIOD_MSEC
));
589 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
592 static void ath10k_pci_ps_timer(struct timer_list
*t
)
594 struct ath10k_pci
*ar_pci
= from_timer(ar_pci
, t
, ps_timer
);
595 struct ath10k
*ar
= ar_pci
->ar
;
598 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
600 ath10k_dbg(ar
, ATH10K_DBG_PCI_PS
, "pci ps timer refcount %lu awake %d\n",
601 ar_pci
->ps_wake_refcount
, ar_pci
->ps_awake
);
603 if (ar_pci
->ps_wake_refcount
> 0)
606 __ath10k_pci_sleep(ar
);
609 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
612 static void ath10k_pci_sleep_sync(struct ath10k
*ar
)
614 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
617 if (ar_pci
->pci_ps
== 0) {
618 ath10k_pci_force_sleep(ar
);
622 del_timer_sync(&ar_pci
->ps_timer
);
624 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
625 WARN_ON(ar_pci
->ps_wake_refcount
> 0);
626 __ath10k_pci_sleep(ar
);
627 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
630 static void ath10k_bus_pci_write32(struct ath10k
*ar
, u32 offset
, u32 value
)
632 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
635 if (unlikely(offset
+ sizeof(value
) > ar_pci
->mem_len
)) {
636 ath10k_warn(ar
, "refusing to write mmio out of bounds at 0x%08x - 0x%08zx (max 0x%08zx)\n",
637 offset
, offset
+ sizeof(value
), ar_pci
->mem_len
);
641 ret
= ath10k_pci_wake(ar
);
643 ath10k_warn(ar
, "failed to wake target for write32 of 0x%08x at 0x%08x: %d\n",
648 iowrite32(value
, ar_pci
->mem
+ offset
);
649 ath10k_pci_sleep(ar
);
652 static u32
ath10k_bus_pci_read32(struct ath10k
*ar
, u32 offset
)
654 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
658 if (unlikely(offset
+ sizeof(val
) > ar_pci
->mem_len
)) {
659 ath10k_warn(ar
, "refusing to read mmio out of bounds at 0x%08x - 0x%08zx (max 0x%08zx)\n",
660 offset
, offset
+ sizeof(val
), ar_pci
->mem_len
);
664 ret
= ath10k_pci_wake(ar
);
666 ath10k_warn(ar
, "failed to wake target for read32 at 0x%08x: %d\n",
671 val
= ioread32(ar_pci
->mem
+ offset
);
672 ath10k_pci_sleep(ar
);
677 inline void ath10k_pci_write32(struct ath10k
*ar
, u32 offset
, u32 value
)
679 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
681 ce
->bus_ops
->write32(ar
, offset
, value
);
684 inline u32
ath10k_pci_read32(struct ath10k
*ar
, u32 offset
)
686 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
688 return ce
->bus_ops
->read32(ar
, offset
);
691 u32
ath10k_pci_soc_read32(struct ath10k
*ar
, u32 addr
)
693 return ath10k_pci_read32(ar
, RTC_SOC_BASE_ADDRESS
+ addr
);
696 void ath10k_pci_soc_write32(struct ath10k
*ar
, u32 addr
, u32 val
)
698 ath10k_pci_write32(ar
, RTC_SOC_BASE_ADDRESS
+ addr
, val
);
701 u32
ath10k_pci_reg_read32(struct ath10k
*ar
, u32 addr
)
703 return ath10k_pci_read32(ar
, PCIE_LOCAL_BASE_ADDRESS
+ addr
);
706 void ath10k_pci_reg_write32(struct ath10k
*ar
, u32 addr
, u32 val
)
708 ath10k_pci_write32(ar
, PCIE_LOCAL_BASE_ADDRESS
+ addr
, val
);
711 bool ath10k_pci_irq_pending(struct ath10k
*ar
)
715 /* Check if the shared legacy irq is for us */
716 cause
= ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
717 PCIE_INTR_CAUSE_ADDRESS
);
718 if (cause
& (PCIE_INTR_FIRMWARE_MASK
| PCIE_INTR_CE_MASK_ALL
))
724 void ath10k_pci_disable_and_clear_intx_irq(struct ath10k
*ar
)
726 /* IMPORTANT: INTR_CLR register has to be set after
727 * INTR_ENABLE is set to 0, otherwise interrupt can not be
730 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+ PCIE_INTR_ENABLE_ADDRESS
,
732 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+ PCIE_INTR_CLR_ADDRESS
,
733 PCIE_INTR_FIRMWARE_MASK
| PCIE_INTR_CE_MASK_ALL
);
735 /* IMPORTANT: this extra read transaction is required to
736 * flush the posted write buffer.
738 (void)ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
739 PCIE_INTR_ENABLE_ADDRESS
);
742 void ath10k_pci_enable_intx_irq(struct ath10k
*ar
)
744 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+
745 PCIE_INTR_ENABLE_ADDRESS
,
746 PCIE_INTR_FIRMWARE_MASK
| PCIE_INTR_CE_MASK_ALL
);
748 /* IMPORTANT: this extra read transaction is required to
749 * flush the posted write buffer.
751 (void)ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
752 PCIE_INTR_ENABLE_ADDRESS
);
755 static inline const char *ath10k_pci_get_irq_method(struct ath10k
*ar
)
757 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
759 if (ar_pci
->oper_irq_mode
== ATH10K_PCI_IRQ_MSI
)
765 static int __ath10k_pci_rx_post_buf(struct ath10k_pci_pipe
*pipe
)
767 struct ath10k
*ar
= pipe
->hif_ce_state
;
768 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
769 struct ath10k_ce_pipe
*ce_pipe
= pipe
->ce_hdl
;
774 skb
= dev_alloc_skb(pipe
->buf_sz
);
778 WARN_ONCE((unsigned long)skb
->data
& 3, "unaligned skb");
780 paddr
= dma_map_single(ar
->dev
, skb
->data
,
781 skb
->len
+ skb_tailroom(skb
),
783 if (unlikely(dma_mapping_error(ar
->dev
, paddr
))) {
784 ath10k_warn(ar
, "failed to dma map pci rx buf\n");
785 dev_kfree_skb_any(skb
);
789 ATH10K_SKB_RXCB(skb
)->paddr
= paddr
;
791 spin_lock_bh(&ce
->ce_lock
);
792 ret
= ce_pipe
->ops
->ce_rx_post_buf(ce_pipe
, skb
, paddr
);
793 spin_unlock_bh(&ce
->ce_lock
);
795 dma_unmap_single(ar
->dev
, paddr
, skb
->len
+ skb_tailroom(skb
),
797 dev_kfree_skb_any(skb
);
804 static void ath10k_pci_rx_post_pipe(struct ath10k_pci_pipe
*pipe
)
806 struct ath10k
*ar
= pipe
->hif_ce_state
;
807 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
808 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
809 struct ath10k_ce_pipe
*ce_pipe
= pipe
->ce_hdl
;
812 if (pipe
->buf_sz
== 0)
815 if (!ce_pipe
->dest_ring
)
818 spin_lock_bh(&ce
->ce_lock
);
819 num
= __ath10k_ce_rx_num_free_bufs(ce_pipe
);
820 spin_unlock_bh(&ce
->ce_lock
);
823 ret
= __ath10k_pci_rx_post_buf(pipe
);
827 ath10k_warn(ar
, "failed to post pci rx buf: %d\n", ret
);
828 mod_timer(&ar_pci
->rx_post_retry
, jiffies
+
829 ATH10K_PCI_RX_POST_RETRY_MS
);
836 void ath10k_pci_rx_post(struct ath10k
*ar
)
838 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
841 for (i
= 0; i
< CE_COUNT
; i
++)
842 ath10k_pci_rx_post_pipe(&ar_pci
->pipe_info
[i
]);
845 void ath10k_pci_rx_replenish_retry(struct timer_list
*t
)
847 struct ath10k_pci
*ar_pci
= from_timer(ar_pci
, t
, rx_post_retry
);
848 struct ath10k
*ar
= ar_pci
->ar
;
850 ath10k_pci_rx_post(ar
);
853 static u32
ath10k_pci_qca988x_targ_cpu_to_ce_addr(struct ath10k
*ar
, u32 addr
)
855 u32 val
= 0, region
= addr
& 0xfffff;
857 val
= (ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+ CORE_CTRL_ADDRESS
)
859 val
|= 0x100000 | region
;
863 /* Refactor from ath10k_pci_qca988x_targ_cpu_to_ce_addr.
864 * Support to access target space below 1M for qca6174 and qca9377.
865 * If target space is below 1M, the bit[20] of converted CE addr is 0.
866 * Otherwise bit[20] of converted CE addr is 1.
868 static u32
ath10k_pci_qca6174_targ_cpu_to_ce_addr(struct ath10k
*ar
, u32 addr
)
870 u32 val
= 0, region
= addr
& 0xfffff;
872 val
= (ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+ CORE_CTRL_ADDRESS
)
874 val
|= ((addr
>= 0x100000) ? 0x100000 : 0) | region
;
878 static u32
ath10k_pci_qca99x0_targ_cpu_to_ce_addr(struct ath10k
*ar
, u32 addr
)
880 u32 val
= 0, region
= addr
& 0xfffff;
882 val
= ath10k_pci_read32(ar
, PCIE_BAR_REG_ADDRESS
);
883 val
|= 0x100000 | region
;
887 static u32
ath10k_pci_targ_cpu_to_ce_addr(struct ath10k
*ar
, u32 addr
)
889 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
891 if (WARN_ON_ONCE(!ar_pci
->targ_cpu_to_ce_addr
))
894 return ar_pci
->targ_cpu_to_ce_addr(ar
, addr
);
898 * Diagnostic read/write access is provided for startup/config/debug usage.
899 * Caller must guarantee proper alignment, when applicable, and single user
902 static int ath10k_pci_diag_read_mem(struct ath10k
*ar
, u32 address
, void *data
,
905 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
908 unsigned int completed_nbytes
, alloc_nbytes
, remaining_bytes
;
909 struct ath10k_ce_pipe
*ce_diag
;
910 /* Host buffer address in CE space */
912 dma_addr_t ce_data_base
= 0;
916 mutex_lock(&ar_pci
->ce_diag_mutex
);
917 ce_diag
= ar_pci
->ce_diag
;
920 * Allocate a temporary bounce buffer to hold caller's data
921 * to be DMA'ed from Target. This guarantees
922 * 1) 4-byte alignment
923 * 2) Buffer in DMA-able space
925 alloc_nbytes
= min_t(unsigned int, nbytes
, DIAG_TRANSFER_LIMIT
);
927 data_buf
= dma_alloc_coherent(ar
->dev
, alloc_nbytes
, &ce_data_base
,
934 /* The address supplied by the caller is in the
935 * Target CPU virtual address space.
937 * In order to use this address with the diagnostic CE,
938 * convert it from Target CPU virtual address space
939 * to CE address space
941 address
= ath10k_pci_targ_cpu_to_ce_addr(ar
, address
);
943 remaining_bytes
= nbytes
;
944 ce_data
= ce_data_base
;
945 while (remaining_bytes
) {
946 nbytes
= min_t(unsigned int, remaining_bytes
,
947 DIAG_TRANSFER_LIMIT
);
949 ret
= ath10k_ce_rx_post_buf(ce_diag
, &ce_data
, ce_data
);
953 /* Request CE to send from Target(!) address to Host buffer */
954 ret
= ath10k_ce_send(ce_diag
, NULL
, (u32
)address
, nbytes
, 0, 0);
959 while (ath10k_ce_completed_send_next(ce_diag
, NULL
) != 0) {
960 udelay(DIAG_ACCESS_CE_WAIT_US
);
961 i
+= DIAG_ACCESS_CE_WAIT_US
;
963 if (i
> DIAG_ACCESS_CE_TIMEOUT_US
) {
970 while (ath10k_ce_completed_recv_next(ce_diag
, (void **)&buf
,
971 &completed_nbytes
) != 0) {
972 udelay(DIAG_ACCESS_CE_WAIT_US
);
973 i
+= DIAG_ACCESS_CE_WAIT_US
;
975 if (i
> DIAG_ACCESS_CE_TIMEOUT_US
) {
981 if (nbytes
!= completed_nbytes
) {
986 if (*buf
!= ce_data
) {
991 remaining_bytes
-= nbytes
;
992 memcpy(data
, data_buf
, nbytes
);
1001 dma_free_coherent(ar
->dev
, alloc_nbytes
, data_buf
,
1004 mutex_unlock(&ar_pci
->ce_diag_mutex
);
1009 static int ath10k_pci_diag_read32(struct ath10k
*ar
, u32 address
, u32
*value
)
1014 ret
= ath10k_pci_diag_read_mem(ar
, address
, &val
, sizeof(val
));
1015 *value
= __le32_to_cpu(val
);
1020 static int __ath10k_pci_diag_read_hi(struct ath10k
*ar
, void *dest
,
1023 u32 host_addr
, addr
;
1026 host_addr
= host_interest_item_address(src
);
1028 ret
= ath10k_pci_diag_read32(ar
, host_addr
, &addr
);
1030 ath10k_warn(ar
, "failed to get memcpy hi address for firmware address %d: %d\n",
1035 ret
= ath10k_pci_diag_read_mem(ar
, addr
, dest
, len
);
1037 ath10k_warn(ar
, "failed to memcpy firmware memory from %d (%d B): %d\n",
1045 #define ath10k_pci_diag_read_hi(ar, dest, src, len) \
1046 __ath10k_pci_diag_read_hi(ar, dest, HI_ITEM(src), len)
1048 int ath10k_pci_diag_write_mem(struct ath10k
*ar
, u32 address
,
1049 const void *data
, int nbytes
)
1051 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1054 unsigned int completed_nbytes
, alloc_nbytes
, remaining_bytes
;
1055 struct ath10k_ce_pipe
*ce_diag
;
1057 dma_addr_t ce_data_base
= 0;
1060 mutex_lock(&ar_pci
->ce_diag_mutex
);
1061 ce_diag
= ar_pci
->ce_diag
;
1064 * Allocate a temporary bounce buffer to hold caller's data
1065 * to be DMA'ed to Target. This guarantees
1066 * 1) 4-byte alignment
1067 * 2) Buffer in DMA-able space
1069 alloc_nbytes
= min_t(unsigned int, nbytes
, DIAG_TRANSFER_LIMIT
);
1071 data_buf
= dma_alloc_coherent(ar
->dev
, alloc_nbytes
, &ce_data_base
,
1079 * The address supplied by the caller is in the
1080 * Target CPU virtual address space.
1082 * In order to use this address with the diagnostic CE,
1084 * Target CPU virtual address space
1088 address
= ath10k_pci_targ_cpu_to_ce_addr(ar
, address
);
1090 remaining_bytes
= nbytes
;
1091 while (remaining_bytes
) {
1092 /* FIXME: check cast */
1093 nbytes
= min_t(int, remaining_bytes
, DIAG_TRANSFER_LIMIT
);
1095 /* Copy caller's data to allocated DMA buf */
1096 memcpy(data_buf
, data
, nbytes
);
1098 /* Set up to receive directly into Target(!) address */
1099 ret
= ath10k_ce_rx_post_buf(ce_diag
, &address
, address
);
1104 * Request CE to send caller-supplied data that
1105 * was copied to bounce buffer to Target(!) address.
1107 ret
= ath10k_ce_send(ce_diag
, NULL
, ce_data_base
, nbytes
, 0, 0);
1112 while (ath10k_ce_completed_send_next(ce_diag
, NULL
) != 0) {
1113 udelay(DIAG_ACCESS_CE_WAIT_US
);
1114 i
+= DIAG_ACCESS_CE_WAIT_US
;
1116 if (i
> DIAG_ACCESS_CE_TIMEOUT_US
) {
1123 while (ath10k_ce_completed_recv_next(ce_diag
, (void **)&buf
,
1124 &completed_nbytes
) != 0) {
1125 udelay(DIAG_ACCESS_CE_WAIT_US
);
1126 i
+= DIAG_ACCESS_CE_WAIT_US
;
1128 if (i
> DIAG_ACCESS_CE_TIMEOUT_US
) {
1134 if (nbytes
!= completed_nbytes
) {
1139 if (*buf
!= address
) {
1144 remaining_bytes
-= nbytes
;
1151 dma_free_coherent(ar
->dev
, alloc_nbytes
, data_buf
,
1156 ath10k_warn(ar
, "failed to write diag value at 0x%x: %d\n",
1159 mutex_unlock(&ar_pci
->ce_diag_mutex
);
1164 static int ath10k_pci_diag_write32(struct ath10k
*ar
, u32 address
, u32 value
)
1166 __le32 val
= __cpu_to_le32(value
);
1168 return ath10k_pci_diag_write_mem(ar
, address
, &val
, sizeof(val
));
1171 /* Called by lower (CE) layer when a send to Target completes. */
1172 static void ath10k_pci_htc_tx_cb(struct ath10k_ce_pipe
*ce_state
)
1174 struct ath10k
*ar
= ce_state
->ar
;
1175 struct sk_buff_head list
;
1176 struct sk_buff
*skb
;
1178 __skb_queue_head_init(&list
);
1179 while (ath10k_ce_completed_send_next(ce_state
, (void **)&skb
) == 0) {
1180 /* no need to call tx completion for NULL pointers */
1184 __skb_queue_tail(&list
, skb
);
1187 while ((skb
= __skb_dequeue(&list
)))
1188 ath10k_htc_tx_completion_handler(ar
, skb
);
1191 static void ath10k_pci_process_rx_cb(struct ath10k_ce_pipe
*ce_state
,
1192 void (*callback
)(struct ath10k
*ar
,
1193 struct sk_buff
*skb
))
1195 struct ath10k
*ar
= ce_state
->ar
;
1196 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1197 struct ath10k_pci_pipe
*pipe_info
= &ar_pci
->pipe_info
[ce_state
->id
];
1198 struct sk_buff
*skb
;
1199 struct sk_buff_head list
;
1200 void *transfer_context
;
1201 unsigned int nbytes
, max_nbytes
;
1203 __skb_queue_head_init(&list
);
1204 while (ath10k_ce_completed_recv_next(ce_state
, &transfer_context
,
1206 skb
= transfer_context
;
1207 max_nbytes
= skb
->len
+ skb_tailroom(skb
);
1208 dma_unmap_single(ar
->dev
, ATH10K_SKB_RXCB(skb
)->paddr
,
1209 max_nbytes
, DMA_FROM_DEVICE
);
1211 if (unlikely(max_nbytes
< nbytes
)) {
1212 ath10k_warn(ar
, "rxed more than expected (nbytes %d, max %d)",
1213 nbytes
, max_nbytes
);
1214 dev_kfree_skb_any(skb
);
1218 skb_put(skb
, nbytes
);
1219 __skb_queue_tail(&list
, skb
);
1222 while ((skb
= __skb_dequeue(&list
))) {
1223 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci rx ce pipe %d len %d\n",
1224 ce_state
->id
, skb
->len
);
1225 ath10k_dbg_dump(ar
, ATH10K_DBG_PCI_DUMP
, NULL
, "pci rx: ",
1226 skb
->data
, skb
->len
);
1231 ath10k_pci_rx_post_pipe(pipe_info
);
1234 static void ath10k_pci_process_htt_rx_cb(struct ath10k_ce_pipe
*ce_state
,
1235 void (*callback
)(struct ath10k
*ar
,
1236 struct sk_buff
*skb
))
1238 struct ath10k
*ar
= ce_state
->ar
;
1239 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1240 struct ath10k_pci_pipe
*pipe_info
= &ar_pci
->pipe_info
[ce_state
->id
];
1241 struct ath10k_ce_pipe
*ce_pipe
= pipe_info
->ce_hdl
;
1242 struct sk_buff
*skb
;
1243 struct sk_buff_head list
;
1244 void *transfer_context
;
1245 unsigned int nbytes
, max_nbytes
, nentries
;
1248 /* No need to acquire ce_lock for CE5, since this is the only place CE5
1249 * is processed other than init and deinit. Before releasing CE5
1250 * buffers, interrupts are disabled. Thus CE5 access is serialized.
1252 __skb_queue_head_init(&list
);
1253 while (ath10k_ce_completed_recv_next_nolock(ce_state
, &transfer_context
,
1255 skb
= transfer_context
;
1256 max_nbytes
= skb
->len
+ skb_tailroom(skb
);
1258 if (unlikely(max_nbytes
< nbytes
)) {
1259 ath10k_warn(ar
, "rxed more than expected (nbytes %d, max %d)",
1260 nbytes
, max_nbytes
);
1264 dma_sync_single_for_cpu(ar
->dev
, ATH10K_SKB_RXCB(skb
)->paddr
,
1265 max_nbytes
, DMA_FROM_DEVICE
);
1266 skb_put(skb
, nbytes
);
1267 __skb_queue_tail(&list
, skb
);
1270 nentries
= skb_queue_len(&list
);
1271 while ((skb
= __skb_dequeue(&list
))) {
1272 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci rx ce pipe %d len %d\n",
1273 ce_state
->id
, skb
->len
);
1274 ath10k_dbg_dump(ar
, ATH10K_DBG_PCI_DUMP
, NULL
, "pci rx: ",
1275 skb
->data
, skb
->len
);
1277 orig_len
= skb
->len
;
1279 skb_push(skb
, orig_len
- skb
->len
);
1280 skb_reset_tail_pointer(skb
);
1283 /*let device gain the buffer again*/
1284 dma_sync_single_for_device(ar
->dev
, ATH10K_SKB_RXCB(skb
)->paddr
,
1285 skb
->len
+ skb_tailroom(skb
),
1288 ath10k_ce_rx_update_write_idx(ce_pipe
, nentries
);
1291 /* Called by lower (CE) layer when data is received from the Target. */
1292 static void ath10k_pci_htc_rx_cb(struct ath10k_ce_pipe
*ce_state
)
1294 ath10k_pci_process_rx_cb(ce_state
, ath10k_htc_rx_completion_handler
);
1297 static void ath10k_pci_htt_htc_rx_cb(struct ath10k_ce_pipe
*ce_state
)
1299 /* CE4 polling needs to be done whenever CE pipe which transports
1300 * HTT Rx (target->host) is processed.
1302 ath10k_ce_per_engine_service(ce_state
->ar
, 4);
1304 ath10k_pci_process_rx_cb(ce_state
, ath10k_htc_rx_completion_handler
);
1307 /* Called by lower (CE) layer when data is received from the Target.
1308 * Only 10.4 firmware uses separate CE to transfer pktlog data.
1310 static void ath10k_pci_pktlog_rx_cb(struct ath10k_ce_pipe
*ce_state
)
1312 ath10k_pci_process_rx_cb(ce_state
,
1313 ath10k_htt_rx_pktlog_completion_handler
);
1316 /* Called by lower (CE) layer when a send to HTT Target completes. */
1317 static void ath10k_pci_htt_tx_cb(struct ath10k_ce_pipe
*ce_state
)
1319 struct ath10k
*ar
= ce_state
->ar
;
1320 struct sk_buff
*skb
;
1322 while (ath10k_ce_completed_send_next(ce_state
, (void **)&skb
) == 0) {
1323 /* no need to call tx completion for NULL pointers */
1327 dma_unmap_single(ar
->dev
, ATH10K_SKB_CB(skb
)->paddr
,
1328 skb
->len
, DMA_TO_DEVICE
);
1329 ath10k_htt_hif_tx_complete(ar
, skb
);
1333 static void ath10k_pci_htt_rx_deliver(struct ath10k
*ar
, struct sk_buff
*skb
)
1335 skb_pull(skb
, sizeof(struct ath10k_htc_hdr
));
1336 ath10k_htt_t2h_msg_handler(ar
, skb
);
1339 /* Called by lower (CE) layer when HTT data is received from the Target. */
1340 static void ath10k_pci_htt_rx_cb(struct ath10k_ce_pipe
*ce_state
)
1342 /* CE4 polling needs to be done whenever CE pipe which transports
1343 * HTT Rx (target->host) is processed.
1345 ath10k_ce_per_engine_service(ce_state
->ar
, 4);
1347 ath10k_pci_process_htt_rx_cb(ce_state
, ath10k_pci_htt_rx_deliver
);
1350 int ath10k_pci_hif_tx_sg(struct ath10k
*ar
, u8 pipe_id
,
1351 struct ath10k_hif_sg_item
*items
, int n_items
)
1353 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1354 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
1355 struct ath10k_pci_pipe
*pci_pipe
= &ar_pci
->pipe_info
[pipe_id
];
1356 struct ath10k_ce_pipe
*ce_pipe
= pci_pipe
->ce_hdl
;
1357 struct ath10k_ce_ring
*src_ring
= ce_pipe
->src_ring
;
1358 unsigned int nentries_mask
;
1359 unsigned int sw_index
;
1360 unsigned int write_index
;
1363 spin_lock_bh(&ce
->ce_lock
);
1365 nentries_mask
= src_ring
->nentries_mask
;
1366 sw_index
= src_ring
->sw_index
;
1367 write_index
= src_ring
->write_index
;
1369 if (unlikely(CE_RING_DELTA(nentries_mask
,
1370 write_index
, sw_index
- 1) < n_items
)) {
1375 for (i
= 0; i
< n_items
- 1; i
++) {
1376 ath10k_dbg(ar
, ATH10K_DBG_PCI
,
1377 "pci tx item %d paddr %pad len %d n_items %d\n",
1378 i
, &items
[i
].paddr
, items
[i
].len
, n_items
);
1379 ath10k_dbg_dump(ar
, ATH10K_DBG_PCI_DUMP
, NULL
, "pci tx data: ",
1380 items
[i
].vaddr
, items
[i
].len
);
1382 err
= ath10k_ce_send_nolock(ce_pipe
,
1383 items
[i
].transfer_context
,
1386 items
[i
].transfer_id
,
1387 CE_SEND_FLAG_GATHER
);
1392 /* `i` is equal to `n_items -1` after for() */
1394 ath10k_dbg(ar
, ATH10K_DBG_PCI
,
1395 "pci tx item %d paddr %pad len %d n_items %d\n",
1396 i
, &items
[i
].paddr
, items
[i
].len
, n_items
);
1397 ath10k_dbg_dump(ar
, ATH10K_DBG_PCI_DUMP
, NULL
, "pci tx data: ",
1398 items
[i
].vaddr
, items
[i
].len
);
1400 err
= ath10k_ce_send_nolock(ce_pipe
,
1401 items
[i
].transfer_context
,
1404 items
[i
].transfer_id
,
1409 spin_unlock_bh(&ce
->ce_lock
);
1414 __ath10k_ce_send_revert(ce_pipe
);
1416 spin_unlock_bh(&ce
->ce_lock
);
1420 int ath10k_pci_hif_diag_read(struct ath10k
*ar
, u32 address
, void *buf
,
1423 return ath10k_pci_diag_read_mem(ar
, address
, buf
, buf_len
);
1426 u16
ath10k_pci_hif_get_free_queue_number(struct ath10k
*ar
, u8 pipe
)
1428 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1430 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci hif get free queue number\n");
1432 return ath10k_ce_num_free_src_entries(ar_pci
->pipe_info
[pipe
].ce_hdl
);
1435 static void ath10k_pci_dump_registers(struct ath10k
*ar
,
1436 struct ath10k_fw_crash_data
*crash_data
)
1438 __le32 reg_dump_values
[REG_DUMP_COUNT_QCA988X
] = {};
1441 lockdep_assert_held(&ar
->dump_mutex
);
1443 ret
= ath10k_pci_diag_read_hi(ar
, ®_dump_values
[0],
1445 REG_DUMP_COUNT_QCA988X
* sizeof(__le32
));
1447 ath10k_err(ar
, "failed to read firmware dump area: %d\n", ret
);
1451 BUILD_BUG_ON(REG_DUMP_COUNT_QCA988X
% 4);
1453 ath10k_err(ar
, "firmware register dump:\n");
1454 for (i
= 0; i
< REG_DUMP_COUNT_QCA988X
; i
+= 4)
1455 ath10k_err(ar
, "[%02d]: 0x%08X 0x%08X 0x%08X 0x%08X\n",
1457 __le32_to_cpu(reg_dump_values
[i
]),
1458 __le32_to_cpu(reg_dump_values
[i
+ 1]),
1459 __le32_to_cpu(reg_dump_values
[i
+ 2]),
1460 __le32_to_cpu(reg_dump_values
[i
+ 3]));
1465 for (i
= 0; i
< REG_DUMP_COUNT_QCA988X
; i
++)
1466 crash_data
->registers
[i
] = reg_dump_values
[i
];
1469 static int ath10k_pci_dump_memory_section(struct ath10k
*ar
,
1470 const struct ath10k_mem_region
*mem_region
,
1471 u8
*buf
, size_t buf_len
)
1473 const struct ath10k_mem_section
*cur_section
, *next_section
;
1474 unsigned int count
, section_size
, skip_size
;
1477 if (!mem_region
|| !buf
)
1480 cur_section
= &mem_region
->section_table
.sections
[0];
1482 if (mem_region
->start
> cur_section
->start
) {
1483 ath10k_warn(ar
, "incorrect memdump region 0x%x with section start address 0x%x.\n",
1484 mem_region
->start
, cur_section
->start
);
1488 skip_size
= cur_section
->start
- mem_region
->start
;
1490 /* fill the gap between the first register section and register
1493 for (i
= 0; i
< skip_size
; i
++) {
1494 *buf
= ATH10K_MAGIC_NOT_COPIED
;
1500 for (i
= 0; cur_section
!= NULL
; i
++) {
1501 section_size
= cur_section
->end
- cur_section
->start
;
1503 if (section_size
<= 0) {
1504 ath10k_warn(ar
, "incorrect ramdump format with start address 0x%x and stop address 0x%x\n",
1510 if ((i
+ 1) == mem_region
->section_table
.size
) {
1512 next_section
= NULL
;
1515 next_section
= cur_section
+ 1;
1517 if (cur_section
->end
> next_section
->start
) {
1518 ath10k_warn(ar
, "next ramdump section 0x%x is smaller than current end address 0x%x\n",
1519 next_section
->start
,
1524 skip_size
= next_section
->start
- cur_section
->end
;
1527 if (buf_len
< (skip_size
+ section_size
)) {
1528 ath10k_warn(ar
, "ramdump buffer is too small: %zu\n", buf_len
);
1532 buf_len
-= skip_size
+ section_size
;
1534 /* read section to dest memory */
1535 ret
= ath10k_pci_diag_read_mem(ar
, cur_section
->start
,
1538 ath10k_warn(ar
, "failed to read ramdump from section 0x%x: %d\n",
1539 cur_section
->start
, ret
);
1543 buf
+= section_size
;
1544 count
+= section_size
;
1546 /* fill in the gap between this section and the next */
1547 for (j
= 0; j
< skip_size
; j
++) {
1548 *buf
= ATH10K_MAGIC_NOT_COPIED
;
1555 /* this was the last section */
1558 cur_section
= next_section
;
1564 static int ath10k_pci_set_ram_config(struct ath10k
*ar
, u32 config
)
1568 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+
1569 FW_RAM_CONFIG_ADDRESS
, config
);
1571 val
= ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
1572 FW_RAM_CONFIG_ADDRESS
);
1573 if (val
!= config
) {
1574 ath10k_warn(ar
, "failed to set RAM config from 0x%x to 0x%x\n",
1582 /* Always returns the length */
1583 static int ath10k_pci_dump_memory_sram(struct ath10k
*ar
,
1584 const struct ath10k_mem_region
*region
,
1587 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1590 base_addr
= ioread32(ar_pci
->mem
+ QCA99X0_PCIE_BAR0_START_REG
);
1591 base_addr
+= region
->start
;
1593 for (i
= 0; i
< region
->len
; i
+= 4) {
1594 iowrite32(base_addr
+ i
, ar_pci
->mem
+ QCA99X0_CPU_MEM_ADDR_REG
);
1595 *(u32
*)(buf
+ i
) = ioread32(ar_pci
->mem
+ QCA99X0_CPU_MEM_DATA_REG
);
1601 /* if an error happened returns < 0, otherwise the length */
1602 static int ath10k_pci_dump_memory_reg(struct ath10k
*ar
,
1603 const struct ath10k_mem_region
*region
,
1606 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1610 mutex_lock(&ar
->conf_mutex
);
1611 if (ar
->state
!= ATH10K_STATE_ON
) {
1612 ath10k_warn(ar
, "Skipping pci_dump_memory_reg invalid state\n");
1617 for (i
= 0; i
< region
->len
; i
+= 4)
1618 *(u32
*)(buf
+ i
) = ioread32(ar_pci
->mem
+ region
->start
+ i
);
1622 mutex_unlock(&ar
->conf_mutex
);
1626 /* if an error happened returns < 0, otherwise the length */
1627 static int ath10k_pci_dump_memory_generic(struct ath10k
*ar
,
1628 const struct ath10k_mem_region
*current_region
,
1633 if (current_region
->section_table
.size
> 0)
1634 /* Copy each section individually. */
1635 return ath10k_pci_dump_memory_section(ar
,
1638 current_region
->len
);
1640 /* No individual memory sections defined so we can
1641 * copy the entire memory region.
1643 ret
= ath10k_pci_diag_read_mem(ar
,
1644 current_region
->start
,
1646 current_region
->len
);
1648 ath10k_warn(ar
, "failed to copy ramdump region %s: %d\n",
1649 current_region
->name
, ret
);
1653 return current_region
->len
;
1656 static void ath10k_pci_dump_memory(struct ath10k
*ar
,
1657 struct ath10k_fw_crash_data
*crash_data
)
1659 const struct ath10k_hw_mem_layout
*mem_layout
;
1660 const struct ath10k_mem_region
*current_region
;
1661 struct ath10k_dump_ram_data_hdr
*hdr
;
1667 lockdep_assert_held(&ar
->dump_mutex
);
1672 mem_layout
= ath10k_coredump_get_mem_layout(ar
);
1676 current_region
= &mem_layout
->region_table
.regions
[0];
1678 buf
= crash_data
->ramdump_buf
;
1679 buf_len
= crash_data
->ramdump_buf_len
;
1681 memset(buf
, 0, buf_len
);
1683 for (i
= 0; i
< mem_layout
->region_table
.size
; i
++) {
1686 if (current_region
->len
> buf_len
) {
1687 ath10k_warn(ar
, "memory region %s size %d is larger that remaining ramdump buffer size %zu\n",
1688 current_region
->name
,
1689 current_region
->len
,
1694 /* To get IRAM dump, the host driver needs to switch target
1695 * ram config from DRAM to IRAM.
1697 if (current_region
->type
== ATH10K_MEM_REGION_TYPE_IRAM1
||
1698 current_region
->type
== ATH10K_MEM_REGION_TYPE_IRAM2
) {
1699 shift
= current_region
->start
>> 20;
1701 ret
= ath10k_pci_set_ram_config(ar
, shift
);
1703 ath10k_warn(ar
, "failed to switch ram config to IRAM for section %s: %d\n",
1704 current_region
->name
, ret
);
1709 /* Reserve space for the header. */
1711 buf
+= sizeof(*hdr
);
1712 buf_len
-= sizeof(*hdr
);
1714 switch (current_region
->type
) {
1715 case ATH10K_MEM_REGION_TYPE_IOSRAM
:
1716 count
= ath10k_pci_dump_memory_sram(ar
, current_region
, buf
);
1718 case ATH10K_MEM_REGION_TYPE_IOREG
:
1719 ret
= ath10k_pci_dump_memory_reg(ar
, current_region
, buf
);
1726 ret
= ath10k_pci_dump_memory_generic(ar
, current_region
, buf
);
1734 hdr
->region_type
= cpu_to_le32(current_region
->type
);
1735 hdr
->start
= cpu_to_le32(current_region
->start
);
1736 hdr
->length
= cpu_to_le32(count
);
1739 /* Note: the header remains, just with zero length. */
1749 static void ath10k_pci_fw_dump_work(struct work_struct
*work
)
1751 struct ath10k_pci
*ar_pci
= container_of(work
, struct ath10k_pci
,
1753 struct ath10k_fw_crash_data
*crash_data
;
1754 struct ath10k
*ar
= ar_pci
->ar
;
1755 char guid
[UUID_STRING_LEN
+ 1];
1757 mutex_lock(&ar
->dump_mutex
);
1759 spin_lock_bh(&ar
->data_lock
);
1760 ar
->stats
.fw_crash_counter
++;
1761 spin_unlock_bh(&ar
->data_lock
);
1763 crash_data
= ath10k_coredump_new(ar
);
1766 scnprintf(guid
, sizeof(guid
), "%pUl", &crash_data
->guid
);
1768 scnprintf(guid
, sizeof(guid
), "n/a");
1770 ath10k_err(ar
, "firmware crashed! (guid %s)\n", guid
);
1771 ath10k_print_driver_info(ar
);
1772 ath10k_pci_dump_registers(ar
, crash_data
);
1773 ath10k_ce_dump_registers(ar
, crash_data
);
1774 ath10k_pci_dump_memory(ar
, crash_data
);
1776 mutex_unlock(&ar
->dump_mutex
);
1778 ath10k_core_start_recovery(ar
);
1781 static void ath10k_pci_fw_crashed_dump(struct ath10k
*ar
)
1783 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1785 queue_work(ar
->workqueue
, &ar_pci
->dump_work
);
1788 void ath10k_pci_hif_send_complete_check(struct ath10k
*ar
, u8 pipe
,
1791 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1793 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci hif send complete check\n");
1798 * Decide whether to actually poll for completions, or just
1799 * wait for a later chance.
1800 * If there seem to be plenty of resources left, then just wait
1801 * since checking involves reading a CE register, which is a
1802 * relatively expensive operation.
1804 resources
= ath10k_pci_hif_get_free_queue_number(ar
, pipe
);
1807 * If at least 50% of the total resources are still available,
1808 * don't bother checking again yet.
1810 if (resources
> (ar_pci
->attr
[pipe
].src_nentries
>> 1))
1813 ath10k_ce_per_engine_service(ar
, pipe
);
1816 static void ath10k_pci_rx_retry_sync(struct ath10k
*ar
)
1818 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1820 del_timer_sync(&ar_pci
->rx_post_retry
);
1823 int ath10k_pci_hif_map_service_to_pipe(struct ath10k
*ar
, u16 service_id
,
1824 u8
*ul_pipe
, u8
*dl_pipe
)
1826 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1827 const struct ce_service_to_pipe
*entry
;
1828 bool ul_set
= false, dl_set
= false;
1831 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci hif map service\n");
1833 for (i
= 0; i
< ARRAY_SIZE(pci_target_service_to_ce_map_wlan
); i
++) {
1834 entry
= &ar_pci
->serv_to_pipe
[i
];
1836 if (__le32_to_cpu(entry
->service_id
) != service_id
)
1839 switch (__le32_to_cpu(entry
->pipedir
)) {
1844 *dl_pipe
= __le32_to_cpu(entry
->pipenum
);
1849 *ul_pipe
= __le32_to_cpu(entry
->pipenum
);
1855 *dl_pipe
= __le32_to_cpu(entry
->pipenum
);
1856 *ul_pipe
= __le32_to_cpu(entry
->pipenum
);
1863 if (!ul_set
|| !dl_set
)
1869 void ath10k_pci_hif_get_default_pipe(struct ath10k
*ar
,
1870 u8
*ul_pipe
, u8
*dl_pipe
)
1872 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci hif get default pipe\n");
1874 (void)ath10k_pci_hif_map_service_to_pipe(ar
,
1875 ATH10K_HTC_SVC_ID_RSVD_CTRL
,
1879 void ath10k_pci_irq_msi_fw_mask(struct ath10k
*ar
)
1883 switch (ar
->hw_rev
) {
1884 case ATH10K_HW_QCA988X
:
1885 case ATH10K_HW_QCA9887
:
1886 case ATH10K_HW_QCA6174
:
1887 case ATH10K_HW_QCA9377
:
1888 val
= ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
1890 val
&= ~CORE_CTRL_PCIE_REG_31_MASK
;
1891 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+
1892 CORE_CTRL_ADDRESS
, val
);
1894 case ATH10K_HW_QCA99X0
:
1895 case ATH10K_HW_QCA9984
:
1896 case ATH10K_HW_QCA9888
:
1897 case ATH10K_HW_QCA4019
:
1898 /* TODO: Find appropriate register configuration for QCA99X0
1902 case ATH10K_HW_WCN3990
:
1907 static void ath10k_pci_irq_msi_fw_unmask(struct ath10k
*ar
)
1911 switch (ar
->hw_rev
) {
1912 case ATH10K_HW_QCA988X
:
1913 case ATH10K_HW_QCA9887
:
1914 case ATH10K_HW_QCA6174
:
1915 case ATH10K_HW_QCA9377
:
1916 val
= ath10k_pci_read32(ar
, SOC_CORE_BASE_ADDRESS
+
1918 val
|= CORE_CTRL_PCIE_REG_31_MASK
;
1919 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+
1920 CORE_CTRL_ADDRESS
, val
);
1922 case ATH10K_HW_QCA99X0
:
1923 case ATH10K_HW_QCA9984
:
1924 case ATH10K_HW_QCA9888
:
1925 case ATH10K_HW_QCA4019
:
1926 /* TODO: Find appropriate register configuration for QCA99X0
1927 * to unmask irq/MSI.
1930 case ATH10K_HW_WCN3990
:
1935 static void ath10k_pci_irq_disable(struct ath10k
*ar
)
1937 ath10k_ce_disable_interrupts(ar
);
1938 ath10k_pci_disable_and_clear_intx_irq(ar
);
1939 ath10k_pci_irq_msi_fw_mask(ar
);
1942 static void ath10k_pci_irq_sync(struct ath10k
*ar
)
1944 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1946 synchronize_irq(ar_pci
->pdev
->irq
);
1949 static void ath10k_pci_irq_enable(struct ath10k
*ar
)
1951 ath10k_ce_enable_interrupts(ar
);
1952 ath10k_pci_enable_intx_irq(ar
);
1953 ath10k_pci_irq_msi_fw_unmask(ar
);
1956 static int ath10k_pci_hif_start(struct ath10k
*ar
)
1958 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
1960 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot hif start\n");
1962 ath10k_core_napi_enable(ar
);
1964 ath10k_pci_irq_enable(ar
);
1965 ath10k_pci_rx_post(ar
);
1967 pcie_capability_clear_and_set_word(ar_pci
->pdev
, PCI_EXP_LNKCTL
,
1968 PCI_EXP_LNKCTL_ASPMC
,
1969 ar_pci
->link_ctl
& PCI_EXP_LNKCTL_ASPMC
);
1974 static void ath10k_pci_rx_pipe_cleanup(struct ath10k_pci_pipe
*pci_pipe
)
1977 struct ath10k_ce_pipe
*ce_pipe
;
1978 struct ath10k_ce_ring
*ce_ring
;
1979 struct sk_buff
*skb
;
1982 ar
= pci_pipe
->hif_ce_state
;
1983 ce_pipe
= pci_pipe
->ce_hdl
;
1984 ce_ring
= ce_pipe
->dest_ring
;
1989 if (!pci_pipe
->buf_sz
)
1992 for (i
= 0; i
< ce_ring
->nentries
; i
++) {
1993 skb
= ce_ring
->per_transfer_context
[i
];
1997 ce_ring
->per_transfer_context
[i
] = NULL
;
1999 dma_unmap_single(ar
->dev
, ATH10K_SKB_RXCB(skb
)->paddr
,
2000 skb
->len
+ skb_tailroom(skb
),
2002 dev_kfree_skb_any(skb
);
2006 static void ath10k_pci_tx_pipe_cleanup(struct ath10k_pci_pipe
*pci_pipe
)
2009 struct ath10k_ce_pipe
*ce_pipe
;
2010 struct ath10k_ce_ring
*ce_ring
;
2011 struct sk_buff
*skb
;
2014 ar
= pci_pipe
->hif_ce_state
;
2015 ce_pipe
= pci_pipe
->ce_hdl
;
2016 ce_ring
= ce_pipe
->src_ring
;
2021 if (!pci_pipe
->buf_sz
)
2024 for (i
= 0; i
< ce_ring
->nentries
; i
++) {
2025 skb
= ce_ring
->per_transfer_context
[i
];
2029 ce_ring
->per_transfer_context
[i
] = NULL
;
2031 ath10k_htc_tx_completion_handler(ar
, skb
);
2036 * Cleanup residual buffers for device shutdown:
2037 * buffers that were enqueued for receive
2038 * buffers that were to be sent
2039 * Note: Buffers that had completed but which were
2040 * not yet processed are on a completion queue. They
2041 * are handled when the completion thread shuts down.
2043 static void ath10k_pci_buffer_cleanup(struct ath10k
*ar
)
2045 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2048 for (pipe_num
= 0; pipe_num
< CE_COUNT
; pipe_num
++) {
2049 struct ath10k_pci_pipe
*pipe_info
;
2051 pipe_info
= &ar_pci
->pipe_info
[pipe_num
];
2052 ath10k_pci_rx_pipe_cleanup(pipe_info
);
2053 ath10k_pci_tx_pipe_cleanup(pipe_info
);
2057 void ath10k_pci_ce_deinit(struct ath10k
*ar
)
2061 for (i
= 0; i
< CE_COUNT
; i
++)
2062 ath10k_ce_deinit_pipe(ar
, i
);
2065 void ath10k_pci_flush(struct ath10k
*ar
)
2067 ath10k_pci_rx_retry_sync(ar
);
2068 ath10k_pci_buffer_cleanup(ar
);
2071 static void ath10k_pci_hif_stop(struct ath10k
*ar
)
2073 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2074 unsigned long flags
;
2076 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot hif stop\n");
2078 ath10k_pci_irq_disable(ar
);
2079 ath10k_pci_irq_sync(ar
);
2081 ath10k_core_napi_sync_disable(ar
);
2083 cancel_work_sync(&ar_pci
->dump_work
);
2085 /* Most likely the device has HTT Rx ring configured. The only way to
2086 * prevent the device from accessing (and possible corrupting) host
2087 * memory is to reset the chip now.
2089 * There's also no known way of masking MSI interrupts on the device.
2090 * For ranged MSI the CE-related interrupts can be masked. However
2091 * regardless how many MSI interrupts are assigned the first one
2092 * is always used for firmware indications (crashes) and cannot be
2093 * masked. To prevent the device from asserting the interrupt reset it
2094 * before proceeding with cleanup.
2096 ath10k_pci_safe_chip_reset(ar
);
2098 ath10k_pci_flush(ar
);
2100 spin_lock_irqsave(&ar_pci
->ps_lock
, flags
);
2101 WARN_ON(ar_pci
->ps_wake_refcount
> 0);
2102 spin_unlock_irqrestore(&ar_pci
->ps_lock
, flags
);
2105 int ath10k_pci_hif_exchange_bmi_msg(struct ath10k
*ar
,
2106 void *req
, u32 req_len
,
2107 void *resp
, u32
*resp_len
)
2109 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2110 struct ath10k_pci_pipe
*pci_tx
= &ar_pci
->pipe_info
[BMI_CE_NUM_TO_TARG
];
2111 struct ath10k_pci_pipe
*pci_rx
= &ar_pci
->pipe_info
[BMI_CE_NUM_TO_HOST
];
2112 struct ath10k_ce_pipe
*ce_tx
= pci_tx
->ce_hdl
;
2113 struct ath10k_ce_pipe
*ce_rx
= pci_rx
->ce_hdl
;
2114 dma_addr_t req_paddr
= 0;
2115 dma_addr_t resp_paddr
= 0;
2116 struct bmi_xfer xfer
= {};
2117 void *treq
, *tresp
= NULL
;
2122 if (resp
&& !resp_len
)
2125 if (resp
&& resp_len
&& *resp_len
== 0)
2128 treq
= kmemdup(req
, req_len
, GFP_KERNEL
);
2132 req_paddr
= dma_map_single(ar
->dev
, treq
, req_len
, DMA_TO_DEVICE
);
2133 ret
= dma_mapping_error(ar
->dev
, req_paddr
);
2139 if (resp
&& resp_len
) {
2140 tresp
= kzalloc(*resp_len
, GFP_KERNEL
);
2146 resp_paddr
= dma_map_single(ar
->dev
, tresp
, *resp_len
,
2148 ret
= dma_mapping_error(ar
->dev
, resp_paddr
);
2154 xfer
.wait_for_resp
= true;
2157 ath10k_ce_rx_post_buf(ce_rx
, &xfer
, resp_paddr
);
2160 ret
= ath10k_ce_send(ce_tx
, &xfer
, req_paddr
, req_len
, -1, 0);
2164 ret
= ath10k_pci_bmi_wait(ar
, ce_tx
, ce_rx
, &xfer
);
2166 dma_addr_t unused_buffer
;
2167 unsigned int unused_nbytes
;
2168 unsigned int unused_id
;
2170 ath10k_ce_cancel_send_next(ce_tx
, NULL
, &unused_buffer
,
2171 &unused_nbytes
, &unused_id
);
2173 /* non-zero means we did not time out */
2179 dma_addr_t unused_buffer
;
2181 ath10k_ce_revoke_recv_next(ce_rx
, NULL
, &unused_buffer
);
2182 dma_unmap_single(ar
->dev
, resp_paddr
,
2183 *resp_len
, DMA_FROM_DEVICE
);
2186 dma_unmap_single(ar
->dev
, req_paddr
, req_len
, DMA_TO_DEVICE
);
2188 if (ret
== 0 && resp_len
) {
2189 *resp_len
= min(*resp_len
, xfer
.resp_len
);
2190 memcpy(resp
, tresp
, *resp_len
);
2199 static void ath10k_pci_bmi_send_done(struct ath10k_ce_pipe
*ce_state
)
2201 struct bmi_xfer
*xfer
;
2203 if (ath10k_ce_completed_send_next(ce_state
, (void **)&xfer
))
2206 xfer
->tx_done
= true;
2209 static void ath10k_pci_bmi_recv_data(struct ath10k_ce_pipe
*ce_state
)
2211 struct ath10k
*ar
= ce_state
->ar
;
2212 struct bmi_xfer
*xfer
;
2213 unsigned int nbytes
;
2215 if (ath10k_ce_completed_recv_next(ce_state
, (void **)&xfer
,
2219 if (WARN_ON_ONCE(!xfer
))
2222 if (!xfer
->wait_for_resp
) {
2223 ath10k_warn(ar
, "unexpected: BMI data received; ignoring\n");
2227 xfer
->resp_len
= nbytes
;
2228 xfer
->rx_done
= true;
2231 static int ath10k_pci_bmi_wait(struct ath10k
*ar
,
2232 struct ath10k_ce_pipe
*tx_pipe
,
2233 struct ath10k_ce_pipe
*rx_pipe
,
2234 struct bmi_xfer
*xfer
)
2236 unsigned long timeout
= jiffies
+ BMI_COMMUNICATION_TIMEOUT_HZ
;
2237 unsigned long started
= jiffies
;
2241 while (time_before_eq(jiffies
, timeout
)) {
2242 ath10k_pci_bmi_send_done(tx_pipe
);
2243 ath10k_pci_bmi_recv_data(rx_pipe
);
2245 if (xfer
->tx_done
&& (xfer
->rx_done
== xfer
->wait_for_resp
)) {
2256 dur
= jiffies
- started
;
2258 ath10k_dbg(ar
, ATH10K_DBG_BMI
,
2259 "bmi cmd took %lu jiffies hz %d ret %d\n",
2265 * Send an interrupt to the device to wake up the Target CPU
2266 * so it has an opportunity to notice any changed state.
2268 static int ath10k_pci_wake_target_cpu(struct ath10k
*ar
)
2272 addr
= SOC_CORE_BASE_ADDRESS
+ CORE_CTRL_ADDRESS
;
2273 val
= ath10k_pci_read32(ar
, addr
);
2274 val
|= CORE_CTRL_CPU_INTR_MASK
;
2275 ath10k_pci_write32(ar
, addr
, val
);
2280 static int ath10k_pci_get_num_banks(struct ath10k
*ar
)
2282 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2284 switch (ar_pci
->pdev
->device
) {
2285 case QCA988X_2_0_DEVICE_ID_UBNT
:
2286 case QCA988X_2_0_DEVICE_ID
:
2287 case QCA99X0_2_0_DEVICE_ID
:
2288 case QCA9888_2_0_DEVICE_ID
:
2289 case QCA9984_1_0_DEVICE_ID
:
2290 case QCA9887_1_0_DEVICE_ID
:
2292 case QCA6164_2_1_DEVICE_ID
:
2293 case QCA6174_2_1_DEVICE_ID
:
2294 switch (MS(ar
->bus_param
.chip_id
, SOC_CHIP_ID_REV
)) {
2295 case QCA6174_HW_1_0_CHIP_ID_REV
:
2296 case QCA6174_HW_1_1_CHIP_ID_REV
:
2297 case QCA6174_HW_2_1_CHIP_ID_REV
:
2298 case QCA6174_HW_2_2_CHIP_ID_REV
:
2300 case QCA6174_HW_1_3_CHIP_ID_REV
:
2302 case QCA6174_HW_3_0_CHIP_ID_REV
:
2303 case QCA6174_HW_3_1_CHIP_ID_REV
:
2304 case QCA6174_HW_3_2_CHIP_ID_REV
:
2308 case QCA9377_1_0_DEVICE_ID
:
2312 ath10k_warn(ar
, "unknown number of banks, assuming 1\n");
2316 static int ath10k_bus_get_num_banks(struct ath10k
*ar
)
2318 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
2320 return ce
->bus_ops
->get_num_banks(ar
);
2323 int ath10k_pci_init_config(struct ath10k
*ar
)
2325 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2326 u32 interconnect_targ_addr
;
2327 u32 pcie_state_targ_addr
= 0;
2328 u32 pipe_cfg_targ_addr
= 0;
2329 u32 svc_to_pipe_map
= 0;
2330 u32 pcie_config_flags
= 0;
2332 u32 ealloc_targ_addr
;
2334 u32 flag2_targ_addr
;
2337 /* Download to Target the CE Config and the service-to-CE map */
2338 interconnect_targ_addr
=
2339 host_interest_item_address(HI_ITEM(hi_interconnect_state
));
2341 /* Supply Target-side CE configuration */
2342 ret
= ath10k_pci_diag_read32(ar
, interconnect_targ_addr
,
2343 &pcie_state_targ_addr
);
2345 ath10k_err(ar
, "Failed to get pcie state addr: %d\n", ret
);
2349 if (pcie_state_targ_addr
== 0) {
2351 ath10k_err(ar
, "Invalid pcie state addr\n");
2355 ret
= ath10k_pci_diag_read32(ar
, (pcie_state_targ_addr
+
2356 offsetof(struct pcie_state
,
2358 &pipe_cfg_targ_addr
);
2360 ath10k_err(ar
, "Failed to get pipe cfg addr: %d\n", ret
);
2364 if (pipe_cfg_targ_addr
== 0) {
2366 ath10k_err(ar
, "Invalid pipe cfg addr\n");
2370 ret
= ath10k_pci_diag_write_mem(ar
, pipe_cfg_targ_addr
,
2371 ar_pci
->pipe_config
,
2372 sizeof(struct ce_pipe_config
) *
2373 NUM_TARGET_CE_CONFIG_WLAN
);
2376 ath10k_err(ar
, "Failed to write pipe cfg: %d\n", ret
);
2380 ret
= ath10k_pci_diag_read32(ar
, (pcie_state_targ_addr
+
2381 offsetof(struct pcie_state
,
2385 ath10k_err(ar
, "Failed to get svc/pipe map: %d\n", ret
);
2389 if (svc_to_pipe_map
== 0) {
2391 ath10k_err(ar
, "Invalid svc_to_pipe map\n");
2395 ret
= ath10k_pci_diag_write_mem(ar
, svc_to_pipe_map
,
2396 ar_pci
->serv_to_pipe
,
2397 sizeof(pci_target_service_to_ce_map_wlan
));
2399 ath10k_err(ar
, "Failed to write svc/pipe map: %d\n", ret
);
2403 ret
= ath10k_pci_diag_read32(ar
, (pcie_state_targ_addr
+
2404 offsetof(struct pcie_state
,
2406 &pcie_config_flags
);
2408 ath10k_err(ar
, "Failed to get pcie config_flags: %d\n", ret
);
2412 pcie_config_flags
&= ~PCIE_CONFIG_FLAG_ENABLE_L1
;
2414 ret
= ath10k_pci_diag_write32(ar
, (pcie_state_targ_addr
+
2415 offsetof(struct pcie_state
,
2419 ath10k_err(ar
, "Failed to write pcie config_flags: %d\n", ret
);
2423 /* configure early allocation */
2424 ealloc_targ_addr
= host_interest_item_address(HI_ITEM(hi_early_alloc
));
2426 ret
= ath10k_pci_diag_read32(ar
, ealloc_targ_addr
, &ealloc_value
);
2428 ath10k_err(ar
, "Failed to get early alloc val: %d\n", ret
);
2432 /* first bank is switched to IRAM */
2433 ealloc_value
|= ((HI_EARLY_ALLOC_MAGIC
<< HI_EARLY_ALLOC_MAGIC_SHIFT
) &
2434 HI_EARLY_ALLOC_MAGIC_MASK
);
2435 ealloc_value
|= ((ath10k_bus_get_num_banks(ar
) <<
2436 HI_EARLY_ALLOC_IRAM_BANKS_SHIFT
) &
2437 HI_EARLY_ALLOC_IRAM_BANKS_MASK
);
2439 ret
= ath10k_pci_diag_write32(ar
, ealloc_targ_addr
, ealloc_value
);
2441 ath10k_err(ar
, "Failed to set early alloc val: %d\n", ret
);
2445 /* Tell Target to proceed with initialization */
2446 flag2_targ_addr
= host_interest_item_address(HI_ITEM(hi_option_flag2
));
2448 ret
= ath10k_pci_diag_read32(ar
, flag2_targ_addr
, &flag2_value
);
2450 ath10k_err(ar
, "Failed to get option val: %d\n", ret
);
2454 flag2_value
|= HI_OPTION_EARLY_CFG_DONE
;
2456 ret
= ath10k_pci_diag_write32(ar
, flag2_targ_addr
, flag2_value
);
2458 ath10k_err(ar
, "Failed to set option val: %d\n", ret
);
2465 static void ath10k_pci_override_ce_config(struct ath10k
*ar
)
2467 struct ce_attr
*attr
;
2468 struct ce_pipe_config
*config
;
2469 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2471 /* For QCA6174 we're overriding the Copy Engine 5 configuration,
2472 * since it is currently used for other feature.
2475 /* Override Host's Copy Engine 5 configuration */
2476 attr
= &ar_pci
->attr
[5];
2477 attr
->src_sz_max
= 0;
2478 attr
->dest_nentries
= 0;
2480 /* Override Target firmware's Copy Engine configuration */
2481 config
= &ar_pci
->pipe_config
[5];
2482 config
->pipedir
= __cpu_to_le32(PIPEDIR_OUT
);
2483 config
->nbytes_max
= __cpu_to_le32(2048);
2485 /* Map from service/endpoint to Copy Engine */
2486 ar_pci
->serv_to_pipe
[15].pipenum
= __cpu_to_le32(1);
2489 int ath10k_pci_alloc_pipes(struct ath10k
*ar
)
2491 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2492 struct ath10k_pci_pipe
*pipe
;
2493 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
2496 for (i
= 0; i
< CE_COUNT
; i
++) {
2497 pipe
= &ar_pci
->pipe_info
[i
];
2498 pipe
->ce_hdl
= &ce
->ce_states
[i
];
2500 pipe
->hif_ce_state
= ar
;
2502 ret
= ath10k_ce_alloc_pipe(ar
, i
, &ar_pci
->attr
[i
]);
2504 ath10k_err(ar
, "failed to allocate copy engine pipe %d: %d\n",
2509 /* Last CE is Diagnostic Window */
2510 if (i
== CE_DIAG_PIPE
) {
2511 ar_pci
->ce_diag
= pipe
->ce_hdl
;
2515 pipe
->buf_sz
= (size_t)(ar_pci
->attr
[i
].src_sz_max
);
2521 void ath10k_pci_free_pipes(struct ath10k
*ar
)
2525 for (i
= 0; i
< CE_COUNT
; i
++)
2526 ath10k_ce_free_pipe(ar
, i
);
2529 int ath10k_pci_init_pipes(struct ath10k
*ar
)
2531 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2534 for (i
= 0; i
< CE_COUNT
; i
++) {
2535 ret
= ath10k_ce_init_pipe(ar
, i
, &ar_pci
->attr
[i
]);
2537 ath10k_err(ar
, "failed to initialize copy engine pipe %d: %d\n",
2546 static bool ath10k_pci_has_fw_crashed(struct ath10k
*ar
)
2548 return ath10k_pci_read32(ar
, FW_INDICATOR_ADDRESS
) &
2549 FW_IND_EVENT_PENDING
;
2552 static void ath10k_pci_fw_crashed_clear(struct ath10k
*ar
)
2556 val
= ath10k_pci_read32(ar
, FW_INDICATOR_ADDRESS
);
2557 val
&= ~FW_IND_EVENT_PENDING
;
2558 ath10k_pci_write32(ar
, FW_INDICATOR_ADDRESS
, val
);
2561 static bool ath10k_pci_has_device_gone(struct ath10k
*ar
)
2565 val
= ath10k_pci_read32(ar
, FW_INDICATOR_ADDRESS
);
2566 return (val
== 0xffffffff);
2569 /* this function effectively clears target memory controller assert line */
2570 static void ath10k_pci_warm_reset_si0(struct ath10k
*ar
)
2574 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2575 ath10k_pci_soc_write32(ar
, SOC_RESET_CONTROL_ADDRESS
,
2576 val
| SOC_RESET_CONTROL_SI0_RST_MASK
);
2577 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2581 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2582 ath10k_pci_soc_write32(ar
, SOC_RESET_CONTROL_ADDRESS
,
2583 val
& ~SOC_RESET_CONTROL_SI0_RST_MASK
);
2584 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2589 static void ath10k_pci_warm_reset_cpu(struct ath10k
*ar
)
2593 ath10k_pci_write32(ar
, FW_INDICATOR_ADDRESS
, 0);
2595 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_CPU_WARM_RST_MASK
);
2600 static void ath10k_pci_warm_reset_ce(struct ath10k
*ar
)
2604 val
= ath10k_pci_soc_read32(ar
, SOC_RESET_CONTROL_ADDRESS
);
2606 ath10k_pci_soc_write32(ar
, SOC_RESET_CONTROL_ADDRESS
,
2607 val
| SOC_RESET_CONTROL_CE_RST_MASK
);
2609 ath10k_pci_soc_write32(ar
, SOC_RESET_CONTROL_ADDRESS
,
2610 val
& ~SOC_RESET_CONTROL_CE_RST_MASK
);
2613 static void ath10k_pci_warm_reset_clear_lf(struct ath10k
*ar
)
2617 val
= ath10k_pci_soc_read32(ar
, SOC_LF_TIMER_CONTROL0_ADDRESS
);
2618 ath10k_pci_soc_write32(ar
, SOC_LF_TIMER_CONTROL0_ADDRESS
,
2619 val
& ~SOC_LF_TIMER_CONTROL0_ENABLE_MASK
);
2622 static int ath10k_pci_warm_reset(struct ath10k
*ar
)
2626 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot warm reset\n");
2628 spin_lock_bh(&ar
->data_lock
);
2629 ar
->stats
.fw_warm_reset_counter
++;
2630 spin_unlock_bh(&ar
->data_lock
);
2632 ath10k_pci_irq_disable(ar
);
2634 /* Make sure the target CPU is not doing anything dangerous, e.g. if it
2635 * were to access copy engine while host performs copy engine reset
2636 * then it is possible for the device to confuse pci-e controller to
2637 * the point of bringing host system to a complete stop (i.e. hang).
2639 ath10k_pci_warm_reset_si0(ar
);
2640 ath10k_pci_warm_reset_cpu(ar
);
2641 ath10k_pci_init_pipes(ar
);
2642 ath10k_pci_wait_for_target_init(ar
);
2644 ath10k_pci_warm_reset_clear_lf(ar
);
2645 ath10k_pci_warm_reset_ce(ar
);
2646 ath10k_pci_warm_reset_cpu(ar
);
2647 ath10k_pci_init_pipes(ar
);
2649 ret
= ath10k_pci_wait_for_target_init(ar
);
2651 ath10k_warn(ar
, "failed to wait for target init: %d\n", ret
);
2655 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot warm reset complete\n");
2660 static int ath10k_pci_qca99x0_soft_chip_reset(struct ath10k
*ar
)
2662 ath10k_pci_irq_disable(ar
);
2663 return ath10k_pci_qca99x0_chip_reset(ar
);
2666 static int ath10k_pci_safe_chip_reset(struct ath10k
*ar
)
2668 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2670 if (!ar_pci
->pci_soft_reset
)
2673 return ar_pci
->pci_soft_reset(ar
);
2676 static int ath10k_pci_qca988x_chip_reset(struct ath10k
*ar
)
2681 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot 988x chip reset\n");
2683 /* Some hardware revisions (e.g. CUS223v2) has issues with cold reset.
2684 * It is thus preferred to use warm reset which is safer but may not be
2685 * able to recover the device from all possible fail scenarios.
2687 * Warm reset doesn't always work on first try so attempt it a few
2688 * times before giving up.
2690 for (i
= 0; i
< ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS
; i
++) {
2691 ret
= ath10k_pci_warm_reset(ar
);
2693 ath10k_warn(ar
, "failed to warm reset attempt %d of %d: %d\n",
2694 i
+ 1, ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS
,
2699 /* FIXME: Sometimes copy engine doesn't recover after warm
2700 * reset. In most cases this needs cold reset. In some of these
2701 * cases the device is in such a state that a cold reset may
2704 * Reading any host interest register via copy engine is
2705 * sufficient to verify if device is capable of booting
2708 ret
= ath10k_pci_init_pipes(ar
);
2710 ath10k_warn(ar
, "failed to init copy engine: %d\n",
2715 ret
= ath10k_pci_diag_read32(ar
, QCA988X_HOST_INTEREST_ADDRESS
,
2718 ath10k_warn(ar
, "failed to poke copy engine: %d\n",
2723 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot chip reset complete (warm)\n");
2727 if (ath10k_pci_reset_mode
== ATH10K_PCI_RESET_WARM_ONLY
) {
2728 ath10k_warn(ar
, "refusing cold reset as requested\n");
2732 ret
= ath10k_pci_cold_reset(ar
);
2734 ath10k_warn(ar
, "failed to cold reset: %d\n", ret
);
2738 ret
= ath10k_pci_wait_for_target_init(ar
);
2740 ath10k_warn(ar
, "failed to wait for target after cold reset: %d\n",
2745 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot qca988x chip reset complete (cold)\n");
2750 static int ath10k_pci_qca6174_chip_reset(struct ath10k
*ar
)
2754 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot qca6174 chip reset\n");
2756 /* FIXME: QCA6174 requires cold + warm reset to work. */
2758 ret
= ath10k_pci_cold_reset(ar
);
2760 ath10k_warn(ar
, "failed to cold reset: %d\n", ret
);
2764 ret
= ath10k_pci_wait_for_target_init(ar
);
2766 ath10k_warn(ar
, "failed to wait for target after cold reset: %d\n",
2771 ret
= ath10k_pci_warm_reset(ar
);
2773 ath10k_warn(ar
, "failed to warm reset: %d\n", ret
);
2777 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot qca6174 chip reset complete (cold)\n");
2782 static int ath10k_pci_qca99x0_chip_reset(struct ath10k
*ar
)
2786 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot qca99x0 chip reset\n");
2788 ret
= ath10k_pci_cold_reset(ar
);
2790 ath10k_warn(ar
, "failed to cold reset: %d\n", ret
);
2794 ret
= ath10k_pci_wait_for_target_init(ar
);
2796 ath10k_warn(ar
, "failed to wait for target after cold reset: %d\n",
2801 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot qca99x0 chip reset complete (cold)\n");
2806 static int ath10k_pci_chip_reset(struct ath10k
*ar
)
2808 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2810 if (WARN_ON(!ar_pci
->pci_hard_reset
))
2813 return ar_pci
->pci_hard_reset(ar
);
2816 static int ath10k_pci_hif_power_up(struct ath10k
*ar
,
2817 enum ath10k_firmware_mode fw_mode
)
2819 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2822 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot hif power up\n");
2824 pcie_capability_read_word(ar_pci
->pdev
, PCI_EXP_LNKCTL
,
2826 pcie_capability_clear_word(ar_pci
->pdev
, PCI_EXP_LNKCTL
,
2827 PCI_EXP_LNKCTL_ASPMC
);
2830 * Bring the target up cleanly.
2832 * The target may be in an undefined state with an AUX-powered Target
2833 * and a Host in WoW mode. If the Host crashes, loses power, or is
2834 * restarted (without unloading the driver) then the Target is left
2835 * (aux) powered and running. On a subsequent driver load, the Target
2836 * is in an unexpected state. We try to catch that here in order to
2837 * reset the Target and retry the probe.
2839 ret
= ath10k_pci_chip_reset(ar
);
2841 if (ath10k_pci_has_fw_crashed(ar
)) {
2842 ath10k_warn(ar
, "firmware crashed during chip reset\n");
2843 ath10k_pci_fw_crashed_clear(ar
);
2844 ath10k_pci_fw_crashed_dump(ar
);
2847 ath10k_err(ar
, "failed to reset chip: %d\n", ret
);
2851 ret
= ath10k_pci_init_pipes(ar
);
2853 ath10k_err(ar
, "failed to initialize CE: %d\n", ret
);
2857 ret
= ath10k_pci_init_config(ar
);
2859 ath10k_err(ar
, "failed to setup init config: %d\n", ret
);
2863 ret
= ath10k_pci_wake_target_cpu(ar
);
2865 ath10k_err(ar
, "could not wake up target CPU: %d\n", ret
);
2872 ath10k_pci_ce_deinit(ar
);
2878 void ath10k_pci_hif_power_down(struct ath10k
*ar
)
2880 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot hif power down\n");
2882 /* Currently hif_power_up performs effectively a reset and hif_stop
2883 * resets the chip as well so there's no point in resetting here.
2887 static int ath10k_pci_hif_suspend(struct ath10k
*ar
)
2889 /* Nothing to do; the important stuff is in the driver suspend. */
2893 static int ath10k_pci_suspend(struct ath10k
*ar
)
2895 /* The grace timer can still be counting down and ar->ps_awake be true.
2896 * It is known that the device may be asleep after resuming regardless
2897 * of the SoC powersave state before suspending. Hence make sure the
2898 * device is asleep before proceeding.
2900 ath10k_pci_sleep_sync(ar
);
2905 static int ath10k_pci_hif_resume(struct ath10k
*ar
)
2907 /* Nothing to do; the important stuff is in the driver resume. */
2911 static int ath10k_pci_resume(struct ath10k
*ar
)
2913 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
2914 struct pci_dev
*pdev
= ar_pci
->pdev
;
2918 ret
= ath10k_pci_force_wake(ar
);
2920 ath10k_err(ar
, "failed to wake up target: %d\n", ret
);
2924 /* Suspend/Resume resets the PCI configuration space, so we have to
2925 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
2926 * from interfering with C3 CPU state. pci_restore_state won't help
2927 * here since it only restores the first 64 bytes pci config header.
2929 pci_read_config_dword(pdev
, 0x40, &val
);
2930 if ((val
& 0x0000ff00) != 0)
2931 pci_write_config_dword(pdev
, 0x40, val
& 0xffff00ff);
2936 static bool ath10k_pci_validate_cal(void *data
, size_t size
)
2938 __le16
*cal_words
= data
;
2945 for (i
= 0; i
< size
/ 2; i
++)
2946 checksum
^= le16_to_cpu(cal_words
[i
]);
2948 return checksum
== 0xffff;
2951 static void ath10k_pci_enable_eeprom(struct ath10k
*ar
)
2953 /* Enable SI clock */
2954 ath10k_pci_soc_write32(ar
, CLOCK_CONTROL_OFFSET
, 0x0);
2956 /* Configure GPIOs for I2C operation */
2957 ath10k_pci_write32(ar
,
2958 GPIO_BASE_ADDRESS
+ GPIO_PIN0_OFFSET
+
2959 4 * QCA9887_1_0_I2C_SDA_GPIO_PIN
,
2960 SM(QCA9887_1_0_I2C_SDA_PIN_CONFIG
,
2962 SM(1, GPIO_PIN0_PAD_PULL
));
2964 ath10k_pci_write32(ar
,
2965 GPIO_BASE_ADDRESS
+ GPIO_PIN0_OFFSET
+
2966 4 * QCA9887_1_0_SI_CLK_GPIO_PIN
,
2967 SM(QCA9887_1_0_SI_CLK_PIN_CONFIG
, GPIO_PIN0_CONFIG
) |
2968 SM(1, GPIO_PIN0_PAD_PULL
));
2970 ath10k_pci_write32(ar
,
2972 QCA9887_1_0_GPIO_ENABLE_W1TS_LOW_ADDRESS
,
2973 1u << QCA9887_1_0_SI_CLK_GPIO_PIN
);
2975 /* In Swift ASIC - EEPROM clock will be (110MHz/512) = 214KHz */
2976 ath10k_pci_write32(ar
,
2977 SI_BASE_ADDRESS
+ SI_CONFIG_OFFSET
,
2978 SM(1, SI_CONFIG_ERR_INT
) |
2979 SM(1, SI_CONFIG_BIDIR_OD_DATA
) |
2980 SM(1, SI_CONFIG_I2C
) |
2981 SM(1, SI_CONFIG_POS_SAMPLE
) |
2982 SM(1, SI_CONFIG_INACTIVE_DATA
) |
2983 SM(1, SI_CONFIG_INACTIVE_CLK
) |
2984 SM(8, SI_CONFIG_DIVIDER
));
2987 static int ath10k_pci_read_eeprom(struct ath10k
*ar
, u16 addr
, u8
*out
)
2992 /* set device select byte and for the read operation */
2993 reg
= QCA9887_EEPROM_SELECT_READ
|
2994 SM(addr
, QCA9887_EEPROM_ADDR_LO
) |
2995 SM(addr
>> 8, QCA9887_EEPROM_ADDR_HI
);
2996 ath10k_pci_write32(ar
, SI_BASE_ADDRESS
+ SI_TX_DATA0_OFFSET
, reg
);
2998 /* write transmit data, transfer length, and START bit */
2999 ath10k_pci_write32(ar
, SI_BASE_ADDRESS
+ SI_CS_OFFSET
,
3000 SM(1, SI_CS_START
) | SM(1, SI_CS_RX_CNT
) |
3001 SM(4, SI_CS_TX_CNT
));
3003 /* wait max 1 sec */
3004 wait_limit
= 100000;
3006 /* wait for SI_CS_DONE_INT */
3008 reg
= ath10k_pci_read32(ar
, SI_BASE_ADDRESS
+ SI_CS_OFFSET
);
3009 if (MS(reg
, SI_CS_DONE_INT
))
3014 } while (wait_limit
> 0);
3016 if (!MS(reg
, SI_CS_DONE_INT
)) {
3017 ath10k_err(ar
, "timeout while reading device EEPROM at %04x\n",
3022 /* clear SI_CS_DONE_INT */
3023 ath10k_pci_write32(ar
, SI_BASE_ADDRESS
+ SI_CS_OFFSET
, reg
);
3025 if (MS(reg
, SI_CS_DONE_ERR
)) {
3026 ath10k_err(ar
, "failed to read device EEPROM at %04x\n", addr
);
3030 /* extract receive data */
3031 reg
= ath10k_pci_read32(ar
, SI_BASE_ADDRESS
+ SI_RX_DATA0_OFFSET
);
3037 static int ath10k_pci_hif_fetch_cal_eeprom(struct ath10k
*ar
, void **data
,
3044 if (!QCA_REV_9887(ar
))
3047 calsize
= ar
->hw_params
.cal_data_len
;
3048 caldata
= kmalloc(calsize
, GFP_KERNEL
);
3052 ath10k_pci_enable_eeprom(ar
);
3054 for (i
= 0; i
< calsize
; i
++) {
3055 ret
= ath10k_pci_read_eeprom(ar
, i
, &caldata
[i
]);
3060 if (!ath10k_pci_validate_cal(caldata
, calsize
))
3064 *data_len
= calsize
;
3074 static const struct ath10k_hif_ops ath10k_pci_hif_ops
= {
3075 .tx_sg
= ath10k_pci_hif_tx_sg
,
3076 .diag_read
= ath10k_pci_hif_diag_read
,
3077 .diag_write
= ath10k_pci_diag_write_mem
,
3078 .exchange_bmi_msg
= ath10k_pci_hif_exchange_bmi_msg
,
3079 .start
= ath10k_pci_hif_start
,
3080 .stop
= ath10k_pci_hif_stop
,
3081 .map_service_to_pipe
= ath10k_pci_hif_map_service_to_pipe
,
3082 .get_default_pipe
= ath10k_pci_hif_get_default_pipe
,
3083 .send_complete_check
= ath10k_pci_hif_send_complete_check
,
3084 .get_free_queue_number
= ath10k_pci_hif_get_free_queue_number
,
3085 .power_up
= ath10k_pci_hif_power_up
,
3086 .power_down
= ath10k_pci_hif_power_down
,
3087 .read32
= ath10k_pci_read32
,
3088 .write32
= ath10k_pci_write32
,
3089 .suspend
= ath10k_pci_hif_suspend
,
3090 .resume
= ath10k_pci_hif_resume
,
3091 .fetch_cal_eeprom
= ath10k_pci_hif_fetch_cal_eeprom
,
3095 * Top-level interrupt handler for all PCI interrupts from a Target.
3096 * When a block of MSI interrupts is allocated, this top-level handler
3097 * is not used; instead, we directly call the correct sub-handler.
3099 static irqreturn_t
ath10k_pci_interrupt_handler(int irq
, void *arg
)
3101 struct ath10k
*ar
= arg
;
3102 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3105 if (ath10k_pci_has_device_gone(ar
))
3108 ret
= ath10k_pci_force_wake(ar
);
3110 ath10k_warn(ar
, "failed to wake device up on irq: %d\n", ret
);
3114 if ((ar_pci
->oper_irq_mode
== ATH10K_PCI_IRQ_INTX
) &&
3115 !ath10k_pci_irq_pending(ar
))
3118 ath10k_pci_disable_and_clear_intx_irq(ar
);
3119 ath10k_pci_irq_msi_fw_mask(ar
);
3120 napi_schedule(&ar
->napi
);
3125 static int ath10k_pci_napi_poll(struct napi_struct
*ctx
, int budget
)
3127 struct ath10k
*ar
= container_of(ctx
, struct ath10k
, napi
);
3130 if (ath10k_pci_has_fw_crashed(ar
)) {
3131 ath10k_pci_fw_crashed_clear(ar
);
3132 ath10k_pci_fw_crashed_dump(ar
);
3137 ath10k_ce_per_engine_service_any(ar
);
3139 done
= ath10k_htt_txrx_compl_task(ar
, budget
);
3141 if (done
< budget
) {
3142 napi_complete_done(ctx
, done
);
3143 /* In case of MSI, it is possible that interrupts are received
3144 * while NAPI poll is inprogress. So pending interrupts that are
3145 * received after processing all copy engine pipes by NAPI poll
3146 * will not be handled again. This is causing failure to
3147 * complete boot sequence in x86 platform. So before enabling
3148 * interrupts safer to check for pending interrupts for
3149 * immediate servicing.
3151 if (ath10k_ce_interrupt_summary(ar
)) {
3155 ath10k_pci_enable_intx_irq(ar
);
3156 ath10k_pci_irq_msi_fw_unmask(ar
);
3163 static int ath10k_pci_request_irq_msi(struct ath10k
*ar
)
3165 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3168 ret
= request_irq(ar_pci
->pdev
->irq
,
3169 ath10k_pci_interrupt_handler
,
3170 IRQF_SHARED
, "ath10k_pci", ar
);
3172 ath10k_warn(ar
, "failed to request MSI irq %d: %d\n",
3173 ar_pci
->pdev
->irq
, ret
);
3180 static int ath10k_pci_request_irq_intx(struct ath10k
*ar
)
3182 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3185 ret
= request_irq(ar_pci
->pdev
->irq
,
3186 ath10k_pci_interrupt_handler
,
3187 IRQF_SHARED
, "ath10k_pci", ar
);
3189 ath10k_warn(ar
, "failed to request legacy irq %d: %d\n",
3190 ar_pci
->pdev
->irq
, ret
);
3197 static int ath10k_pci_request_irq(struct ath10k
*ar
)
3199 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3201 switch (ar_pci
->oper_irq_mode
) {
3202 case ATH10K_PCI_IRQ_INTX
:
3203 return ath10k_pci_request_irq_intx(ar
);
3204 case ATH10K_PCI_IRQ_MSI
:
3205 return ath10k_pci_request_irq_msi(ar
);
3211 static void ath10k_pci_free_irq(struct ath10k
*ar
)
3213 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3215 free_irq(ar_pci
->pdev
->irq
, ar
);
3218 void ath10k_pci_init_napi(struct ath10k
*ar
)
3220 netif_napi_add(ar
->napi_dev
, &ar
->napi
, ath10k_pci_napi_poll
);
3223 static int ath10k_pci_init_irq(struct ath10k
*ar
)
3225 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3228 ath10k_pci_init_napi(ar
);
3230 if (ath10k_pci_irq_mode
!= ATH10K_PCI_IRQ_AUTO
)
3231 ath10k_info(ar
, "limiting irq mode to: %d\n",
3232 ath10k_pci_irq_mode
);
3235 if (ath10k_pci_irq_mode
!= ATH10K_PCI_IRQ_INTX
) {
3236 ar_pci
->oper_irq_mode
= ATH10K_PCI_IRQ_MSI
;
3237 ret
= pci_enable_msi(ar_pci
->pdev
);
3241 /* MHI failed, try legacy irq next */
3246 * A potential race occurs here: The CORE_BASE write
3247 * depends on target correctly decoding AXI address but
3248 * host won't know when target writes BAR to CORE_CTRL.
3249 * This write might get lost if target has NOT written BAR.
3250 * For now, fix the race by repeating the write in below
3251 * synchronization checking.
3253 ar_pci
->oper_irq_mode
= ATH10K_PCI_IRQ_INTX
;
3255 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+ PCIE_INTR_ENABLE_ADDRESS
,
3256 PCIE_INTR_FIRMWARE_MASK
| PCIE_INTR_CE_MASK_ALL
);
3261 static void ath10k_pci_deinit_irq_intx(struct ath10k
*ar
)
3263 ath10k_pci_write32(ar
, SOC_CORE_BASE_ADDRESS
+ PCIE_INTR_ENABLE_ADDRESS
,
3267 static int ath10k_pci_deinit_irq(struct ath10k
*ar
)
3269 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3271 switch (ar_pci
->oper_irq_mode
) {
3272 case ATH10K_PCI_IRQ_INTX
:
3273 ath10k_pci_deinit_irq_intx(ar
);
3276 pci_disable_msi(ar_pci
->pdev
);
3283 int ath10k_pci_wait_for_target_init(struct ath10k
*ar
)
3285 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3286 unsigned long timeout
;
3289 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot waiting target to initialise\n");
3291 timeout
= jiffies
+ msecs_to_jiffies(ATH10K_PCI_TARGET_WAIT
);
3294 val
= ath10k_pci_read32(ar
, FW_INDICATOR_ADDRESS
);
3296 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot target indicator %x\n",
3299 /* target should never return this */
3300 if (val
== 0xffffffff)
3303 /* the device has crashed so don't bother trying anymore */
3304 if (val
& FW_IND_EVENT_PENDING
)
3307 if (val
& FW_IND_INITIALIZED
)
3310 if (ar_pci
->oper_irq_mode
== ATH10K_PCI_IRQ_INTX
)
3311 /* Fix potential race by repeating CORE_BASE writes */
3312 ath10k_pci_enable_intx_irq(ar
);
3315 } while (time_before(jiffies
, timeout
));
3317 ath10k_pci_disable_and_clear_intx_irq(ar
);
3318 ath10k_pci_irq_msi_fw_mask(ar
);
3320 if (val
== 0xffffffff) {
3321 ath10k_err(ar
, "failed to read device register, device is gone\n");
3325 if (val
& FW_IND_EVENT_PENDING
) {
3326 ath10k_warn(ar
, "device has crashed during init\n");
3330 if (!(val
& FW_IND_INITIALIZED
)) {
3331 ath10k_err(ar
, "failed to receive initialized event from target: %08x\n",
3336 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot target initialised\n");
3340 static int ath10k_pci_cold_reset(struct ath10k
*ar
)
3344 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot cold reset\n");
3346 spin_lock_bh(&ar
->data_lock
);
3348 ar
->stats
.fw_cold_reset_counter
++;
3350 spin_unlock_bh(&ar
->data_lock
);
3352 /* Put Target, including PCIe, into RESET. */
3353 val
= ath10k_pci_reg_read32(ar
, SOC_GLOBAL_RESET_ADDRESS
);
3355 ath10k_pci_reg_write32(ar
, SOC_GLOBAL_RESET_ADDRESS
, val
);
3357 /* After writing into SOC_GLOBAL_RESET to put device into
3358 * reset and pulling out of reset pcie may not be stable
3359 * for any immediate pcie register access and cause bus error,
3360 * add delay before any pcie access request to fix this issue.
3364 /* Pull Target, including PCIe, out of RESET. */
3366 ath10k_pci_reg_write32(ar
, SOC_GLOBAL_RESET_ADDRESS
, val
);
3370 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot cold reset complete\n");
3375 static int ath10k_pci_claim(struct ath10k
*ar
)
3377 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3378 struct pci_dev
*pdev
= ar_pci
->pdev
;
3381 pci_set_drvdata(pdev
, ar
);
3383 ret
= pci_enable_device(pdev
);
3385 ath10k_err(ar
, "failed to enable pci device: %d\n", ret
);
3389 ret
= pci_request_region(pdev
, BAR_NUM
, "ath");
3391 ath10k_err(ar
, "failed to request region BAR%d: %d\n", BAR_NUM
,
3396 /* Target expects 32 bit DMA. Enforce it. */
3397 ret
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
3399 ath10k_err(ar
, "failed to set dma mask to 32-bit: %d\n", ret
);
3403 pci_set_master(pdev
);
3405 /* Arrange for access to Target SoC registers. */
3406 ar_pci
->mem_len
= pci_resource_len(pdev
, BAR_NUM
);
3407 ar_pci
->mem
= pci_iomap(pdev
, BAR_NUM
, 0);
3409 ath10k_err(ar
, "failed to iomap BAR%d\n", BAR_NUM
);
3414 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "boot pci_mem 0x%pK\n", ar_pci
->mem
);
3418 pci_release_region(pdev
, BAR_NUM
);
3421 pci_disable_device(pdev
);
3426 static void ath10k_pci_release(struct ath10k
*ar
)
3428 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3429 struct pci_dev
*pdev
= ar_pci
->pdev
;
3431 pci_iounmap(pdev
, ar_pci
->mem
);
3432 pci_release_region(pdev
, BAR_NUM
);
3433 pci_disable_device(pdev
);
3436 static bool ath10k_pci_chip_is_supported(u32 dev_id
, u32 chip_id
)
3438 const struct ath10k_pci_supp_chip
*supp_chip
;
3440 u32 rev_id
= MS(chip_id
, SOC_CHIP_ID_REV
);
3442 for (i
= 0; i
< ARRAY_SIZE(ath10k_pci_supp_chips
); i
++) {
3443 supp_chip
= &ath10k_pci_supp_chips
[i
];
3445 if (supp_chip
->dev_id
== dev_id
&&
3446 supp_chip
->rev_id
== rev_id
)
3453 int ath10k_pci_setup_resource(struct ath10k
*ar
)
3455 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3456 struct ath10k_ce
*ce
= ath10k_ce_priv(ar
);
3459 spin_lock_init(&ce
->ce_lock
);
3460 spin_lock_init(&ar_pci
->ps_lock
);
3461 mutex_init(&ar_pci
->ce_diag_mutex
);
3463 INIT_WORK(&ar_pci
->dump_work
, ath10k_pci_fw_dump_work
);
3465 timer_setup(&ar_pci
->rx_post_retry
, ath10k_pci_rx_replenish_retry
, 0);
3467 ar_pci
->attr
= kmemdup(pci_host_ce_config_wlan
,
3468 sizeof(pci_host_ce_config_wlan
),
3473 ar_pci
->pipe_config
= kmemdup(pci_target_ce_config_wlan
,
3474 sizeof(pci_target_ce_config_wlan
),
3476 if (!ar_pci
->pipe_config
) {
3481 ar_pci
->serv_to_pipe
= kmemdup(pci_target_service_to_ce_map_wlan
,
3482 sizeof(pci_target_service_to_ce_map_wlan
),
3484 if (!ar_pci
->serv_to_pipe
) {
3486 goto err_free_pipe_config
;
3489 if (QCA_REV_6174(ar
) || QCA_REV_9377(ar
))
3490 ath10k_pci_override_ce_config(ar
);
3492 ret
= ath10k_pci_alloc_pipes(ar
);
3494 ath10k_err(ar
, "failed to allocate copy engine pipes: %d\n",
3496 goto err_free_serv_to_pipe
;
3501 err_free_serv_to_pipe
:
3502 kfree(ar_pci
->serv_to_pipe
);
3503 err_free_pipe_config
:
3504 kfree(ar_pci
->pipe_config
);
3506 kfree(ar_pci
->attr
);
3510 void ath10k_pci_release_resource(struct ath10k
*ar
)
3512 struct ath10k_pci
*ar_pci
= ath10k_pci_priv(ar
);
3514 ath10k_pci_rx_retry_sync(ar
);
3515 netif_napi_del(&ar
->napi
);
3516 ath10k_pci_ce_deinit(ar
);
3517 ath10k_pci_free_pipes(ar
);
3518 kfree(ar_pci
->attr
);
3519 kfree(ar_pci
->pipe_config
);
3520 kfree(ar_pci
->serv_to_pipe
);
3523 static const struct ath10k_bus_ops ath10k_pci_bus_ops
= {
3524 .read32
= ath10k_bus_pci_read32
,
3525 .write32
= ath10k_bus_pci_write32
,
3526 .get_num_banks
= ath10k_pci_get_num_banks
,
3529 static int ath10k_pci_probe(struct pci_dev
*pdev
,
3530 const struct pci_device_id
*pci_dev
)
3534 struct ath10k_pci
*ar_pci
;
3535 enum ath10k_hw_rev hw_rev
;
3536 struct ath10k_bus_params bus_params
= {};
3537 bool pci_ps
, is_qca988x
= false;
3538 int (*pci_soft_reset
)(struct ath10k
*ar
);
3539 int (*pci_hard_reset
)(struct ath10k
*ar
);
3540 u32 (*targ_cpu_to_ce_addr
)(struct ath10k
*ar
, u32 addr
);
3542 switch (pci_dev
->device
) {
3543 case QCA988X_2_0_DEVICE_ID_UBNT
:
3544 case QCA988X_2_0_DEVICE_ID
:
3545 hw_rev
= ATH10K_HW_QCA988X
;
3548 pci_soft_reset
= ath10k_pci_warm_reset
;
3549 pci_hard_reset
= ath10k_pci_qca988x_chip_reset
;
3550 targ_cpu_to_ce_addr
= ath10k_pci_qca988x_targ_cpu_to_ce_addr
;
3552 case QCA9887_1_0_DEVICE_ID
:
3553 hw_rev
= ATH10K_HW_QCA9887
;
3555 pci_soft_reset
= ath10k_pci_warm_reset
;
3556 pci_hard_reset
= ath10k_pci_qca988x_chip_reset
;
3557 targ_cpu_to_ce_addr
= ath10k_pci_qca988x_targ_cpu_to_ce_addr
;
3559 case QCA6164_2_1_DEVICE_ID
:
3560 case QCA6174_2_1_DEVICE_ID
:
3561 hw_rev
= ATH10K_HW_QCA6174
;
3563 pci_soft_reset
= ath10k_pci_warm_reset
;
3564 pci_hard_reset
= ath10k_pci_qca6174_chip_reset
;
3565 targ_cpu_to_ce_addr
= ath10k_pci_qca6174_targ_cpu_to_ce_addr
;
3567 case QCA99X0_2_0_DEVICE_ID
:
3568 hw_rev
= ATH10K_HW_QCA99X0
;
3570 pci_soft_reset
= ath10k_pci_qca99x0_soft_chip_reset
;
3571 pci_hard_reset
= ath10k_pci_qca99x0_chip_reset
;
3572 targ_cpu_to_ce_addr
= ath10k_pci_qca99x0_targ_cpu_to_ce_addr
;
3574 case QCA9984_1_0_DEVICE_ID
:
3575 hw_rev
= ATH10K_HW_QCA9984
;
3577 pci_soft_reset
= ath10k_pci_qca99x0_soft_chip_reset
;
3578 pci_hard_reset
= ath10k_pci_qca99x0_chip_reset
;
3579 targ_cpu_to_ce_addr
= ath10k_pci_qca99x0_targ_cpu_to_ce_addr
;
3581 case QCA9888_2_0_DEVICE_ID
:
3582 hw_rev
= ATH10K_HW_QCA9888
;
3584 pci_soft_reset
= ath10k_pci_qca99x0_soft_chip_reset
;
3585 pci_hard_reset
= ath10k_pci_qca99x0_chip_reset
;
3586 targ_cpu_to_ce_addr
= ath10k_pci_qca99x0_targ_cpu_to_ce_addr
;
3588 case QCA9377_1_0_DEVICE_ID
:
3589 hw_rev
= ATH10K_HW_QCA9377
;
3591 pci_soft_reset
= ath10k_pci_warm_reset
;
3592 pci_hard_reset
= ath10k_pci_qca6174_chip_reset
;
3593 targ_cpu_to_ce_addr
= ath10k_pci_qca6174_targ_cpu_to_ce_addr
;
3600 ar
= ath10k_core_create(sizeof(*ar_pci
), &pdev
->dev
, ATH10K_BUS_PCI
,
3601 hw_rev
, &ath10k_pci_hif_ops
);
3603 dev_err(&pdev
->dev
, "failed to allocate core\n");
3607 ath10k_dbg(ar
, ATH10K_DBG_BOOT
, "pci probe %04x:%04x %04x:%04x\n",
3608 pdev
->vendor
, pdev
->device
,
3609 pdev
->subsystem_vendor
, pdev
->subsystem_device
);
3611 ar_pci
= ath10k_pci_priv(ar
);
3612 ar_pci
->pdev
= pdev
;
3613 ar_pci
->dev
= &pdev
->dev
;
3615 ar
->dev_id
= pci_dev
->device
;
3616 ar_pci
->pci_ps
= pci_ps
;
3617 ar_pci
->ce
.bus_ops
= &ath10k_pci_bus_ops
;
3618 ar_pci
->pci_soft_reset
= pci_soft_reset
;
3619 ar_pci
->pci_hard_reset
= pci_hard_reset
;
3620 ar_pci
->targ_cpu_to_ce_addr
= targ_cpu_to_ce_addr
;
3621 ar
->ce_priv
= &ar_pci
->ce
;
3623 ar
->id
.vendor
= pdev
->vendor
;
3624 ar
->id
.device
= pdev
->device
;
3625 ar
->id
.subsystem_vendor
= pdev
->subsystem_vendor
;
3626 ar
->id
.subsystem_device
= pdev
->subsystem_device
;
3628 timer_setup(&ar_pci
->ps_timer
, ath10k_pci_ps_timer
, 0);
3630 ret
= ath10k_pci_setup_resource(ar
);
3632 ath10k_err(ar
, "failed to setup resource: %d\n", ret
);
3633 goto err_core_destroy
;
3636 ret
= ath10k_pci_claim(ar
);
3638 ath10k_err(ar
, "failed to claim device: %d\n", ret
);
3639 goto err_free_pipes
;
3642 ret
= ath10k_pci_force_wake(ar
);
3644 ath10k_warn(ar
, "failed to wake up device : %d\n", ret
);
3648 ath10k_pci_ce_deinit(ar
);
3649 ath10k_pci_irq_disable(ar
);
3651 ret
= ath10k_pci_init_irq(ar
);
3653 ath10k_err(ar
, "failed to init irqs: %d\n", ret
);
3657 ath10k_info(ar
, "pci irq %s oper_irq_mode %d irq_mode %d reset_mode %d\n",
3658 ath10k_pci_get_irq_method(ar
), ar_pci
->oper_irq_mode
,
3659 ath10k_pci_irq_mode
, ath10k_pci_reset_mode
);
3661 ret
= ath10k_pci_request_irq(ar
);
3663 ath10k_warn(ar
, "failed to request irqs: %d\n", ret
);
3664 goto err_deinit_irq
;
3667 bus_params
.dev_type
= ATH10K_DEV_TYPE_LL
;
3668 bus_params
.link_can_suspend
= true;
3669 /* Read CHIP_ID before reset to catch QCA9880-AR1A v1 devices that
3670 * fall off the bus during chip_reset. These chips have the same pci
3671 * device id as the QCA9880 BR4A or 2R4E. So that's why the check.
3674 bus_params
.chip_id
=
3675 ath10k_pci_soc_read32(ar
, SOC_CHIP_ID_ADDRESS
);
3676 if (bus_params
.chip_id
!= 0xffffffff) {
3677 if (!ath10k_pci_chip_is_supported(pdev
->device
,
3678 bus_params
.chip_id
)) {
3680 goto err_unsupported
;
3685 ret
= ath10k_pci_chip_reset(ar
);
3687 ath10k_err(ar
, "failed to reset chip: %d\n", ret
);
3691 bus_params
.chip_id
= ath10k_pci_soc_read32(ar
, SOC_CHIP_ID_ADDRESS
);
3692 if (bus_params
.chip_id
== 0xffffffff) {
3694 goto err_unsupported
;
3697 if (!ath10k_pci_chip_is_supported(pdev
->device
, bus_params
.chip_id
)) {
3699 goto err_unsupported
;
3702 ret
= ath10k_core_register(ar
, &bus_params
);
3704 ath10k_err(ar
, "failed to register driver core: %d\n", ret
);
3711 ath10k_err(ar
, "device %04x with chip_id %08x isn't supported\n",
3712 pdev
->device
, bus_params
.chip_id
);
3715 ath10k_pci_free_irq(ar
);
3718 ath10k_pci_release_resource(ar
);
3721 ath10k_pci_sleep_sync(ar
);
3722 ath10k_pci_release(ar
);
3725 ath10k_pci_free_pipes(ar
);
3728 ath10k_core_destroy(ar
);
3733 static void ath10k_pci_remove(struct pci_dev
*pdev
)
3735 struct ath10k
*ar
= pci_get_drvdata(pdev
);
3737 ath10k_dbg(ar
, ATH10K_DBG_PCI
, "pci remove\n");
3742 ath10k_core_unregister(ar
);
3743 ath10k_pci_free_irq(ar
);
3744 ath10k_pci_deinit_irq(ar
);
3745 ath10k_pci_release_resource(ar
);
3746 ath10k_pci_sleep_sync(ar
);
3747 ath10k_pci_release(ar
);
3748 ath10k_core_destroy(ar
);
3751 MODULE_DEVICE_TABLE(pci
, ath10k_pci_id_table
);
3753 static __maybe_unused
int ath10k_pci_pm_suspend(struct device
*dev
)
3755 struct ath10k
*ar
= dev_get_drvdata(dev
);
3758 ret
= ath10k_pci_suspend(ar
);
3760 ath10k_warn(ar
, "failed to suspend hif: %d\n", ret
);
3765 static __maybe_unused
int ath10k_pci_pm_resume(struct device
*dev
)
3767 struct ath10k
*ar
= dev_get_drvdata(dev
);
3770 ret
= ath10k_pci_resume(ar
);
3772 ath10k_warn(ar
, "failed to resume hif: %d\n", ret
);
3777 static SIMPLE_DEV_PM_OPS(ath10k_pci_pm_ops
,
3778 ath10k_pci_pm_suspend
,
3779 ath10k_pci_pm_resume
);
3781 static struct pci_driver ath10k_pci_driver
= {
3782 .name
= "ath10k_pci",
3783 .id_table
= ath10k_pci_id_table
,
3784 .probe
= ath10k_pci_probe
,
3785 .remove
= ath10k_pci_remove
,
3787 .driver
.pm
= &ath10k_pci_pm_ops
,
3791 static int __init
ath10k_pci_init(void)
3795 ret1
= pci_register_driver(&ath10k_pci_driver
);
3797 printk(KERN_ERR
"failed to register ath10k pci driver: %d\n",
3800 ret2
= ath10k_ahb_init();
3802 printk(KERN_ERR
"ahb init failed: %d\n", ret2
);
3807 /* registered to at least one bus */
3810 module_init(ath10k_pci_init
);
3812 static void __exit
ath10k_pci_exit(void)
3814 pci_unregister_driver(&ath10k_pci_driver
);
3818 module_exit(ath10k_pci_exit
);
3820 MODULE_AUTHOR("Qualcomm Atheros");
3821 MODULE_DESCRIPTION("Driver support for Qualcomm Atheros PCIe/AHB 802.11ac WLAN devices");
3822 MODULE_LICENSE("Dual BSD/GPL");
3824 /* QCA988x 2.0 firmware files */
3825 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_FW_API2_FILE
);
3826 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_FW_API3_FILE
);
3827 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_FW_API4_FILE
);
3828 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_FW_API5_FILE
);
3829 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_BOARD_DATA_FILE
);
3830 MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR
"/" ATH10K_BOARD_API2_FILE
);
3832 /* QCA9887 1.0 firmware files */
3833 MODULE_FIRMWARE(QCA9887_HW_1_0_FW_DIR
"/" ATH10K_FW_API5_FILE
);
3834 MODULE_FIRMWARE(QCA9887_HW_1_0_FW_DIR
"/" ATH10K_BOARD_DATA_FILE
);
3835 MODULE_FIRMWARE(QCA9887_HW_1_0_FW_DIR
"/" ATH10K_BOARD_API2_FILE
);
3837 /* QCA6174 2.1 firmware files */
3838 MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR
"/" ATH10K_FW_API4_FILE
);
3839 MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR
"/" ATH10K_FW_API5_FILE
);
3840 MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR
"/" ATH10K_BOARD_DATA_FILE
);
3841 MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR
"/" ATH10K_BOARD_API2_FILE
);
3843 /* QCA6174 3.1 firmware files */
3844 MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR
"/" ATH10K_FW_API4_FILE
);
3845 MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR
"/" ATH10K_FW_API5_FILE
);
3846 MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR
"/" ATH10K_FW_API6_FILE
);
3847 MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR
"/" ATH10K_BOARD_DATA_FILE
);
3848 MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR
"/" ATH10K_BOARD_API2_FILE
);
3850 /* QCA9377 1.0 firmware files */
3851 MODULE_FIRMWARE(QCA9377_HW_1_0_FW_DIR
"/" ATH10K_FW_API6_FILE
);
3852 MODULE_FIRMWARE(QCA9377_HW_1_0_FW_DIR
"/" ATH10K_FW_API5_FILE
);
3853 MODULE_FIRMWARE(QCA9377_HW_1_0_FW_DIR
"/" ATH10K_BOARD_DATA_FILE
);