blob: 290a61afde1a35dd9cf097a0c0481b47ec37ad0f [file] [log] [blame]
Kalle Valo5e3dd152013-06-12 20:52:10 +03001/*
2 * Copyright (c) 2005-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#include <linux/pci.h>
19#include <linux/module.h>
20#include <linux/interrupt.h>
21#include <linux/spinlock.h>
Kalle Valo650b91f2013-11-20 10:00:49 +020022#include <linux/bitops.h>
Kalle Valo5e3dd152013-06-12 20:52:10 +030023
24#include "core.h"
25#include "debug.h"
26
27#include "targaddrs.h"
28#include "bmi.h"
29
30#include "hif.h"
31#include "htc.h"
32
33#include "ce.h"
34#include "pci.h"
35
Michal Kaziorcfe9c452013-11-25 14:06:27 +010036enum ath10k_pci_irq_mode {
37 ATH10K_PCI_IRQ_AUTO = 0,
38 ATH10K_PCI_IRQ_LEGACY = 1,
39 ATH10K_PCI_IRQ_MSI = 2,
40};
41
Kalle Valo35098462014-03-28 09:32:27 +020042enum ath10k_pci_reset_mode {
43 ATH10K_PCI_RESET_AUTO = 0,
44 ATH10K_PCI_RESET_WARM_ONLY = 1,
45};
46
Michal Kaziorcfe9c452013-11-25 14:06:27 +010047static unsigned int ath10k_pci_irq_mode = ATH10K_PCI_IRQ_AUTO;
Kalle Valo35098462014-03-28 09:32:27 +020048static unsigned int ath10k_pci_reset_mode = ATH10K_PCI_RESET_AUTO;
Michal Kaziorcfe9c452013-11-25 14:06:27 +010049
Michal Kaziorcfe9c452013-11-25 14:06:27 +010050module_param_named(irq_mode, ath10k_pci_irq_mode, uint, 0644);
51MODULE_PARM_DESC(irq_mode, "0: auto, 1: legacy, 2: msi (default: 0)");
52
Kalle Valo35098462014-03-28 09:32:27 +020053module_param_named(reset_mode, ath10k_pci_reset_mode, uint, 0644);
54MODULE_PARM_DESC(reset_mode, "0: auto, 1: warm only (default: 0)");
55
Kalle Valo0399eca2014-03-28 09:32:21 +020056/* how long wait to wait for target to initialise, in ms */
57#define ATH10K_PCI_TARGET_WAIT 3000
Michal Kazior61c95ce2014-05-14 16:56:16 +030058#define ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS 3
Kalle Valo0399eca2014-03-28 09:32:21 +020059
Benoit Taine9baa3c32014-08-08 15:56:03 +020060static const struct pci_device_id ath10k_pci_id_table[] = {
Kalle Valo5e3dd152013-06-12 20:52:10 +030061 { PCI_VDEVICE(ATHEROS, QCA988X_2_0_DEVICE_ID) }, /* PCI-E QCA988X V2 */
Michal Kazior36582e52015-08-13 14:32:26 +020062 { PCI_VDEVICE(ATHEROS, QCA6164_2_1_DEVICE_ID) }, /* PCI-E QCA6164 V2.1 */
Michal Kaziord63955b2015-01-24 12:14:49 +020063 { PCI_VDEVICE(ATHEROS, QCA6174_2_1_DEVICE_ID) }, /* PCI-E QCA6174 V2.1 */
Vasanthakumar Thiagarajan8a055a82015-07-29 11:40:39 +030064 { PCI_VDEVICE(ATHEROS, QCA99X0_2_0_DEVICE_ID) }, /* PCI-E QCA99X0 V2 */
Bartosz Markowskia226b512015-10-28 15:09:53 +010065 { PCI_VDEVICE(ATHEROS, QCA9377_1_0_DEVICE_ID) }, /* PCI-E QCA9377 V1 */
Kalle Valo5e3dd152013-06-12 20:52:10 +030066 {0}
67};
68
Michal Kazior7505f7c2014-12-02 10:55:54 +020069static 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
72 * because of that.
73 */
74 { QCA988X_2_0_DEVICE_ID, QCA988X_HW_2_0_CHIP_ID_REV },
Michal Kazior36582e52015-08-13 14:32:26 +020075
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 },
81
Michal Kaziord63955b2015-01-24 12:14:49 +020082 { 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 },
Michal Kazior36582e52015-08-13 14:32:26 +020087
Vasanthakumar Thiagarajan8a055a82015-07-29 11:40:39 +030088 { QCA99X0_2_0_DEVICE_ID, QCA99X0_HW_2_0_CHIP_ID_REV },
Bartosz Markowski034074f2015-11-05 09:50:43 +010089
90 { QCA9377_1_0_DEVICE_ID, QCA9377_HW_1_0_CHIP_ID_REV },
Bartosz Markowski12551ce2015-11-05 09:50:40 +010091 { QCA9377_1_0_DEVICE_ID, QCA9377_HW_1_1_CHIP_ID_REV },
Michal Kazior7505f7c2014-12-02 10:55:54 +020092};
93
Michal Kazior728f95e2014-08-22 14:33:14 +020094static void ath10k_pci_buffer_cleanup(struct ath10k *ar);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +010095static int ath10k_pci_cold_reset(struct ath10k *ar);
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +053096static int ath10k_pci_safe_chip_reset(struct ath10k *ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +010097static int ath10k_pci_init_irq(struct ath10k *ar);
98static int ath10k_pci_deinit_irq(struct ath10k *ar);
99static int ath10k_pci_request_irq(struct ath10k *ar);
100static void ath10k_pci_free_irq(struct ath10k *ar);
Michal Kazior85622cd2013-11-25 14:06:22 +0100101static int ath10k_pci_bmi_wait(struct ath10k_ce_pipe *tx_pipe,
102 struct ath10k_ce_pipe *rx_pipe,
103 struct bmi_xfer *xfer);
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +0530104static int ath10k_pci_qca99x0_chip_reset(struct ath10k *ar);
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +0530105static void ath10k_pci_htc_tx_cb(struct ath10k_ce_pipe *ce_state);
Rajkumar Manoharan9d9bdbb2015-10-12 18:27:02 +0530106static void ath10k_pci_htc_rx_cb(struct ath10k_ce_pipe *ce_state);
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530107static void ath10k_pci_htt_tx_cb(struct ath10k_ce_pipe *ce_state);
108static void ath10k_pci_htt_rx_cb(struct ath10k_ce_pipe *ce_state);
Rajkumar Manoharan6419fdb2015-11-11 17:31:26 +0530109static void ath10k_pci_htt_htc_rx_cb(struct ath10k_ce_pipe *ce_state);
Vivek Natarajanafb0bf72015-10-30 14:57:58 +0530110static void ath10k_pci_pktlog_rx_cb(struct ath10k_ce_pipe *ce_state);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300111
Ryan Hsu2727a742015-11-05 18:44:27 -0800112static struct ce_attr host_ce_config_wlan[] = {
Kalle Valo48e9c222013-09-01 10:01:32 +0300113 /* CE0: host->target HTC control and raw streams */
114 {
115 .flags = CE_ATTR_FLAGS,
116 .src_nentries = 16,
117 .src_sz_max = 256,
118 .dest_nentries = 0,
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +0530119 .send_cb = ath10k_pci_htc_tx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300120 },
121
122 /* CE1: target->host HTT + HTC control */
123 {
124 .flags = CE_ATTR_FLAGS,
125 .src_nentries = 0,
Michal Kazior63838642015-02-09 15:04:55 +0100126 .src_sz_max = 2048,
Kalle Valo48e9c222013-09-01 10:01:32 +0300127 .dest_nentries = 512,
Rajkumar Manoharan6419fdb2015-11-11 17:31:26 +0530128 .recv_cb = ath10k_pci_htt_htc_rx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300129 },
130
131 /* CE2: target->host WMI */
132 {
133 .flags = CE_ATTR_FLAGS,
134 .src_nentries = 0,
135 .src_sz_max = 2048,
Rajkumar Manoharan30abb332015-03-04 15:43:44 +0200136 .dest_nentries = 128,
Rajkumar Manoharan9d9bdbb2015-10-12 18:27:02 +0530137 .recv_cb = ath10k_pci_htc_rx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300138 },
139
140 /* CE3: host->target WMI */
141 {
142 .flags = CE_ATTR_FLAGS,
143 .src_nentries = 32,
144 .src_sz_max = 2048,
145 .dest_nentries = 0,
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +0530146 .send_cb = ath10k_pci_htc_tx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300147 },
148
149 /* CE4: host->target HTT */
150 {
151 .flags = CE_ATTR_FLAGS | CE_ATTR_DIS_INTR,
152 .src_nentries = CE_HTT_H2T_MSG_SRC_NENTRIES,
153 .src_sz_max = 256,
154 .dest_nentries = 0,
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530155 .send_cb = ath10k_pci_htt_tx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300156 },
157
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530158 /* CE5: target->host HTT (HIF->HTT) */
Kalle Valo48e9c222013-09-01 10:01:32 +0300159 {
160 .flags = CE_ATTR_FLAGS,
161 .src_nentries = 0,
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530162 .src_sz_max = 512,
163 .dest_nentries = 512,
164 .recv_cb = ath10k_pci_htt_rx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300165 },
166
167 /* CE6: target autonomous hif_memcpy */
168 {
169 .flags = CE_ATTR_FLAGS,
170 .src_nentries = 0,
171 .src_sz_max = 0,
172 .dest_nentries = 0,
173 },
174
175 /* CE7: ce_diag, the Diagnostic Window */
176 {
177 .flags = CE_ATTR_FLAGS,
178 .src_nentries = 2,
179 .src_sz_max = DIAG_TRANSFER_LIMIT,
180 .dest_nentries = 2,
181 },
Vasanthakumar Thiagarajan050af062015-06-18 12:31:04 +0530182
183 /* CE8: target->host pktlog */
184 {
185 .flags = CE_ATTR_FLAGS,
186 .src_nentries = 0,
187 .src_sz_max = 2048,
188 .dest_nentries = 128,
Vivek Natarajanafb0bf72015-10-30 14:57:58 +0530189 .recv_cb = ath10k_pci_pktlog_rx_cb,
Vasanthakumar Thiagarajan050af062015-06-18 12:31:04 +0530190 },
191
192 /* CE9 target autonomous qcache memcpy */
193 {
194 .flags = CE_ATTR_FLAGS,
195 .src_nentries = 0,
196 .src_sz_max = 0,
197 .dest_nentries = 0,
198 },
199
200 /* CE10: target autonomous hif memcpy */
201 {
202 .flags = CE_ATTR_FLAGS,
203 .src_nentries = 0,
204 .src_sz_max = 0,
205 .dest_nentries = 0,
206 },
207
208 /* CE11: target autonomous hif memcpy */
209 {
210 .flags = CE_ATTR_FLAGS,
211 .src_nentries = 0,
212 .src_sz_max = 0,
213 .dest_nentries = 0,
214 },
Kalle Valo5e3dd152013-06-12 20:52:10 +0300215};
216
217/* Target firmware's Copy Engine configuration. */
Ryan Hsu2727a742015-11-05 18:44:27 -0800218static struct ce_pipe_config target_ce_config_wlan[] = {
Kalle Valod88effb2013-09-01 10:01:39 +0300219 /* CE0: host->target HTC control and raw streams */
220 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300221 .pipenum = __cpu_to_le32(0),
222 .pipedir = __cpu_to_le32(PIPEDIR_OUT),
223 .nentries = __cpu_to_le32(32),
224 .nbytes_max = __cpu_to_le32(256),
225 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
226 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300227 },
228
229 /* CE1: target->host HTT + HTC control */
230 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300231 .pipenum = __cpu_to_le32(1),
232 .pipedir = __cpu_to_le32(PIPEDIR_IN),
233 .nentries = __cpu_to_le32(32),
Michal Kazior63838642015-02-09 15:04:55 +0100234 .nbytes_max = __cpu_to_le32(2048),
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300235 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
236 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300237 },
238
239 /* CE2: target->host WMI */
240 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300241 .pipenum = __cpu_to_le32(2),
242 .pipedir = __cpu_to_le32(PIPEDIR_IN),
Rajkumar Manoharan30abb332015-03-04 15:43:44 +0200243 .nentries = __cpu_to_le32(64),
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300244 .nbytes_max = __cpu_to_le32(2048),
245 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
246 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300247 },
248
249 /* CE3: host->target WMI */
250 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300251 .pipenum = __cpu_to_le32(3),
252 .pipedir = __cpu_to_le32(PIPEDIR_OUT),
253 .nentries = __cpu_to_le32(32),
254 .nbytes_max = __cpu_to_le32(2048),
255 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
256 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300257 },
258
259 /* CE4: host->target HTT */
260 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300261 .pipenum = __cpu_to_le32(4),
262 .pipedir = __cpu_to_le32(PIPEDIR_OUT),
263 .nentries = __cpu_to_le32(256),
264 .nbytes_max = __cpu_to_le32(256),
265 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
266 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300267 },
268
Kalle Valo5e3dd152013-06-12 20:52:10 +0300269 /* NB: 50% of src nentries, since tx has 2 frags */
Kalle Valod88effb2013-09-01 10:01:39 +0300270
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530271 /* CE5: target->host HTT (HIF->HTT) */
Kalle Valod88effb2013-09-01 10:01:39 +0300272 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300273 .pipenum = __cpu_to_le32(5),
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530274 .pipedir = __cpu_to_le32(PIPEDIR_IN),
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300275 .nentries = __cpu_to_le32(32),
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530276 .nbytes_max = __cpu_to_le32(512),
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300277 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
278 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300279 },
280
281 /* CE6: Reserved for target autonomous hif_memcpy */
282 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300283 .pipenum = __cpu_to_le32(6),
284 .pipedir = __cpu_to_le32(PIPEDIR_INOUT),
285 .nentries = __cpu_to_le32(32),
286 .nbytes_max = __cpu_to_le32(4096),
287 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
288 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300289 },
290
Kalle Valo5e3dd152013-06-12 20:52:10 +0300291 /* CE7 used only by Host */
Vasanthakumar Thiagarajan050af062015-06-18 12:31:04 +0530292 {
293 .pipenum = __cpu_to_le32(7),
294 .pipedir = __cpu_to_le32(PIPEDIR_INOUT),
295 .nentries = __cpu_to_le32(0),
296 .nbytes_max = __cpu_to_le32(0),
297 .flags = __cpu_to_le32(0),
298 .reserved = __cpu_to_le32(0),
299 },
300
301 /* CE8 target->host packtlog */
302 {
303 .pipenum = __cpu_to_le32(8),
304 .pipedir = __cpu_to_le32(PIPEDIR_IN),
305 .nentries = __cpu_to_le32(64),
306 .nbytes_max = __cpu_to_le32(2048),
307 .flags = __cpu_to_le32(CE_ATTR_FLAGS | CE_ATTR_DIS_INTR),
308 .reserved = __cpu_to_le32(0),
309 },
310
311 /* CE9 target autonomous qcache memcpy */
312 {
313 .pipenum = __cpu_to_le32(9),
314 .pipedir = __cpu_to_le32(PIPEDIR_INOUT),
315 .nentries = __cpu_to_le32(32),
316 .nbytes_max = __cpu_to_le32(2048),
317 .flags = __cpu_to_le32(CE_ATTR_FLAGS | CE_ATTR_DIS_INTR),
318 .reserved = __cpu_to_le32(0),
319 },
320
321 /* It not necessary to send target wlan configuration for CE10 & CE11
322 * as these CEs are not actively used in target.
323 */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300324};
325
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300326/*
327 * Map from service/endpoint to Copy Engine.
328 * This table is derived from the CE_PCI TABLE, above.
329 * It is passed to the Target at startup for use by firmware.
330 */
Ryan Hsu2727a742015-11-05 18:44:27 -0800331static struct service_to_pipe target_service_to_ce_map_wlan[] = {
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300332 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300333 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VO),
334 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
335 __cpu_to_le32(3),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300336 },
337 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300338 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VO),
339 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
340 __cpu_to_le32(2),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300341 },
342 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300343 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BK),
344 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
345 __cpu_to_le32(3),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300346 },
347 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300348 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BK),
349 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
350 __cpu_to_le32(2),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300351 },
352 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300353 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BE),
354 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
355 __cpu_to_le32(3),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300356 },
357 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300358 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BE),
359 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
360 __cpu_to_le32(2),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300361 },
362 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300363 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VI),
364 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
365 __cpu_to_le32(3),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300366 },
367 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300368 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VI),
369 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
370 __cpu_to_le32(2),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300371 },
372 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300373 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_CONTROL),
374 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
375 __cpu_to_le32(3),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300376 },
377 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300378 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_CONTROL),
379 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
380 __cpu_to_le32(2),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300381 },
382 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300383 __cpu_to_le32(ATH10K_HTC_SVC_ID_RSVD_CTRL),
384 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
385 __cpu_to_le32(0),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300386 },
387 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300388 __cpu_to_le32(ATH10K_HTC_SVC_ID_RSVD_CTRL),
389 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
390 __cpu_to_le32(1),
391 },
392 { /* not used */
393 __cpu_to_le32(ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS),
394 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
395 __cpu_to_le32(0),
396 },
397 { /* not used */
398 __cpu_to_le32(ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS),
399 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
400 __cpu_to_le32(1),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300401 },
402 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300403 __cpu_to_le32(ATH10K_HTC_SVC_ID_HTT_DATA_MSG),
404 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
405 __cpu_to_le32(4),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300406 },
407 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300408 __cpu_to_le32(ATH10K_HTC_SVC_ID_HTT_DATA_MSG),
409 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530410 __cpu_to_le32(5),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300411 },
412
413 /* (Additions here) */
414
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300415 { /* must be last */
416 __cpu_to_le32(0),
417 __cpu_to_le32(0),
418 __cpu_to_le32(0),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300419 },
420};
421
Michal Kazior77258d42015-05-18 09:38:18 +0000422static bool ath10k_pci_is_awake(struct ath10k *ar)
423{
424 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
425 u32 val = ioread32(ar_pci->mem + PCIE_LOCAL_BASE_ADDRESS +
426 RTC_STATE_ADDRESS);
427
428 return RTC_STATE_V_GET(val) == RTC_STATE_V_ON;
429}
430
431static void __ath10k_pci_wake(struct ath10k *ar)
432{
433 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
434
435 lockdep_assert_held(&ar_pci->ps_lock);
436
437 ath10k_dbg(ar, ATH10K_DBG_PCI_PS, "pci ps wake reg refcount %lu awake %d\n",
438 ar_pci->ps_wake_refcount, ar_pci->ps_awake);
439
440 iowrite32(PCIE_SOC_WAKE_V_MASK,
441 ar_pci->mem + PCIE_LOCAL_BASE_ADDRESS +
442 PCIE_SOC_WAKE_ADDRESS);
443}
444
445static void __ath10k_pci_sleep(struct ath10k *ar)
446{
447 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
448
449 lockdep_assert_held(&ar_pci->ps_lock);
450
451 ath10k_dbg(ar, ATH10K_DBG_PCI_PS, "pci ps sleep reg refcount %lu awake %d\n",
452 ar_pci->ps_wake_refcount, ar_pci->ps_awake);
453
454 iowrite32(PCIE_SOC_WAKE_RESET,
455 ar_pci->mem + PCIE_LOCAL_BASE_ADDRESS +
456 PCIE_SOC_WAKE_ADDRESS);
457 ar_pci->ps_awake = false;
458}
459
460static int ath10k_pci_wake_wait(struct ath10k *ar)
461{
462 int tot_delay = 0;
463 int curr_delay = 5;
464
465 while (tot_delay < PCIE_WAKE_TIMEOUT) {
Maharaja Kennadyrajan39b91b82015-10-06 15:19:28 +0300466 if (ath10k_pci_is_awake(ar)) {
467 if (tot_delay > PCIE_WAKE_LATE_US)
468 ath10k_warn(ar, "device wakeup took %d ms which is unusally long, otherwise it works normally.\n",
469 tot_delay / 1000);
Michal Kazior77258d42015-05-18 09:38:18 +0000470 return 0;
Maharaja Kennadyrajan39b91b82015-10-06 15:19:28 +0300471 }
Michal Kazior77258d42015-05-18 09:38:18 +0000472
473 udelay(curr_delay);
474 tot_delay += curr_delay;
475
476 if (curr_delay < 50)
477 curr_delay += 5;
478 }
479
480 return -ETIMEDOUT;
481}
482
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +0300483static int ath10k_pci_force_wake(struct ath10k *ar)
484{
485 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
486 unsigned long flags;
487 int ret = 0;
488
Rajkumar Manoharand9d6a5a2015-12-16 16:52:19 +0200489 if (ar_pci->pci_ps)
490 return ret;
491
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +0300492 spin_lock_irqsave(&ar_pci->ps_lock, flags);
493
494 if (!ar_pci->ps_awake) {
495 iowrite32(PCIE_SOC_WAKE_V_MASK,
496 ar_pci->mem + PCIE_LOCAL_BASE_ADDRESS +
497 PCIE_SOC_WAKE_ADDRESS);
498
499 ret = ath10k_pci_wake_wait(ar);
500 if (ret == 0)
501 ar_pci->ps_awake = true;
502 }
503
504 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
505
506 return ret;
507}
508
509static void ath10k_pci_force_sleep(struct ath10k *ar)
510{
511 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
512 unsigned long flags;
513
514 spin_lock_irqsave(&ar_pci->ps_lock, flags);
515
516 iowrite32(PCIE_SOC_WAKE_RESET,
517 ar_pci->mem + PCIE_LOCAL_BASE_ADDRESS +
518 PCIE_SOC_WAKE_ADDRESS);
519 ar_pci->ps_awake = false;
520
521 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
522}
523
Michal Kazior77258d42015-05-18 09:38:18 +0000524static int ath10k_pci_wake(struct ath10k *ar)
525{
526 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
527 unsigned long flags;
528 int ret = 0;
529
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +0300530 if (ar_pci->pci_ps == 0)
531 return ret;
532
Michal Kazior77258d42015-05-18 09:38:18 +0000533 spin_lock_irqsave(&ar_pci->ps_lock, flags);
534
535 ath10k_dbg(ar, ATH10K_DBG_PCI_PS, "pci ps wake refcount %lu awake %d\n",
536 ar_pci->ps_wake_refcount, ar_pci->ps_awake);
537
538 /* This function can be called very frequently. To avoid excessive
539 * CPU stalls for MMIO reads use a cache var to hold the device state.
540 */
541 if (!ar_pci->ps_awake) {
542 __ath10k_pci_wake(ar);
543
544 ret = ath10k_pci_wake_wait(ar);
545 if (ret == 0)
546 ar_pci->ps_awake = true;
547 }
548
549 if (ret == 0) {
550 ar_pci->ps_wake_refcount++;
551 WARN_ON(ar_pci->ps_wake_refcount == 0);
552 }
553
554 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
555
556 return ret;
557}
558
559static void ath10k_pci_sleep(struct ath10k *ar)
560{
561 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
562 unsigned long flags;
563
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +0300564 if (ar_pci->pci_ps == 0)
565 return;
566
Michal Kazior77258d42015-05-18 09:38:18 +0000567 spin_lock_irqsave(&ar_pci->ps_lock, flags);
568
569 ath10k_dbg(ar, ATH10K_DBG_PCI_PS, "pci ps sleep refcount %lu awake %d\n",
570 ar_pci->ps_wake_refcount, ar_pci->ps_awake);
571
572 if (WARN_ON(ar_pci->ps_wake_refcount == 0))
573 goto skip;
574
575 ar_pci->ps_wake_refcount--;
576
577 mod_timer(&ar_pci->ps_timer, jiffies +
578 msecs_to_jiffies(ATH10K_PCI_SLEEP_GRACE_PERIOD_MSEC));
579
580skip:
581 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
582}
583
584static void ath10k_pci_ps_timer(unsigned long ptr)
585{
586 struct ath10k *ar = (void *)ptr;
587 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
588 unsigned long flags;
589
590 spin_lock_irqsave(&ar_pci->ps_lock, flags);
591
592 ath10k_dbg(ar, ATH10K_DBG_PCI_PS, "pci ps timer refcount %lu awake %d\n",
593 ar_pci->ps_wake_refcount, ar_pci->ps_awake);
594
595 if (ar_pci->ps_wake_refcount > 0)
596 goto skip;
597
598 __ath10k_pci_sleep(ar);
599
600skip:
601 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
602}
603
604static void ath10k_pci_sleep_sync(struct ath10k *ar)
605{
606 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
607 unsigned long flags;
608
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +0300609 if (ar_pci->pci_ps == 0) {
610 ath10k_pci_force_sleep(ar);
611 return;
612 }
613
Michal Kazior77258d42015-05-18 09:38:18 +0000614 del_timer_sync(&ar_pci->ps_timer);
615
616 spin_lock_irqsave(&ar_pci->ps_lock, flags);
617 WARN_ON(ar_pci->ps_wake_refcount > 0);
618 __ath10k_pci_sleep(ar);
619 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
620}
621
Raja Mani4ddb3292016-01-27 15:24:23 +0530622static void ath10k_bus_pci_write32(struct ath10k *ar, u32 offset, u32 value)
Michal Kazior77258d42015-05-18 09:38:18 +0000623{
624 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
625 int ret;
626
Michal Kazioraeae5b42015-06-15 14:46:42 +0300627 if (unlikely(offset + sizeof(value) > ar_pci->mem_len)) {
628 ath10k_warn(ar, "refusing to write mmio out of bounds at 0x%08x - 0x%08zx (max 0x%08zx)\n",
629 offset, offset + sizeof(value), ar_pci->mem_len);
630 return;
631 }
632
Michal Kazior77258d42015-05-18 09:38:18 +0000633 ret = ath10k_pci_wake(ar);
634 if (ret) {
635 ath10k_warn(ar, "failed to wake target for write32 of 0x%08x at 0x%08x: %d\n",
636 value, offset, ret);
637 return;
638 }
639
640 iowrite32(value, ar_pci->mem + offset);
641 ath10k_pci_sleep(ar);
642}
643
Raja Mani4ddb3292016-01-27 15:24:23 +0530644static u32 ath10k_bus_pci_read32(struct ath10k *ar, u32 offset)
Michal Kazior77258d42015-05-18 09:38:18 +0000645{
646 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
647 u32 val;
648 int ret;
649
Michal Kazioraeae5b42015-06-15 14:46:42 +0300650 if (unlikely(offset + sizeof(val) > ar_pci->mem_len)) {
651 ath10k_warn(ar, "refusing to read mmio out of bounds at 0x%08x - 0x%08zx (max 0x%08zx)\n",
652 offset, offset + sizeof(val), ar_pci->mem_len);
653 return 0;
654 }
655
Michal Kazior77258d42015-05-18 09:38:18 +0000656 ret = ath10k_pci_wake(ar);
657 if (ret) {
658 ath10k_warn(ar, "failed to wake target for read32 at 0x%08x: %d\n",
659 offset, ret);
660 return 0xffffffff;
661 }
662
663 val = ioread32(ar_pci->mem + offset);
664 ath10k_pci_sleep(ar);
665
666 return val;
667}
668
Raja Mani4ddb3292016-01-27 15:24:23 +0530669inline void ath10k_pci_write32(struct ath10k *ar, u32 offset, u32 value)
670{
671 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
672
673 ar_pci->bus_ops->write32(ar, offset, value);
674}
675
676inline u32 ath10k_pci_read32(struct ath10k *ar, u32 offset)
677{
678 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
679
680 return ar_pci->bus_ops->read32(ar, offset);
681}
682
Michal Kazior77258d42015-05-18 09:38:18 +0000683u32 ath10k_pci_soc_read32(struct ath10k *ar, u32 addr)
684{
685 return ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS + addr);
686}
687
688void ath10k_pci_soc_write32(struct ath10k *ar, u32 addr, u32 val)
689{
690 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + addr, val);
691}
692
693u32 ath10k_pci_reg_read32(struct ath10k *ar, u32 addr)
694{
695 return ath10k_pci_read32(ar, PCIE_LOCAL_BASE_ADDRESS + addr);
696}
697
698void ath10k_pci_reg_write32(struct ath10k *ar, u32 addr, u32 val)
699{
700 ath10k_pci_write32(ar, PCIE_LOCAL_BASE_ADDRESS + addr, val);
701}
702
Raja Manif52f5172016-01-27 15:24:22 +0530703bool ath10k_pci_irq_pending(struct ath10k *ar)
Michal Kaziore5398872013-11-25 14:06:20 +0100704{
705 u32 cause;
706
707 /* Check if the shared legacy irq is for us */
708 cause = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
709 PCIE_INTR_CAUSE_ADDRESS);
710 if (cause & (PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL))
711 return true;
712
713 return false;
714}
715
Raja Manif52f5172016-01-27 15:24:22 +0530716void ath10k_pci_disable_and_clear_legacy_irq(struct ath10k *ar)
Michal Kazior26852182013-11-25 14:06:25 +0100717{
718 /* IMPORTANT: INTR_CLR register has to be set after
719 * INTR_ENABLE is set to 0, otherwise interrupt can not be
720 * really cleared. */
721 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
722 0);
723 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_CLR_ADDRESS,
724 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
725
726 /* IMPORTANT: this extra read transaction is required to
727 * flush the posted write buffer. */
Kalle Valocfbc06a2014-09-14 12:50:23 +0300728 (void)ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
729 PCIE_INTR_ENABLE_ADDRESS);
Michal Kazior26852182013-11-25 14:06:25 +0100730}
731
Raja Manif52f5172016-01-27 15:24:22 +0530732void ath10k_pci_enable_legacy_irq(struct ath10k *ar)
Michal Kazior26852182013-11-25 14:06:25 +0100733{
734 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
735 PCIE_INTR_ENABLE_ADDRESS,
736 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
737
738 /* IMPORTANT: this extra read transaction is required to
739 * flush the posted write buffer. */
Kalle Valocfbc06a2014-09-14 12:50:23 +0300740 (void)ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
741 PCIE_INTR_ENABLE_ADDRESS);
Michal Kazior26852182013-11-25 14:06:25 +0100742}
743
Michal Kazior403d6272014-08-22 14:23:31 +0200744static inline const char *ath10k_pci_get_irq_method(struct ath10k *ar)
Michal Kaziorab977bd2013-11-25 14:06:26 +0100745{
Michal Kaziorab977bd2013-11-25 14:06:26 +0100746 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
747
Michal Kazior403d6272014-08-22 14:23:31 +0200748 if (ar_pci->num_msi_intrs > 1)
749 return "msi-x";
Kalle Valod8bb26b2014-09-14 12:50:33 +0300750
751 if (ar_pci->num_msi_intrs == 1)
Michal Kazior403d6272014-08-22 14:23:31 +0200752 return "msi";
Kalle Valod8bb26b2014-09-14 12:50:33 +0300753
754 return "legacy";
Michal Kaziorab977bd2013-11-25 14:06:26 +0100755}
756
Michal Kazior728f95e2014-08-22 14:33:14 +0200757static int __ath10k_pci_rx_post_buf(struct ath10k_pci_pipe *pipe)
Michal Kaziorab977bd2013-11-25 14:06:26 +0100758{
Michal Kazior728f95e2014-08-22 14:33:14 +0200759 struct ath10k *ar = pipe->hif_ce_state;
Michal Kaziorab977bd2013-11-25 14:06:26 +0100760 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior728f95e2014-08-22 14:33:14 +0200761 struct ath10k_ce_pipe *ce_pipe = pipe->ce_hdl;
762 struct sk_buff *skb;
763 dma_addr_t paddr;
Michal Kaziorab977bd2013-11-25 14:06:26 +0100764 int ret;
765
Michal Kazior728f95e2014-08-22 14:33:14 +0200766 skb = dev_alloc_skb(pipe->buf_sz);
767 if (!skb)
768 return -ENOMEM;
769
770 WARN_ONCE((unsigned long)skb->data & 3, "unaligned skb");
771
772 paddr = dma_map_single(ar->dev, skb->data,
773 skb->len + skb_tailroom(skb),
774 DMA_FROM_DEVICE);
775 if (unlikely(dma_mapping_error(ar->dev, paddr))) {
Michal Kazior7aa7a722014-08-25 12:09:38 +0200776 ath10k_warn(ar, "failed to dma map pci rx buf\n");
Michal Kazior728f95e2014-08-22 14:33:14 +0200777 dev_kfree_skb_any(skb);
778 return -EIO;
779 }
780
Michal Kazior8582bf32015-01-24 12:14:47 +0200781 ATH10K_SKB_RXCB(skb)->paddr = paddr;
Michal Kazior728f95e2014-08-22 14:33:14 +0200782
Rajkumar Manoharanab4e3db2015-10-06 15:19:33 +0300783 spin_lock_bh(&ar_pci->ce_lock);
Michal Kazior728f95e2014-08-22 14:33:14 +0200784 ret = __ath10k_ce_rx_post_buf(ce_pipe, skb, paddr);
Rajkumar Manoharanab4e3db2015-10-06 15:19:33 +0300785 spin_unlock_bh(&ar_pci->ce_lock);
Michal Kaziorab977bd2013-11-25 14:06:26 +0100786 if (ret) {
Michal Kazior728f95e2014-08-22 14:33:14 +0200787 dma_unmap_single(ar->dev, paddr, skb->len + skb_tailroom(skb),
788 DMA_FROM_DEVICE);
789 dev_kfree_skb_any(skb);
Michal Kaziorab977bd2013-11-25 14:06:26 +0100790 return ret;
791 }
792
793 return 0;
794}
795
Rajkumar Manoharanab4e3db2015-10-06 15:19:33 +0300796static void ath10k_pci_rx_post_pipe(struct ath10k_pci_pipe *pipe)
Michal Kaziorab977bd2013-11-25 14:06:26 +0100797{
Michal Kazior728f95e2014-08-22 14:33:14 +0200798 struct ath10k *ar = pipe->hif_ce_state;
799 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
800 struct ath10k_ce_pipe *ce_pipe = pipe->ce_hdl;
801 int ret, num;
802
Michal Kazior728f95e2014-08-22 14:33:14 +0200803 if (pipe->buf_sz == 0)
804 return;
805
806 if (!ce_pipe->dest_ring)
807 return;
808
Rajkumar Manoharanab4e3db2015-10-06 15:19:33 +0300809 spin_lock_bh(&ar_pci->ce_lock);
Michal Kazior728f95e2014-08-22 14:33:14 +0200810 num = __ath10k_ce_rx_num_free_bufs(ce_pipe);
Rajkumar Manoharanab4e3db2015-10-06 15:19:33 +0300811 spin_unlock_bh(&ar_pci->ce_lock);
Michal Kazior728f95e2014-08-22 14:33:14 +0200812 while (num--) {
813 ret = __ath10k_pci_rx_post_buf(pipe);
814 if (ret) {
Rajkumar Manoharanab4e3db2015-10-06 15:19:33 +0300815 if (ret == -ENOSPC)
816 break;
Michal Kazior7aa7a722014-08-25 12:09:38 +0200817 ath10k_warn(ar, "failed to post pci rx buf: %d\n", ret);
Michal Kazior728f95e2014-08-22 14:33:14 +0200818 mod_timer(&ar_pci->rx_post_retry, jiffies +
819 ATH10K_PCI_RX_POST_RETRY_MS);
820 break;
821 }
822 }
823}
824
Raja Manif52f5172016-01-27 15:24:22 +0530825void ath10k_pci_rx_post(struct ath10k *ar)
Michal Kazior728f95e2014-08-22 14:33:14 +0200826{
827 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
828 int i;
829
Michal Kazior728f95e2014-08-22 14:33:14 +0200830 for (i = 0; i < CE_COUNT; i++)
Rajkumar Manoharanab4e3db2015-10-06 15:19:33 +0300831 ath10k_pci_rx_post_pipe(&ar_pci->pipe_info[i]);
Michal Kazior728f95e2014-08-22 14:33:14 +0200832}
833
Raja Manif52f5172016-01-27 15:24:22 +0530834void ath10k_pci_rx_replenish_retry(unsigned long ptr)
Michal Kazior728f95e2014-08-22 14:33:14 +0200835{
836 struct ath10k *ar = (void *)ptr;
837
838 ath10k_pci_rx_post(ar);
Michal Kaziorab977bd2013-11-25 14:06:26 +0100839}
840
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530841static u32 ath10k_pci_targ_cpu_to_ce_addr(struct ath10k *ar, u32 addr)
842{
843 u32 val = 0;
844
845 switch (ar->hw_rev) {
846 case ATH10K_HW_QCA988X:
847 case ATH10K_HW_QCA6174:
Bartosz Markowskia226b512015-10-28 15:09:53 +0100848 case ATH10K_HW_QCA9377:
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530849 val = (ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
850 CORE_CTRL_ADDRESS) &
Vasanthakumar Thiagarajan3c7e2562015-07-03 19:25:27 +0530851 0x7ff) << 21;
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530852 break;
853 case ATH10K_HW_QCA99X0:
Raja Mani0b523ce2016-01-27 15:24:25 +0530854 case ATH10K_HW_QCA4019:
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530855 val = ath10k_pci_read32(ar, PCIE_BAR_REG_ADDRESS);
856 break;
857 }
858
859 val |= 0x100000 | (addr & 0xfffff);
860 return val;
861}
862
Kalle Valo5e3dd152013-06-12 20:52:10 +0300863/*
864 * Diagnostic read/write access is provided for startup/config/debug usage.
865 * Caller must guarantee proper alignment, when applicable, and single user
866 * at any moment.
867 */
868static int ath10k_pci_diag_read_mem(struct ath10k *ar, u32 address, void *data,
869 int nbytes)
870{
871 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
872 int ret = 0;
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +0530873 u32 *buf;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300874 unsigned int completed_nbytes, orig_nbytes, remaining_bytes;
Michal Kazior2aa39112013-08-27 13:08:02 +0200875 struct ath10k_ce_pipe *ce_diag;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300876 /* Host buffer address in CE space */
877 u32 ce_data;
878 dma_addr_t ce_data_base = 0;
879 void *data_buf = NULL;
880 int i;
881
Kalle Valoeef25402014-09-24 14:16:52 +0300882 spin_lock_bh(&ar_pci->ce_lock);
883
Kalle Valo5e3dd152013-06-12 20:52:10 +0300884 ce_diag = ar_pci->ce_diag;
885
886 /*
887 * Allocate a temporary bounce buffer to hold caller's data
888 * to be DMA'ed from Target. This guarantees
889 * 1) 4-byte alignment
890 * 2) Buffer in DMA-able space
891 */
892 orig_nbytes = nbytes;
Michal Kazior68c03242014-03-28 10:02:35 +0200893 data_buf = (unsigned char *)dma_alloc_coherent(ar->dev,
894 orig_nbytes,
895 &ce_data_base,
896 GFP_ATOMIC);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300897
898 if (!data_buf) {
899 ret = -ENOMEM;
900 goto done;
901 }
902 memset(data_buf, 0, orig_nbytes);
903
904 remaining_bytes = orig_nbytes;
905 ce_data = ce_data_base;
906 while (remaining_bytes) {
907 nbytes = min_t(unsigned int, remaining_bytes,
908 DIAG_TRANSFER_LIMIT);
909
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +0530910 ret = __ath10k_ce_rx_post_buf(ce_diag, &ce_data, ce_data);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300911 if (ret != 0)
912 goto done;
913
914 /* Request CE to send from Target(!) address to Host buffer */
915 /*
916 * The address supplied by the caller is in the
917 * Target CPU virtual address space.
918 *
919 * In order to use this address with the diagnostic CE,
920 * convert it from Target CPU virtual address space
921 * to CE address space
922 */
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530923 address = ath10k_pci_targ_cpu_to_ce_addr(ar, address);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300924
Kalle Valoeef25402014-09-24 14:16:52 +0300925 ret = ath10k_ce_send_nolock(ce_diag, NULL, (u32)address, nbytes, 0,
926 0);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300927 if (ret)
928 goto done;
929
930 i = 0;
Rajkumar Manoharan765952e2015-10-23 18:01:05 +0530931 while (ath10k_ce_completed_send_next_nolock(ce_diag,
932 NULL) != 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300933 mdelay(1);
934 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
935 ret = -EBUSY;
936 goto done;
937 }
938 }
939
Kalle Valo5e3dd152013-06-12 20:52:10 +0300940 i = 0;
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +0530941 while (ath10k_ce_completed_recv_next_nolock(ce_diag,
942 (void **)&buf,
943 &completed_nbytes)
944 != 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300945 mdelay(1);
946
947 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
948 ret = -EBUSY;
949 goto done;
950 }
951 }
952
953 if (nbytes != completed_nbytes) {
954 ret = -EIO;
955 goto done;
956 }
957
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +0530958 if (*buf != ce_data) {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300959 ret = -EIO;
960 goto done;
961 }
962
963 remaining_bytes -= nbytes;
964 address += nbytes;
965 ce_data += nbytes;
966 }
967
968done:
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300969 if (ret == 0)
970 memcpy(data, data_buf, orig_nbytes);
971 else
Michal Kazior7aa7a722014-08-25 12:09:38 +0200972 ath10k_warn(ar, "failed to read diag value at 0x%x: %d\n",
Kalle Valo50f87a62014-03-28 09:32:52 +0200973 address, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300974
975 if (data_buf)
Michal Kazior68c03242014-03-28 10:02:35 +0200976 dma_free_coherent(ar->dev, orig_nbytes, data_buf,
977 ce_data_base);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300978
Kalle Valoeef25402014-09-24 14:16:52 +0300979 spin_unlock_bh(&ar_pci->ce_lock);
980
Kalle Valo5e3dd152013-06-12 20:52:10 +0300981 return ret;
982}
983
Kalle Valo3d29a3e2014-08-25 08:37:26 +0300984static int ath10k_pci_diag_read32(struct ath10k *ar, u32 address, u32 *value)
985{
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300986 __le32 val = 0;
987 int ret;
988
989 ret = ath10k_pci_diag_read_mem(ar, address, &val, sizeof(val));
990 *value = __le32_to_cpu(val);
991
992 return ret;
Kalle Valo3d29a3e2014-08-25 08:37:26 +0300993}
994
995static int __ath10k_pci_diag_read_hi(struct ath10k *ar, void *dest,
996 u32 src, u32 len)
997{
998 u32 host_addr, addr;
999 int ret;
1000
1001 host_addr = host_interest_item_address(src);
1002
1003 ret = ath10k_pci_diag_read32(ar, host_addr, &addr);
1004 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001005 ath10k_warn(ar, "failed to get memcpy hi address for firmware address %d: %d\n",
Kalle Valo3d29a3e2014-08-25 08:37:26 +03001006 src, ret);
1007 return ret;
1008 }
1009
1010 ret = ath10k_pci_diag_read_mem(ar, addr, dest, len);
1011 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001012 ath10k_warn(ar, "failed to memcpy firmware memory from %d (%d B): %d\n",
Kalle Valo3d29a3e2014-08-25 08:37:26 +03001013 addr, len, ret);
1014 return ret;
1015 }
1016
1017 return 0;
1018}
1019
1020#define ath10k_pci_diag_read_hi(ar, dest, src, len) \
Kalle Valo8cc7f262014-09-14 12:50:39 +03001021 __ath10k_pci_diag_read_hi(ar, dest, HI_ITEM(src), len)
Kalle Valo3d29a3e2014-08-25 08:37:26 +03001022
Raja Manif52f5172016-01-27 15:24:22 +05301023int ath10k_pci_diag_write_mem(struct ath10k *ar, u32 address,
1024 const void *data, int nbytes)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001025{
1026 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1027 int ret = 0;
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301028 u32 *buf;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001029 unsigned int completed_nbytes, orig_nbytes, remaining_bytes;
Michal Kazior2aa39112013-08-27 13:08:02 +02001030 struct ath10k_ce_pipe *ce_diag;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001031 void *data_buf = NULL;
1032 u32 ce_data; /* Host buffer address in CE space */
1033 dma_addr_t ce_data_base = 0;
1034 int i;
1035
Kalle Valoeef25402014-09-24 14:16:52 +03001036 spin_lock_bh(&ar_pci->ce_lock);
1037
Kalle Valo5e3dd152013-06-12 20:52:10 +03001038 ce_diag = ar_pci->ce_diag;
1039
1040 /*
1041 * Allocate a temporary bounce buffer to hold caller's data
1042 * to be DMA'ed to Target. This guarantees
1043 * 1) 4-byte alignment
1044 * 2) Buffer in DMA-able space
1045 */
1046 orig_nbytes = nbytes;
Michal Kazior68c03242014-03-28 10:02:35 +02001047 data_buf = (unsigned char *)dma_alloc_coherent(ar->dev,
1048 orig_nbytes,
1049 &ce_data_base,
1050 GFP_ATOMIC);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001051 if (!data_buf) {
1052 ret = -ENOMEM;
1053 goto done;
1054 }
1055
1056 /* Copy caller's data to allocated DMA buf */
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001057 memcpy(data_buf, data, orig_nbytes);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001058
1059 /*
1060 * The address supplied by the caller is in the
1061 * Target CPU virtual address space.
1062 *
1063 * In order to use this address with the diagnostic CE,
1064 * convert it from
1065 * Target CPU virtual address space
1066 * to
1067 * CE address space
1068 */
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +05301069 address = ath10k_pci_targ_cpu_to_ce_addr(ar, address);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001070
1071 remaining_bytes = orig_nbytes;
1072 ce_data = ce_data_base;
1073 while (remaining_bytes) {
1074 /* FIXME: check cast */
1075 nbytes = min_t(int, remaining_bytes, DIAG_TRANSFER_LIMIT);
1076
1077 /* Set up to receive directly into Target(!) address */
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301078 ret = __ath10k_ce_rx_post_buf(ce_diag, &address, address);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001079 if (ret != 0)
1080 goto done;
1081
1082 /*
1083 * Request CE to send caller-supplied data that
1084 * was copied to bounce buffer to Target(!) address.
1085 */
Kalle Valoeef25402014-09-24 14:16:52 +03001086 ret = ath10k_ce_send_nolock(ce_diag, NULL, (u32)ce_data,
1087 nbytes, 0, 0);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001088 if (ret != 0)
1089 goto done;
1090
1091 i = 0;
Rajkumar Manoharan765952e2015-10-23 18:01:05 +05301092 while (ath10k_ce_completed_send_next_nolock(ce_diag,
1093 NULL) != 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001094 mdelay(1);
1095
1096 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
1097 ret = -EBUSY;
1098 goto done;
1099 }
1100 }
1101
Kalle Valo5e3dd152013-06-12 20:52:10 +03001102 i = 0;
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301103 while (ath10k_ce_completed_recv_next_nolock(ce_diag,
1104 (void **)&buf,
1105 &completed_nbytes)
1106 != 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001107 mdelay(1);
1108
1109 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
1110 ret = -EBUSY;
1111 goto done;
1112 }
1113 }
1114
1115 if (nbytes != completed_nbytes) {
1116 ret = -EIO;
1117 goto done;
1118 }
1119
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301120 if (*buf != address) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001121 ret = -EIO;
1122 goto done;
1123 }
1124
1125 remaining_bytes -= nbytes;
1126 address += nbytes;
1127 ce_data += nbytes;
1128 }
1129
1130done:
1131 if (data_buf) {
Michal Kazior68c03242014-03-28 10:02:35 +02001132 dma_free_coherent(ar->dev, orig_nbytes, data_buf,
1133 ce_data_base);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001134 }
1135
1136 if (ret != 0)
Michal Kazior7aa7a722014-08-25 12:09:38 +02001137 ath10k_warn(ar, "failed to write diag value at 0x%x: %d\n",
Kalle Valo50f87a62014-03-28 09:32:52 +02001138 address, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001139
Kalle Valoeef25402014-09-24 14:16:52 +03001140 spin_unlock_bh(&ar_pci->ce_lock);
1141
Kalle Valo5e3dd152013-06-12 20:52:10 +03001142 return ret;
1143}
1144
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001145static int ath10k_pci_diag_write32(struct ath10k *ar, u32 address, u32 value)
1146{
1147 __le32 val = __cpu_to_le32(value);
1148
1149 return ath10k_pci_diag_write_mem(ar, address, &val, sizeof(val));
1150}
1151
Kalle Valo5e3dd152013-06-12 20:52:10 +03001152/* Called by lower (CE) layer when a send to Target completes. */
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +05301153static void ath10k_pci_htc_tx_cb(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001154{
1155 struct ath10k *ar = ce_state->ar;
Michal Kazior1cb86d42014-11-27 11:09:38 +01001156 struct sk_buff_head list;
1157 struct sk_buff *skb;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001158
Michal Kazior1cb86d42014-11-27 11:09:38 +01001159 __skb_queue_head_init(&list);
Rajkumar Manoharan765952e2015-10-23 18:01:05 +05301160 while (ath10k_ce_completed_send_next(ce_state, (void **)&skb) == 0) {
Michal Kaziora16942e2014-02-27 18:50:04 +02001161 /* no need to call tx completion for NULL pointers */
Michal Kazior1cb86d42014-11-27 11:09:38 +01001162 if (skb == NULL)
Michal Kazior726346f2014-02-27 18:50:04 +02001163 continue;
1164
Michal Kazior1cb86d42014-11-27 11:09:38 +01001165 __skb_queue_tail(&list, skb);
Michal Kazior5440ce22013-09-03 15:09:58 +02001166 }
Michal Kazior1cb86d42014-11-27 11:09:38 +01001167
1168 while ((skb = __skb_dequeue(&list)))
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +05301169 ath10k_htc_tx_completion_handler(ar, skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001170}
1171
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301172static void ath10k_pci_process_rx_cb(struct ath10k_ce_pipe *ce_state,
1173 void (*callback)(struct ath10k *ar,
1174 struct sk_buff *skb))
Kalle Valo5e3dd152013-06-12 20:52:10 +03001175{
1176 struct ath10k *ar = ce_state->ar;
1177 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior87263e52013-08-27 13:08:01 +02001178 struct ath10k_pci_pipe *pipe_info = &ar_pci->pipe_info[ce_state->id];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001179 struct sk_buff *skb;
Michal Kazior1cb86d42014-11-27 11:09:38 +01001180 struct sk_buff_head list;
Michal Kazior5440ce22013-09-03 15:09:58 +02001181 void *transfer_context;
Michal Kazior2f5280d2014-02-27 18:50:05 +02001182 unsigned int nbytes, max_nbytes;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001183
Michal Kazior1cb86d42014-11-27 11:09:38 +01001184 __skb_queue_head_init(&list);
Michal Kazior5440ce22013-09-03 15:09:58 +02001185 while (ath10k_ce_completed_recv_next(ce_state, &transfer_context,
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301186 &nbytes) == 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001187 skb = transfer_context;
Michal Kazior2f5280d2014-02-27 18:50:05 +02001188 max_nbytes = skb->len + skb_tailroom(skb);
Michal Kazior8582bf32015-01-24 12:14:47 +02001189 dma_unmap_single(ar->dev, ATH10K_SKB_RXCB(skb)->paddr,
Michal Kazior2f5280d2014-02-27 18:50:05 +02001190 max_nbytes, DMA_FROM_DEVICE);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001191
Michal Kazior2f5280d2014-02-27 18:50:05 +02001192 if (unlikely(max_nbytes < nbytes)) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001193 ath10k_warn(ar, "rxed more than expected (nbytes %d, max %d)",
Michal Kazior2f5280d2014-02-27 18:50:05 +02001194 nbytes, max_nbytes);
1195 dev_kfree_skb_any(skb);
1196 continue;
1197 }
1198
1199 skb_put(skb, nbytes);
Michal Kazior1cb86d42014-11-27 11:09:38 +01001200 __skb_queue_tail(&list, skb);
1201 }
Michal Kaziora360e542014-09-23 10:22:54 +02001202
Michal Kazior1cb86d42014-11-27 11:09:38 +01001203 while ((skb = __skb_dequeue(&list))) {
Michal Kaziora360e542014-09-23 10:22:54 +02001204 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci rx ce pipe %d len %d\n",
1205 ce_state->id, skb->len);
1206 ath10k_dbg_dump(ar, ATH10K_DBG_PCI_DUMP, NULL, "pci rx: ",
1207 skb->data, skb->len);
1208
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301209 callback(ar, skb);
Michal Kazior2f5280d2014-02-27 18:50:05 +02001210 }
Michal Kaziorc29a3802014-07-21 21:03:10 +03001211
Michal Kazior728f95e2014-08-22 14:33:14 +02001212 ath10k_pci_rx_post_pipe(pipe_info);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001213}
1214
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301215/* Called by lower (CE) layer when data is received from the Target. */
1216static void ath10k_pci_htc_rx_cb(struct ath10k_ce_pipe *ce_state)
1217{
1218 ath10k_pci_process_rx_cb(ce_state, ath10k_htc_rx_completion_handler);
1219}
1220
Rajkumar Manoharan6419fdb2015-11-11 17:31:26 +05301221static void ath10k_pci_htt_htc_rx_cb(struct ath10k_ce_pipe *ce_state)
1222{
1223 /* CE4 polling needs to be done whenever CE pipe which transports
1224 * HTT Rx (target->host) is processed.
1225 */
1226 ath10k_ce_per_engine_service(ce_state->ar, 4);
1227
1228 ath10k_pci_process_rx_cb(ce_state, ath10k_htc_rx_completion_handler);
1229}
1230
Vivek Natarajanafb0bf72015-10-30 14:57:58 +05301231/* Called by lower (CE) layer when data is received from the Target.
1232 * Only 10.4 firmware uses separate CE to transfer pktlog data.
1233 */
1234static void ath10k_pci_pktlog_rx_cb(struct ath10k_ce_pipe *ce_state)
1235{
1236 ath10k_pci_process_rx_cb(ce_state,
1237 ath10k_htt_rx_pktlog_completion_handler);
1238}
1239
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301240/* Called by lower (CE) layer when a send to HTT Target completes. */
1241static void ath10k_pci_htt_tx_cb(struct ath10k_ce_pipe *ce_state)
1242{
1243 struct ath10k *ar = ce_state->ar;
1244 struct sk_buff *skb;
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301245
Rajkumar Manoharan765952e2015-10-23 18:01:05 +05301246 while (ath10k_ce_completed_send_next(ce_state, (void **)&skb) == 0) {
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301247 /* no need to call tx completion for NULL pointers */
1248 if (!skb)
1249 continue;
1250
1251 dma_unmap_single(ar->dev, ATH10K_SKB_CB(skb)->paddr,
1252 skb->len, DMA_TO_DEVICE);
1253 ath10k_htt_hif_tx_complete(ar, skb);
1254 }
1255}
1256
1257static void ath10k_pci_htt_rx_deliver(struct ath10k *ar, struct sk_buff *skb)
1258{
1259 skb_pull(skb, sizeof(struct ath10k_htc_hdr));
1260 ath10k_htt_t2h_msg_handler(ar, skb);
1261}
1262
1263/* Called by lower (CE) layer when HTT data is received from the Target. */
1264static void ath10k_pci_htt_rx_cb(struct ath10k_ce_pipe *ce_state)
1265{
1266 /* CE4 polling needs to be done whenever CE pipe which transports
1267 * HTT Rx (target->host) is processed.
1268 */
1269 ath10k_ce_per_engine_service(ce_state->ar, 4);
1270
1271 ath10k_pci_process_rx_cb(ce_state, ath10k_pci_htt_rx_deliver);
1272}
1273
Raja Manif52f5172016-01-27 15:24:22 +05301274int ath10k_pci_hif_tx_sg(struct ath10k *ar, u8 pipe_id,
1275 struct ath10k_hif_sg_item *items, int n_items)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001276{
Kalle Valo5e3dd152013-06-12 20:52:10 +03001277 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior726346f2014-02-27 18:50:04 +02001278 struct ath10k_pci_pipe *pci_pipe = &ar_pci->pipe_info[pipe_id];
1279 struct ath10k_ce_pipe *ce_pipe = pci_pipe->ce_hdl;
1280 struct ath10k_ce_ring *src_ring = ce_pipe->src_ring;
Michal Kazior7147a132014-05-26 12:02:58 +02001281 unsigned int nentries_mask;
1282 unsigned int sw_index;
1283 unsigned int write_index;
Michal Kazior08b8aa02014-05-26 12:02:59 +02001284 int err, i = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001285
Michal Kazior726346f2014-02-27 18:50:04 +02001286 spin_lock_bh(&ar_pci->ce_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001287
Michal Kazior7147a132014-05-26 12:02:58 +02001288 nentries_mask = src_ring->nentries_mask;
1289 sw_index = src_ring->sw_index;
1290 write_index = src_ring->write_index;
1291
Michal Kazior726346f2014-02-27 18:50:04 +02001292 if (unlikely(CE_RING_DELTA(nentries_mask,
1293 write_index, sw_index - 1) < n_items)) {
1294 err = -ENOBUFS;
Michal Kazior08b8aa02014-05-26 12:02:59 +02001295 goto err;
Michal Kazior726346f2014-02-27 18:50:04 +02001296 }
1297
1298 for (i = 0; i < n_items - 1; i++) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001299 ath10k_dbg(ar, ATH10K_DBG_PCI,
Michal Kazior726346f2014-02-27 18:50:04 +02001300 "pci tx item %d paddr 0x%08x len %d n_items %d\n",
1301 i, items[i].paddr, items[i].len, n_items);
Michal Kazior7aa7a722014-08-25 12:09:38 +02001302 ath10k_dbg_dump(ar, ATH10K_DBG_PCI_DUMP, NULL, "pci tx data: ",
Michal Kazior726346f2014-02-27 18:50:04 +02001303 items[i].vaddr, items[i].len);
1304
1305 err = ath10k_ce_send_nolock(ce_pipe,
1306 items[i].transfer_context,
1307 items[i].paddr,
1308 items[i].len,
1309 items[i].transfer_id,
1310 CE_SEND_FLAG_GATHER);
1311 if (err)
Michal Kazior08b8aa02014-05-26 12:02:59 +02001312 goto err;
Michal Kazior726346f2014-02-27 18:50:04 +02001313 }
1314
1315 /* `i` is equal to `n_items -1` after for() */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001316
Michal Kazior7aa7a722014-08-25 12:09:38 +02001317 ath10k_dbg(ar, ATH10K_DBG_PCI,
Michal Kazior726346f2014-02-27 18:50:04 +02001318 "pci tx item %d paddr 0x%08x len %d n_items %d\n",
1319 i, items[i].paddr, items[i].len, n_items);
Michal Kazior7aa7a722014-08-25 12:09:38 +02001320 ath10k_dbg_dump(ar, ATH10K_DBG_PCI_DUMP, NULL, "pci tx data: ",
Michal Kazior726346f2014-02-27 18:50:04 +02001321 items[i].vaddr, items[i].len);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001322
Michal Kazior726346f2014-02-27 18:50:04 +02001323 err = ath10k_ce_send_nolock(ce_pipe,
1324 items[i].transfer_context,
1325 items[i].paddr,
1326 items[i].len,
1327 items[i].transfer_id,
1328 0);
1329 if (err)
Michal Kazior08b8aa02014-05-26 12:02:59 +02001330 goto err;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001331
Michal Kazior08b8aa02014-05-26 12:02:59 +02001332 spin_unlock_bh(&ar_pci->ce_lock);
1333 return 0;
1334
1335err:
1336 for (; i > 0; i--)
1337 __ath10k_ce_send_revert(ce_pipe);
1338
Michal Kazior726346f2014-02-27 18:50:04 +02001339 spin_unlock_bh(&ar_pci->ce_lock);
1340 return err;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001341}
1342
Raja Manif52f5172016-01-27 15:24:22 +05301343int ath10k_pci_hif_diag_read(struct ath10k *ar, u32 address, void *buf,
1344 size_t buf_len)
Kalle Valoeef25402014-09-24 14:16:52 +03001345{
1346 return ath10k_pci_diag_read_mem(ar, address, buf, buf_len);
1347}
1348
Raja Manif52f5172016-01-27 15:24:22 +05301349u16 ath10k_pci_hif_get_free_queue_number(struct ath10k *ar, u8 pipe)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001350{
1351 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo50f87a62014-03-28 09:32:52 +02001352
Michal Kazior7aa7a722014-08-25 12:09:38 +02001353 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci hif get free queue number\n");
Kalle Valo50f87a62014-03-28 09:32:52 +02001354
Michal Kazior3efcb3b2013-10-02 11:03:41 +02001355 return ath10k_ce_num_free_src_entries(ar_pci->pipe_info[pipe].ce_hdl);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001356}
1357
Ben Greear384914b2014-08-25 08:37:32 +03001358static void ath10k_pci_dump_registers(struct ath10k *ar,
1359 struct ath10k_fw_crash_data *crash_data)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001360{
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001361 __le32 reg_dump_values[REG_DUMP_COUNT_QCA988X] = {};
1362 int i, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001363
Ben Greear384914b2014-08-25 08:37:32 +03001364 lockdep_assert_held(&ar->data_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001365
Kalle Valo3d29a3e2014-08-25 08:37:26 +03001366 ret = ath10k_pci_diag_read_hi(ar, &reg_dump_values[0],
1367 hi_failure_state,
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001368 REG_DUMP_COUNT_QCA988X * sizeof(__le32));
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001369 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001370 ath10k_err(ar, "failed to read firmware dump area: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001371 return;
1372 }
1373
1374 BUILD_BUG_ON(REG_DUMP_COUNT_QCA988X % 4);
1375
Michal Kazior7aa7a722014-08-25 12:09:38 +02001376 ath10k_err(ar, "firmware register dump:\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001377 for (i = 0; i < REG_DUMP_COUNT_QCA988X; i += 4)
Michal Kazior7aa7a722014-08-25 12:09:38 +02001378 ath10k_err(ar, "[%02d]: 0x%08X 0x%08X 0x%08X 0x%08X\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001379 i,
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001380 __le32_to_cpu(reg_dump_values[i]),
1381 __le32_to_cpu(reg_dump_values[i + 1]),
1382 __le32_to_cpu(reg_dump_values[i + 2]),
1383 __le32_to_cpu(reg_dump_values[i + 3]));
Michal Kazioraffd3212013-07-16 09:54:35 +02001384
Michal Kazior1bbb1192014-08-25 12:13:14 +02001385 if (!crash_data)
1386 return;
1387
Ben Greear384914b2014-08-25 08:37:32 +03001388 for (i = 0; i < REG_DUMP_COUNT_QCA988X; i++)
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001389 crash_data->registers[i] = reg_dump_values[i];
Ben Greear384914b2014-08-25 08:37:32 +03001390}
1391
Kalle Valo0e9848c2014-08-25 08:37:37 +03001392static void ath10k_pci_fw_crashed_dump(struct ath10k *ar)
Ben Greear384914b2014-08-25 08:37:32 +03001393{
1394 struct ath10k_fw_crash_data *crash_data;
1395 char uuid[50];
1396
1397 spin_lock_bh(&ar->data_lock);
1398
Ben Greearf51dbe72014-09-29 14:41:46 +03001399 ar->stats.fw_crash_counter++;
1400
Ben Greear384914b2014-08-25 08:37:32 +03001401 crash_data = ath10k_debug_get_new_fw_crash_data(ar);
1402
1403 if (crash_data)
1404 scnprintf(uuid, sizeof(uuid), "%pUl", &crash_data->uuid);
1405 else
1406 scnprintf(uuid, sizeof(uuid), "n/a");
1407
Michal Kazior7aa7a722014-08-25 12:09:38 +02001408 ath10k_err(ar, "firmware crashed! (uuid %s)\n", uuid);
Kalle Valo8a0c7972014-08-25 08:37:45 +03001409 ath10k_print_driver_info(ar);
Ben Greear384914b2014-08-25 08:37:32 +03001410 ath10k_pci_dump_registers(ar, crash_data);
1411
Ben Greear384914b2014-08-25 08:37:32 +03001412 spin_unlock_bh(&ar->data_lock);
Michal Kazioraffd3212013-07-16 09:54:35 +02001413
Michal Kazior5e90de82013-10-16 16:46:05 +03001414 queue_work(ar->workqueue, &ar->restart_work);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001415}
1416
Raja Manif52f5172016-01-27 15:24:22 +05301417void ath10k_pci_hif_send_complete_check(struct ath10k *ar, u8 pipe,
1418 int force)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001419{
Michal Kazior7aa7a722014-08-25 12:09:38 +02001420 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci hif send complete check\n");
Kalle Valo50f87a62014-03-28 09:32:52 +02001421
Kalle Valo5e3dd152013-06-12 20:52:10 +03001422 if (!force) {
1423 int resources;
1424 /*
1425 * Decide whether to actually poll for completions, or just
1426 * wait for a later chance.
1427 * If there seem to be plenty of resources left, then just wait
1428 * since checking involves reading a CE register, which is a
1429 * relatively expensive operation.
1430 */
1431 resources = ath10k_pci_hif_get_free_queue_number(ar, pipe);
1432
1433 /*
1434 * If at least 50% of the total resources are still available,
1435 * don't bother checking again yet.
1436 */
1437 if (resources > (host_ce_config_wlan[pipe].src_nentries >> 1))
1438 return;
1439 }
1440 ath10k_ce_per_engine_service(ar, pipe);
1441}
1442
Raja Manif52f5172016-01-27 15:24:22 +05301443void ath10k_pci_kill_tasklet(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001444{
1445 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001446 int i;
1447
Kalle Valo5e3dd152013-06-12 20:52:10 +03001448 tasklet_kill(&ar_pci->intr_tq);
Michal Kazior103d4f52013-11-08 08:01:24 +01001449 tasklet_kill(&ar_pci->msi_fw_err);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001450
1451 for (i = 0; i < CE_COUNT; i++)
1452 tasklet_kill(&ar_pci->pipe_info[i].intr);
Michal Kazior728f95e2014-08-22 14:33:14 +02001453
1454 del_timer_sync(&ar_pci->rx_post_retry);
Michal Kazior96a9d0d2013-11-08 08:01:25 +01001455}
1456
Raja Manif52f5172016-01-27 15:24:22 +05301457int ath10k_pci_hif_map_service_to_pipe(struct ath10k *ar, u16 service_id,
1458 u8 *ul_pipe, u8 *dl_pipe)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001459{
Michal Kazior7c6aa252014-08-26 19:14:03 +03001460 const struct service_to_pipe *entry;
1461 bool ul_set = false, dl_set = false;
1462 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001463
Michal Kazior7aa7a722014-08-25 12:09:38 +02001464 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci hif map service\n");
Kalle Valo50f87a62014-03-28 09:32:52 +02001465
Michal Kazior7c6aa252014-08-26 19:14:03 +03001466 for (i = 0; i < ARRAY_SIZE(target_service_to_ce_map_wlan); i++) {
1467 entry = &target_service_to_ce_map_wlan[i];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001468
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001469 if (__le32_to_cpu(entry->service_id) != service_id)
Michal Kazior7c6aa252014-08-26 19:14:03 +03001470 continue;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001471
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001472 switch (__le32_to_cpu(entry->pipedir)) {
Michal Kazior7c6aa252014-08-26 19:14:03 +03001473 case PIPEDIR_NONE:
1474 break;
1475 case PIPEDIR_IN:
1476 WARN_ON(dl_set);
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001477 *dl_pipe = __le32_to_cpu(entry->pipenum);
Michal Kazior7c6aa252014-08-26 19:14:03 +03001478 dl_set = true;
1479 break;
1480 case PIPEDIR_OUT:
1481 WARN_ON(ul_set);
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001482 *ul_pipe = __le32_to_cpu(entry->pipenum);
Michal Kazior7c6aa252014-08-26 19:14:03 +03001483 ul_set = true;
1484 break;
1485 case PIPEDIR_INOUT:
1486 WARN_ON(dl_set);
1487 WARN_ON(ul_set);
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001488 *dl_pipe = __le32_to_cpu(entry->pipenum);
1489 *ul_pipe = __le32_to_cpu(entry->pipenum);
Michal Kazior7c6aa252014-08-26 19:14:03 +03001490 dl_set = true;
1491 ul_set = true;
1492 break;
1493 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001494 }
Michal Kazior7c6aa252014-08-26 19:14:03 +03001495
1496 if (WARN_ON(!ul_set || !dl_set))
1497 return -ENOENT;
1498
Michal Kazior7c6aa252014-08-26 19:14:03 +03001499 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001500}
1501
Raja Manif52f5172016-01-27 15:24:22 +05301502void ath10k_pci_hif_get_default_pipe(struct ath10k *ar,
1503 u8 *ul_pipe, u8 *dl_pipe)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001504{
Michal Kazior7aa7a722014-08-25 12:09:38 +02001505 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci hif get default pipe\n");
Kalle Valo50f87a62014-03-28 09:32:52 +02001506
Kalle Valo5e3dd152013-06-12 20:52:10 +03001507 (void)ath10k_pci_hif_map_service_to_pipe(ar,
1508 ATH10K_HTC_SVC_ID_RSVD_CTRL,
Rajkumar Manoharan400143e2015-10-12 18:27:06 +05301509 ul_pipe, dl_pipe);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001510}
1511
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001512static void ath10k_pci_irq_msi_fw_mask(struct ath10k *ar)
1513{
1514 u32 val;
1515
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301516 switch (ar->hw_rev) {
1517 case ATH10K_HW_QCA988X:
1518 case ATH10K_HW_QCA6174:
Bartosz Markowskia226b512015-10-28 15:09:53 +01001519 case ATH10K_HW_QCA9377:
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301520 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1521 CORE_CTRL_ADDRESS);
1522 val &= ~CORE_CTRL_PCIE_REG_31_MASK;
1523 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
1524 CORE_CTRL_ADDRESS, val);
1525 break;
1526 case ATH10K_HW_QCA99X0:
Raja Mani0b523ce2016-01-27 15:24:25 +05301527 case ATH10K_HW_QCA4019:
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301528 /* TODO: Find appropriate register configuration for QCA99X0
1529 * to mask irq/MSI.
1530 */
1531 break;
1532 }
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001533}
1534
1535static void ath10k_pci_irq_msi_fw_unmask(struct ath10k *ar)
1536{
1537 u32 val;
1538
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301539 switch (ar->hw_rev) {
1540 case ATH10K_HW_QCA988X:
1541 case ATH10K_HW_QCA6174:
Bartosz Markowskia226b512015-10-28 15:09:53 +01001542 case ATH10K_HW_QCA9377:
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301543 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1544 CORE_CTRL_ADDRESS);
1545 val |= CORE_CTRL_PCIE_REG_31_MASK;
1546 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
1547 CORE_CTRL_ADDRESS, val);
1548 break;
1549 case ATH10K_HW_QCA99X0:
Raja Mani0b523ce2016-01-27 15:24:25 +05301550 case ATH10K_HW_QCA4019:
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301551 /* TODO: Find appropriate register configuration for QCA99X0
1552 * to unmask irq/MSI.
1553 */
1554 break;
1555 }
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001556}
1557
Michal Kaziorec5ba4d2014-08-22 14:23:33 +02001558static void ath10k_pci_irq_disable(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001559{
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001560 ath10k_ce_disable_interrupts(ar);
1561 ath10k_pci_disable_and_clear_legacy_irq(ar);
1562 ath10k_pci_irq_msi_fw_mask(ar);
1563}
1564
1565static void ath10k_pci_irq_sync(struct ath10k *ar)
1566{
Kalle Valo5e3dd152013-06-12 20:52:10 +03001567 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kaziorec5ba4d2014-08-22 14:23:33 +02001568 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001569
Michal Kaziorec5ba4d2014-08-22 14:23:33 +02001570 for (i = 0; i < max(1, ar_pci->num_msi_intrs); i++)
1571 synchronize_irq(ar_pci->pdev->irq + i);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001572}
1573
Michal Kaziorec5ba4d2014-08-22 14:23:33 +02001574static void ath10k_pci_irq_enable(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001575{
Michal Kaziorec5ba4d2014-08-22 14:23:33 +02001576 ath10k_ce_enable_interrupts(ar);
Michal Kaziore75db4e2014-08-28 22:14:16 +03001577 ath10k_pci_enable_legacy_irq(ar);
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001578 ath10k_pci_irq_msi_fw_unmask(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001579}
1580
1581static int ath10k_pci_hif_start(struct ath10k *ar)
1582{
Janusz Dziedzic76d870e2015-05-18 09:38:16 +00001583 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo9a149692015-10-05 17:56:36 +03001584
Michal Kazior7aa7a722014-08-25 12:09:38 +02001585 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif start\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001586
Michal Kaziorec5ba4d2014-08-22 14:23:33 +02001587 ath10k_pci_irq_enable(ar);
Michal Kazior728f95e2014-08-22 14:33:14 +02001588 ath10k_pci_rx_post(ar);
Kalle Valo50f87a62014-03-28 09:32:52 +02001589
Janusz Dziedzic76d870e2015-05-18 09:38:16 +00001590 pcie_capability_write_word(ar_pci->pdev, PCI_EXP_LNKCTL,
1591 ar_pci->link_ctl);
1592
Kalle Valo5e3dd152013-06-12 20:52:10 +03001593 return 0;
1594}
1595
Michal Kazior099ac7c2014-10-28 10:32:05 +01001596static void ath10k_pci_rx_pipe_cleanup(struct ath10k_pci_pipe *pci_pipe)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001597{
1598 struct ath10k *ar;
Michal Kazior099ac7c2014-10-28 10:32:05 +01001599 struct ath10k_ce_pipe *ce_pipe;
1600 struct ath10k_ce_ring *ce_ring;
1601 struct sk_buff *skb;
1602 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001603
Michal Kazior099ac7c2014-10-28 10:32:05 +01001604 ar = pci_pipe->hif_ce_state;
1605 ce_pipe = pci_pipe->ce_hdl;
1606 ce_ring = ce_pipe->dest_ring;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001607
Michal Kazior099ac7c2014-10-28 10:32:05 +01001608 if (!ce_ring)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001609 return;
1610
Michal Kazior099ac7c2014-10-28 10:32:05 +01001611 if (!pci_pipe->buf_sz)
1612 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001613
Michal Kazior099ac7c2014-10-28 10:32:05 +01001614 for (i = 0; i < ce_ring->nentries; i++) {
1615 skb = ce_ring->per_transfer_context[i];
1616 if (!skb)
1617 continue;
1618
1619 ce_ring->per_transfer_context[i] = NULL;
1620
Michal Kazior8582bf32015-01-24 12:14:47 +02001621 dma_unmap_single(ar->dev, ATH10K_SKB_RXCB(skb)->paddr,
Michal Kazior099ac7c2014-10-28 10:32:05 +01001622 skb->len + skb_tailroom(skb),
Kalle Valo5e3dd152013-06-12 20:52:10 +03001623 DMA_FROM_DEVICE);
Michal Kazior099ac7c2014-10-28 10:32:05 +01001624 dev_kfree_skb_any(skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001625 }
1626}
1627
Michal Kazior099ac7c2014-10-28 10:32:05 +01001628static void ath10k_pci_tx_pipe_cleanup(struct ath10k_pci_pipe *pci_pipe)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001629{
1630 struct ath10k *ar;
1631 struct ath10k_pci *ar_pci;
Michal Kazior099ac7c2014-10-28 10:32:05 +01001632 struct ath10k_ce_pipe *ce_pipe;
1633 struct ath10k_ce_ring *ce_ring;
Michal Kazior099ac7c2014-10-28 10:32:05 +01001634 struct sk_buff *skb;
Michal Kazior099ac7c2014-10-28 10:32:05 +01001635 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001636
Michal Kazior099ac7c2014-10-28 10:32:05 +01001637 ar = pci_pipe->hif_ce_state;
1638 ar_pci = ath10k_pci_priv(ar);
1639 ce_pipe = pci_pipe->ce_hdl;
1640 ce_ring = ce_pipe->src_ring;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001641
Michal Kazior099ac7c2014-10-28 10:32:05 +01001642 if (!ce_ring)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001643 return;
1644
Michal Kazior099ac7c2014-10-28 10:32:05 +01001645 if (!pci_pipe->buf_sz)
1646 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001647
Michal Kazior099ac7c2014-10-28 10:32:05 +01001648 for (i = 0; i < ce_ring->nentries; i++) {
1649 skb = ce_ring->per_transfer_context[i];
1650 if (!skb)
Michal Kazior2415fc12013-11-08 08:01:32 +01001651 continue;
Michal Kazior2415fc12013-11-08 08:01:32 +01001652
Michal Kazior099ac7c2014-10-28 10:32:05 +01001653 ce_ring->per_transfer_context[i] = NULL;
Michal Kazior099ac7c2014-10-28 10:32:05 +01001654
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +05301655 ath10k_htc_tx_completion_handler(ar, skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001656 }
1657}
1658
1659/*
1660 * Cleanup residual buffers for device shutdown:
1661 * buffers that were enqueued for receive
1662 * buffers that were to be sent
1663 * Note: Buffers that had completed but which were
1664 * not yet processed are on a completion queue. They
1665 * are handled when the completion thread shuts down.
1666 */
1667static void ath10k_pci_buffer_cleanup(struct ath10k *ar)
1668{
1669 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1670 int pipe_num;
1671
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001672 for (pipe_num = 0; pipe_num < CE_COUNT; pipe_num++) {
Michal Kazior87263e52013-08-27 13:08:01 +02001673 struct ath10k_pci_pipe *pipe_info;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001674
1675 pipe_info = &ar_pci->pipe_info[pipe_num];
1676 ath10k_pci_rx_pipe_cleanup(pipe_info);
1677 ath10k_pci_tx_pipe_cleanup(pipe_info);
1678 }
1679}
1680
Raja Manif52f5172016-01-27 15:24:22 +05301681void ath10k_pci_ce_deinit(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001682{
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001683 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001684
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001685 for (i = 0; i < CE_COUNT; i++)
1686 ath10k_ce_deinit_pipe(ar, i);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001687}
1688
Raja Manif52f5172016-01-27 15:24:22 +05301689void ath10k_pci_flush(struct ath10k *ar)
Michal Kazior728f95e2014-08-22 14:33:14 +02001690{
1691 ath10k_pci_kill_tasklet(ar);
1692 ath10k_pci_buffer_cleanup(ar);
1693}
1694
Kalle Valo5e3dd152013-06-12 20:52:10 +03001695static void ath10k_pci_hif_stop(struct ath10k *ar)
1696{
Michal Kazior77258d42015-05-18 09:38:18 +00001697 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1698 unsigned long flags;
1699
Michal Kazior7aa7a722014-08-25 12:09:38 +02001700 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif stop\n");
Michal Kazior32270b62013-08-02 09:15:47 +02001701
Michal Kazior10d23db2014-08-22 14:33:15 +02001702 /* Most likely the device has HTT Rx ring configured. The only way to
1703 * prevent the device from accessing (and possible corrupting) host
1704 * memory is to reset the chip now.
Michal Kaziore75db4e2014-08-28 22:14:16 +03001705 *
1706 * There's also no known way of masking MSI interrupts on the device.
1707 * For ranged MSI the CE-related interrupts can be masked. However
1708 * regardless how many MSI interrupts are assigned the first one
1709 * is always used for firmware indications (crashes) and cannot be
1710 * masked. To prevent the device from asserting the interrupt reset it
1711 * before proceeding with cleanup.
Michal Kazior10d23db2014-08-22 14:33:15 +02001712 */
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301713 ath10k_pci_safe_chip_reset(ar);
Michal Kaziore75db4e2014-08-28 22:14:16 +03001714
1715 ath10k_pci_irq_disable(ar);
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001716 ath10k_pci_irq_sync(ar);
Michal Kaziore75db4e2014-08-28 22:14:16 +03001717 ath10k_pci_flush(ar);
Michal Kazior77258d42015-05-18 09:38:18 +00001718
1719 spin_lock_irqsave(&ar_pci->ps_lock, flags);
1720 WARN_ON(ar_pci->ps_wake_refcount > 0);
1721 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001722}
1723
Raja Manif52f5172016-01-27 15:24:22 +05301724int ath10k_pci_hif_exchange_bmi_msg(struct ath10k *ar,
1725 void *req, u32 req_len,
1726 void *resp, u32 *resp_len)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001727{
1728 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior2aa39112013-08-27 13:08:02 +02001729 struct ath10k_pci_pipe *pci_tx = &ar_pci->pipe_info[BMI_CE_NUM_TO_TARG];
1730 struct ath10k_pci_pipe *pci_rx = &ar_pci->pipe_info[BMI_CE_NUM_TO_HOST];
1731 struct ath10k_ce_pipe *ce_tx = pci_tx->ce_hdl;
1732 struct ath10k_ce_pipe *ce_rx = pci_rx->ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001733 dma_addr_t req_paddr = 0;
1734 dma_addr_t resp_paddr = 0;
1735 struct bmi_xfer xfer = {};
1736 void *treq, *tresp = NULL;
1737 int ret = 0;
1738
Michal Kazior85622cd2013-11-25 14:06:22 +01001739 might_sleep();
1740
Kalle Valo5e3dd152013-06-12 20:52:10 +03001741 if (resp && !resp_len)
1742 return -EINVAL;
1743
1744 if (resp && resp_len && *resp_len == 0)
1745 return -EINVAL;
1746
1747 treq = kmemdup(req, req_len, GFP_KERNEL);
1748 if (!treq)
1749 return -ENOMEM;
1750
1751 req_paddr = dma_map_single(ar->dev, treq, req_len, DMA_TO_DEVICE);
1752 ret = dma_mapping_error(ar->dev, req_paddr);
Michal Kazior5e55e3c2015-08-19 13:10:43 +02001753 if (ret) {
1754 ret = -EIO;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001755 goto err_dma;
Michal Kazior5e55e3c2015-08-19 13:10:43 +02001756 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001757
1758 if (resp && resp_len) {
1759 tresp = kzalloc(*resp_len, GFP_KERNEL);
1760 if (!tresp) {
1761 ret = -ENOMEM;
1762 goto err_req;
1763 }
1764
1765 resp_paddr = dma_map_single(ar->dev, tresp, *resp_len,
1766 DMA_FROM_DEVICE);
1767 ret = dma_mapping_error(ar->dev, resp_paddr);
Michal Kazior5e55e3c2015-08-19 13:10:43 +02001768 if (ret) {
Anton Protopopov22baa982016-02-10 11:58:55 -05001769 ret = -EIO;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001770 goto err_req;
Michal Kazior5e55e3c2015-08-19 13:10:43 +02001771 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001772
1773 xfer.wait_for_resp = true;
1774 xfer.resp_len = 0;
1775
Michal Kazior728f95e2014-08-22 14:33:14 +02001776 ath10k_ce_rx_post_buf(ce_rx, &xfer, resp_paddr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001777 }
1778
Kalle Valo5e3dd152013-06-12 20:52:10 +03001779 ret = ath10k_ce_send(ce_tx, &xfer, req_paddr, req_len, -1, 0);
1780 if (ret)
1781 goto err_resp;
1782
Michal Kazior85622cd2013-11-25 14:06:22 +01001783 ret = ath10k_pci_bmi_wait(ce_tx, ce_rx, &xfer);
1784 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001785 u32 unused_buffer;
1786 unsigned int unused_nbytes;
1787 unsigned int unused_id;
1788
Kalle Valo5e3dd152013-06-12 20:52:10 +03001789 ath10k_ce_cancel_send_next(ce_tx, NULL, &unused_buffer,
1790 &unused_nbytes, &unused_id);
1791 } else {
1792 /* non-zero means we did not time out */
1793 ret = 0;
1794 }
1795
1796err_resp:
1797 if (resp) {
1798 u32 unused_buffer;
1799
1800 ath10k_ce_revoke_recv_next(ce_rx, NULL, &unused_buffer);
1801 dma_unmap_single(ar->dev, resp_paddr,
1802 *resp_len, DMA_FROM_DEVICE);
1803 }
1804err_req:
1805 dma_unmap_single(ar->dev, req_paddr, req_len, DMA_TO_DEVICE);
1806
1807 if (ret == 0 && resp_len) {
1808 *resp_len = min(*resp_len, xfer.resp_len);
1809 memcpy(resp, tresp, xfer.resp_len);
1810 }
1811err_dma:
1812 kfree(treq);
1813 kfree(tresp);
1814
1815 return ret;
1816}
1817
Michal Kazior5440ce22013-09-03 15:09:58 +02001818static void ath10k_pci_bmi_send_done(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001819{
Michal Kazior5440ce22013-09-03 15:09:58 +02001820 struct bmi_xfer *xfer;
Michal Kazior5440ce22013-09-03 15:09:58 +02001821
Rajkumar Manoharan765952e2015-10-23 18:01:05 +05301822 if (ath10k_ce_completed_send_next(ce_state, (void **)&xfer))
Michal Kazior5440ce22013-09-03 15:09:58 +02001823 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001824
Michal Kazior2374b182014-07-14 16:25:25 +03001825 xfer->tx_done = true;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001826}
1827
Michal Kazior5440ce22013-09-03 15:09:58 +02001828static void ath10k_pci_bmi_recv_data(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001829{
Michal Kazior7aa7a722014-08-25 12:09:38 +02001830 struct ath10k *ar = ce_state->ar;
Michal Kazior5440ce22013-09-03 15:09:58 +02001831 struct bmi_xfer *xfer;
Michal Kazior5440ce22013-09-03 15:09:58 +02001832 unsigned int nbytes;
Michal Kazior5440ce22013-09-03 15:09:58 +02001833
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301834 if (ath10k_ce_completed_recv_next(ce_state, (void **)&xfer,
1835 &nbytes))
Michal Kazior5440ce22013-09-03 15:09:58 +02001836 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001837
Michal Kazior04ed9df2014-10-28 10:34:36 +01001838 if (WARN_ON_ONCE(!xfer))
1839 return;
1840
Kalle Valo5e3dd152013-06-12 20:52:10 +03001841 if (!xfer->wait_for_resp) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001842 ath10k_warn(ar, "unexpected: BMI data received; ignoring\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001843 return;
1844 }
1845
1846 xfer->resp_len = nbytes;
Michal Kazior2374b182014-07-14 16:25:25 +03001847 xfer->rx_done = true;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001848}
1849
Michal Kazior85622cd2013-11-25 14:06:22 +01001850static int ath10k_pci_bmi_wait(struct ath10k_ce_pipe *tx_pipe,
1851 struct ath10k_ce_pipe *rx_pipe,
1852 struct bmi_xfer *xfer)
1853{
1854 unsigned long timeout = jiffies + BMI_COMMUNICATION_TIMEOUT_HZ;
1855
1856 while (time_before_eq(jiffies, timeout)) {
1857 ath10k_pci_bmi_send_done(tx_pipe);
1858 ath10k_pci_bmi_recv_data(rx_pipe);
1859
Michal Kazior2374b182014-07-14 16:25:25 +03001860 if (xfer->tx_done && (xfer->rx_done == xfer->wait_for_resp))
Michal Kazior85622cd2013-11-25 14:06:22 +01001861 return 0;
1862
1863 schedule();
1864 }
1865
1866 return -ETIMEDOUT;
1867}
1868
Kalle Valo5e3dd152013-06-12 20:52:10 +03001869/*
Kalle Valo5e3dd152013-06-12 20:52:10 +03001870 * Send an interrupt to the device to wake up the Target CPU
1871 * so it has an opportunity to notice any changed state.
1872 */
1873static int ath10k_pci_wake_target_cpu(struct ath10k *ar)
1874{
Michal Kazior9e264942014-09-02 11:00:21 +03001875 u32 addr, val;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001876
Michal Kazior9e264942014-09-02 11:00:21 +03001877 addr = SOC_CORE_BASE_ADDRESS | CORE_CTRL_ADDRESS;
1878 val = ath10k_pci_read32(ar, addr);
1879 val |= CORE_CTRL_CPU_INTR_MASK;
1880 ath10k_pci_write32(ar, addr, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001881
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001882 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001883}
1884
Michal Kaziord63955b2015-01-24 12:14:49 +02001885static int ath10k_pci_get_num_banks(struct ath10k *ar)
1886{
1887 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1888
1889 switch (ar_pci->pdev->device) {
1890 case QCA988X_2_0_DEVICE_ID:
Vasanthakumar Thiagarajan8bd47022015-06-18 12:31:03 +05301891 case QCA99X0_2_0_DEVICE_ID:
Michal Kaziord63955b2015-01-24 12:14:49 +02001892 return 1;
Michal Kazior36582e52015-08-13 14:32:26 +02001893 case QCA6164_2_1_DEVICE_ID:
Michal Kaziord63955b2015-01-24 12:14:49 +02001894 case QCA6174_2_1_DEVICE_ID:
1895 switch (MS(ar->chip_id, SOC_CHIP_ID_REV)) {
1896 case QCA6174_HW_1_0_CHIP_ID_REV:
1897 case QCA6174_HW_1_1_CHIP_ID_REV:
Michal Kazior11a002e2015-04-20 09:20:41 +00001898 case QCA6174_HW_2_1_CHIP_ID_REV:
1899 case QCA6174_HW_2_2_CHIP_ID_REV:
Michal Kaziord63955b2015-01-24 12:14:49 +02001900 return 3;
1901 case QCA6174_HW_1_3_CHIP_ID_REV:
1902 return 2;
Michal Kaziord63955b2015-01-24 12:14:49 +02001903 case QCA6174_HW_3_0_CHIP_ID_REV:
1904 case QCA6174_HW_3_1_CHIP_ID_REV:
1905 case QCA6174_HW_3_2_CHIP_ID_REV:
1906 return 9;
1907 }
1908 break;
Bartosz Markowskia226b512015-10-28 15:09:53 +01001909 case QCA9377_1_0_DEVICE_ID:
1910 return 2;
Michal Kaziord63955b2015-01-24 12:14:49 +02001911 }
1912
1913 ath10k_warn(ar, "unknown number of banks, assuming 1\n");
1914 return 1;
1915}
1916
Raja Mani4ddb3292016-01-27 15:24:23 +05301917static int ath10k_bus_get_num_banks(struct ath10k *ar)
1918{
1919 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1920
1921 return ar_pci->bus_ops->get_num_banks(ar);
1922}
1923
Raja Manif52f5172016-01-27 15:24:22 +05301924int ath10k_pci_init_config(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001925{
1926 u32 interconnect_targ_addr;
1927 u32 pcie_state_targ_addr = 0;
1928 u32 pipe_cfg_targ_addr = 0;
1929 u32 svc_to_pipe_map = 0;
1930 u32 pcie_config_flags = 0;
1931 u32 ealloc_value;
1932 u32 ealloc_targ_addr;
1933 u32 flag2_value;
1934 u32 flag2_targ_addr;
1935 int ret = 0;
1936
1937 /* Download to Target the CE Config and the service-to-CE map */
1938 interconnect_targ_addr =
1939 host_interest_item_address(HI_ITEM(hi_interconnect_state));
1940
1941 /* Supply Target-side CE configuration */
Michal Kazior9e264942014-09-02 11:00:21 +03001942 ret = ath10k_pci_diag_read32(ar, interconnect_targ_addr,
1943 &pcie_state_targ_addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001944 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001945 ath10k_err(ar, "Failed to get pcie state addr: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001946 return ret;
1947 }
1948
1949 if (pcie_state_targ_addr == 0) {
1950 ret = -EIO;
Michal Kazior7aa7a722014-08-25 12:09:38 +02001951 ath10k_err(ar, "Invalid pcie state addr\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001952 return ret;
1953 }
1954
Michal Kazior9e264942014-09-02 11:00:21 +03001955 ret = ath10k_pci_diag_read32(ar, (pcie_state_targ_addr +
Kalle Valo5e3dd152013-06-12 20:52:10 +03001956 offsetof(struct pcie_state,
Michal Kazior9e264942014-09-02 11:00:21 +03001957 pipe_cfg_addr)),
1958 &pipe_cfg_targ_addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001959 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001960 ath10k_err(ar, "Failed to get pipe cfg addr: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001961 return ret;
1962 }
1963
1964 if (pipe_cfg_targ_addr == 0) {
1965 ret = -EIO;
Michal Kazior7aa7a722014-08-25 12:09:38 +02001966 ath10k_err(ar, "Invalid pipe cfg addr\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001967 return ret;
1968 }
1969
1970 ret = ath10k_pci_diag_write_mem(ar, pipe_cfg_targ_addr,
Kalle Valo5b07e072014-09-14 12:50:06 +03001971 target_ce_config_wlan,
Vasanthakumar Thiagarajan050af062015-06-18 12:31:04 +05301972 sizeof(struct ce_pipe_config) *
1973 NUM_TARGET_CE_CONFIG_WLAN);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001974
1975 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001976 ath10k_err(ar, "Failed to write pipe cfg: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001977 return ret;
1978 }
1979
Michal Kazior9e264942014-09-02 11:00:21 +03001980 ret = ath10k_pci_diag_read32(ar, (pcie_state_targ_addr +
Kalle Valo5e3dd152013-06-12 20:52:10 +03001981 offsetof(struct pcie_state,
Michal Kazior9e264942014-09-02 11:00:21 +03001982 svc_to_pipe_map)),
1983 &svc_to_pipe_map);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001984 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001985 ath10k_err(ar, "Failed to get svc/pipe map: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001986 return ret;
1987 }
1988
1989 if (svc_to_pipe_map == 0) {
1990 ret = -EIO;
Michal Kazior7aa7a722014-08-25 12:09:38 +02001991 ath10k_err(ar, "Invalid svc_to_pipe map\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001992 return ret;
1993 }
1994
1995 ret = ath10k_pci_diag_write_mem(ar, svc_to_pipe_map,
Kalle Valo5b07e072014-09-14 12:50:06 +03001996 target_service_to_ce_map_wlan,
1997 sizeof(target_service_to_ce_map_wlan));
Kalle Valo5e3dd152013-06-12 20:52:10 +03001998 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001999 ath10k_err(ar, "Failed to write svc/pipe map: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002000 return ret;
2001 }
2002
Michal Kazior9e264942014-09-02 11:00:21 +03002003 ret = ath10k_pci_diag_read32(ar, (pcie_state_targ_addr +
Kalle Valo5e3dd152013-06-12 20:52:10 +03002004 offsetof(struct pcie_state,
Michal Kazior9e264942014-09-02 11:00:21 +03002005 config_flags)),
2006 &pcie_config_flags);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002007 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002008 ath10k_err(ar, "Failed to get pcie config_flags: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002009 return ret;
2010 }
2011
2012 pcie_config_flags &= ~PCIE_CONFIG_FLAG_ENABLE_L1;
2013
Michal Kazior9e264942014-09-02 11:00:21 +03002014 ret = ath10k_pci_diag_write32(ar, (pcie_state_targ_addr +
2015 offsetof(struct pcie_state,
2016 config_flags)),
2017 pcie_config_flags);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002018 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002019 ath10k_err(ar, "Failed to write pcie config_flags: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002020 return ret;
2021 }
2022
2023 /* configure early allocation */
2024 ealloc_targ_addr = host_interest_item_address(HI_ITEM(hi_early_alloc));
2025
Michal Kazior9e264942014-09-02 11:00:21 +03002026 ret = ath10k_pci_diag_read32(ar, ealloc_targ_addr, &ealloc_value);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002027 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002028 ath10k_err(ar, "Faile to get early alloc val: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002029 return ret;
2030 }
2031
2032 /* first bank is switched to IRAM */
2033 ealloc_value |= ((HI_EARLY_ALLOC_MAGIC << HI_EARLY_ALLOC_MAGIC_SHIFT) &
2034 HI_EARLY_ALLOC_MAGIC_MASK);
Raja Mani4ddb3292016-01-27 15:24:23 +05302035 ealloc_value |= ((ath10k_bus_get_num_banks(ar) <<
Michal Kaziord63955b2015-01-24 12:14:49 +02002036 HI_EARLY_ALLOC_IRAM_BANKS_SHIFT) &
Kalle Valo5e3dd152013-06-12 20:52:10 +03002037 HI_EARLY_ALLOC_IRAM_BANKS_MASK);
2038
Michal Kazior9e264942014-09-02 11:00:21 +03002039 ret = ath10k_pci_diag_write32(ar, ealloc_targ_addr, ealloc_value);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002040 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002041 ath10k_err(ar, "Failed to set early alloc val: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002042 return ret;
2043 }
2044
2045 /* Tell Target to proceed with initialization */
2046 flag2_targ_addr = host_interest_item_address(HI_ITEM(hi_option_flag2));
2047
Michal Kazior9e264942014-09-02 11:00:21 +03002048 ret = ath10k_pci_diag_read32(ar, flag2_targ_addr, &flag2_value);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002049 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002050 ath10k_err(ar, "Failed to get option val: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002051 return ret;
2052 }
2053
2054 flag2_value |= HI_OPTION_EARLY_CFG_DONE;
2055
Michal Kazior9e264942014-09-02 11:00:21 +03002056 ret = ath10k_pci_diag_write32(ar, flag2_targ_addr, flag2_value);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002057 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002058 ath10k_err(ar, "Failed to set option val: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002059 return ret;
2060 }
2061
2062 return 0;
2063}
2064
Ryan Hsu2727a742015-11-05 18:44:27 -08002065static void ath10k_pci_override_ce_config(struct ath10k *ar)
2066{
2067 struct ce_attr *attr;
2068 struct ce_pipe_config *config;
2069
2070 /* For QCA6174 we're overriding the Copy Engine 5 configuration,
2071 * since it is currently used for other feature.
2072 */
2073
2074 /* Override Host's Copy Engine 5 configuration */
2075 attr = &host_ce_config_wlan[5];
2076 attr->src_sz_max = 0;
2077 attr->dest_nentries = 0;
2078
2079 /* Override Target firmware's Copy Engine configuration */
2080 config = &target_ce_config_wlan[5];
2081 config->pipedir = __cpu_to_le32(PIPEDIR_OUT);
2082 config->nbytes_max = __cpu_to_le32(2048);
2083
2084 /* Map from service/endpoint to Copy Engine */
2085 target_service_to_ce_map_wlan[15].pipenum = __cpu_to_le32(1);
2086}
2087
Raja Manif52f5172016-01-27 15:24:22 +05302088int ath10k_pci_alloc_pipes(struct ath10k *ar)
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002089{
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002090 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2091 struct ath10k_pci_pipe *pipe;
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002092 int i, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002093
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002094 for (i = 0; i < CE_COUNT; i++) {
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002095 pipe = &ar_pci->pipe_info[i];
2096 pipe->ce_hdl = &ar_pci->ce_states[i];
2097 pipe->pipe_num = i;
2098 pipe->hif_ce_state = ar;
2099
Rajkumar Manoharan9d9bdbb2015-10-12 18:27:02 +05302100 ret = ath10k_ce_alloc_pipe(ar, i, &host_ce_config_wlan[i]);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002101 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002102 ath10k_err(ar, "failed to allocate copy engine pipe %d: %d\n",
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002103 i, ret);
2104 return ret;
2105 }
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002106
2107 /* Last CE is Diagnostic Window */
Vasanthakumar Thiagarajan050af062015-06-18 12:31:04 +05302108 if (i == CE_DIAG_PIPE) {
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002109 ar_pci->ce_diag = pipe->ce_hdl;
2110 continue;
2111 }
2112
2113 pipe->buf_sz = (size_t)(host_ce_config_wlan[i].src_sz_max);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002114 }
2115
2116 return 0;
2117}
2118
Raja Manif52f5172016-01-27 15:24:22 +05302119void ath10k_pci_free_pipes(struct ath10k *ar)
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002120{
2121 int i;
2122
2123 for (i = 0; i < CE_COUNT; i++)
2124 ath10k_ce_free_pipe(ar, i);
2125}
Kalle Valo5e3dd152013-06-12 20:52:10 +03002126
Raja Manif52f5172016-01-27 15:24:22 +05302127int ath10k_pci_init_pipes(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002128{
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002129 int i, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002130
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002131 for (i = 0; i < CE_COUNT; i++) {
2132 ret = ath10k_ce_init_pipe(ar, i, &host_ce_config_wlan[i]);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002133 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002134 ath10k_err(ar, "failed to initialize copy engine pipe %d: %d\n",
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002135 i, ret);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002136 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002137 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002138 }
2139
Kalle Valo5e3dd152013-06-12 20:52:10 +03002140 return 0;
2141}
2142
Michal Kazior5c771e72014-08-22 14:23:34 +02002143static bool ath10k_pci_has_fw_crashed(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002144{
Michal Kazior5c771e72014-08-22 14:23:34 +02002145 return ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS) &
2146 FW_IND_EVENT_PENDING;
2147}
Kalle Valo5e3dd152013-06-12 20:52:10 +03002148
Michal Kazior5c771e72014-08-22 14:23:34 +02002149static void ath10k_pci_fw_crashed_clear(struct ath10k *ar)
2150{
2151 u32 val;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002152
Michal Kazior5c771e72014-08-22 14:23:34 +02002153 val = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
2154 val &= ~FW_IND_EVENT_PENDING;
2155 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002156}
2157
Michal Kaziorde013572014-05-14 16:56:16 +03002158/* this function effectively clears target memory controller assert line */
2159static void ath10k_pci_warm_reset_si0(struct ath10k *ar)
2160{
2161 u32 val;
2162
2163 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
2164 ath10k_pci_soc_write32(ar, SOC_RESET_CONTROL_ADDRESS,
2165 val | SOC_RESET_CONTROL_SI0_RST_MASK);
2166 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
2167
2168 msleep(10);
2169
2170 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
2171 ath10k_pci_soc_write32(ar, SOC_RESET_CONTROL_ADDRESS,
2172 val & ~SOC_RESET_CONTROL_SI0_RST_MASK);
2173 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
2174
2175 msleep(10);
2176}
2177
Michal Kazior61c16482014-10-28 10:32:06 +01002178static void ath10k_pci_warm_reset_cpu(struct ath10k *ar)
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002179{
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002180 u32 val;
2181
Kalle Valob39712c2014-03-28 09:32:46 +02002182 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS, 0);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002183
Michal Kazior61c16482014-10-28 10:32:06 +01002184 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
2185 SOC_RESET_CONTROL_ADDRESS);
2186 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
2187 val | SOC_RESET_CONTROL_CPU_WARM_RST_MASK);
2188}
2189
2190static void ath10k_pci_warm_reset_ce(struct ath10k *ar)
2191{
2192 u32 val;
2193
2194 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
2195 SOC_RESET_CONTROL_ADDRESS);
2196
2197 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
2198 val | SOC_RESET_CONTROL_CE_RST_MASK);
2199 msleep(10);
2200 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
2201 val & ~SOC_RESET_CONTROL_CE_RST_MASK);
2202}
2203
2204static void ath10k_pci_warm_reset_clear_lf(struct ath10k *ar)
2205{
2206 u32 val;
2207
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002208 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
2209 SOC_LF_TIMER_CONTROL0_ADDRESS);
2210 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS +
2211 SOC_LF_TIMER_CONTROL0_ADDRESS,
2212 val & ~SOC_LF_TIMER_CONTROL0_ENABLE_MASK);
Michal Kazior61c16482014-10-28 10:32:06 +01002213}
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002214
Michal Kazior61c16482014-10-28 10:32:06 +01002215static int ath10k_pci_warm_reset(struct ath10k *ar)
2216{
2217 int ret;
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002218
Michal Kazior61c16482014-10-28 10:32:06 +01002219 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot warm reset\n");
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002220
Michal Kazior61c16482014-10-28 10:32:06 +01002221 spin_lock_bh(&ar->data_lock);
2222 ar->stats.fw_warm_reset_counter++;
2223 spin_unlock_bh(&ar->data_lock);
2224
2225 ath10k_pci_irq_disable(ar);
2226
2227 /* Make sure the target CPU is not doing anything dangerous, e.g. if it
2228 * were to access copy engine while host performs copy engine reset
2229 * then it is possible for the device to confuse pci-e controller to
2230 * the point of bringing host system to a complete stop (i.e. hang).
2231 */
Michal Kaziorde013572014-05-14 16:56:16 +03002232 ath10k_pci_warm_reset_si0(ar);
Michal Kazior61c16482014-10-28 10:32:06 +01002233 ath10k_pci_warm_reset_cpu(ar);
2234 ath10k_pci_init_pipes(ar);
2235 ath10k_pci_wait_for_target_init(ar);
Michal Kaziorde013572014-05-14 16:56:16 +03002236
Michal Kazior61c16482014-10-28 10:32:06 +01002237 ath10k_pci_warm_reset_clear_lf(ar);
2238 ath10k_pci_warm_reset_ce(ar);
2239 ath10k_pci_warm_reset_cpu(ar);
2240 ath10k_pci_init_pipes(ar);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002241
Michal Kazior61c16482014-10-28 10:32:06 +01002242 ret = ath10k_pci_wait_for_target_init(ar);
2243 if (ret) {
2244 ath10k_warn(ar, "failed to wait for target init: %d\n", ret);
2245 return ret;
2246 }
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002247
Michal Kazior7aa7a722014-08-25 12:09:38 +02002248 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot warm reset complete\n");
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002249
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002250 return 0;
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002251}
2252
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05302253static int ath10k_pci_safe_chip_reset(struct ath10k *ar)
2254{
2255 if (QCA_REV_988X(ar) || QCA_REV_6174(ar)) {
2256 return ath10k_pci_warm_reset(ar);
2257 } else if (QCA_REV_99X0(ar)) {
2258 ath10k_pci_irq_disable(ar);
2259 return ath10k_pci_qca99x0_chip_reset(ar);
2260 } else {
2261 return -ENOTSUPP;
2262 }
2263}
2264
Michal Kaziord63955b2015-01-24 12:14:49 +02002265static int ath10k_pci_qca988x_chip_reset(struct ath10k *ar)
Michal Kazior0bc14d02014-10-28 10:32:07 +01002266{
2267 int i, ret;
2268 u32 val;
2269
Michal Kaziord63955b2015-01-24 12:14:49 +02002270 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot 988x chip reset\n");
Michal Kazior0bc14d02014-10-28 10:32:07 +01002271
2272 /* Some hardware revisions (e.g. CUS223v2) has issues with cold reset.
2273 * It is thus preferred to use warm reset which is safer but may not be
2274 * able to recover the device from all possible fail scenarios.
2275 *
2276 * Warm reset doesn't always work on first try so attempt it a few
2277 * times before giving up.
2278 */
2279 for (i = 0; i < ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS; i++) {
2280 ret = ath10k_pci_warm_reset(ar);
2281 if (ret) {
2282 ath10k_warn(ar, "failed to warm reset attempt %d of %d: %d\n",
2283 i + 1, ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS,
2284 ret);
2285 continue;
2286 }
2287
2288 /* FIXME: Sometimes copy engine doesn't recover after warm
2289 * reset. In most cases this needs cold reset. In some of these
2290 * cases the device is in such a state that a cold reset may
2291 * lock up the host.
2292 *
2293 * Reading any host interest register via copy engine is
2294 * sufficient to verify if device is capable of booting
2295 * firmware blob.
2296 */
2297 ret = ath10k_pci_init_pipes(ar);
2298 if (ret) {
2299 ath10k_warn(ar, "failed to init copy engine: %d\n",
2300 ret);
2301 continue;
2302 }
2303
2304 ret = ath10k_pci_diag_read32(ar, QCA988X_HOST_INTEREST_ADDRESS,
2305 &val);
2306 if (ret) {
2307 ath10k_warn(ar, "failed to poke copy engine: %d\n",
2308 ret);
2309 continue;
2310 }
2311
2312 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot chip reset complete (warm)\n");
2313 return 0;
2314 }
2315
2316 if (ath10k_pci_reset_mode == ATH10K_PCI_RESET_WARM_ONLY) {
2317 ath10k_warn(ar, "refusing cold reset as requested\n");
2318 return -EPERM;
2319 }
2320
2321 ret = ath10k_pci_cold_reset(ar);
2322 if (ret) {
2323 ath10k_warn(ar, "failed to cold reset: %d\n", ret);
2324 return ret;
2325 }
2326
2327 ret = ath10k_pci_wait_for_target_init(ar);
2328 if (ret) {
2329 ath10k_warn(ar, "failed to wait for target after cold reset: %d\n",
2330 ret);
2331 return ret;
2332 }
2333
Michal Kaziord63955b2015-01-24 12:14:49 +02002334 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot qca988x chip reset complete (cold)\n");
Michal Kazior0bc14d02014-10-28 10:32:07 +01002335
2336 return 0;
2337}
2338
Michal Kaziord63955b2015-01-24 12:14:49 +02002339static int ath10k_pci_qca6174_chip_reset(struct ath10k *ar)
2340{
2341 int ret;
2342
2343 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot qca6174 chip reset\n");
2344
2345 /* FIXME: QCA6174 requires cold + warm reset to work. */
2346
2347 ret = ath10k_pci_cold_reset(ar);
2348 if (ret) {
2349 ath10k_warn(ar, "failed to cold reset: %d\n", ret);
2350 return ret;
2351 }
2352
2353 ret = ath10k_pci_wait_for_target_init(ar);
2354 if (ret) {
2355 ath10k_warn(ar, "failed to wait for target after cold reset: %d\n",
Kalle Valo617b0f42015-10-05 17:56:35 +03002356 ret);
Michal Kaziord63955b2015-01-24 12:14:49 +02002357 return ret;
2358 }
2359
2360 ret = ath10k_pci_warm_reset(ar);
2361 if (ret) {
2362 ath10k_warn(ar, "failed to warm reset: %d\n", ret);
2363 return ret;
2364 }
2365
2366 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot qca6174 chip reset complete (cold)\n");
2367
2368 return 0;
2369}
2370
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05302371static int ath10k_pci_qca99x0_chip_reset(struct ath10k *ar)
2372{
2373 int ret;
2374
2375 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot qca99x0 chip reset\n");
2376
2377 ret = ath10k_pci_cold_reset(ar);
2378 if (ret) {
2379 ath10k_warn(ar, "failed to cold reset: %d\n", ret);
2380 return ret;
2381 }
2382
2383 ret = ath10k_pci_wait_for_target_init(ar);
2384 if (ret) {
2385 ath10k_warn(ar, "failed to wait for target after cold reset: %d\n",
2386 ret);
2387 return ret;
2388 }
2389
2390 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot qca99x0 chip reset complete (cold)\n");
2391
2392 return 0;
2393}
2394
Michal Kaziord63955b2015-01-24 12:14:49 +02002395static int ath10k_pci_chip_reset(struct ath10k *ar)
2396{
2397 if (QCA_REV_988X(ar))
2398 return ath10k_pci_qca988x_chip_reset(ar);
2399 else if (QCA_REV_6174(ar))
2400 return ath10k_pci_qca6174_chip_reset(ar);
Bartosz Markowskia226b512015-10-28 15:09:53 +01002401 else if (QCA_REV_9377(ar))
2402 return ath10k_pci_qca6174_chip_reset(ar);
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05302403 else if (QCA_REV_99X0(ar))
2404 return ath10k_pci_qca99x0_chip_reset(ar);
Michal Kaziord63955b2015-01-24 12:14:49 +02002405 else
2406 return -ENOTSUPP;
2407}
2408
Michal Kazior0bc14d02014-10-28 10:32:07 +01002409static int ath10k_pci_hif_power_up(struct ath10k *ar)
Michal Kazior8c5c5362013-07-16 09:38:50 +02002410{
Janusz Dziedzic76d870e2015-05-18 09:38:16 +00002411 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02002412 int ret;
2413
Michal Kazior0bc14d02014-10-28 10:32:07 +01002414 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif power up\n");
2415
Janusz Dziedzic76d870e2015-05-18 09:38:16 +00002416 pcie_capability_read_word(ar_pci->pdev, PCI_EXP_LNKCTL,
2417 &ar_pci->link_ctl);
2418 pcie_capability_write_word(ar_pci->pdev, PCI_EXP_LNKCTL,
2419 ar_pci->link_ctl & ~PCI_EXP_LNKCTL_ASPMC);
2420
Michal Kazior8c5c5362013-07-16 09:38:50 +02002421 /*
2422 * Bring the target up cleanly.
2423 *
2424 * The target may be in an undefined state with an AUX-powered Target
2425 * and a Host in WoW mode. If the Host crashes, loses power, or is
2426 * restarted (without unloading the driver) then the Target is left
2427 * (aux) powered and running. On a subsequent driver load, the Target
2428 * is in an unexpected state. We try to catch that here in order to
2429 * reset the Target and retry the probe.
2430 */
Michal Kazior0bc14d02014-10-28 10:32:07 +01002431 ret = ath10k_pci_chip_reset(ar);
Michal Kazior5b2589f2013-11-08 08:01:30 +01002432 if (ret) {
Michal Kaziora2fa8802015-01-12 15:29:37 +01002433 if (ath10k_pci_has_fw_crashed(ar)) {
2434 ath10k_warn(ar, "firmware crashed during chip reset\n");
2435 ath10k_pci_fw_crashed_clear(ar);
2436 ath10k_pci_fw_crashed_dump(ar);
2437 }
2438
Michal Kazior0bc14d02014-10-28 10:32:07 +01002439 ath10k_err(ar, "failed to reset chip: %d\n", ret);
Bartosz Markowski707b1bbd2014-10-31 09:03:43 +01002440 goto err_sleep;
Michal Kazior5b2589f2013-11-08 08:01:30 +01002441 }
Michal Kazior8c5c5362013-07-16 09:38:50 +02002442
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002443 ret = ath10k_pci_init_pipes(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02002444 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002445 ath10k_err(ar, "failed to initialize CE: %d\n", ret);
Bartosz Markowski707b1bbd2014-10-31 09:03:43 +01002446 goto err_sleep;
Michal Kaziorab977bd2013-11-25 14:06:26 +01002447 }
2448
Michal Kazior98563d52013-11-08 08:01:33 +01002449 ret = ath10k_pci_init_config(ar);
2450 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002451 ath10k_err(ar, "failed to setup init config: %d\n", ret);
Michal Kazior5c771e72014-08-22 14:23:34 +02002452 goto err_ce;
Michal Kazior98563d52013-11-08 08:01:33 +01002453 }
Michal Kazior8c5c5362013-07-16 09:38:50 +02002454
2455 ret = ath10k_pci_wake_target_cpu(ar);
2456 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002457 ath10k_err(ar, "could not wake up target CPU: %d\n", ret);
Michal Kazior5c771e72014-08-22 14:23:34 +02002458 goto err_ce;
Michal Kazior8c5c5362013-07-16 09:38:50 +02002459 }
2460
2461 return 0;
2462
2463err_ce:
2464 ath10k_pci_ce_deinit(ar);
Michal Kazior0bc14d02014-10-28 10:32:07 +01002465
Bartosz Markowski707b1bbd2014-10-31 09:03:43 +01002466err_sleep:
Michal Kazior8c5c5362013-07-16 09:38:50 +02002467 return ret;
2468}
2469
Raja Manif52f5172016-01-27 15:24:22 +05302470void ath10k_pci_hif_power_down(struct ath10k *ar)
Michal Kazior8c5c5362013-07-16 09:38:50 +02002471{
Michal Kazior7aa7a722014-08-25 12:09:38 +02002472 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif power down\n");
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02002473
Michal Kaziorc011b282014-10-28 10:32:08 +01002474 /* Currently hif_power_up performs effectively a reset and hif_stop
2475 * resets the chip as well so there's no point in resetting here.
2476 */
Michal Kazior8c5c5362013-07-16 09:38:50 +02002477}
2478
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002479#ifdef CONFIG_PM
2480
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002481static int ath10k_pci_hif_suspend(struct ath10k *ar)
2482{
Michal Kazior77258d42015-05-18 09:38:18 +00002483 /* The grace timer can still be counting down and ar->ps_awake be true.
2484 * It is known that the device may be asleep after resuming regardless
2485 * of the SoC powersave state before suspending. Hence make sure the
2486 * device is asleep before proceeding.
2487 */
2488 ath10k_pci_sleep_sync(ar);
Michal Kazior320e14b2015-03-02 13:22:13 +01002489
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002490 return 0;
2491}
2492
2493static int ath10k_pci_hif_resume(struct ath10k *ar)
2494{
2495 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2496 struct pci_dev *pdev = ar_pci->pdev;
2497 u32 val;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03002498 int ret = 0;
2499
Rajkumar Manoharand9d6a5a2015-12-16 16:52:19 +02002500 ret = ath10k_pci_force_wake(ar);
2501 if (ret) {
2502 ath10k_err(ar, "failed to wake up target: %d\n", ret);
2503 return ret;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03002504 }
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002505
Michal Kazior9ff4be92015-03-02 13:22:14 +01002506 /* Suspend/Resume resets the PCI configuration space, so we have to
2507 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
2508 * from interfering with C3 CPU state. pci_restore_state won't help
2509 * here since it only restores the first 64 bytes pci config header.
2510 */
2511 pci_read_config_dword(pdev, 0x40, &val);
2512 if ((val & 0x0000ff00) != 0)
2513 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002514
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03002515 return ret;
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002516}
2517#endif
2518
Kalle Valo5e3dd152013-06-12 20:52:10 +03002519static const struct ath10k_hif_ops ath10k_pci_hif_ops = {
Michal Kazior726346f2014-02-27 18:50:04 +02002520 .tx_sg = ath10k_pci_hif_tx_sg,
Kalle Valoeef25402014-09-24 14:16:52 +03002521 .diag_read = ath10k_pci_hif_diag_read,
Yanbo Li9f65ad22014-11-25 12:24:48 +02002522 .diag_write = ath10k_pci_diag_write_mem,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002523 .exchange_bmi_msg = ath10k_pci_hif_exchange_bmi_msg,
2524 .start = ath10k_pci_hif_start,
2525 .stop = ath10k_pci_hif_stop,
2526 .map_service_to_pipe = ath10k_pci_hif_map_service_to_pipe,
2527 .get_default_pipe = ath10k_pci_hif_get_default_pipe,
2528 .send_complete_check = ath10k_pci_hif_send_complete_check,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002529 .get_free_queue_number = ath10k_pci_hif_get_free_queue_number,
Michal Kazior8c5c5362013-07-16 09:38:50 +02002530 .power_up = ath10k_pci_hif_power_up,
2531 .power_down = ath10k_pci_hif_power_down,
Yanbo Li077a3802014-11-25 12:24:33 +02002532 .read32 = ath10k_pci_read32,
2533 .write32 = ath10k_pci_write32,
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002534#ifdef CONFIG_PM
2535 .suspend = ath10k_pci_hif_suspend,
2536 .resume = ath10k_pci_hif_resume,
2537#endif
Kalle Valo5e3dd152013-06-12 20:52:10 +03002538};
2539
2540static void ath10k_pci_ce_tasklet(unsigned long ptr)
2541{
Michal Kazior87263e52013-08-27 13:08:01 +02002542 struct ath10k_pci_pipe *pipe = (struct ath10k_pci_pipe *)ptr;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002543 struct ath10k_pci *ar_pci = pipe->ar_pci;
2544
2545 ath10k_ce_per_engine_service(ar_pci->ar, pipe->pipe_num);
2546}
2547
2548static void ath10k_msi_err_tasklet(unsigned long data)
2549{
2550 struct ath10k *ar = (struct ath10k *)data;
2551
Michal Kazior5c771e72014-08-22 14:23:34 +02002552 if (!ath10k_pci_has_fw_crashed(ar)) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002553 ath10k_warn(ar, "received unsolicited fw crash interrupt\n");
Michal Kazior5c771e72014-08-22 14:23:34 +02002554 return;
2555 }
2556
Michal Kazior6f3b7ff2015-01-24 12:14:52 +02002557 ath10k_pci_irq_disable(ar);
Michal Kazior5c771e72014-08-22 14:23:34 +02002558 ath10k_pci_fw_crashed_clear(ar);
2559 ath10k_pci_fw_crashed_dump(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002560}
2561
2562/*
2563 * Handler for a per-engine interrupt on a PARTICULAR CE.
2564 * This is used in cases where each CE has a private MSI interrupt.
2565 */
2566static irqreturn_t ath10k_pci_per_engine_handler(int irq, void *arg)
2567{
2568 struct ath10k *ar = arg;
2569 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2570 int ce_id = irq - ar_pci->pdev->irq - MSI_ASSIGN_CE_INITIAL;
2571
Dan Carpentere5742672013-06-18 10:28:46 +03002572 if (ce_id < 0 || ce_id >= ARRAY_SIZE(ar_pci->pipe_info)) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002573 ath10k_warn(ar, "unexpected/invalid irq %d ce_id %d\n", irq,
2574 ce_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002575 return IRQ_HANDLED;
2576 }
2577
2578 /*
2579 * NOTE: We are able to derive ce_id from irq because we
2580 * use a one-to-one mapping for CE's 0..5.
2581 * CE's 6 & 7 do not use interrupts at all.
2582 *
2583 * This mapping must be kept in sync with the mapping
2584 * used by firmware.
2585 */
2586 tasklet_schedule(&ar_pci->pipe_info[ce_id].intr);
2587 return IRQ_HANDLED;
2588}
2589
2590static irqreturn_t ath10k_pci_msi_fw_handler(int irq, void *arg)
2591{
2592 struct ath10k *ar = arg;
2593 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2594
2595 tasklet_schedule(&ar_pci->msi_fw_err);
2596 return IRQ_HANDLED;
2597}
2598
2599/*
2600 * Top-level interrupt handler for all PCI interrupts from a Target.
2601 * When a block of MSI interrupts is allocated, this top-level handler
2602 * is not used; instead, we directly call the correct sub-handler.
2603 */
2604static irqreturn_t ath10k_pci_interrupt_handler(int irq, void *arg)
2605{
2606 struct ath10k *ar = arg;
2607 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03002608 int ret;
2609
Rajkumar Manoharand9d6a5a2015-12-16 16:52:19 +02002610 ret = ath10k_pci_force_wake(ar);
2611 if (ret) {
2612 ath10k_warn(ar, "failed to wake device up on irq: %d\n", ret);
2613 return IRQ_NONE;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03002614 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002615
2616 if (ar_pci->num_msi_intrs == 0) {
Michal Kaziore5398872013-11-25 14:06:20 +01002617 if (!ath10k_pci_irq_pending(ar))
2618 return IRQ_NONE;
2619
Michal Kazior26852182013-11-25 14:06:25 +01002620 ath10k_pci_disable_and_clear_legacy_irq(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002621 }
2622
2623 tasklet_schedule(&ar_pci->intr_tq);
2624
2625 return IRQ_HANDLED;
2626}
2627
2628static void ath10k_pci_tasklet(unsigned long data)
2629{
2630 struct ath10k *ar = (struct ath10k *)data;
2631 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2632
Michal Kazior5c771e72014-08-22 14:23:34 +02002633 if (ath10k_pci_has_fw_crashed(ar)) {
Michal Kazior6f3b7ff2015-01-24 12:14:52 +02002634 ath10k_pci_irq_disable(ar);
Michal Kazior5c771e72014-08-22 14:23:34 +02002635 ath10k_pci_fw_crashed_clear(ar);
2636 ath10k_pci_fw_crashed_dump(ar);
2637 return;
2638 }
2639
Kalle Valo5e3dd152013-06-12 20:52:10 +03002640 ath10k_ce_per_engine_service_any(ar);
2641
Michal Kazior26852182013-11-25 14:06:25 +01002642 /* Re-enable legacy irq that was disabled in the irq handler */
2643 if (ar_pci->num_msi_intrs == 0)
2644 ath10k_pci_enable_legacy_irq(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002645}
2646
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002647static int ath10k_pci_request_irq_msix(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002648{
2649 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002650 int ret, i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002651
2652 ret = request_irq(ar_pci->pdev->irq + MSI_ASSIGN_FW,
2653 ath10k_pci_msi_fw_handler,
2654 IRQF_SHARED, "ath10k_pci", ar);
Michal Kazior591ecdb2013-07-31 10:55:15 +02002655 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002656 ath10k_warn(ar, "failed to request MSI-X fw irq %d: %d\n",
Michal Kazior591ecdb2013-07-31 10:55:15 +02002657 ar_pci->pdev->irq + MSI_ASSIGN_FW, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002658 return ret;
Michal Kazior591ecdb2013-07-31 10:55:15 +02002659 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002660
2661 for (i = MSI_ASSIGN_CE_INITIAL; i <= MSI_ASSIGN_CE_MAX; i++) {
2662 ret = request_irq(ar_pci->pdev->irq + i,
2663 ath10k_pci_per_engine_handler,
2664 IRQF_SHARED, "ath10k_pci", ar);
2665 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002666 ath10k_warn(ar, "failed to request MSI-X ce irq %d: %d\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03002667 ar_pci->pdev->irq + i, ret);
2668
Michal Kazior87b14232013-06-26 08:50:50 +02002669 for (i--; i >= MSI_ASSIGN_CE_INITIAL; i--)
2670 free_irq(ar_pci->pdev->irq + i, ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002671
Michal Kazior87b14232013-06-26 08:50:50 +02002672 free_irq(ar_pci->pdev->irq + MSI_ASSIGN_FW, ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002673 return ret;
2674 }
2675 }
2676
Kalle Valo5e3dd152013-06-12 20:52:10 +03002677 return 0;
2678}
2679
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002680static int ath10k_pci_request_irq_msi(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002681{
2682 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2683 int ret;
2684
2685 ret = request_irq(ar_pci->pdev->irq,
2686 ath10k_pci_interrupt_handler,
2687 IRQF_SHARED, "ath10k_pci", ar);
Kalle Valof3782742013-10-17 11:36:15 +03002688 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002689 ath10k_warn(ar, "failed to request MSI irq %d: %d\n",
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002690 ar_pci->pdev->irq, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002691 return ret;
Kalle Valof3782742013-10-17 11:36:15 +03002692 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002693
Kalle Valo5e3dd152013-06-12 20:52:10 +03002694 return 0;
2695}
2696
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002697static int ath10k_pci_request_irq_legacy(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002698{
2699 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002700 int ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002701
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002702 ret = request_irq(ar_pci->pdev->irq,
2703 ath10k_pci_interrupt_handler,
2704 IRQF_SHARED, "ath10k_pci", ar);
Kalle Valof3782742013-10-17 11:36:15 +03002705 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002706 ath10k_warn(ar, "failed to request legacy irq %d: %d\n",
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002707 ar_pci->pdev->irq, ret);
Kalle Valof3782742013-10-17 11:36:15 +03002708 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002709 }
2710
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002711 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002712}
2713
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002714static int ath10k_pci_request_irq(struct ath10k *ar)
2715{
2716 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2717
2718 switch (ar_pci->num_msi_intrs) {
2719 case 0:
2720 return ath10k_pci_request_irq_legacy(ar);
2721 case 1:
2722 return ath10k_pci_request_irq_msi(ar);
Janusz Dziedzicb8402d82015-09-17 08:17:33 +02002723 default:
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002724 return ath10k_pci_request_irq_msix(ar);
2725 }
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002726}
2727
2728static void ath10k_pci_free_irq(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002729{
2730 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2731 int i;
2732
2733 /* There's at least one interrupt irregardless whether its legacy INTR
2734 * or MSI or MSI-X */
2735 for (i = 0; i < max(1, ar_pci->num_msi_intrs); i++)
2736 free_irq(ar_pci->pdev->irq + i, ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002737}
2738
Raja Manif52f5172016-01-27 15:24:22 +05302739void ath10k_pci_init_irq_tasklets(struct ath10k *ar)
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002740{
2741 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2742 int i;
2743
2744 tasklet_init(&ar_pci->intr_tq, ath10k_pci_tasklet, (unsigned long)ar);
2745 tasklet_init(&ar_pci->msi_fw_err, ath10k_msi_err_tasklet,
2746 (unsigned long)ar);
2747
2748 for (i = 0; i < CE_COUNT; i++) {
2749 ar_pci->pipe_info[i].ar_pci = ar_pci;
2750 tasklet_init(&ar_pci->pipe_info[i].intr, ath10k_pci_ce_tasklet,
2751 (unsigned long)&ar_pci->pipe_info[i]);
2752 }
2753}
2754
2755static int ath10k_pci_init_irq(struct ath10k *ar)
2756{
2757 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2758 int ret;
2759
2760 ath10k_pci_init_irq_tasklets(ar);
2761
Michal Kazior403d6272014-08-22 14:23:31 +02002762 if (ath10k_pci_irq_mode != ATH10K_PCI_IRQ_AUTO)
Michal Kazior7aa7a722014-08-25 12:09:38 +02002763 ath10k_info(ar, "limiting irq mode to: %d\n",
2764 ath10k_pci_irq_mode);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002765
2766 /* Try MSI-X */
Michal Kazior0edf2572014-08-07 11:03:29 +02002767 if (ath10k_pci_irq_mode == ATH10K_PCI_IRQ_AUTO) {
Janusz Dziedzicb8402d82015-09-17 08:17:33 +02002768 ar_pci->num_msi_intrs = MSI_ASSIGN_CE_MAX + 1;
Alexander Gordeev5ad68672014-02-13 17:50:02 +02002769 ret = pci_enable_msi_range(ar_pci->pdev, ar_pci->num_msi_intrs,
Kalle Valo5b07e072014-09-14 12:50:06 +03002770 ar_pci->num_msi_intrs);
Alexander Gordeev5ad68672014-02-13 17:50:02 +02002771 if (ret > 0)
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002772 return 0;
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002773
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002774 /* fall-through */
2775 }
2776
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002777 /* Try MSI */
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002778 if (ath10k_pci_irq_mode != ATH10K_PCI_IRQ_LEGACY) {
2779 ar_pci->num_msi_intrs = 1;
2780 ret = pci_enable_msi(ar_pci->pdev);
2781 if (ret == 0)
2782 return 0;
2783
2784 /* fall-through */
2785 }
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002786
2787 /* Try legacy irq
2788 *
2789 * A potential race occurs here: The CORE_BASE write
2790 * depends on target correctly decoding AXI address but
2791 * host won't know when target writes BAR to CORE_CTRL.
2792 * This write might get lost if target has NOT written BAR.
2793 * For now, fix the race by repeating the write in below
2794 * synchronization checking. */
2795 ar_pci->num_msi_intrs = 0;
2796
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002797 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
2798 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002799
2800 return 0;
2801}
2802
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002803static void ath10k_pci_deinit_irq_legacy(struct ath10k *ar)
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002804{
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002805 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
2806 0);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002807}
2808
2809static int ath10k_pci_deinit_irq(struct ath10k *ar)
2810{
2811 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2812
2813 switch (ar_pci->num_msi_intrs) {
2814 case 0:
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002815 ath10k_pci_deinit_irq_legacy(ar);
Janusz Dziedzicb8402d82015-09-17 08:17:33 +02002816 break;
Alexander Gordeevbb8b6212014-02-13 17:50:01 +02002817 default:
2818 pci_disable_msi(ar_pci->pdev);
Janusz Dziedzicb8402d82015-09-17 08:17:33 +02002819 break;
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002820 }
2821
Janusz Dziedzicb8402d82015-09-17 08:17:33 +02002822 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002823}
2824
Raja Manif52f5172016-01-27 15:24:22 +05302825int ath10k_pci_wait_for_target_init(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002826{
2827 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo0399eca2014-03-28 09:32:21 +02002828 unsigned long timeout;
Kalle Valo0399eca2014-03-28 09:32:21 +02002829 u32 val;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002830
Michal Kazior7aa7a722014-08-25 12:09:38 +02002831 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot waiting target to initialise\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002832
Kalle Valo0399eca2014-03-28 09:32:21 +02002833 timeout = jiffies + msecs_to_jiffies(ATH10K_PCI_TARGET_WAIT);
2834
2835 do {
2836 val = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
2837
Michal Kazior7aa7a722014-08-25 12:09:38 +02002838 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot target indicator %x\n",
2839 val);
Kalle Valo50f87a62014-03-28 09:32:52 +02002840
Kalle Valo0399eca2014-03-28 09:32:21 +02002841 /* target should never return this */
2842 if (val == 0xffffffff)
2843 continue;
2844
Michal Kazior7710cd22014-04-23 19:30:04 +03002845 /* the device has crashed so don't bother trying anymore */
2846 if (val & FW_IND_EVENT_PENDING)
2847 break;
2848
Kalle Valo0399eca2014-03-28 09:32:21 +02002849 if (val & FW_IND_INITIALIZED)
2850 break;
2851
Kalle Valo5e3dd152013-06-12 20:52:10 +03002852 if (ar_pci->num_msi_intrs == 0)
2853 /* Fix potential race by repeating CORE_BASE writes */
Michal Kaziora4282492014-10-20 14:14:37 +02002854 ath10k_pci_enable_legacy_irq(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002855
Kalle Valo0399eca2014-03-28 09:32:21 +02002856 mdelay(10);
2857 } while (time_before(jiffies, timeout));
2858
Michal Kaziora4282492014-10-20 14:14:37 +02002859 ath10k_pci_disable_and_clear_legacy_irq(ar);
Michal Kazior7c0f0e32014-10-20 14:14:38 +02002860 ath10k_pci_irq_msi_fw_mask(ar);
Michal Kaziora4282492014-10-20 14:14:37 +02002861
Michal Kazior6a4f6e12014-04-23 19:30:03 +03002862 if (val == 0xffffffff) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002863 ath10k_err(ar, "failed to read device register, device is gone\n");
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002864 return -EIO;
Michal Kazior6a4f6e12014-04-23 19:30:03 +03002865 }
2866
Michal Kazior7710cd22014-04-23 19:30:04 +03002867 if (val & FW_IND_EVENT_PENDING) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002868 ath10k_warn(ar, "device has crashed during init\n");
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002869 return -ECOMM;
Michal Kazior7710cd22014-04-23 19:30:04 +03002870 }
2871
Michal Kazior6a4f6e12014-04-23 19:30:03 +03002872 if (!(val & FW_IND_INITIALIZED)) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002873 ath10k_err(ar, "failed to receive initialized event from target: %08x\n",
Kalle Valo0399eca2014-03-28 09:32:21 +02002874 val);
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002875 return -ETIMEDOUT;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002876 }
2877
Michal Kazior7aa7a722014-08-25 12:09:38 +02002878 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot target initialised\n");
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002879 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002880}
2881
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002882static int ath10k_pci_cold_reset(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002883{
Kalle Valo5e3dd152013-06-12 20:52:10 +03002884 u32 val;
2885
Michal Kazior7aa7a722014-08-25 12:09:38 +02002886 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot cold reset\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002887
Ben Greearf51dbe72014-09-29 14:41:46 +03002888 spin_lock_bh(&ar->data_lock);
2889
2890 ar->stats.fw_cold_reset_counter++;
2891
2892 spin_unlock_bh(&ar->data_lock);
2893
Kalle Valo5e3dd152013-06-12 20:52:10 +03002894 /* Put Target, including PCIe, into RESET. */
Kalle Valoe479ed42013-09-01 10:01:53 +03002895 val = ath10k_pci_reg_read32(ar, SOC_GLOBAL_RESET_ADDRESS);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002896 val |= 1;
Kalle Valoe479ed42013-09-01 10:01:53 +03002897 ath10k_pci_reg_write32(ar, SOC_GLOBAL_RESET_ADDRESS, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002898
Vasanthakumar Thiagarajanacd19582015-07-10 14:31:20 +05302899 /* After writing into SOC_GLOBAL_RESET to put device into
2900 * reset and pulling out of reset pcie may not be stable
2901 * for any immediate pcie register access and cause bus error,
2902 * add delay before any pcie access request to fix this issue.
2903 */
2904 msleep(20);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002905
2906 /* Pull Target, including PCIe, out of RESET. */
2907 val &= ~1;
Kalle Valoe479ed42013-09-01 10:01:53 +03002908 ath10k_pci_reg_write32(ar, SOC_GLOBAL_RESET_ADDRESS, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002909
Vasanthakumar Thiagarajanacd19582015-07-10 14:31:20 +05302910 msleep(20);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002911
Michal Kazior7aa7a722014-08-25 12:09:38 +02002912 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot cold reset complete\n");
Kalle Valo50f87a62014-03-28 09:32:52 +02002913
Michal Kazior5b2589f2013-11-08 08:01:30 +01002914 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002915}
2916
Michal Kazior2986e3e2014-08-07 11:03:30 +02002917static int ath10k_pci_claim(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002918{
Michal Kazior2986e3e2014-08-07 11:03:30 +02002919 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2920 struct pci_dev *pdev = ar_pci->pdev;
Michal Kazior2986e3e2014-08-07 11:03:30 +02002921 int ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002922
2923 pci_set_drvdata(pdev, ar);
2924
Kalle Valo5e3dd152013-06-12 20:52:10 +03002925 ret = pci_enable_device(pdev);
2926 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002927 ath10k_err(ar, "failed to enable pci device: %d\n", ret);
Michal Kazior2986e3e2014-08-07 11:03:30 +02002928 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002929 }
2930
Kalle Valo5e3dd152013-06-12 20:52:10 +03002931 ret = pci_request_region(pdev, BAR_NUM, "ath");
2932 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002933 ath10k_err(ar, "failed to request region BAR%d: %d\n", BAR_NUM,
Michal Kazior2986e3e2014-08-07 11:03:30 +02002934 ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002935 goto err_device;
2936 }
2937
Michal Kazior2986e3e2014-08-07 11:03:30 +02002938 /* Target expects 32 bit DMA. Enforce it. */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002939 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
2940 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002941 ath10k_err(ar, "failed to set dma mask to 32-bit: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002942 goto err_region;
2943 }
2944
2945 ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
2946 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002947 ath10k_err(ar, "failed to set consistent dma mask to 32-bit: %d\n",
Michal Kazior2986e3e2014-08-07 11:03:30 +02002948 ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002949 goto err_region;
2950 }
2951
Kalle Valo5e3dd152013-06-12 20:52:10 +03002952 pci_set_master(pdev);
2953
Kalle Valo5e3dd152013-06-12 20:52:10 +03002954 /* Arrange for access to Target SoC registers. */
Michal Kazioraeae5b42015-06-15 14:46:42 +03002955 ar_pci->mem_len = pci_resource_len(pdev, BAR_NUM);
Michal Kazior2986e3e2014-08-07 11:03:30 +02002956 ar_pci->mem = pci_iomap(pdev, BAR_NUM, 0);
2957 if (!ar_pci->mem) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002958 ath10k_err(ar, "failed to iomap BAR%d\n", BAR_NUM);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002959 ret = -EIO;
2960 goto err_master;
2961 }
2962
Michal Kazior7aa7a722014-08-25 12:09:38 +02002963 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot pci_mem 0x%p\n", ar_pci->mem);
Michal Kazior2986e3e2014-08-07 11:03:30 +02002964 return 0;
2965
2966err_master:
2967 pci_clear_master(pdev);
2968
2969err_region:
2970 pci_release_region(pdev, BAR_NUM);
2971
2972err_device:
2973 pci_disable_device(pdev);
2974
2975 return ret;
2976}
2977
2978static void ath10k_pci_release(struct ath10k *ar)
2979{
2980 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2981 struct pci_dev *pdev = ar_pci->pdev;
2982
2983 pci_iounmap(pdev, ar_pci->mem);
2984 pci_release_region(pdev, BAR_NUM);
2985 pci_clear_master(pdev);
2986 pci_disable_device(pdev);
2987}
2988
Michal Kazior7505f7c2014-12-02 10:55:54 +02002989static bool ath10k_pci_chip_is_supported(u32 dev_id, u32 chip_id)
2990{
2991 const struct ath10k_pci_supp_chip *supp_chip;
2992 int i;
2993 u32 rev_id = MS(chip_id, SOC_CHIP_ID_REV);
2994
2995 for (i = 0; i < ARRAY_SIZE(ath10k_pci_supp_chips); i++) {
2996 supp_chip = &ath10k_pci_supp_chips[i];
2997
2998 if (supp_chip->dev_id == dev_id &&
2999 supp_chip->rev_id == rev_id)
3000 return true;
3001 }
3002
3003 return false;
3004}
3005
Raja Mani90188f82016-01-27 15:24:24 +05303006int ath10k_pci_setup_resource(struct ath10k *ar)
3007{
3008 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
3009 int ret;
3010
3011 spin_lock_init(&ar_pci->ce_lock);
3012 spin_lock_init(&ar_pci->ps_lock);
3013
3014 setup_timer(&ar_pci->rx_post_retry, ath10k_pci_rx_replenish_retry,
3015 (unsigned long)ar);
3016
3017 if (QCA_REV_6174(ar))
3018 ath10k_pci_override_ce_config(ar);
3019
3020 ret = ath10k_pci_alloc_pipes(ar);
3021 if (ret) {
3022 ath10k_err(ar, "failed to allocate copy engine pipes: %d\n",
3023 ret);
3024 return ret;
3025 }
3026
3027 return 0;
3028}
3029
3030void ath10k_pci_release_resource(struct ath10k *ar)
3031{
3032 ath10k_pci_kill_tasklet(ar);
3033 ath10k_pci_ce_deinit(ar);
3034 ath10k_pci_free_pipes(ar);
3035}
3036
Raja Mani4ddb3292016-01-27 15:24:23 +05303037static const struct ath10k_bus_ops ath10k_pci_bus_ops = {
3038 .read32 = ath10k_bus_pci_read32,
3039 .write32 = ath10k_bus_pci_write32,
3040 .get_num_banks = ath10k_pci_get_num_banks,
3041};
3042
Kalle Valo5e3dd152013-06-12 20:52:10 +03003043static int ath10k_pci_probe(struct pci_dev *pdev,
3044 const struct pci_device_id *pci_dev)
3045{
Kalle Valo5e3dd152013-06-12 20:52:10 +03003046 int ret = 0;
3047 struct ath10k *ar;
3048 struct ath10k_pci *ar_pci;
Michal Kaziord63955b2015-01-24 12:14:49 +02003049 enum ath10k_hw_rev hw_rev;
Michal Kazior2986e3e2014-08-07 11:03:30 +02003050 u32 chip_id;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003051 bool pci_ps;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003052
Michal Kaziord63955b2015-01-24 12:14:49 +02003053 switch (pci_dev->device) {
3054 case QCA988X_2_0_DEVICE_ID:
3055 hw_rev = ATH10K_HW_QCA988X;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003056 pci_ps = false;
Michal Kaziord63955b2015-01-24 12:14:49 +02003057 break;
Michal Kazior36582e52015-08-13 14:32:26 +02003058 case QCA6164_2_1_DEVICE_ID:
Michal Kaziord63955b2015-01-24 12:14:49 +02003059 case QCA6174_2_1_DEVICE_ID:
3060 hw_rev = ATH10K_HW_QCA6174;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003061 pci_ps = true;
Michal Kaziord63955b2015-01-24 12:14:49 +02003062 break;
Vasanthakumar Thiagarajan8bd47022015-06-18 12:31:03 +05303063 case QCA99X0_2_0_DEVICE_ID:
3064 hw_rev = ATH10K_HW_QCA99X0;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003065 pci_ps = false;
Vasanthakumar Thiagarajan8bd47022015-06-18 12:31:03 +05303066 break;
Bartosz Markowskia226b512015-10-28 15:09:53 +01003067 case QCA9377_1_0_DEVICE_ID:
3068 hw_rev = ATH10K_HW_QCA9377;
3069 pci_ps = true;
3070 break;
Michal Kaziord63955b2015-01-24 12:14:49 +02003071 default:
3072 WARN_ON(1);
3073 return -ENOTSUPP;
3074 }
3075
3076 ar = ath10k_core_create(sizeof(*ar_pci), &pdev->dev, ATH10K_BUS_PCI,
3077 hw_rev, &ath10k_pci_hif_ops);
Michal Kaziore7b54192014-08-07 11:03:27 +02003078 if (!ar) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003079 dev_err(&pdev->dev, "failed to allocate core\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03003080 return -ENOMEM;
Michal Kaziore7b54192014-08-07 11:03:27 +02003081 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03003082
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +03003083 ath10k_dbg(ar, ATH10K_DBG_BOOT, "pci probe %04x:%04x %04x:%04x\n",
3084 pdev->vendor, pdev->device,
3085 pdev->subsystem_vendor, pdev->subsystem_device);
Michal Kazior7aa7a722014-08-25 12:09:38 +02003086
Michal Kaziore7b54192014-08-07 11:03:27 +02003087 ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003088 ar_pci->pdev = pdev;
3089 ar_pci->dev = &pdev->dev;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003090 ar_pci->ar = ar;
Michal Kazior36582e52015-08-13 14:32:26 +02003091 ar->dev_id = pci_dev->device;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003092 ar_pci->pci_ps = pci_ps;
Raja Mani4ddb3292016-01-27 15:24:23 +05303093 ar_pci->bus_ops = &ath10k_pci_bus_ops;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003094
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +03003095 ar->id.vendor = pdev->vendor;
3096 ar->id.device = pdev->device;
3097 ar->id.subsystem_vendor = pdev->subsystem_vendor;
3098 ar->id.subsystem_device = pdev->subsystem_device;
Michal Kaziorde57e2c2015-04-17 09:19:17 +00003099
Michal Kazior77258d42015-05-18 09:38:18 +00003100 setup_timer(&ar_pci->ps_timer, ath10k_pci_ps_timer,
3101 (unsigned long)ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003102
Raja Mani90188f82016-01-27 15:24:24 +05303103 ret = ath10k_pci_setup_resource(ar);
3104 if (ret) {
3105 ath10k_err(ar, "failed to setup resource: %d\n", ret);
3106 goto err_core_destroy;
3107 }
3108
Michal Kazior2986e3e2014-08-07 11:03:30 +02003109 ret = ath10k_pci_claim(ar);
Kalle Valoe01ae682013-09-01 11:22:14 +03003110 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003111 ath10k_err(ar, "failed to claim device: %d\n", ret);
Raja Mani90188f82016-01-27 15:24:24 +05303112 goto err_free_pipes;
Michal Kazior25d0dbc2014-03-28 10:02:38 +02003113 }
3114
Rajkumar Manoharand9d6a5a2015-12-16 16:52:19 +02003115 ret = ath10k_pci_force_wake(ar);
3116 if (ret) {
3117 ath10k_warn(ar, "failed to wake up device : %d\n", ret);
Raja Mani90188f82016-01-27 15:24:24 +05303118 goto err_sleep;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003119 }
3120
Rajkumar Manoharanaa538ac2015-12-16 16:52:19 +02003121 ath10k_pci_ce_deinit(ar);
3122 ath10k_pci_irq_disable(ar);
3123
Michal Kazior403d6272014-08-22 14:23:31 +02003124 ret = ath10k_pci_init_irq(ar);
3125 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003126 ath10k_err(ar, "failed to init irqs: %d\n", ret);
Raja Mani90188f82016-01-27 15:24:24 +05303127 goto err_sleep;
Michal Kazior403d6272014-08-22 14:23:31 +02003128 }
3129
Michal Kazior7aa7a722014-08-25 12:09:38 +02003130 ath10k_info(ar, "pci irq %s interrupts %d irq_mode %d reset_mode %d\n",
Michal Kazior403d6272014-08-22 14:23:31 +02003131 ath10k_pci_get_irq_method(ar), ar_pci->num_msi_intrs,
3132 ath10k_pci_irq_mode, ath10k_pci_reset_mode);
3133
Michal Kazior5c771e72014-08-22 14:23:34 +02003134 ret = ath10k_pci_request_irq(ar);
Michal Kazior403d6272014-08-22 14:23:31 +02003135 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003136 ath10k_warn(ar, "failed to request irqs: %d\n", ret);
Michal Kazior403d6272014-08-22 14:23:31 +02003137 goto err_deinit_irq;
3138 }
3139
Michal Kazior1a7fecb2015-01-24 12:14:48 +02003140 ret = ath10k_pci_chip_reset(ar);
3141 if (ret) {
3142 ath10k_err(ar, "failed to reset chip: %d\n", ret);
3143 goto err_free_irq;
3144 }
3145
3146 chip_id = ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS);
3147 if (chip_id == 0xffffffff) {
3148 ath10k_err(ar, "failed to get chip id\n");
3149 goto err_free_irq;
3150 }
3151
3152 if (!ath10k_pci_chip_is_supported(pdev->device, chip_id)) {
3153 ath10k_err(ar, "device %04x with chip_id %08x isn't supported\n",
3154 pdev->device, chip_id);
Michal Kaziord9585a92015-04-10 13:01:27 +00003155 goto err_free_irq;
Michal Kazior1a7fecb2015-01-24 12:14:48 +02003156 }
3157
Kalle Valoe01ae682013-09-01 11:22:14 +03003158 ret = ath10k_core_register(ar, chip_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003159 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003160 ath10k_err(ar, "failed to register driver core: %d\n", ret);
Michal Kazior5c771e72014-08-22 14:23:34 +02003161 goto err_free_irq;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003162 }
3163
3164 return 0;
3165
Michal Kazior5c771e72014-08-22 14:23:34 +02003166err_free_irq:
3167 ath10k_pci_free_irq(ar);
Michal Kazior21396272014-08-28 10:24:40 +02003168 ath10k_pci_kill_tasklet(ar);
Michal Kazior5c771e72014-08-22 14:23:34 +02003169
Michal Kazior403d6272014-08-22 14:23:31 +02003170err_deinit_irq:
3171 ath10k_pci_deinit_irq(ar);
3172
Michal Kaziorc0c378f2014-08-07 11:03:28 +02003173err_sleep:
Michal Kazior0bcbbe62015-05-29 07:35:24 +02003174 ath10k_pci_sleep_sync(ar);
Michal Kazior2986e3e2014-08-07 11:03:30 +02003175 ath10k_pci_release(ar);
3176
Raja Mani90188f82016-01-27 15:24:24 +05303177err_free_pipes:
3178 ath10k_pci_free_pipes(ar);
3179
Michal Kaziore7b54192014-08-07 11:03:27 +02003180err_core_destroy:
Kalle Valo5e3dd152013-06-12 20:52:10 +03003181 ath10k_core_destroy(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003182
3183 return ret;
3184}
3185
3186static void ath10k_pci_remove(struct pci_dev *pdev)
3187{
3188 struct ath10k *ar = pci_get_drvdata(pdev);
3189 struct ath10k_pci *ar_pci;
3190
Michal Kazior7aa7a722014-08-25 12:09:38 +02003191 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci remove\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03003192
3193 if (!ar)
3194 return;
3195
3196 ar_pci = ath10k_pci_priv(ar);
3197
3198 if (!ar_pci)
3199 return;
3200
Kalle Valo5e3dd152013-06-12 20:52:10 +03003201 ath10k_core_unregister(ar);
Michal Kazior5c771e72014-08-22 14:23:34 +02003202 ath10k_pci_free_irq(ar);
Michal Kazior403d6272014-08-22 14:23:31 +02003203 ath10k_pci_deinit_irq(ar);
Raja Mani90188f82016-01-27 15:24:24 +05303204 ath10k_pci_release_resource(ar);
Michal Kazior77258d42015-05-18 09:38:18 +00003205 ath10k_pci_sleep_sync(ar);
Michal Kazior2986e3e2014-08-07 11:03:30 +02003206 ath10k_pci_release(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003207 ath10k_core_destroy(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003208}
3209
Kalle Valo5e3dd152013-06-12 20:52:10 +03003210MODULE_DEVICE_TABLE(pci, ath10k_pci_id_table);
3211
3212static struct pci_driver ath10k_pci_driver = {
3213 .name = "ath10k_pci",
3214 .id_table = ath10k_pci_id_table,
3215 .probe = ath10k_pci_probe,
3216 .remove = ath10k_pci_remove,
Kalle Valo5e3dd152013-06-12 20:52:10 +03003217};
3218
3219static int __init ath10k_pci_init(void)
3220{
3221 int ret;
3222
3223 ret = pci_register_driver(&ath10k_pci_driver);
3224 if (ret)
Michal Kazior7aa7a722014-08-25 12:09:38 +02003225 printk(KERN_ERR "failed to register ath10k pci driver: %d\n",
3226 ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003227
Raja Mani0b523ce2016-01-27 15:24:25 +05303228 ret = ath10k_ahb_init();
3229 if (ret)
3230 printk(KERN_ERR "ahb init failed: %d\n", ret);
3231
Kalle Valo5e3dd152013-06-12 20:52:10 +03003232 return ret;
3233}
3234module_init(ath10k_pci_init);
3235
3236static void __exit ath10k_pci_exit(void)
3237{
3238 pci_unregister_driver(&ath10k_pci_driver);
Raja Mani0b523ce2016-01-27 15:24:25 +05303239 ath10k_ahb_exit();
Kalle Valo5e3dd152013-06-12 20:52:10 +03003240}
3241
3242module_exit(ath10k_pci_exit);
3243
3244MODULE_AUTHOR("Qualcomm Atheros");
3245MODULE_DESCRIPTION("Driver support for Atheros QCA988X PCIe devices");
3246MODULE_LICENSE("Dual BSD/GPL");
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003247
3248/* QCA988x 2.0 firmware files */
Bartosz Markowski8026cae2014-10-06 14:16:41 +02003249MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" QCA988X_HW_2_0_FW_FILE);
3250MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" ATH10K_FW_API2_FILE);
3251MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" ATH10K_FW_API3_FILE);
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003252MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" ATH10K_FW_API4_FILE);
Kalle Valo53513c32015-03-25 13:12:42 +02003253MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" ATH10K_FW_API5_FILE);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003254MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" QCA988X_HW_2_0_BOARD_DATA_FILE);
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +03003255MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" ATH10K_BOARD_API2_FILE);
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003256
3257/* QCA6174 2.1 firmware files */
3258MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR "/" ATH10K_FW_API4_FILE);
Michal Kaziore451c1d2015-05-26 13:09:22 +02003259MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR "/" ATH10K_FW_API5_FILE);
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003260MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR "/" QCA6174_HW_2_1_BOARD_DATA_FILE);
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +03003261MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR "/" ATH10K_BOARD_API2_FILE);
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003262
3263/* QCA6174 3.1 firmware files */
3264MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR "/" ATH10K_FW_API4_FILE);
Michal Kaziore451c1d2015-05-26 13:09:22 +02003265MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR "/" ATH10K_FW_API5_FILE);
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003266MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR "/" QCA6174_HW_3_0_BOARD_DATA_FILE);
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +03003267MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR "/" ATH10K_BOARD_API2_FILE);
Bartosz Markowskia226b512015-10-28 15:09:53 +01003268
3269/* QCA9377 1.0 firmware files */
3270MODULE_FIRMWARE(QCA9377_HW_1_0_FW_DIR "/" ATH10K_FW_API5_FILE);
3271MODULE_FIRMWARE(QCA9377_HW_1_0_FW_DIR "/" QCA9377_HW_1_0_BOARD_DATA_FILE);