blob: 9a22c478dd1b1dd28fd5139ede1b7bed4063ec42 [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
Kalle Valo35098462014-03-28 09:32:27 +020036enum ath10k_pci_reset_mode {
37 ATH10K_PCI_RESET_AUTO = 0,
38 ATH10K_PCI_RESET_WARM_ONLY = 1,
39};
40
Michal Kaziorcfe9c452013-11-25 14:06:27 +010041static unsigned int ath10k_pci_irq_mode = ATH10K_PCI_IRQ_AUTO;
Kalle Valo35098462014-03-28 09:32:27 +020042static unsigned int ath10k_pci_reset_mode = ATH10K_PCI_RESET_AUTO;
Michal Kaziorcfe9c452013-11-25 14:06:27 +010043
Michal Kaziorcfe9c452013-11-25 14:06:27 +010044module_param_named(irq_mode, ath10k_pci_irq_mode, uint, 0644);
45MODULE_PARM_DESC(irq_mode, "0: auto, 1: legacy, 2: msi (default: 0)");
46
Kalle Valo35098462014-03-28 09:32:27 +020047module_param_named(reset_mode, ath10k_pci_reset_mode, uint, 0644);
48MODULE_PARM_DESC(reset_mode, "0: auto, 1: warm only (default: 0)");
49
Kalle Valo0399eca2014-03-28 09:32:21 +020050/* how long wait to wait for target to initialise, in ms */
51#define ATH10K_PCI_TARGET_WAIT 3000
Michal Kazior61c95ce2014-05-14 16:56:16 +030052#define ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS 3
Kalle Valo0399eca2014-03-28 09:32:21 +020053
Benoit Taine9baa3c32014-08-08 15:56:03 +020054static const struct pci_device_id ath10k_pci_id_table[] = {
Kalle Valo5e3dd152013-06-12 20:52:10 +030055 { PCI_VDEVICE(ATHEROS, QCA988X_2_0_DEVICE_ID) }, /* PCI-E QCA988X V2 */
Michal Kazior36582e52015-08-13 14:32:26 +020056 { PCI_VDEVICE(ATHEROS, QCA6164_2_1_DEVICE_ID) }, /* PCI-E QCA6164 V2.1 */
Michal Kaziord63955b2015-01-24 12:14:49 +020057 { PCI_VDEVICE(ATHEROS, QCA6174_2_1_DEVICE_ID) }, /* PCI-E QCA6174 V2.1 */
Vasanthakumar Thiagarajan8a055a82015-07-29 11:40:39 +030058 { PCI_VDEVICE(ATHEROS, QCA99X0_2_0_DEVICE_ID) }, /* PCI-E QCA99X0 V2 */
Anilkumar Kollie565c312016-06-30 15:24:00 +030059 { PCI_VDEVICE(ATHEROS, QCA9888_2_0_DEVICE_ID) }, /* PCI-E QCA9888 V2 */
Vasanthakumar Thiagarajan651b4cd2016-05-23 23:12:45 +030060 { PCI_VDEVICE(ATHEROS, QCA9984_1_0_DEVICE_ID) }, /* PCI-E QCA9984 V1 */
Bartosz Markowskia226b512015-10-28 15:09:53 +010061 { PCI_VDEVICE(ATHEROS, QCA9377_1_0_DEVICE_ID) }, /* PCI-E QCA9377 V1 */
Sven Eckelmann6fd3dd72016-06-02 17:59:49 +030062 { PCI_VDEVICE(ATHEROS, QCA9887_1_0_DEVICE_ID) }, /* PCI-E QCA9887 */
Kalle Valo5e3dd152013-06-12 20:52:10 +030063 {0}
64};
65
Michal Kazior7505f7c2014-12-02 10:55:54 +020066static const struct ath10k_pci_supp_chip ath10k_pci_supp_chips[] = {
67 /* QCA988X pre 2.0 chips are not supported because they need some nasty
68 * hacks. ath10k doesn't have them and these devices crash horribly
69 * because of that.
70 */
71 { QCA988X_2_0_DEVICE_ID, QCA988X_HW_2_0_CHIP_ID_REV },
Michal Kazior36582e52015-08-13 14:32:26 +020072
73 { QCA6164_2_1_DEVICE_ID, QCA6174_HW_2_1_CHIP_ID_REV },
74 { QCA6164_2_1_DEVICE_ID, QCA6174_HW_2_2_CHIP_ID_REV },
75 { QCA6164_2_1_DEVICE_ID, QCA6174_HW_3_0_CHIP_ID_REV },
76 { QCA6164_2_1_DEVICE_ID, QCA6174_HW_3_1_CHIP_ID_REV },
77 { QCA6164_2_1_DEVICE_ID, QCA6174_HW_3_2_CHIP_ID_REV },
78
Michal Kaziord63955b2015-01-24 12:14:49 +020079 { QCA6174_2_1_DEVICE_ID, QCA6174_HW_2_1_CHIP_ID_REV },
80 { QCA6174_2_1_DEVICE_ID, QCA6174_HW_2_2_CHIP_ID_REV },
81 { QCA6174_2_1_DEVICE_ID, QCA6174_HW_3_0_CHIP_ID_REV },
82 { QCA6174_2_1_DEVICE_ID, QCA6174_HW_3_1_CHIP_ID_REV },
83 { QCA6174_2_1_DEVICE_ID, QCA6174_HW_3_2_CHIP_ID_REV },
Michal Kazior36582e52015-08-13 14:32:26 +020084
Vasanthakumar Thiagarajan8a055a82015-07-29 11:40:39 +030085 { QCA99X0_2_0_DEVICE_ID, QCA99X0_HW_2_0_CHIP_ID_REV },
Bartosz Markowski034074f2015-11-05 09:50:43 +010086
Vasanthakumar Thiagarajan651b4cd2016-05-23 23:12:45 +030087 { QCA9984_1_0_DEVICE_ID, QCA9984_HW_1_0_CHIP_ID_REV },
88
Anilkumar Kollie565c312016-06-30 15:24:00 +030089 { QCA9888_2_0_DEVICE_ID, QCA9888_HW_2_0_CHIP_ID_REV },
90
Bartosz Markowski034074f2015-11-05 09:50:43 +010091 { QCA9377_1_0_DEVICE_ID, QCA9377_HW_1_0_CHIP_ID_REV },
Bartosz Markowski12551ce2015-11-05 09:50:40 +010092 { QCA9377_1_0_DEVICE_ID, QCA9377_HW_1_1_CHIP_ID_REV },
Vasanthakumar Thiagarajan651b4cd2016-05-23 23:12:45 +030093
Sven Eckelmann6fd3dd72016-06-02 17:59:49 +030094 { QCA9887_1_0_DEVICE_ID, QCA9887_HW_1_0_CHIP_ID_REV },
Michal Kazior7505f7c2014-12-02 10:55:54 +020095};
96
Michal Kazior728f95e2014-08-22 14:33:14 +020097static void ath10k_pci_buffer_cleanup(struct ath10k *ar);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +010098static int ath10k_pci_cold_reset(struct ath10k *ar);
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +053099static int ath10k_pci_safe_chip_reset(struct ath10k *ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +0100100static int ath10k_pci_init_irq(struct ath10k *ar);
101static int ath10k_pci_deinit_irq(struct ath10k *ar);
102static int ath10k_pci_request_irq(struct ath10k *ar);
103static void ath10k_pci_free_irq(struct ath10k *ar);
Michal Kazior85622cd2013-11-25 14:06:22 +0100104static int ath10k_pci_bmi_wait(struct ath10k_ce_pipe *tx_pipe,
105 struct ath10k_ce_pipe *rx_pipe,
106 struct bmi_xfer *xfer);
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +0530107static int ath10k_pci_qca99x0_chip_reset(struct ath10k *ar);
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +0530108static void ath10k_pci_htc_tx_cb(struct ath10k_ce_pipe *ce_state);
Rajkumar Manoharan9d9bdbb2015-10-12 18:27:02 +0530109static void ath10k_pci_htc_rx_cb(struct ath10k_ce_pipe *ce_state);
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530110static void ath10k_pci_htt_tx_cb(struct ath10k_ce_pipe *ce_state);
111static void ath10k_pci_htt_rx_cb(struct ath10k_ce_pipe *ce_state);
Rajkumar Manoharan6419fdb2015-11-11 17:31:26 +0530112static void ath10k_pci_htt_htc_rx_cb(struct ath10k_ce_pipe *ce_state);
Vivek Natarajanafb0bf72015-10-30 14:57:58 +0530113static void ath10k_pci_pktlog_rx_cb(struct ath10k_ce_pipe *ce_state);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300114
Ryan Hsu2727a742015-11-05 18:44:27 -0800115static struct ce_attr host_ce_config_wlan[] = {
Kalle Valo48e9c222013-09-01 10:01:32 +0300116 /* CE0: host->target HTC control and raw streams */
117 {
118 .flags = CE_ATTR_FLAGS,
119 .src_nentries = 16,
120 .src_sz_max = 256,
121 .dest_nentries = 0,
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +0530122 .send_cb = ath10k_pci_htc_tx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300123 },
124
125 /* CE1: target->host HTT + HTC control */
126 {
127 .flags = CE_ATTR_FLAGS,
128 .src_nentries = 0,
Michal Kazior63838642015-02-09 15:04:55 +0100129 .src_sz_max = 2048,
Kalle Valo48e9c222013-09-01 10:01:32 +0300130 .dest_nentries = 512,
Rajkumar Manoharan6419fdb2015-11-11 17:31:26 +0530131 .recv_cb = ath10k_pci_htt_htc_rx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300132 },
133
134 /* CE2: target->host WMI */
135 {
136 .flags = CE_ATTR_FLAGS,
137 .src_nentries = 0,
138 .src_sz_max = 2048,
Rajkumar Manoharan30abb332015-03-04 15:43:44 +0200139 .dest_nentries = 128,
Rajkumar Manoharan9d9bdbb2015-10-12 18:27:02 +0530140 .recv_cb = ath10k_pci_htc_rx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300141 },
142
143 /* CE3: host->target WMI */
144 {
145 .flags = CE_ATTR_FLAGS,
146 .src_nentries = 32,
147 .src_sz_max = 2048,
148 .dest_nentries = 0,
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +0530149 .send_cb = ath10k_pci_htc_tx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300150 },
151
152 /* CE4: host->target HTT */
153 {
154 .flags = CE_ATTR_FLAGS | CE_ATTR_DIS_INTR,
155 .src_nentries = CE_HTT_H2T_MSG_SRC_NENTRIES,
156 .src_sz_max = 256,
157 .dest_nentries = 0,
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530158 .send_cb = ath10k_pci_htt_tx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300159 },
160
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530161 /* CE5: target->host HTT (HIF->HTT) */
Kalle Valo48e9c222013-09-01 10:01:32 +0300162 {
163 .flags = CE_ATTR_FLAGS,
164 .src_nentries = 0,
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530165 .src_sz_max = 512,
166 .dest_nentries = 512,
167 .recv_cb = ath10k_pci_htt_rx_cb,
Kalle Valo48e9c222013-09-01 10:01:32 +0300168 },
169
170 /* CE6: target autonomous hif_memcpy */
171 {
172 .flags = CE_ATTR_FLAGS,
173 .src_nentries = 0,
174 .src_sz_max = 0,
175 .dest_nentries = 0,
176 },
177
178 /* CE7: ce_diag, the Diagnostic Window */
179 {
180 .flags = CE_ATTR_FLAGS,
181 .src_nentries = 2,
182 .src_sz_max = DIAG_TRANSFER_LIMIT,
183 .dest_nentries = 2,
184 },
Vasanthakumar Thiagarajan050af062015-06-18 12:31:04 +0530185
186 /* CE8: target->host pktlog */
187 {
188 .flags = CE_ATTR_FLAGS,
189 .src_nentries = 0,
190 .src_sz_max = 2048,
191 .dest_nentries = 128,
Vivek Natarajanafb0bf72015-10-30 14:57:58 +0530192 .recv_cb = ath10k_pci_pktlog_rx_cb,
Vasanthakumar Thiagarajan050af062015-06-18 12:31:04 +0530193 },
194
195 /* CE9 target autonomous qcache memcpy */
196 {
197 .flags = CE_ATTR_FLAGS,
198 .src_nentries = 0,
199 .src_sz_max = 0,
200 .dest_nentries = 0,
201 },
202
203 /* CE10: target autonomous hif memcpy */
204 {
205 .flags = CE_ATTR_FLAGS,
206 .src_nentries = 0,
207 .src_sz_max = 0,
208 .dest_nentries = 0,
209 },
210
211 /* CE11: target autonomous hif memcpy */
212 {
213 .flags = CE_ATTR_FLAGS,
214 .src_nentries = 0,
215 .src_sz_max = 0,
216 .dest_nentries = 0,
217 },
Kalle Valo5e3dd152013-06-12 20:52:10 +0300218};
219
220/* Target firmware's Copy Engine configuration. */
Ryan Hsu2727a742015-11-05 18:44:27 -0800221static struct ce_pipe_config target_ce_config_wlan[] = {
Kalle Valod88effb2013-09-01 10:01:39 +0300222 /* CE0: host->target HTC control and raw streams */
223 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300224 .pipenum = __cpu_to_le32(0),
225 .pipedir = __cpu_to_le32(PIPEDIR_OUT),
226 .nentries = __cpu_to_le32(32),
227 .nbytes_max = __cpu_to_le32(256),
228 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
229 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300230 },
231
232 /* CE1: target->host HTT + HTC control */
233 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300234 .pipenum = __cpu_to_le32(1),
235 .pipedir = __cpu_to_le32(PIPEDIR_IN),
236 .nentries = __cpu_to_le32(32),
Michal Kazior63838642015-02-09 15:04:55 +0100237 .nbytes_max = __cpu_to_le32(2048),
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300238 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
239 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300240 },
241
242 /* CE2: target->host WMI */
243 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300244 .pipenum = __cpu_to_le32(2),
245 .pipedir = __cpu_to_le32(PIPEDIR_IN),
Rajkumar Manoharan30abb332015-03-04 15:43:44 +0200246 .nentries = __cpu_to_le32(64),
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300247 .nbytes_max = __cpu_to_le32(2048),
248 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
249 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300250 },
251
252 /* CE3: host->target WMI */
253 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300254 .pipenum = __cpu_to_le32(3),
255 .pipedir = __cpu_to_le32(PIPEDIR_OUT),
256 .nentries = __cpu_to_le32(32),
257 .nbytes_max = __cpu_to_le32(2048),
258 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
259 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300260 },
261
262 /* CE4: host->target HTT */
263 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300264 .pipenum = __cpu_to_le32(4),
265 .pipedir = __cpu_to_le32(PIPEDIR_OUT),
266 .nentries = __cpu_to_le32(256),
267 .nbytes_max = __cpu_to_le32(256),
268 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
269 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300270 },
271
Kalle Valo5e3dd152013-06-12 20:52:10 +0300272 /* NB: 50% of src nentries, since tx has 2 frags */
Kalle Valod88effb2013-09-01 10:01:39 +0300273
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530274 /* CE5: target->host HTT (HIF->HTT) */
Kalle Valod88effb2013-09-01 10:01:39 +0300275 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300276 .pipenum = __cpu_to_le32(5),
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530277 .pipedir = __cpu_to_le32(PIPEDIR_IN),
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300278 .nentries = __cpu_to_le32(32),
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530279 .nbytes_max = __cpu_to_le32(512),
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300280 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
281 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300282 },
283
284 /* CE6: Reserved for target autonomous hif_memcpy */
285 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300286 .pipenum = __cpu_to_le32(6),
287 .pipedir = __cpu_to_le32(PIPEDIR_INOUT),
288 .nentries = __cpu_to_le32(32),
289 .nbytes_max = __cpu_to_le32(4096),
290 .flags = __cpu_to_le32(CE_ATTR_FLAGS),
291 .reserved = __cpu_to_le32(0),
Kalle Valod88effb2013-09-01 10:01:39 +0300292 },
293
Kalle Valo5e3dd152013-06-12 20:52:10 +0300294 /* CE7 used only by Host */
Vasanthakumar Thiagarajan050af062015-06-18 12:31:04 +0530295 {
296 .pipenum = __cpu_to_le32(7),
297 .pipedir = __cpu_to_le32(PIPEDIR_INOUT),
298 .nentries = __cpu_to_le32(0),
299 .nbytes_max = __cpu_to_le32(0),
300 .flags = __cpu_to_le32(0),
301 .reserved = __cpu_to_le32(0),
302 },
303
304 /* CE8 target->host packtlog */
305 {
306 .pipenum = __cpu_to_le32(8),
307 .pipedir = __cpu_to_le32(PIPEDIR_IN),
308 .nentries = __cpu_to_le32(64),
309 .nbytes_max = __cpu_to_le32(2048),
310 .flags = __cpu_to_le32(CE_ATTR_FLAGS | CE_ATTR_DIS_INTR),
311 .reserved = __cpu_to_le32(0),
312 },
313
314 /* CE9 target autonomous qcache memcpy */
315 {
316 .pipenum = __cpu_to_le32(9),
317 .pipedir = __cpu_to_le32(PIPEDIR_INOUT),
318 .nentries = __cpu_to_le32(32),
319 .nbytes_max = __cpu_to_le32(2048),
320 .flags = __cpu_to_le32(CE_ATTR_FLAGS | CE_ATTR_DIS_INTR),
321 .reserved = __cpu_to_le32(0),
322 },
323
324 /* It not necessary to send target wlan configuration for CE10 & CE11
325 * as these CEs are not actively used in target.
326 */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300327};
328
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300329/*
330 * Map from service/endpoint to Copy Engine.
331 * This table is derived from the CE_PCI TABLE, above.
332 * It is passed to the Target at startup for use by firmware.
333 */
Ryan Hsu2727a742015-11-05 18:44:27 -0800334static struct service_to_pipe target_service_to_ce_map_wlan[] = {
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300335 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300336 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VO),
337 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
338 __cpu_to_le32(3),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300339 },
340 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300341 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VO),
342 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
343 __cpu_to_le32(2),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300344 },
345 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300346 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BK),
347 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
348 __cpu_to_le32(3),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300349 },
350 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300351 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BK),
352 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
353 __cpu_to_le32(2),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300354 },
355 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300356 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BE),
357 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
358 __cpu_to_le32(3),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300359 },
360 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300361 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_BE),
362 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
363 __cpu_to_le32(2),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300364 },
365 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300366 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VI),
367 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
368 __cpu_to_le32(3),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300369 },
370 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300371 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_DATA_VI),
372 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
373 __cpu_to_le32(2),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300374 },
375 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300376 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_CONTROL),
377 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
378 __cpu_to_le32(3),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300379 },
380 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300381 __cpu_to_le32(ATH10K_HTC_SVC_ID_WMI_CONTROL),
382 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
383 __cpu_to_le32(2),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300384 },
385 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300386 __cpu_to_le32(ATH10K_HTC_SVC_ID_RSVD_CTRL),
387 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
388 __cpu_to_le32(0),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300389 },
390 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300391 __cpu_to_le32(ATH10K_HTC_SVC_ID_RSVD_CTRL),
392 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
393 __cpu_to_le32(1),
394 },
395 { /* not used */
396 __cpu_to_le32(ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS),
397 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
398 __cpu_to_le32(0),
399 },
400 { /* not used */
401 __cpu_to_le32(ATH10K_HTC_SVC_ID_TEST_RAW_STREAMS),
402 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
403 __cpu_to_le32(1),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300404 },
405 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300406 __cpu_to_le32(ATH10K_HTC_SVC_ID_HTT_DATA_MSG),
407 __cpu_to_le32(PIPEDIR_OUT), /* out = UL = host -> target */
408 __cpu_to_le32(4),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300409 },
410 {
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300411 __cpu_to_le32(ATH10K_HTC_SVC_ID_HTT_DATA_MSG),
412 __cpu_to_le32(PIPEDIR_IN), /* in = DL = target -> host */
Rajkumar Manoharana70587b2015-10-12 18:27:04 +0530413 __cpu_to_le32(5),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300414 },
415
416 /* (Additions here) */
417
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300418 { /* must be last */
419 __cpu_to_le32(0),
420 __cpu_to_le32(0),
421 __cpu_to_le32(0),
Michal Kaziord7bfb7a2014-08-26 19:14:02 +0300422 },
423};
424
Michal Kazior77258d42015-05-18 09:38:18 +0000425static bool ath10k_pci_is_awake(struct ath10k *ar)
426{
427 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
428 u32 val = ioread32(ar_pci->mem + PCIE_LOCAL_BASE_ADDRESS +
429 RTC_STATE_ADDRESS);
430
431 return RTC_STATE_V_GET(val) == RTC_STATE_V_ON;
432}
433
434static void __ath10k_pci_wake(struct ath10k *ar)
435{
436 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
437
438 lockdep_assert_held(&ar_pci->ps_lock);
439
440 ath10k_dbg(ar, ATH10K_DBG_PCI_PS, "pci ps wake reg refcount %lu awake %d\n",
441 ar_pci->ps_wake_refcount, ar_pci->ps_awake);
442
443 iowrite32(PCIE_SOC_WAKE_V_MASK,
444 ar_pci->mem + PCIE_LOCAL_BASE_ADDRESS +
445 PCIE_SOC_WAKE_ADDRESS);
446}
447
448static void __ath10k_pci_sleep(struct ath10k *ar)
449{
450 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
451
452 lockdep_assert_held(&ar_pci->ps_lock);
453
454 ath10k_dbg(ar, ATH10K_DBG_PCI_PS, "pci ps sleep reg refcount %lu awake %d\n",
455 ar_pci->ps_wake_refcount, ar_pci->ps_awake);
456
457 iowrite32(PCIE_SOC_WAKE_RESET,
458 ar_pci->mem + PCIE_LOCAL_BASE_ADDRESS +
459 PCIE_SOC_WAKE_ADDRESS);
460 ar_pci->ps_awake = false;
461}
462
463static int ath10k_pci_wake_wait(struct ath10k *ar)
464{
465 int tot_delay = 0;
466 int curr_delay = 5;
467
468 while (tot_delay < PCIE_WAKE_TIMEOUT) {
Maharaja Kennadyrajan39b91b82015-10-06 15:19:28 +0300469 if (ath10k_pci_is_awake(ar)) {
470 if (tot_delay > PCIE_WAKE_LATE_US)
471 ath10k_warn(ar, "device wakeup took %d ms which is unusally long, otherwise it works normally.\n",
472 tot_delay / 1000);
Michal Kazior77258d42015-05-18 09:38:18 +0000473 return 0;
Maharaja Kennadyrajan39b91b82015-10-06 15:19:28 +0300474 }
Michal Kazior77258d42015-05-18 09:38:18 +0000475
476 udelay(curr_delay);
477 tot_delay += curr_delay;
478
479 if (curr_delay < 50)
480 curr_delay += 5;
481 }
482
483 return -ETIMEDOUT;
484}
485
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +0300486static int ath10k_pci_force_wake(struct ath10k *ar)
487{
488 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
489 unsigned long flags;
490 int ret = 0;
491
Rajkumar Manoharand9d6a5a2015-12-16 16:52:19 +0200492 if (ar_pci->pci_ps)
493 return ret;
494
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +0300495 spin_lock_irqsave(&ar_pci->ps_lock, flags);
496
497 if (!ar_pci->ps_awake) {
498 iowrite32(PCIE_SOC_WAKE_V_MASK,
499 ar_pci->mem + PCIE_LOCAL_BASE_ADDRESS +
500 PCIE_SOC_WAKE_ADDRESS);
501
502 ret = ath10k_pci_wake_wait(ar);
503 if (ret == 0)
504 ar_pci->ps_awake = true;
505 }
506
507 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
508
509 return ret;
510}
511
512static void ath10k_pci_force_sleep(struct ath10k *ar)
513{
514 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
515 unsigned long flags;
516
517 spin_lock_irqsave(&ar_pci->ps_lock, flags);
518
519 iowrite32(PCIE_SOC_WAKE_RESET,
520 ar_pci->mem + PCIE_LOCAL_BASE_ADDRESS +
521 PCIE_SOC_WAKE_ADDRESS);
522 ar_pci->ps_awake = false;
523
524 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
525}
526
Michal Kazior77258d42015-05-18 09:38:18 +0000527static int ath10k_pci_wake(struct ath10k *ar)
528{
529 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
530 unsigned long flags;
531 int ret = 0;
532
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +0300533 if (ar_pci->pci_ps == 0)
534 return ret;
535
Michal Kazior77258d42015-05-18 09:38:18 +0000536 spin_lock_irqsave(&ar_pci->ps_lock, flags);
537
538 ath10k_dbg(ar, ATH10K_DBG_PCI_PS, "pci ps wake refcount %lu awake %d\n",
539 ar_pci->ps_wake_refcount, ar_pci->ps_awake);
540
541 /* This function can be called very frequently. To avoid excessive
542 * CPU stalls for MMIO reads use a cache var to hold the device state.
543 */
544 if (!ar_pci->ps_awake) {
545 __ath10k_pci_wake(ar);
546
547 ret = ath10k_pci_wake_wait(ar);
548 if (ret == 0)
549 ar_pci->ps_awake = true;
550 }
551
552 if (ret == 0) {
553 ar_pci->ps_wake_refcount++;
554 WARN_ON(ar_pci->ps_wake_refcount == 0);
555 }
556
557 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
558
559 return ret;
560}
561
562static void ath10k_pci_sleep(struct ath10k *ar)
563{
564 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
565 unsigned long flags;
566
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +0300567 if (ar_pci->pci_ps == 0)
568 return;
569
Michal Kazior77258d42015-05-18 09:38:18 +0000570 spin_lock_irqsave(&ar_pci->ps_lock, flags);
571
572 ath10k_dbg(ar, ATH10K_DBG_PCI_PS, "pci ps sleep refcount %lu awake %d\n",
573 ar_pci->ps_wake_refcount, ar_pci->ps_awake);
574
575 if (WARN_ON(ar_pci->ps_wake_refcount == 0))
576 goto skip;
577
578 ar_pci->ps_wake_refcount--;
579
580 mod_timer(&ar_pci->ps_timer, jiffies +
581 msecs_to_jiffies(ATH10K_PCI_SLEEP_GRACE_PERIOD_MSEC));
582
583skip:
584 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
585}
586
587static void ath10k_pci_ps_timer(unsigned long ptr)
588{
589 struct ath10k *ar = (void *)ptr;
590 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
591 unsigned long flags;
592
593 spin_lock_irqsave(&ar_pci->ps_lock, flags);
594
595 ath10k_dbg(ar, ATH10K_DBG_PCI_PS, "pci ps timer refcount %lu awake %d\n",
596 ar_pci->ps_wake_refcount, ar_pci->ps_awake);
597
598 if (ar_pci->ps_wake_refcount > 0)
599 goto skip;
600
601 __ath10k_pci_sleep(ar);
602
603skip:
604 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
605}
606
607static void ath10k_pci_sleep_sync(struct ath10k *ar)
608{
609 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
610 unsigned long flags;
611
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +0300612 if (ar_pci->pci_ps == 0) {
613 ath10k_pci_force_sleep(ar);
614 return;
615 }
616
Michal Kazior77258d42015-05-18 09:38:18 +0000617 del_timer_sync(&ar_pci->ps_timer);
618
619 spin_lock_irqsave(&ar_pci->ps_lock, flags);
620 WARN_ON(ar_pci->ps_wake_refcount > 0);
621 __ath10k_pci_sleep(ar);
622 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
623}
624
Raja Mani4ddb3292016-01-27 15:24:23 +0530625static void ath10k_bus_pci_write32(struct ath10k *ar, u32 offset, u32 value)
Michal Kazior77258d42015-05-18 09:38:18 +0000626{
627 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
628 int ret;
629
Michal Kazioraeae5b42015-06-15 14:46:42 +0300630 if (unlikely(offset + sizeof(value) > ar_pci->mem_len)) {
631 ath10k_warn(ar, "refusing to write mmio out of bounds at 0x%08x - 0x%08zx (max 0x%08zx)\n",
632 offset, offset + sizeof(value), ar_pci->mem_len);
633 return;
634 }
635
Michal Kazior77258d42015-05-18 09:38:18 +0000636 ret = ath10k_pci_wake(ar);
637 if (ret) {
638 ath10k_warn(ar, "failed to wake target for write32 of 0x%08x at 0x%08x: %d\n",
639 value, offset, ret);
640 return;
641 }
642
643 iowrite32(value, ar_pci->mem + offset);
644 ath10k_pci_sleep(ar);
645}
646
Raja Mani4ddb3292016-01-27 15:24:23 +0530647static u32 ath10k_bus_pci_read32(struct ath10k *ar, u32 offset)
Michal Kazior77258d42015-05-18 09:38:18 +0000648{
649 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
650 u32 val;
651 int ret;
652
Michal Kazioraeae5b42015-06-15 14:46:42 +0300653 if (unlikely(offset + sizeof(val) > ar_pci->mem_len)) {
654 ath10k_warn(ar, "refusing to read mmio out of bounds at 0x%08x - 0x%08zx (max 0x%08zx)\n",
655 offset, offset + sizeof(val), ar_pci->mem_len);
656 return 0;
657 }
658
Michal Kazior77258d42015-05-18 09:38:18 +0000659 ret = ath10k_pci_wake(ar);
660 if (ret) {
661 ath10k_warn(ar, "failed to wake target for read32 at 0x%08x: %d\n",
662 offset, ret);
663 return 0xffffffff;
664 }
665
666 val = ioread32(ar_pci->mem + offset);
667 ath10k_pci_sleep(ar);
668
669 return val;
670}
671
Raja Mani4ddb3292016-01-27 15:24:23 +0530672inline void ath10k_pci_write32(struct ath10k *ar, u32 offset, u32 value)
673{
674 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
675
676 ar_pci->bus_ops->write32(ar, offset, value);
677}
678
679inline u32 ath10k_pci_read32(struct ath10k *ar, u32 offset)
680{
681 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
682
683 return ar_pci->bus_ops->read32(ar, offset);
684}
685
Michal Kazior77258d42015-05-18 09:38:18 +0000686u32 ath10k_pci_soc_read32(struct ath10k *ar, u32 addr)
687{
688 return ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS + addr);
689}
690
691void ath10k_pci_soc_write32(struct ath10k *ar, u32 addr, u32 val)
692{
693 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + addr, val);
694}
695
696u32 ath10k_pci_reg_read32(struct ath10k *ar, u32 addr)
697{
698 return ath10k_pci_read32(ar, PCIE_LOCAL_BASE_ADDRESS + addr);
699}
700
701void ath10k_pci_reg_write32(struct ath10k *ar, u32 addr, u32 val)
702{
703 ath10k_pci_write32(ar, PCIE_LOCAL_BASE_ADDRESS + addr, val);
704}
705
Raja Manif52f5172016-01-27 15:24:22 +0530706bool ath10k_pci_irq_pending(struct ath10k *ar)
Michal Kaziore5398872013-11-25 14:06:20 +0100707{
708 u32 cause;
709
710 /* Check if the shared legacy irq is for us */
711 cause = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
712 PCIE_INTR_CAUSE_ADDRESS);
713 if (cause & (PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL))
714 return true;
715
716 return false;
717}
718
Raja Manif52f5172016-01-27 15:24:22 +0530719void ath10k_pci_disable_and_clear_legacy_irq(struct ath10k *ar)
Michal Kazior26852182013-11-25 14:06:25 +0100720{
721 /* IMPORTANT: INTR_CLR register has to be set after
722 * INTR_ENABLE is set to 0, otherwise interrupt can not be
723 * really cleared. */
724 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
725 0);
726 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_CLR_ADDRESS,
727 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
728
729 /* IMPORTANT: this extra read transaction is required to
730 * flush the posted write buffer. */
Kalle Valocfbc06a2014-09-14 12:50:23 +0300731 (void)ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
732 PCIE_INTR_ENABLE_ADDRESS);
Michal Kazior26852182013-11-25 14:06:25 +0100733}
734
Raja Manif52f5172016-01-27 15:24:22 +0530735void ath10k_pci_enable_legacy_irq(struct ath10k *ar)
Michal Kazior26852182013-11-25 14:06:25 +0100736{
737 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
738 PCIE_INTR_ENABLE_ADDRESS,
739 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
740
741 /* IMPORTANT: this extra read transaction is required to
742 * flush the posted write buffer. */
Kalle Valocfbc06a2014-09-14 12:50:23 +0300743 (void)ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
744 PCIE_INTR_ENABLE_ADDRESS);
Michal Kazior26852182013-11-25 14:06:25 +0100745}
746
Michal Kazior403d6272014-08-22 14:23:31 +0200747static inline const char *ath10k_pci_get_irq_method(struct ath10k *ar)
Michal Kaziorab977bd2013-11-25 14:06:26 +0100748{
Michal Kaziorab977bd2013-11-25 14:06:26 +0100749 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
750
Rajkumar Manoharancfe90112016-04-07 12:10:58 +0530751 if (ar_pci->oper_irq_mode == ATH10K_PCI_IRQ_MSI)
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);
Rajkumar Manoharan128abd02016-03-22 17:22:18 +0530812
813 while (num >= 0) {
Michal Kazior728f95e2014-08-22 14:33:14 +0200814 ret = __ath10k_pci_rx_post_buf(pipe);
815 if (ret) {
Rajkumar Manoharanab4e3db2015-10-06 15:19:33 +0300816 if (ret == -ENOSPC)
817 break;
Michal Kazior7aa7a722014-08-25 12:09:38 +0200818 ath10k_warn(ar, "failed to post pci rx buf: %d\n", ret);
Michal Kazior728f95e2014-08-22 14:33:14 +0200819 mod_timer(&ar_pci->rx_post_retry, jiffies +
820 ATH10K_PCI_RX_POST_RETRY_MS);
821 break;
822 }
Rajkumar Manoharan128abd02016-03-22 17:22:18 +0530823 num--;
Michal Kazior728f95e2014-08-22 14:33:14 +0200824 }
825}
826
Raja Manif52f5172016-01-27 15:24:22 +0530827void ath10k_pci_rx_post(struct ath10k *ar)
Michal Kazior728f95e2014-08-22 14:33:14 +0200828{
829 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
830 int i;
831
Michal Kazior728f95e2014-08-22 14:33:14 +0200832 for (i = 0; i < CE_COUNT; i++)
Rajkumar Manoharanab4e3db2015-10-06 15:19:33 +0300833 ath10k_pci_rx_post_pipe(&ar_pci->pipe_info[i]);
Michal Kazior728f95e2014-08-22 14:33:14 +0200834}
835
Raja Manif52f5172016-01-27 15:24:22 +0530836void ath10k_pci_rx_replenish_retry(unsigned long ptr)
Michal Kazior728f95e2014-08-22 14:33:14 +0200837{
838 struct ath10k *ar = (void *)ptr;
839
840 ath10k_pci_rx_post(ar);
Michal Kaziorab977bd2013-11-25 14:06:26 +0100841}
842
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530843static u32 ath10k_pci_targ_cpu_to_ce_addr(struct ath10k *ar, u32 addr)
844{
845 u32 val = 0;
846
847 switch (ar->hw_rev) {
848 case ATH10K_HW_QCA988X:
Sven Eckelmann6fd3dd72016-06-02 17:59:49 +0300849 case ATH10K_HW_QCA9887:
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530850 case ATH10K_HW_QCA6174:
Bartosz Markowskia226b512015-10-28 15:09:53 +0100851 case ATH10K_HW_QCA9377:
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530852 val = (ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
853 CORE_CTRL_ADDRESS) &
Vasanthakumar Thiagarajan3c7e2562015-07-03 19:25:27 +0530854 0x7ff) << 21;
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530855 break;
Anilkumar Kollie565c312016-06-30 15:24:00 +0300856 case ATH10K_HW_QCA9888:
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530857 case ATH10K_HW_QCA99X0:
Vasanthakumar Thiagarajan651b4cd2016-05-23 23:12:45 +0300858 case ATH10K_HW_QCA9984:
Raja Mani0b523ce2016-01-27 15:24:25 +0530859 case ATH10K_HW_QCA4019:
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530860 val = ath10k_pci_read32(ar, PCIE_BAR_REG_ADDRESS);
861 break;
862 }
863
864 val |= 0x100000 | (addr & 0xfffff);
865 return val;
866}
867
Kalle Valo5e3dd152013-06-12 20:52:10 +0300868/*
869 * Diagnostic read/write access is provided for startup/config/debug usage.
870 * Caller must guarantee proper alignment, when applicable, and single user
871 * at any moment.
872 */
873static int ath10k_pci_diag_read_mem(struct ath10k *ar, u32 address, void *data,
874 int nbytes)
875{
876 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
877 int ret = 0;
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +0530878 u32 *buf;
Ashok Raj Nagarajan1e56d512016-05-28 11:25:40 +0300879 unsigned int completed_nbytes, alloc_nbytes, remaining_bytes;
Michal Kazior2aa39112013-08-27 13:08:02 +0200880 struct ath10k_ce_pipe *ce_diag;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300881 /* Host buffer address in CE space */
882 u32 ce_data;
883 dma_addr_t ce_data_base = 0;
884 void *data_buf = NULL;
885 int i;
886
Kalle Valoeef25402014-09-24 14:16:52 +0300887 spin_lock_bh(&ar_pci->ce_lock);
888
Kalle Valo5e3dd152013-06-12 20:52:10 +0300889 ce_diag = ar_pci->ce_diag;
890
891 /*
892 * Allocate a temporary bounce buffer to hold caller's data
893 * to be DMA'ed from Target. This guarantees
894 * 1) 4-byte alignment
895 * 2) Buffer in DMA-able space
896 */
Ashok Raj Nagarajan1e56d512016-05-28 11:25:40 +0300897 alloc_nbytes = min_t(unsigned int, nbytes, DIAG_TRANSFER_LIMIT);
898
Michal Kazior68c03242014-03-28 10:02:35 +0200899 data_buf = (unsigned char *)dma_alloc_coherent(ar->dev,
Ashok Raj Nagarajan1e56d512016-05-28 11:25:40 +0300900 alloc_nbytes,
Michal Kazior68c03242014-03-28 10:02:35 +0200901 &ce_data_base,
902 GFP_ATOMIC);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300903
904 if (!data_buf) {
905 ret = -ENOMEM;
906 goto done;
907 }
Ashok Raj Nagarajan1e56d512016-05-28 11:25:40 +0300908 memset(data_buf, 0, alloc_nbytes);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300909
Ashok Raj Nagarajan1e56d512016-05-28 11:25:40 +0300910 remaining_bytes = nbytes;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300911 ce_data = ce_data_base;
912 while (remaining_bytes) {
913 nbytes = min_t(unsigned int, remaining_bytes,
914 DIAG_TRANSFER_LIMIT);
915
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +0530916 ret = __ath10k_ce_rx_post_buf(ce_diag, &ce_data, ce_data);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300917 if (ret != 0)
918 goto done;
919
920 /* Request CE to send from Target(!) address to Host buffer */
921 /*
922 * The address supplied by the caller is in the
923 * Target CPU virtual address space.
924 *
925 * In order to use this address with the diagnostic CE,
926 * convert it from Target CPU virtual address space
927 * to CE address space
928 */
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +0530929 address = ath10k_pci_targ_cpu_to_ce_addr(ar, address);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300930
Kalle Valoeef25402014-09-24 14:16:52 +0300931 ret = ath10k_ce_send_nolock(ce_diag, NULL, (u32)address, nbytes, 0,
932 0);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300933 if (ret)
934 goto done;
935
936 i = 0;
Rajkumar Manoharan765952e2015-10-23 18:01:05 +0530937 while (ath10k_ce_completed_send_next_nolock(ce_diag,
938 NULL) != 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300939 mdelay(1);
940 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
941 ret = -EBUSY;
942 goto done;
943 }
944 }
945
Kalle Valo5e3dd152013-06-12 20:52:10 +0300946 i = 0;
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +0530947 while (ath10k_ce_completed_recv_next_nolock(ce_diag,
948 (void **)&buf,
949 &completed_nbytes)
950 != 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300951 mdelay(1);
952
953 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
954 ret = -EBUSY;
955 goto done;
956 }
957 }
958
959 if (nbytes != completed_nbytes) {
960 ret = -EIO;
961 goto done;
962 }
963
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +0530964 if (*buf != ce_data) {
Kalle Valo5e3dd152013-06-12 20:52:10 +0300965 ret = -EIO;
966 goto done;
967 }
968
969 remaining_bytes -= nbytes;
Ashok Raj Nagarajan1e56d512016-05-28 11:25:40 +0300970
971 if (ret) {
972 ath10k_warn(ar, "failed to read diag value at 0x%x: %d\n",
973 address, ret);
974 break;
975 }
976 memcpy(data, data_buf, nbytes);
977
Kalle Valo5e3dd152013-06-12 20:52:10 +0300978 address += nbytes;
Ashok Raj Nagarajan1e56d512016-05-28 11:25:40 +0300979 data += nbytes;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300980 }
981
982done:
Kalle Valo5e3dd152013-06-12 20:52:10 +0300983
984 if (data_buf)
Ashok Raj Nagarajan1e56d512016-05-28 11:25:40 +0300985 dma_free_coherent(ar->dev, alloc_nbytes, data_buf,
Michal Kazior68c03242014-03-28 10:02:35 +0200986 ce_data_base);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300987
Kalle Valoeef25402014-09-24 14:16:52 +0300988 spin_unlock_bh(&ar_pci->ce_lock);
989
Kalle Valo5e3dd152013-06-12 20:52:10 +0300990 return ret;
991}
992
Kalle Valo3d29a3e2014-08-25 08:37:26 +0300993static int ath10k_pci_diag_read32(struct ath10k *ar, u32 address, u32 *value)
994{
Michal Kazior0fdc14e42014-08-26 19:14:03 +0300995 __le32 val = 0;
996 int ret;
997
998 ret = ath10k_pci_diag_read_mem(ar, address, &val, sizeof(val));
999 *value = __le32_to_cpu(val);
1000
1001 return ret;
Kalle Valo3d29a3e2014-08-25 08:37:26 +03001002}
1003
1004static int __ath10k_pci_diag_read_hi(struct ath10k *ar, void *dest,
1005 u32 src, u32 len)
1006{
1007 u32 host_addr, addr;
1008 int ret;
1009
1010 host_addr = host_interest_item_address(src);
1011
1012 ret = ath10k_pci_diag_read32(ar, host_addr, &addr);
1013 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001014 ath10k_warn(ar, "failed to get memcpy hi address for firmware address %d: %d\n",
Kalle Valo3d29a3e2014-08-25 08:37:26 +03001015 src, ret);
1016 return ret;
1017 }
1018
1019 ret = ath10k_pci_diag_read_mem(ar, addr, dest, len);
1020 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001021 ath10k_warn(ar, "failed to memcpy firmware memory from %d (%d B): %d\n",
Kalle Valo3d29a3e2014-08-25 08:37:26 +03001022 addr, len, ret);
1023 return ret;
1024 }
1025
1026 return 0;
1027}
1028
1029#define ath10k_pci_diag_read_hi(ar, dest, src, len) \
Kalle Valo8cc7f262014-09-14 12:50:39 +03001030 __ath10k_pci_diag_read_hi(ar, dest, HI_ITEM(src), len)
Kalle Valo3d29a3e2014-08-25 08:37:26 +03001031
Raja Manif52f5172016-01-27 15:24:22 +05301032int ath10k_pci_diag_write_mem(struct ath10k *ar, u32 address,
1033 const void *data, int nbytes)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001034{
1035 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1036 int ret = 0;
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301037 u32 *buf;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001038 unsigned int completed_nbytes, orig_nbytes, remaining_bytes;
Michal Kazior2aa39112013-08-27 13:08:02 +02001039 struct ath10k_ce_pipe *ce_diag;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001040 void *data_buf = NULL;
1041 u32 ce_data; /* Host buffer address in CE space */
1042 dma_addr_t ce_data_base = 0;
1043 int i;
1044
Kalle Valoeef25402014-09-24 14:16:52 +03001045 spin_lock_bh(&ar_pci->ce_lock);
1046
Kalle Valo5e3dd152013-06-12 20:52:10 +03001047 ce_diag = ar_pci->ce_diag;
1048
1049 /*
1050 * Allocate a temporary bounce buffer to hold caller's data
1051 * to be DMA'ed to Target. This guarantees
1052 * 1) 4-byte alignment
1053 * 2) Buffer in DMA-able space
1054 */
1055 orig_nbytes = nbytes;
Michal Kazior68c03242014-03-28 10:02:35 +02001056 data_buf = (unsigned char *)dma_alloc_coherent(ar->dev,
1057 orig_nbytes,
1058 &ce_data_base,
1059 GFP_ATOMIC);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001060 if (!data_buf) {
1061 ret = -ENOMEM;
1062 goto done;
1063 }
1064
1065 /* Copy caller's data to allocated DMA buf */
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001066 memcpy(data_buf, data, orig_nbytes);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001067
1068 /*
1069 * The address supplied by the caller is in the
1070 * Target CPU virtual address space.
1071 *
1072 * In order to use this address with the diagnostic CE,
1073 * convert it from
1074 * Target CPU virtual address space
1075 * to
1076 * CE address space
1077 */
Vasanthakumar Thiagarajan418ca592015-06-18 12:31:05 +05301078 address = ath10k_pci_targ_cpu_to_ce_addr(ar, address);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001079
1080 remaining_bytes = orig_nbytes;
1081 ce_data = ce_data_base;
1082 while (remaining_bytes) {
1083 /* FIXME: check cast */
1084 nbytes = min_t(int, remaining_bytes, DIAG_TRANSFER_LIMIT);
1085
1086 /* Set up to receive directly into Target(!) address */
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301087 ret = __ath10k_ce_rx_post_buf(ce_diag, &address, address);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001088 if (ret != 0)
1089 goto done;
1090
1091 /*
1092 * Request CE to send caller-supplied data that
1093 * was copied to bounce buffer to Target(!) address.
1094 */
Kalle Valoeef25402014-09-24 14:16:52 +03001095 ret = ath10k_ce_send_nolock(ce_diag, NULL, (u32)ce_data,
1096 nbytes, 0, 0);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001097 if (ret != 0)
1098 goto done;
1099
1100 i = 0;
Rajkumar Manoharan765952e2015-10-23 18:01:05 +05301101 while (ath10k_ce_completed_send_next_nolock(ce_diag,
1102 NULL) != 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001103 mdelay(1);
1104
1105 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
1106 ret = -EBUSY;
1107 goto done;
1108 }
1109 }
1110
Kalle Valo5e3dd152013-06-12 20:52:10 +03001111 i = 0;
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301112 while (ath10k_ce_completed_recv_next_nolock(ce_diag,
1113 (void **)&buf,
1114 &completed_nbytes)
1115 != 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001116 mdelay(1);
1117
1118 if (i++ > DIAG_ACCESS_CE_TIMEOUT_MS) {
1119 ret = -EBUSY;
1120 goto done;
1121 }
1122 }
1123
1124 if (nbytes != completed_nbytes) {
1125 ret = -EIO;
1126 goto done;
1127 }
1128
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301129 if (*buf != address) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001130 ret = -EIO;
1131 goto done;
1132 }
1133
1134 remaining_bytes -= nbytes;
1135 address += nbytes;
1136 ce_data += nbytes;
1137 }
1138
1139done:
1140 if (data_buf) {
Michal Kazior68c03242014-03-28 10:02:35 +02001141 dma_free_coherent(ar->dev, orig_nbytes, data_buf,
1142 ce_data_base);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001143 }
1144
1145 if (ret != 0)
Michal Kazior7aa7a722014-08-25 12:09:38 +02001146 ath10k_warn(ar, "failed to write diag value at 0x%x: %d\n",
Kalle Valo50f87a62014-03-28 09:32:52 +02001147 address, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001148
Kalle Valoeef25402014-09-24 14:16:52 +03001149 spin_unlock_bh(&ar_pci->ce_lock);
1150
Kalle Valo5e3dd152013-06-12 20:52:10 +03001151 return ret;
1152}
1153
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001154static int ath10k_pci_diag_write32(struct ath10k *ar, u32 address, u32 value)
1155{
1156 __le32 val = __cpu_to_le32(value);
1157
1158 return ath10k_pci_diag_write_mem(ar, address, &val, sizeof(val));
1159}
1160
Kalle Valo5e3dd152013-06-12 20:52:10 +03001161/* Called by lower (CE) layer when a send to Target completes. */
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +05301162static void ath10k_pci_htc_tx_cb(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001163{
1164 struct ath10k *ar = ce_state->ar;
Michal Kazior1cb86d42014-11-27 11:09:38 +01001165 struct sk_buff_head list;
1166 struct sk_buff *skb;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001167
Michal Kazior1cb86d42014-11-27 11:09:38 +01001168 __skb_queue_head_init(&list);
Rajkumar Manoharan765952e2015-10-23 18:01:05 +05301169 while (ath10k_ce_completed_send_next(ce_state, (void **)&skb) == 0) {
Michal Kaziora16942e2014-02-27 18:50:04 +02001170 /* no need to call tx completion for NULL pointers */
Michal Kazior1cb86d42014-11-27 11:09:38 +01001171 if (skb == NULL)
Michal Kazior726346f2014-02-27 18:50:04 +02001172 continue;
1173
Michal Kazior1cb86d42014-11-27 11:09:38 +01001174 __skb_queue_tail(&list, skb);
Michal Kazior5440ce22013-09-03 15:09:58 +02001175 }
Michal Kazior1cb86d42014-11-27 11:09:38 +01001176
1177 while ((skb = __skb_dequeue(&list)))
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +05301178 ath10k_htc_tx_completion_handler(ar, skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001179}
1180
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301181static void ath10k_pci_process_rx_cb(struct ath10k_ce_pipe *ce_state,
1182 void (*callback)(struct ath10k *ar,
1183 struct sk_buff *skb))
Kalle Valo5e3dd152013-06-12 20:52:10 +03001184{
1185 struct ath10k *ar = ce_state->ar;
1186 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior87263e52013-08-27 13:08:01 +02001187 struct ath10k_pci_pipe *pipe_info = &ar_pci->pipe_info[ce_state->id];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001188 struct sk_buff *skb;
Michal Kazior1cb86d42014-11-27 11:09:38 +01001189 struct sk_buff_head list;
Michal Kazior5440ce22013-09-03 15:09:58 +02001190 void *transfer_context;
Michal Kazior2f5280d2014-02-27 18:50:05 +02001191 unsigned int nbytes, max_nbytes;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001192
Michal Kazior1cb86d42014-11-27 11:09:38 +01001193 __skb_queue_head_init(&list);
Michal Kazior5440ce22013-09-03 15:09:58 +02001194 while (ath10k_ce_completed_recv_next(ce_state, &transfer_context,
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301195 &nbytes) == 0) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001196 skb = transfer_context;
Michal Kazior2f5280d2014-02-27 18:50:05 +02001197 max_nbytes = skb->len + skb_tailroom(skb);
Michal Kazior8582bf32015-01-24 12:14:47 +02001198 dma_unmap_single(ar->dev, ATH10K_SKB_RXCB(skb)->paddr,
Michal Kazior2f5280d2014-02-27 18:50:05 +02001199 max_nbytes, DMA_FROM_DEVICE);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001200
Michal Kazior2f5280d2014-02-27 18:50:05 +02001201 if (unlikely(max_nbytes < nbytes)) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001202 ath10k_warn(ar, "rxed more than expected (nbytes %d, max %d)",
Michal Kazior2f5280d2014-02-27 18:50:05 +02001203 nbytes, max_nbytes);
1204 dev_kfree_skb_any(skb);
1205 continue;
1206 }
1207
1208 skb_put(skb, nbytes);
Michal Kazior1cb86d42014-11-27 11:09:38 +01001209 __skb_queue_tail(&list, skb);
1210 }
Michal Kaziora360e542014-09-23 10:22:54 +02001211
Michal Kazior1cb86d42014-11-27 11:09:38 +01001212 while ((skb = __skb_dequeue(&list))) {
Michal Kaziora360e542014-09-23 10:22:54 +02001213 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci rx ce pipe %d len %d\n",
1214 ce_state->id, skb->len);
1215 ath10k_dbg_dump(ar, ATH10K_DBG_PCI_DUMP, NULL, "pci rx: ",
1216 skb->data, skb->len);
1217
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301218 callback(ar, skb);
Michal Kazior2f5280d2014-02-27 18:50:05 +02001219 }
Michal Kaziorc29a3802014-07-21 21:03:10 +03001220
Michal Kazior728f95e2014-08-22 14:33:14 +02001221 ath10k_pci_rx_post_pipe(pipe_info);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001222}
1223
Rajkumar Manoharan128abd02016-03-22 17:22:18 +05301224static void ath10k_pci_process_htt_rx_cb(struct ath10k_ce_pipe *ce_state,
1225 void (*callback)(struct ath10k *ar,
1226 struct sk_buff *skb))
1227{
1228 struct ath10k *ar = ce_state->ar;
1229 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1230 struct ath10k_pci_pipe *pipe_info = &ar_pci->pipe_info[ce_state->id];
1231 struct ath10k_ce_pipe *ce_pipe = pipe_info->ce_hdl;
1232 struct sk_buff *skb;
1233 struct sk_buff_head list;
1234 void *transfer_context;
1235 unsigned int nbytes, max_nbytes, nentries;
1236 int orig_len;
1237
1238 /* No need to aquire ce_lock for CE5, since this is the only place CE5
1239 * is processed other than init and deinit. Before releasing CE5
1240 * buffers, interrupts are disabled. Thus CE5 access is serialized.
1241 */
1242 __skb_queue_head_init(&list);
1243 while (ath10k_ce_completed_recv_next_nolock(ce_state, &transfer_context,
1244 &nbytes) == 0) {
1245 skb = transfer_context;
1246 max_nbytes = skb->len + skb_tailroom(skb);
1247
1248 if (unlikely(max_nbytes < nbytes)) {
1249 ath10k_warn(ar, "rxed more than expected (nbytes %d, max %d)",
1250 nbytes, max_nbytes);
1251 continue;
1252 }
1253
1254 dma_sync_single_for_cpu(ar->dev, ATH10K_SKB_RXCB(skb)->paddr,
1255 max_nbytes, DMA_FROM_DEVICE);
1256 skb_put(skb, nbytes);
1257 __skb_queue_tail(&list, skb);
1258 }
1259
1260 nentries = skb_queue_len(&list);
1261 while ((skb = __skb_dequeue(&list))) {
1262 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci rx ce pipe %d len %d\n",
1263 ce_state->id, skb->len);
1264 ath10k_dbg_dump(ar, ATH10K_DBG_PCI_DUMP, NULL, "pci rx: ",
1265 skb->data, skb->len);
1266
1267 orig_len = skb->len;
1268 callback(ar, skb);
1269 skb_push(skb, orig_len - skb->len);
1270 skb_reset_tail_pointer(skb);
1271 skb_trim(skb, 0);
1272
1273 /*let device gain the buffer again*/
1274 dma_sync_single_for_device(ar->dev, ATH10K_SKB_RXCB(skb)->paddr,
1275 skb->len + skb_tailroom(skb),
1276 DMA_FROM_DEVICE);
1277 }
1278 ath10k_ce_rx_update_write_idx(ce_pipe, nentries);
1279}
1280
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301281/* Called by lower (CE) layer when data is received from the Target. */
1282static void ath10k_pci_htc_rx_cb(struct ath10k_ce_pipe *ce_state)
1283{
1284 ath10k_pci_process_rx_cb(ce_state, ath10k_htc_rx_completion_handler);
1285}
1286
Rajkumar Manoharan6419fdb2015-11-11 17:31:26 +05301287static void ath10k_pci_htt_htc_rx_cb(struct ath10k_ce_pipe *ce_state)
1288{
1289 /* CE4 polling needs to be done whenever CE pipe which transports
1290 * HTT Rx (target->host) is processed.
1291 */
1292 ath10k_ce_per_engine_service(ce_state->ar, 4);
1293
1294 ath10k_pci_process_rx_cb(ce_state, ath10k_htc_rx_completion_handler);
1295}
1296
Vivek Natarajanafb0bf72015-10-30 14:57:58 +05301297/* Called by lower (CE) layer when data is received from the Target.
1298 * Only 10.4 firmware uses separate CE to transfer pktlog data.
1299 */
1300static void ath10k_pci_pktlog_rx_cb(struct ath10k_ce_pipe *ce_state)
1301{
1302 ath10k_pci_process_rx_cb(ce_state,
1303 ath10k_htt_rx_pktlog_completion_handler);
1304}
1305
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301306/* Called by lower (CE) layer when a send to HTT Target completes. */
1307static void ath10k_pci_htt_tx_cb(struct ath10k_ce_pipe *ce_state)
1308{
1309 struct ath10k *ar = ce_state->ar;
1310 struct sk_buff *skb;
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301311
Rajkumar Manoharan765952e2015-10-23 18:01:05 +05301312 while (ath10k_ce_completed_send_next(ce_state, (void **)&skb) == 0) {
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301313 /* no need to call tx completion for NULL pointers */
1314 if (!skb)
1315 continue;
1316
1317 dma_unmap_single(ar->dev, ATH10K_SKB_CB(skb)->paddr,
1318 skb->len, DMA_TO_DEVICE);
1319 ath10k_htt_hif_tx_complete(ar, skb);
1320 }
1321}
1322
1323static void ath10k_pci_htt_rx_deliver(struct ath10k *ar, struct sk_buff *skb)
1324{
1325 skb_pull(skb, sizeof(struct ath10k_htc_hdr));
1326 ath10k_htt_t2h_msg_handler(ar, skb);
1327}
1328
1329/* Called by lower (CE) layer when HTT data is received from the Target. */
1330static void ath10k_pci_htt_rx_cb(struct ath10k_ce_pipe *ce_state)
1331{
1332 /* CE4 polling needs to be done whenever CE pipe which transports
1333 * HTT Rx (target->host) is processed.
1334 */
1335 ath10k_ce_per_engine_service(ce_state->ar, 4);
1336
Rajkumar Manoharan128abd02016-03-22 17:22:18 +05301337 ath10k_pci_process_htt_rx_cb(ce_state, ath10k_pci_htt_rx_deliver);
Rajkumar Manoharana70587b2015-10-12 18:27:04 +05301338}
1339
Raja Manif52f5172016-01-27 15:24:22 +05301340int ath10k_pci_hif_tx_sg(struct ath10k *ar, u8 pipe_id,
1341 struct ath10k_hif_sg_item *items, int n_items)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001342{
Kalle Valo5e3dd152013-06-12 20:52:10 +03001343 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior726346f2014-02-27 18:50:04 +02001344 struct ath10k_pci_pipe *pci_pipe = &ar_pci->pipe_info[pipe_id];
1345 struct ath10k_ce_pipe *ce_pipe = pci_pipe->ce_hdl;
1346 struct ath10k_ce_ring *src_ring = ce_pipe->src_ring;
Michal Kazior7147a132014-05-26 12:02:58 +02001347 unsigned int nentries_mask;
1348 unsigned int sw_index;
1349 unsigned int write_index;
Michal Kazior08b8aa02014-05-26 12:02:59 +02001350 int err, i = 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001351
Michal Kazior726346f2014-02-27 18:50:04 +02001352 spin_lock_bh(&ar_pci->ce_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001353
Michal Kazior7147a132014-05-26 12:02:58 +02001354 nentries_mask = src_ring->nentries_mask;
1355 sw_index = src_ring->sw_index;
1356 write_index = src_ring->write_index;
1357
Michal Kazior726346f2014-02-27 18:50:04 +02001358 if (unlikely(CE_RING_DELTA(nentries_mask,
1359 write_index, sw_index - 1) < n_items)) {
1360 err = -ENOBUFS;
Michal Kazior08b8aa02014-05-26 12:02:59 +02001361 goto err;
Michal Kazior726346f2014-02-27 18:50:04 +02001362 }
1363
1364 for (i = 0; i < n_items - 1; i++) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001365 ath10k_dbg(ar, ATH10K_DBG_PCI,
Michal Kazior726346f2014-02-27 18:50:04 +02001366 "pci tx item %d paddr 0x%08x len %d n_items %d\n",
1367 i, items[i].paddr, items[i].len, n_items);
Michal Kazior7aa7a722014-08-25 12:09:38 +02001368 ath10k_dbg_dump(ar, ATH10K_DBG_PCI_DUMP, NULL, "pci tx data: ",
Michal Kazior726346f2014-02-27 18:50:04 +02001369 items[i].vaddr, items[i].len);
1370
1371 err = ath10k_ce_send_nolock(ce_pipe,
1372 items[i].transfer_context,
1373 items[i].paddr,
1374 items[i].len,
1375 items[i].transfer_id,
1376 CE_SEND_FLAG_GATHER);
1377 if (err)
Michal Kazior08b8aa02014-05-26 12:02:59 +02001378 goto err;
Michal Kazior726346f2014-02-27 18:50:04 +02001379 }
1380
1381 /* `i` is equal to `n_items -1` after for() */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001382
Michal Kazior7aa7a722014-08-25 12:09:38 +02001383 ath10k_dbg(ar, ATH10K_DBG_PCI,
Michal Kazior726346f2014-02-27 18:50:04 +02001384 "pci tx item %d paddr 0x%08x len %d n_items %d\n",
1385 i, items[i].paddr, items[i].len, n_items);
Michal Kazior7aa7a722014-08-25 12:09:38 +02001386 ath10k_dbg_dump(ar, ATH10K_DBG_PCI_DUMP, NULL, "pci tx data: ",
Michal Kazior726346f2014-02-27 18:50:04 +02001387 items[i].vaddr, items[i].len);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001388
Michal Kazior726346f2014-02-27 18:50:04 +02001389 err = ath10k_ce_send_nolock(ce_pipe,
1390 items[i].transfer_context,
1391 items[i].paddr,
1392 items[i].len,
1393 items[i].transfer_id,
1394 0);
1395 if (err)
Michal Kazior08b8aa02014-05-26 12:02:59 +02001396 goto err;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001397
Michal Kazior08b8aa02014-05-26 12:02:59 +02001398 spin_unlock_bh(&ar_pci->ce_lock);
1399 return 0;
1400
1401err:
1402 for (; i > 0; i--)
1403 __ath10k_ce_send_revert(ce_pipe);
1404
Michal Kazior726346f2014-02-27 18:50:04 +02001405 spin_unlock_bh(&ar_pci->ce_lock);
1406 return err;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001407}
1408
Raja Manif52f5172016-01-27 15:24:22 +05301409int ath10k_pci_hif_diag_read(struct ath10k *ar, u32 address, void *buf,
1410 size_t buf_len)
Kalle Valoeef25402014-09-24 14:16:52 +03001411{
1412 return ath10k_pci_diag_read_mem(ar, address, buf, buf_len);
1413}
1414
Raja Manif52f5172016-01-27 15:24:22 +05301415u16 ath10k_pci_hif_get_free_queue_number(struct ath10k *ar, u8 pipe)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001416{
1417 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo50f87a62014-03-28 09:32:52 +02001418
Michal Kazior7aa7a722014-08-25 12:09:38 +02001419 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci hif get free queue number\n");
Kalle Valo50f87a62014-03-28 09:32:52 +02001420
Michal Kazior3efcb3b2013-10-02 11:03:41 +02001421 return ath10k_ce_num_free_src_entries(ar_pci->pipe_info[pipe].ce_hdl);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001422}
1423
Ben Greear384914b2014-08-25 08:37:32 +03001424static void ath10k_pci_dump_registers(struct ath10k *ar,
1425 struct ath10k_fw_crash_data *crash_data)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001426{
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001427 __le32 reg_dump_values[REG_DUMP_COUNT_QCA988X] = {};
1428 int i, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001429
Ben Greear384914b2014-08-25 08:37:32 +03001430 lockdep_assert_held(&ar->data_lock);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001431
Kalle Valo3d29a3e2014-08-25 08:37:26 +03001432 ret = ath10k_pci_diag_read_hi(ar, &reg_dump_values[0],
1433 hi_failure_state,
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001434 REG_DUMP_COUNT_QCA988X * sizeof(__le32));
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001435 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001436 ath10k_err(ar, "failed to read firmware dump area: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001437 return;
1438 }
1439
1440 BUILD_BUG_ON(REG_DUMP_COUNT_QCA988X % 4);
1441
Michal Kazior7aa7a722014-08-25 12:09:38 +02001442 ath10k_err(ar, "firmware register dump:\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001443 for (i = 0; i < REG_DUMP_COUNT_QCA988X; i += 4)
Michal Kazior7aa7a722014-08-25 12:09:38 +02001444 ath10k_err(ar, "[%02d]: 0x%08X 0x%08X 0x%08X 0x%08X\n",
Kalle Valo5e3dd152013-06-12 20:52:10 +03001445 i,
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001446 __le32_to_cpu(reg_dump_values[i]),
1447 __le32_to_cpu(reg_dump_values[i + 1]),
1448 __le32_to_cpu(reg_dump_values[i + 2]),
1449 __le32_to_cpu(reg_dump_values[i + 3]));
Michal Kazioraffd3212013-07-16 09:54:35 +02001450
Michal Kazior1bbb1192014-08-25 12:13:14 +02001451 if (!crash_data)
1452 return;
1453
Ben Greear384914b2014-08-25 08:37:32 +03001454 for (i = 0; i < REG_DUMP_COUNT_QCA988X; i++)
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001455 crash_data->registers[i] = reg_dump_values[i];
Ben Greear384914b2014-08-25 08:37:32 +03001456}
1457
Kalle Valo0e9848c2014-08-25 08:37:37 +03001458static void ath10k_pci_fw_crashed_dump(struct ath10k *ar)
Ben Greear384914b2014-08-25 08:37:32 +03001459{
1460 struct ath10k_fw_crash_data *crash_data;
1461 char uuid[50];
1462
1463 spin_lock_bh(&ar->data_lock);
1464
Ben Greearf51dbe72014-09-29 14:41:46 +03001465 ar->stats.fw_crash_counter++;
1466
Ben Greear384914b2014-08-25 08:37:32 +03001467 crash_data = ath10k_debug_get_new_fw_crash_data(ar);
1468
1469 if (crash_data)
1470 scnprintf(uuid, sizeof(uuid), "%pUl", &crash_data->uuid);
1471 else
1472 scnprintf(uuid, sizeof(uuid), "n/a");
1473
Michal Kazior7aa7a722014-08-25 12:09:38 +02001474 ath10k_err(ar, "firmware crashed! (uuid %s)\n", uuid);
Kalle Valo8a0c7972014-08-25 08:37:45 +03001475 ath10k_print_driver_info(ar);
Ben Greear384914b2014-08-25 08:37:32 +03001476 ath10k_pci_dump_registers(ar, crash_data);
1477
Ben Greear384914b2014-08-25 08:37:32 +03001478 spin_unlock_bh(&ar->data_lock);
Michal Kazioraffd3212013-07-16 09:54:35 +02001479
Michal Kazior5e90de82013-10-16 16:46:05 +03001480 queue_work(ar->workqueue, &ar->restart_work);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001481}
1482
Raja Manif52f5172016-01-27 15:24:22 +05301483void ath10k_pci_hif_send_complete_check(struct ath10k *ar, u8 pipe,
1484 int force)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001485{
Michal Kazior7aa7a722014-08-25 12:09:38 +02001486 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci hif send complete check\n");
Kalle Valo50f87a62014-03-28 09:32:52 +02001487
Kalle Valo5e3dd152013-06-12 20:52:10 +03001488 if (!force) {
1489 int resources;
1490 /*
1491 * Decide whether to actually poll for completions, or just
1492 * wait for a later chance.
1493 * If there seem to be plenty of resources left, then just wait
1494 * since checking involves reading a CE register, which is a
1495 * relatively expensive operation.
1496 */
1497 resources = ath10k_pci_hif_get_free_queue_number(ar, pipe);
1498
1499 /*
1500 * If at least 50% of the total resources are still available,
1501 * don't bother checking again yet.
1502 */
1503 if (resources > (host_ce_config_wlan[pipe].src_nentries >> 1))
1504 return;
1505 }
1506 ath10k_ce_per_engine_service(ar, pipe);
1507}
1508
Raja Manif52f5172016-01-27 15:24:22 +05301509void ath10k_pci_kill_tasklet(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001510{
1511 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001512
Kalle Valo5e3dd152013-06-12 20:52:10 +03001513 tasklet_kill(&ar_pci->intr_tq);
Michal Kazior728f95e2014-08-22 14:33:14 +02001514
1515 del_timer_sync(&ar_pci->rx_post_retry);
Michal Kazior96a9d0d2013-11-08 08:01:25 +01001516}
1517
Raja Manif52f5172016-01-27 15:24:22 +05301518int ath10k_pci_hif_map_service_to_pipe(struct ath10k *ar, u16 service_id,
1519 u8 *ul_pipe, u8 *dl_pipe)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001520{
Michal Kazior7c6aa252014-08-26 19:14:03 +03001521 const struct service_to_pipe *entry;
1522 bool ul_set = false, dl_set = false;
1523 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001524
Michal Kazior7aa7a722014-08-25 12:09:38 +02001525 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci hif map service\n");
Kalle Valo50f87a62014-03-28 09:32:52 +02001526
Michal Kazior7c6aa252014-08-26 19:14:03 +03001527 for (i = 0; i < ARRAY_SIZE(target_service_to_ce_map_wlan); i++) {
1528 entry = &target_service_to_ce_map_wlan[i];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001529
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001530 if (__le32_to_cpu(entry->service_id) != service_id)
Michal Kazior7c6aa252014-08-26 19:14:03 +03001531 continue;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001532
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001533 switch (__le32_to_cpu(entry->pipedir)) {
Michal Kazior7c6aa252014-08-26 19:14:03 +03001534 case PIPEDIR_NONE:
1535 break;
1536 case PIPEDIR_IN:
1537 WARN_ON(dl_set);
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001538 *dl_pipe = __le32_to_cpu(entry->pipenum);
Michal Kazior7c6aa252014-08-26 19:14:03 +03001539 dl_set = true;
1540 break;
1541 case PIPEDIR_OUT:
1542 WARN_ON(ul_set);
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001543 *ul_pipe = __le32_to_cpu(entry->pipenum);
Michal Kazior7c6aa252014-08-26 19:14:03 +03001544 ul_set = true;
1545 break;
1546 case PIPEDIR_INOUT:
1547 WARN_ON(dl_set);
1548 WARN_ON(ul_set);
Michal Kazior0fdc14e42014-08-26 19:14:03 +03001549 *dl_pipe = __le32_to_cpu(entry->pipenum);
1550 *ul_pipe = __le32_to_cpu(entry->pipenum);
Michal Kazior7c6aa252014-08-26 19:14:03 +03001551 dl_set = true;
1552 ul_set = true;
1553 break;
1554 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001555 }
Michal Kazior7c6aa252014-08-26 19:14:03 +03001556
1557 if (WARN_ON(!ul_set || !dl_set))
1558 return -ENOENT;
1559
Michal Kazior7c6aa252014-08-26 19:14:03 +03001560 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001561}
1562
Raja Manif52f5172016-01-27 15:24:22 +05301563void ath10k_pci_hif_get_default_pipe(struct ath10k *ar,
1564 u8 *ul_pipe, u8 *dl_pipe)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001565{
Michal Kazior7aa7a722014-08-25 12:09:38 +02001566 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci hif get default pipe\n");
Kalle Valo50f87a62014-03-28 09:32:52 +02001567
Kalle Valo5e3dd152013-06-12 20:52:10 +03001568 (void)ath10k_pci_hif_map_service_to_pipe(ar,
1569 ATH10K_HTC_SVC_ID_RSVD_CTRL,
Rajkumar Manoharan400143e2015-10-12 18:27:06 +05301570 ul_pipe, dl_pipe);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001571}
1572
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001573static void ath10k_pci_irq_msi_fw_mask(struct ath10k *ar)
1574{
1575 u32 val;
1576
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301577 switch (ar->hw_rev) {
1578 case ATH10K_HW_QCA988X:
Sven Eckelmann6fd3dd72016-06-02 17:59:49 +03001579 case ATH10K_HW_QCA9887:
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301580 case ATH10K_HW_QCA6174:
Bartosz Markowskia226b512015-10-28 15:09:53 +01001581 case ATH10K_HW_QCA9377:
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301582 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1583 CORE_CTRL_ADDRESS);
1584 val &= ~CORE_CTRL_PCIE_REG_31_MASK;
1585 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
1586 CORE_CTRL_ADDRESS, val);
1587 break;
1588 case ATH10K_HW_QCA99X0:
Vasanthakumar Thiagarajan651b4cd2016-05-23 23:12:45 +03001589 case ATH10K_HW_QCA9984:
Anilkumar Kollie565c312016-06-30 15:24:00 +03001590 case ATH10K_HW_QCA9888:
Raja Mani0b523ce2016-01-27 15:24:25 +05301591 case ATH10K_HW_QCA4019:
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301592 /* TODO: Find appropriate register configuration for QCA99X0
1593 * to mask irq/MSI.
1594 */
1595 break;
1596 }
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001597}
1598
1599static void ath10k_pci_irq_msi_fw_unmask(struct ath10k *ar)
1600{
1601 u32 val;
1602
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301603 switch (ar->hw_rev) {
1604 case ATH10K_HW_QCA988X:
Sven Eckelmann6fd3dd72016-06-02 17:59:49 +03001605 case ATH10K_HW_QCA9887:
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301606 case ATH10K_HW_QCA6174:
Bartosz Markowskia226b512015-10-28 15:09:53 +01001607 case ATH10K_HW_QCA9377:
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301608 val = ath10k_pci_read32(ar, SOC_CORE_BASE_ADDRESS +
1609 CORE_CTRL_ADDRESS);
1610 val |= CORE_CTRL_PCIE_REG_31_MASK;
1611 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS +
1612 CORE_CTRL_ADDRESS, val);
1613 break;
1614 case ATH10K_HW_QCA99X0:
Vasanthakumar Thiagarajan651b4cd2016-05-23 23:12:45 +03001615 case ATH10K_HW_QCA9984:
Anilkumar Kollie565c312016-06-30 15:24:00 +03001616 case ATH10K_HW_QCA9888:
Raja Mani0b523ce2016-01-27 15:24:25 +05301617 case ATH10K_HW_QCA4019:
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301618 /* TODO: Find appropriate register configuration for QCA99X0
1619 * to unmask irq/MSI.
1620 */
1621 break;
1622 }
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001623}
1624
Michal Kaziorec5ba4d2014-08-22 14:23:33 +02001625static void ath10k_pci_irq_disable(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001626{
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001627 ath10k_ce_disable_interrupts(ar);
1628 ath10k_pci_disable_and_clear_legacy_irq(ar);
1629 ath10k_pci_irq_msi_fw_mask(ar);
1630}
1631
1632static void ath10k_pci_irq_sync(struct ath10k *ar)
1633{
Kalle Valo5e3dd152013-06-12 20:52:10 +03001634 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001635
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05301636 synchronize_irq(ar_pci->pdev->irq);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001637}
1638
Michal Kaziorec5ba4d2014-08-22 14:23:33 +02001639static void ath10k_pci_irq_enable(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001640{
Michal Kaziorec5ba4d2014-08-22 14:23:33 +02001641 ath10k_ce_enable_interrupts(ar);
Michal Kaziore75db4e2014-08-28 22:14:16 +03001642 ath10k_pci_enable_legacy_irq(ar);
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001643 ath10k_pci_irq_msi_fw_unmask(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001644}
1645
1646static int ath10k_pci_hif_start(struct ath10k *ar)
1647{
Janusz Dziedzic76d870e2015-05-18 09:38:16 +00001648 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo9a149692015-10-05 17:56:36 +03001649
Michal Kazior7aa7a722014-08-25 12:09:38 +02001650 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif start\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001651
Michal Kaziorec5ba4d2014-08-22 14:23:33 +02001652 ath10k_pci_irq_enable(ar);
Michal Kazior728f95e2014-08-22 14:33:14 +02001653 ath10k_pci_rx_post(ar);
Kalle Valo50f87a62014-03-28 09:32:52 +02001654
Janusz Dziedzic76d870e2015-05-18 09:38:16 +00001655 pcie_capability_write_word(ar_pci->pdev, PCI_EXP_LNKCTL,
1656 ar_pci->link_ctl);
1657
Kalle Valo5e3dd152013-06-12 20:52:10 +03001658 return 0;
1659}
1660
Michal Kazior099ac7c2014-10-28 10:32:05 +01001661static void ath10k_pci_rx_pipe_cleanup(struct ath10k_pci_pipe *pci_pipe)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001662{
1663 struct ath10k *ar;
Michal Kazior099ac7c2014-10-28 10:32:05 +01001664 struct ath10k_ce_pipe *ce_pipe;
1665 struct ath10k_ce_ring *ce_ring;
1666 struct sk_buff *skb;
1667 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001668
Michal Kazior099ac7c2014-10-28 10:32:05 +01001669 ar = pci_pipe->hif_ce_state;
1670 ce_pipe = pci_pipe->ce_hdl;
1671 ce_ring = ce_pipe->dest_ring;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001672
Michal Kazior099ac7c2014-10-28 10:32:05 +01001673 if (!ce_ring)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001674 return;
1675
Michal Kazior099ac7c2014-10-28 10:32:05 +01001676 if (!pci_pipe->buf_sz)
1677 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001678
Michal Kazior099ac7c2014-10-28 10:32:05 +01001679 for (i = 0; i < ce_ring->nentries; i++) {
1680 skb = ce_ring->per_transfer_context[i];
1681 if (!skb)
1682 continue;
1683
1684 ce_ring->per_transfer_context[i] = NULL;
1685
Michal Kazior8582bf32015-01-24 12:14:47 +02001686 dma_unmap_single(ar->dev, ATH10K_SKB_RXCB(skb)->paddr,
Michal Kazior099ac7c2014-10-28 10:32:05 +01001687 skb->len + skb_tailroom(skb),
Kalle Valo5e3dd152013-06-12 20:52:10 +03001688 DMA_FROM_DEVICE);
Michal Kazior099ac7c2014-10-28 10:32:05 +01001689 dev_kfree_skb_any(skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001690 }
1691}
1692
Michal Kazior099ac7c2014-10-28 10:32:05 +01001693static void ath10k_pci_tx_pipe_cleanup(struct ath10k_pci_pipe *pci_pipe)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001694{
1695 struct ath10k *ar;
1696 struct ath10k_pci *ar_pci;
Michal Kazior099ac7c2014-10-28 10:32:05 +01001697 struct ath10k_ce_pipe *ce_pipe;
1698 struct ath10k_ce_ring *ce_ring;
Michal Kazior099ac7c2014-10-28 10:32:05 +01001699 struct sk_buff *skb;
Michal Kazior099ac7c2014-10-28 10:32:05 +01001700 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001701
Michal Kazior099ac7c2014-10-28 10:32:05 +01001702 ar = pci_pipe->hif_ce_state;
1703 ar_pci = ath10k_pci_priv(ar);
1704 ce_pipe = pci_pipe->ce_hdl;
1705 ce_ring = ce_pipe->src_ring;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001706
Michal Kazior099ac7c2014-10-28 10:32:05 +01001707 if (!ce_ring)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001708 return;
1709
Michal Kazior099ac7c2014-10-28 10:32:05 +01001710 if (!pci_pipe->buf_sz)
1711 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001712
Michal Kazior099ac7c2014-10-28 10:32:05 +01001713 for (i = 0; i < ce_ring->nentries; i++) {
1714 skb = ce_ring->per_transfer_context[i];
1715 if (!skb)
Michal Kazior2415fc12013-11-08 08:01:32 +01001716 continue;
Michal Kazior2415fc12013-11-08 08:01:32 +01001717
Michal Kazior099ac7c2014-10-28 10:32:05 +01001718 ce_ring->per_transfer_context[i] = NULL;
Michal Kazior099ac7c2014-10-28 10:32:05 +01001719
Rajkumar Manoharan0e5b2952015-10-12 18:27:01 +05301720 ath10k_htc_tx_completion_handler(ar, skb);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001721 }
1722}
1723
1724/*
1725 * Cleanup residual buffers for device shutdown:
1726 * buffers that were enqueued for receive
1727 * buffers that were to be sent
1728 * Note: Buffers that had completed but which were
1729 * not yet processed are on a completion queue. They
1730 * are handled when the completion thread shuts down.
1731 */
1732static void ath10k_pci_buffer_cleanup(struct ath10k *ar)
1733{
1734 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1735 int pipe_num;
1736
Michal Kaziorfad6ed72013-11-08 08:01:23 +01001737 for (pipe_num = 0; pipe_num < CE_COUNT; pipe_num++) {
Michal Kazior87263e52013-08-27 13:08:01 +02001738 struct ath10k_pci_pipe *pipe_info;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001739
1740 pipe_info = &ar_pci->pipe_info[pipe_num];
1741 ath10k_pci_rx_pipe_cleanup(pipe_info);
1742 ath10k_pci_tx_pipe_cleanup(pipe_info);
1743 }
1744}
1745
Raja Manif52f5172016-01-27 15:24:22 +05301746void ath10k_pci_ce_deinit(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001747{
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001748 int i;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001749
Michal Kazior25d0dbc2014-03-28 10:02:38 +02001750 for (i = 0; i < CE_COUNT; i++)
1751 ath10k_ce_deinit_pipe(ar, i);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001752}
1753
Raja Manif52f5172016-01-27 15:24:22 +05301754void ath10k_pci_flush(struct ath10k *ar)
Michal Kazior728f95e2014-08-22 14:33:14 +02001755{
1756 ath10k_pci_kill_tasklet(ar);
1757 ath10k_pci_buffer_cleanup(ar);
1758}
1759
Kalle Valo5e3dd152013-06-12 20:52:10 +03001760static void ath10k_pci_hif_stop(struct ath10k *ar)
1761{
Michal Kazior77258d42015-05-18 09:38:18 +00001762 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1763 unsigned long flags;
1764
Michal Kazior7aa7a722014-08-25 12:09:38 +02001765 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif stop\n");
Michal Kazior32270b62013-08-02 09:15:47 +02001766
Michal Kazior10d23db2014-08-22 14:33:15 +02001767 /* Most likely the device has HTT Rx ring configured. The only way to
1768 * prevent the device from accessing (and possible corrupting) host
1769 * memory is to reset the chip now.
Michal Kaziore75db4e2014-08-28 22:14:16 +03001770 *
1771 * There's also no known way of masking MSI interrupts on the device.
1772 * For ranged MSI the CE-related interrupts can be masked. However
1773 * regardless how many MSI interrupts are assigned the first one
1774 * is always used for firmware indications (crashes) and cannot be
1775 * masked. To prevent the device from asserting the interrupt reset it
1776 * before proceeding with cleanup.
Michal Kazior10d23db2014-08-22 14:33:15 +02001777 */
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05301778 ath10k_pci_safe_chip_reset(ar);
Michal Kaziore75db4e2014-08-28 22:14:16 +03001779
1780 ath10k_pci_irq_disable(ar);
Michal Kazior7c0f0e32014-10-20 14:14:38 +02001781 ath10k_pci_irq_sync(ar);
Michal Kaziore75db4e2014-08-28 22:14:16 +03001782 ath10k_pci_flush(ar);
Michal Kazior77258d42015-05-18 09:38:18 +00001783
1784 spin_lock_irqsave(&ar_pci->ps_lock, flags);
1785 WARN_ON(ar_pci->ps_wake_refcount > 0);
1786 spin_unlock_irqrestore(&ar_pci->ps_lock, flags);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001787}
1788
Raja Manif52f5172016-01-27 15:24:22 +05301789int ath10k_pci_hif_exchange_bmi_msg(struct ath10k *ar,
1790 void *req, u32 req_len,
1791 void *resp, u32 *resp_len)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001792{
1793 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior2aa39112013-08-27 13:08:02 +02001794 struct ath10k_pci_pipe *pci_tx = &ar_pci->pipe_info[BMI_CE_NUM_TO_TARG];
1795 struct ath10k_pci_pipe *pci_rx = &ar_pci->pipe_info[BMI_CE_NUM_TO_HOST];
1796 struct ath10k_ce_pipe *ce_tx = pci_tx->ce_hdl;
1797 struct ath10k_ce_pipe *ce_rx = pci_rx->ce_hdl;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001798 dma_addr_t req_paddr = 0;
1799 dma_addr_t resp_paddr = 0;
1800 struct bmi_xfer xfer = {};
1801 void *treq, *tresp = NULL;
1802 int ret = 0;
1803
Michal Kazior85622cd2013-11-25 14:06:22 +01001804 might_sleep();
1805
Kalle Valo5e3dd152013-06-12 20:52:10 +03001806 if (resp && !resp_len)
1807 return -EINVAL;
1808
1809 if (resp && resp_len && *resp_len == 0)
1810 return -EINVAL;
1811
1812 treq = kmemdup(req, req_len, GFP_KERNEL);
1813 if (!treq)
1814 return -ENOMEM;
1815
1816 req_paddr = dma_map_single(ar->dev, treq, req_len, DMA_TO_DEVICE);
1817 ret = dma_mapping_error(ar->dev, req_paddr);
Michal Kazior5e55e3c2015-08-19 13:10:43 +02001818 if (ret) {
1819 ret = -EIO;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001820 goto err_dma;
Michal Kazior5e55e3c2015-08-19 13:10:43 +02001821 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001822
1823 if (resp && resp_len) {
1824 tresp = kzalloc(*resp_len, GFP_KERNEL);
1825 if (!tresp) {
1826 ret = -ENOMEM;
1827 goto err_req;
1828 }
1829
1830 resp_paddr = dma_map_single(ar->dev, tresp, *resp_len,
1831 DMA_FROM_DEVICE);
1832 ret = dma_mapping_error(ar->dev, resp_paddr);
Michal Kazior5e55e3c2015-08-19 13:10:43 +02001833 if (ret) {
Anton Protopopov22baa982016-02-10 11:58:55 -05001834 ret = -EIO;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001835 goto err_req;
Michal Kazior5e55e3c2015-08-19 13:10:43 +02001836 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03001837
1838 xfer.wait_for_resp = true;
1839 xfer.resp_len = 0;
1840
Michal Kazior728f95e2014-08-22 14:33:14 +02001841 ath10k_ce_rx_post_buf(ce_rx, &xfer, resp_paddr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001842 }
1843
Kalle Valo5e3dd152013-06-12 20:52:10 +03001844 ret = ath10k_ce_send(ce_tx, &xfer, req_paddr, req_len, -1, 0);
1845 if (ret)
1846 goto err_resp;
1847
Michal Kazior85622cd2013-11-25 14:06:22 +01001848 ret = ath10k_pci_bmi_wait(ce_tx, ce_rx, &xfer);
1849 if (ret) {
Kalle Valo5e3dd152013-06-12 20:52:10 +03001850 u32 unused_buffer;
1851 unsigned int unused_nbytes;
1852 unsigned int unused_id;
1853
Kalle Valo5e3dd152013-06-12 20:52:10 +03001854 ath10k_ce_cancel_send_next(ce_tx, NULL, &unused_buffer,
1855 &unused_nbytes, &unused_id);
1856 } else {
1857 /* non-zero means we did not time out */
1858 ret = 0;
1859 }
1860
1861err_resp:
1862 if (resp) {
1863 u32 unused_buffer;
1864
1865 ath10k_ce_revoke_recv_next(ce_rx, NULL, &unused_buffer);
1866 dma_unmap_single(ar->dev, resp_paddr,
1867 *resp_len, DMA_FROM_DEVICE);
1868 }
1869err_req:
1870 dma_unmap_single(ar->dev, req_paddr, req_len, DMA_TO_DEVICE);
1871
1872 if (ret == 0 && resp_len) {
1873 *resp_len = min(*resp_len, xfer.resp_len);
1874 memcpy(resp, tresp, xfer.resp_len);
1875 }
1876err_dma:
1877 kfree(treq);
1878 kfree(tresp);
1879
1880 return ret;
1881}
1882
Michal Kazior5440ce22013-09-03 15:09:58 +02001883static void ath10k_pci_bmi_send_done(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001884{
Michal Kazior5440ce22013-09-03 15:09:58 +02001885 struct bmi_xfer *xfer;
Michal Kazior5440ce22013-09-03 15:09:58 +02001886
Rajkumar Manoharan765952e2015-10-23 18:01:05 +05301887 if (ath10k_ce_completed_send_next(ce_state, (void **)&xfer))
Michal Kazior5440ce22013-09-03 15:09:58 +02001888 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001889
Michal Kazior2374b182014-07-14 16:25:25 +03001890 xfer->tx_done = true;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001891}
1892
Michal Kazior5440ce22013-09-03 15:09:58 +02001893static void ath10k_pci_bmi_recv_data(struct ath10k_ce_pipe *ce_state)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001894{
Michal Kazior7aa7a722014-08-25 12:09:38 +02001895 struct ath10k *ar = ce_state->ar;
Michal Kazior5440ce22013-09-03 15:09:58 +02001896 struct bmi_xfer *xfer;
Michal Kazior5440ce22013-09-03 15:09:58 +02001897 unsigned int nbytes;
Michal Kazior5440ce22013-09-03 15:09:58 +02001898
Rajkumar Manoharan24d9ef52016-03-22 17:22:17 +05301899 if (ath10k_ce_completed_recv_next(ce_state, (void **)&xfer,
1900 &nbytes))
Michal Kazior5440ce22013-09-03 15:09:58 +02001901 return;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001902
Michal Kazior04ed9df2014-10-28 10:34:36 +01001903 if (WARN_ON_ONCE(!xfer))
1904 return;
1905
Kalle Valo5e3dd152013-06-12 20:52:10 +03001906 if (!xfer->wait_for_resp) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02001907 ath10k_warn(ar, "unexpected: BMI data received; ignoring\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03001908 return;
1909 }
1910
1911 xfer->resp_len = nbytes;
Michal Kazior2374b182014-07-14 16:25:25 +03001912 xfer->rx_done = true;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001913}
1914
Michal Kazior85622cd2013-11-25 14:06:22 +01001915static int ath10k_pci_bmi_wait(struct ath10k_ce_pipe *tx_pipe,
1916 struct ath10k_ce_pipe *rx_pipe,
1917 struct bmi_xfer *xfer)
1918{
1919 unsigned long timeout = jiffies + BMI_COMMUNICATION_TIMEOUT_HZ;
1920
1921 while (time_before_eq(jiffies, timeout)) {
1922 ath10k_pci_bmi_send_done(tx_pipe);
1923 ath10k_pci_bmi_recv_data(rx_pipe);
1924
Michal Kazior2374b182014-07-14 16:25:25 +03001925 if (xfer->tx_done && (xfer->rx_done == xfer->wait_for_resp))
Michal Kazior85622cd2013-11-25 14:06:22 +01001926 return 0;
1927
1928 schedule();
1929 }
1930
1931 return -ETIMEDOUT;
1932}
1933
Kalle Valo5e3dd152013-06-12 20:52:10 +03001934/*
Kalle Valo5e3dd152013-06-12 20:52:10 +03001935 * Send an interrupt to the device to wake up the Target CPU
1936 * so it has an opportunity to notice any changed state.
1937 */
1938static int ath10k_pci_wake_target_cpu(struct ath10k *ar)
1939{
Michal Kazior9e264942014-09-02 11:00:21 +03001940 u32 addr, val;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001941
Michal Kazior9e264942014-09-02 11:00:21 +03001942 addr = SOC_CORE_BASE_ADDRESS | CORE_CTRL_ADDRESS;
1943 val = ath10k_pci_read32(ar, addr);
1944 val |= CORE_CTRL_CPU_INTR_MASK;
1945 ath10k_pci_write32(ar, addr, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03001946
Michal Kazior1d2b48d2013-11-08 08:01:34 +01001947 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03001948}
1949
Michal Kaziord63955b2015-01-24 12:14:49 +02001950static int ath10k_pci_get_num_banks(struct ath10k *ar)
1951{
1952 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1953
1954 switch (ar_pci->pdev->device) {
1955 case QCA988X_2_0_DEVICE_ID:
Vasanthakumar Thiagarajan8bd47022015-06-18 12:31:03 +05301956 case QCA99X0_2_0_DEVICE_ID:
Anilkumar Kollie565c312016-06-30 15:24:00 +03001957 case QCA9888_2_0_DEVICE_ID:
Vasanthakumar Thiagarajan651b4cd2016-05-23 23:12:45 +03001958 case QCA9984_1_0_DEVICE_ID:
Sven Eckelmann6fd3dd72016-06-02 17:59:49 +03001959 case QCA9887_1_0_DEVICE_ID:
Michal Kaziord63955b2015-01-24 12:14:49 +02001960 return 1;
Michal Kazior36582e52015-08-13 14:32:26 +02001961 case QCA6164_2_1_DEVICE_ID:
Michal Kaziord63955b2015-01-24 12:14:49 +02001962 case QCA6174_2_1_DEVICE_ID:
1963 switch (MS(ar->chip_id, SOC_CHIP_ID_REV)) {
1964 case QCA6174_HW_1_0_CHIP_ID_REV:
1965 case QCA6174_HW_1_1_CHIP_ID_REV:
Michal Kazior11a002e2015-04-20 09:20:41 +00001966 case QCA6174_HW_2_1_CHIP_ID_REV:
1967 case QCA6174_HW_2_2_CHIP_ID_REV:
Michal Kaziord63955b2015-01-24 12:14:49 +02001968 return 3;
1969 case QCA6174_HW_1_3_CHIP_ID_REV:
1970 return 2;
Michal Kaziord63955b2015-01-24 12:14:49 +02001971 case QCA6174_HW_3_0_CHIP_ID_REV:
1972 case QCA6174_HW_3_1_CHIP_ID_REV:
1973 case QCA6174_HW_3_2_CHIP_ID_REV:
1974 return 9;
1975 }
1976 break;
Bartosz Markowskia226b512015-10-28 15:09:53 +01001977 case QCA9377_1_0_DEVICE_ID:
1978 return 2;
Michal Kaziord63955b2015-01-24 12:14:49 +02001979 }
1980
1981 ath10k_warn(ar, "unknown number of banks, assuming 1\n");
1982 return 1;
1983}
1984
Raja Mani4ddb3292016-01-27 15:24:23 +05301985static int ath10k_bus_get_num_banks(struct ath10k *ar)
1986{
1987 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
1988
1989 return ar_pci->bus_ops->get_num_banks(ar);
1990}
1991
Raja Manif52f5172016-01-27 15:24:22 +05301992int ath10k_pci_init_config(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03001993{
1994 u32 interconnect_targ_addr;
1995 u32 pcie_state_targ_addr = 0;
1996 u32 pipe_cfg_targ_addr = 0;
1997 u32 svc_to_pipe_map = 0;
1998 u32 pcie_config_flags = 0;
1999 u32 ealloc_value;
2000 u32 ealloc_targ_addr;
2001 u32 flag2_value;
2002 u32 flag2_targ_addr;
2003 int ret = 0;
2004
2005 /* Download to Target the CE Config and the service-to-CE map */
2006 interconnect_targ_addr =
2007 host_interest_item_address(HI_ITEM(hi_interconnect_state));
2008
2009 /* Supply Target-side CE configuration */
Michal Kazior9e264942014-09-02 11:00:21 +03002010 ret = ath10k_pci_diag_read32(ar, interconnect_targ_addr,
2011 &pcie_state_targ_addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002012 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002013 ath10k_err(ar, "Failed to get pcie state addr: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002014 return ret;
2015 }
2016
2017 if (pcie_state_targ_addr == 0) {
2018 ret = -EIO;
Michal Kazior7aa7a722014-08-25 12:09:38 +02002019 ath10k_err(ar, "Invalid pcie state addr\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002020 return ret;
2021 }
2022
Michal Kazior9e264942014-09-02 11:00:21 +03002023 ret = ath10k_pci_diag_read32(ar, (pcie_state_targ_addr +
Kalle Valo5e3dd152013-06-12 20:52:10 +03002024 offsetof(struct pcie_state,
Michal Kazior9e264942014-09-02 11:00:21 +03002025 pipe_cfg_addr)),
2026 &pipe_cfg_targ_addr);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002027 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002028 ath10k_err(ar, "Failed to get pipe cfg addr: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002029 return ret;
2030 }
2031
2032 if (pipe_cfg_targ_addr == 0) {
2033 ret = -EIO;
Michal Kazior7aa7a722014-08-25 12:09:38 +02002034 ath10k_err(ar, "Invalid pipe cfg addr\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002035 return ret;
2036 }
2037
2038 ret = ath10k_pci_diag_write_mem(ar, pipe_cfg_targ_addr,
Kalle Valo5b07e072014-09-14 12:50:06 +03002039 target_ce_config_wlan,
Vasanthakumar Thiagarajan050af062015-06-18 12:31:04 +05302040 sizeof(struct ce_pipe_config) *
2041 NUM_TARGET_CE_CONFIG_WLAN);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002042
2043 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002044 ath10k_err(ar, "Failed to write pipe cfg: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002045 return ret;
2046 }
2047
Michal Kazior9e264942014-09-02 11:00:21 +03002048 ret = ath10k_pci_diag_read32(ar, (pcie_state_targ_addr +
Kalle Valo5e3dd152013-06-12 20:52:10 +03002049 offsetof(struct pcie_state,
Michal Kazior9e264942014-09-02 11:00:21 +03002050 svc_to_pipe_map)),
2051 &svc_to_pipe_map);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002052 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002053 ath10k_err(ar, "Failed to get svc/pipe map: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002054 return ret;
2055 }
2056
2057 if (svc_to_pipe_map == 0) {
2058 ret = -EIO;
Michal Kazior7aa7a722014-08-25 12:09:38 +02002059 ath10k_err(ar, "Invalid svc_to_pipe map\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002060 return ret;
2061 }
2062
2063 ret = ath10k_pci_diag_write_mem(ar, svc_to_pipe_map,
Kalle Valo5b07e072014-09-14 12:50:06 +03002064 target_service_to_ce_map_wlan,
2065 sizeof(target_service_to_ce_map_wlan));
Kalle Valo5e3dd152013-06-12 20:52:10 +03002066 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002067 ath10k_err(ar, "Failed to write svc/pipe map: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002068 return ret;
2069 }
2070
Michal Kazior9e264942014-09-02 11:00:21 +03002071 ret = ath10k_pci_diag_read32(ar, (pcie_state_targ_addr +
Kalle Valo5e3dd152013-06-12 20:52:10 +03002072 offsetof(struct pcie_state,
Michal Kazior9e264942014-09-02 11:00:21 +03002073 config_flags)),
2074 &pcie_config_flags);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002075 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002076 ath10k_err(ar, "Failed to get pcie config_flags: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002077 return ret;
2078 }
2079
2080 pcie_config_flags &= ~PCIE_CONFIG_FLAG_ENABLE_L1;
2081
Michal Kazior9e264942014-09-02 11:00:21 +03002082 ret = ath10k_pci_diag_write32(ar, (pcie_state_targ_addr +
2083 offsetof(struct pcie_state,
2084 config_flags)),
2085 pcie_config_flags);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002086 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002087 ath10k_err(ar, "Failed to write pcie config_flags: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002088 return ret;
2089 }
2090
2091 /* configure early allocation */
2092 ealloc_targ_addr = host_interest_item_address(HI_ITEM(hi_early_alloc));
2093
Michal Kazior9e264942014-09-02 11:00:21 +03002094 ret = ath10k_pci_diag_read32(ar, ealloc_targ_addr, &ealloc_value);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002095 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002096 ath10k_err(ar, "Faile to get early alloc val: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002097 return ret;
2098 }
2099
2100 /* first bank is switched to IRAM */
2101 ealloc_value |= ((HI_EARLY_ALLOC_MAGIC << HI_EARLY_ALLOC_MAGIC_SHIFT) &
2102 HI_EARLY_ALLOC_MAGIC_MASK);
Raja Mani4ddb3292016-01-27 15:24:23 +05302103 ealloc_value |= ((ath10k_bus_get_num_banks(ar) <<
Michal Kaziord63955b2015-01-24 12:14:49 +02002104 HI_EARLY_ALLOC_IRAM_BANKS_SHIFT) &
Kalle Valo5e3dd152013-06-12 20:52:10 +03002105 HI_EARLY_ALLOC_IRAM_BANKS_MASK);
2106
Michal Kazior9e264942014-09-02 11:00:21 +03002107 ret = ath10k_pci_diag_write32(ar, ealloc_targ_addr, ealloc_value);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002108 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002109 ath10k_err(ar, "Failed to set early alloc val: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002110 return ret;
2111 }
2112
2113 /* Tell Target to proceed with initialization */
2114 flag2_targ_addr = host_interest_item_address(HI_ITEM(hi_option_flag2));
2115
Michal Kazior9e264942014-09-02 11:00:21 +03002116 ret = ath10k_pci_diag_read32(ar, flag2_targ_addr, &flag2_value);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002117 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002118 ath10k_err(ar, "Failed to get option val: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002119 return ret;
2120 }
2121
2122 flag2_value |= HI_OPTION_EARLY_CFG_DONE;
2123
Michal Kazior9e264942014-09-02 11:00:21 +03002124 ret = ath10k_pci_diag_write32(ar, flag2_targ_addr, flag2_value);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002125 if (ret != 0) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002126 ath10k_err(ar, "Failed to set option val: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002127 return ret;
2128 }
2129
2130 return 0;
2131}
2132
Ryan Hsu2727a742015-11-05 18:44:27 -08002133static void ath10k_pci_override_ce_config(struct ath10k *ar)
2134{
2135 struct ce_attr *attr;
2136 struct ce_pipe_config *config;
2137
2138 /* For QCA6174 we're overriding the Copy Engine 5 configuration,
2139 * since it is currently used for other feature.
2140 */
2141
2142 /* Override Host's Copy Engine 5 configuration */
2143 attr = &host_ce_config_wlan[5];
2144 attr->src_sz_max = 0;
2145 attr->dest_nentries = 0;
2146
2147 /* Override Target firmware's Copy Engine configuration */
2148 config = &target_ce_config_wlan[5];
2149 config->pipedir = __cpu_to_le32(PIPEDIR_OUT);
2150 config->nbytes_max = __cpu_to_le32(2048);
2151
2152 /* Map from service/endpoint to Copy Engine */
2153 target_service_to_ce_map_wlan[15].pipenum = __cpu_to_le32(1);
2154}
2155
Raja Manif52f5172016-01-27 15:24:22 +05302156int ath10k_pci_alloc_pipes(struct ath10k *ar)
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002157{
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002158 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2159 struct ath10k_pci_pipe *pipe;
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002160 int i, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002161
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002162 for (i = 0; i < CE_COUNT; i++) {
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002163 pipe = &ar_pci->pipe_info[i];
2164 pipe->ce_hdl = &ar_pci->ce_states[i];
2165 pipe->pipe_num = i;
2166 pipe->hif_ce_state = ar;
2167
Rajkumar Manoharan9d9bdbb2015-10-12 18:27:02 +05302168 ret = ath10k_ce_alloc_pipe(ar, i, &host_ce_config_wlan[i]);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002169 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002170 ath10k_err(ar, "failed to allocate copy engine pipe %d: %d\n",
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002171 i, ret);
2172 return ret;
2173 }
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002174
2175 /* Last CE is Diagnostic Window */
Vasanthakumar Thiagarajan050af062015-06-18 12:31:04 +05302176 if (i == CE_DIAG_PIPE) {
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002177 ar_pci->ce_diag = pipe->ce_hdl;
2178 continue;
2179 }
2180
2181 pipe->buf_sz = (size_t)(host_ce_config_wlan[i].src_sz_max);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002182 }
2183
2184 return 0;
2185}
2186
Raja Manif52f5172016-01-27 15:24:22 +05302187void ath10k_pci_free_pipes(struct ath10k *ar)
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002188{
2189 int i;
2190
2191 for (i = 0; i < CE_COUNT; i++)
2192 ath10k_ce_free_pipe(ar, i);
2193}
Kalle Valo5e3dd152013-06-12 20:52:10 +03002194
Raja Manif52f5172016-01-27 15:24:22 +05302195int ath10k_pci_init_pipes(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002196{
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002197 int i, ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002198
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002199 for (i = 0; i < CE_COUNT; i++) {
2200 ret = ath10k_ce_init_pipe(ar, i, &host_ce_config_wlan[i]);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002201 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002202 ath10k_err(ar, "failed to initialize copy engine pipe %d: %d\n",
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002203 i, ret);
Michal Kazior25d0dbc2014-03-28 10:02:38 +02002204 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002205 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002206 }
2207
Kalle Valo5e3dd152013-06-12 20:52:10 +03002208 return 0;
2209}
2210
Michal Kazior5c771e72014-08-22 14:23:34 +02002211static bool ath10k_pci_has_fw_crashed(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002212{
Michal Kazior5c771e72014-08-22 14:23:34 +02002213 return ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS) &
2214 FW_IND_EVENT_PENDING;
2215}
Kalle Valo5e3dd152013-06-12 20:52:10 +03002216
Michal Kazior5c771e72014-08-22 14:23:34 +02002217static void ath10k_pci_fw_crashed_clear(struct ath10k *ar)
2218{
2219 u32 val;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002220
Michal Kazior5c771e72014-08-22 14:23:34 +02002221 val = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
2222 val &= ~FW_IND_EVENT_PENDING;
2223 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002224}
2225
Mohammed Shafi Shajakhanfb7caab2016-06-29 19:29:24 +03002226static bool ath10k_pci_has_device_gone(struct ath10k *ar)
2227{
2228 u32 val;
2229
2230 val = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
2231 return (val == 0xffffffff);
2232}
2233
Michal Kaziorde013572014-05-14 16:56:16 +03002234/* this function effectively clears target memory controller assert line */
2235static void ath10k_pci_warm_reset_si0(struct ath10k *ar)
2236{
2237 u32 val;
2238
2239 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
2240 ath10k_pci_soc_write32(ar, SOC_RESET_CONTROL_ADDRESS,
2241 val | SOC_RESET_CONTROL_SI0_RST_MASK);
2242 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
2243
2244 msleep(10);
2245
2246 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
2247 ath10k_pci_soc_write32(ar, SOC_RESET_CONTROL_ADDRESS,
2248 val & ~SOC_RESET_CONTROL_SI0_RST_MASK);
2249 val = ath10k_pci_soc_read32(ar, SOC_RESET_CONTROL_ADDRESS);
2250
2251 msleep(10);
2252}
2253
Michal Kazior61c16482014-10-28 10:32:06 +01002254static void ath10k_pci_warm_reset_cpu(struct ath10k *ar)
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002255{
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002256 u32 val;
2257
Kalle Valob39712c2014-03-28 09:32:46 +02002258 ath10k_pci_write32(ar, FW_INDICATOR_ADDRESS, 0);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002259
Michal Kazior61c16482014-10-28 10:32:06 +01002260 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
2261 SOC_RESET_CONTROL_ADDRESS);
2262 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
2263 val | SOC_RESET_CONTROL_CPU_WARM_RST_MASK);
2264}
2265
2266static void ath10k_pci_warm_reset_ce(struct ath10k *ar)
2267{
2268 u32 val;
2269
2270 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
2271 SOC_RESET_CONTROL_ADDRESS);
2272
2273 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
2274 val | SOC_RESET_CONTROL_CE_RST_MASK);
2275 msleep(10);
2276 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS + SOC_RESET_CONTROL_ADDRESS,
2277 val & ~SOC_RESET_CONTROL_CE_RST_MASK);
2278}
2279
2280static void ath10k_pci_warm_reset_clear_lf(struct ath10k *ar)
2281{
2282 u32 val;
2283
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002284 val = ath10k_pci_read32(ar, RTC_SOC_BASE_ADDRESS +
2285 SOC_LF_TIMER_CONTROL0_ADDRESS);
2286 ath10k_pci_write32(ar, RTC_SOC_BASE_ADDRESS +
2287 SOC_LF_TIMER_CONTROL0_ADDRESS,
2288 val & ~SOC_LF_TIMER_CONTROL0_ENABLE_MASK);
Michal Kazior61c16482014-10-28 10:32:06 +01002289}
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002290
Michal Kazior61c16482014-10-28 10:32:06 +01002291static int ath10k_pci_warm_reset(struct ath10k *ar)
2292{
2293 int ret;
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002294
Michal Kazior61c16482014-10-28 10:32:06 +01002295 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot warm reset\n");
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002296
Michal Kazior61c16482014-10-28 10:32:06 +01002297 spin_lock_bh(&ar->data_lock);
2298 ar->stats.fw_warm_reset_counter++;
2299 spin_unlock_bh(&ar->data_lock);
2300
2301 ath10k_pci_irq_disable(ar);
2302
2303 /* Make sure the target CPU is not doing anything dangerous, e.g. if it
2304 * were to access copy engine while host performs copy engine reset
2305 * then it is possible for the device to confuse pci-e controller to
2306 * the point of bringing host system to a complete stop (i.e. hang).
2307 */
Michal Kaziorde013572014-05-14 16:56:16 +03002308 ath10k_pci_warm_reset_si0(ar);
Michal Kazior61c16482014-10-28 10:32:06 +01002309 ath10k_pci_warm_reset_cpu(ar);
2310 ath10k_pci_init_pipes(ar);
2311 ath10k_pci_wait_for_target_init(ar);
Michal Kaziorde013572014-05-14 16:56:16 +03002312
Michal Kazior61c16482014-10-28 10:32:06 +01002313 ath10k_pci_warm_reset_clear_lf(ar);
2314 ath10k_pci_warm_reset_ce(ar);
2315 ath10k_pci_warm_reset_cpu(ar);
2316 ath10k_pci_init_pipes(ar);
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002317
Michal Kazior61c16482014-10-28 10:32:06 +01002318 ret = ath10k_pci_wait_for_target_init(ar);
2319 if (ret) {
2320 ath10k_warn(ar, "failed to wait for target init: %d\n", ret);
2321 return ret;
2322 }
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002323
Michal Kazior7aa7a722014-08-25 12:09:38 +02002324 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot warm reset complete\n");
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002325
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002326 return 0;
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002327}
2328
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03002329static int ath10k_pci_qca99x0_soft_chip_reset(struct ath10k *ar)
2330{
2331 ath10k_pci_irq_disable(ar);
2332 return ath10k_pci_qca99x0_chip_reset(ar);
2333}
2334
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05302335static int ath10k_pci_safe_chip_reset(struct ath10k *ar)
2336{
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03002337 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2338
2339 if (!ar_pci->pci_soft_reset)
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05302340 return -ENOTSUPP;
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03002341
2342 return ar_pci->pci_soft_reset(ar);
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05302343}
2344
Michal Kaziord63955b2015-01-24 12:14:49 +02002345static int ath10k_pci_qca988x_chip_reset(struct ath10k *ar)
Michal Kazior0bc14d02014-10-28 10:32:07 +01002346{
2347 int i, ret;
2348 u32 val;
2349
Michal Kaziord63955b2015-01-24 12:14:49 +02002350 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot 988x chip reset\n");
Michal Kazior0bc14d02014-10-28 10:32:07 +01002351
2352 /* Some hardware revisions (e.g. CUS223v2) has issues with cold reset.
2353 * It is thus preferred to use warm reset which is safer but may not be
2354 * able to recover the device from all possible fail scenarios.
2355 *
2356 * Warm reset doesn't always work on first try so attempt it a few
2357 * times before giving up.
2358 */
2359 for (i = 0; i < ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS; i++) {
2360 ret = ath10k_pci_warm_reset(ar);
2361 if (ret) {
2362 ath10k_warn(ar, "failed to warm reset attempt %d of %d: %d\n",
2363 i + 1, ATH10K_PCI_NUM_WARM_RESET_ATTEMPTS,
2364 ret);
2365 continue;
2366 }
2367
2368 /* FIXME: Sometimes copy engine doesn't recover after warm
2369 * reset. In most cases this needs cold reset. In some of these
2370 * cases the device is in such a state that a cold reset may
2371 * lock up the host.
2372 *
2373 * Reading any host interest register via copy engine is
2374 * sufficient to verify if device is capable of booting
2375 * firmware blob.
2376 */
2377 ret = ath10k_pci_init_pipes(ar);
2378 if (ret) {
2379 ath10k_warn(ar, "failed to init copy engine: %d\n",
2380 ret);
2381 continue;
2382 }
2383
2384 ret = ath10k_pci_diag_read32(ar, QCA988X_HOST_INTEREST_ADDRESS,
2385 &val);
2386 if (ret) {
2387 ath10k_warn(ar, "failed to poke copy engine: %d\n",
2388 ret);
2389 continue;
2390 }
2391
2392 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot chip reset complete (warm)\n");
2393 return 0;
2394 }
2395
2396 if (ath10k_pci_reset_mode == ATH10K_PCI_RESET_WARM_ONLY) {
2397 ath10k_warn(ar, "refusing cold reset as requested\n");
2398 return -EPERM;
2399 }
2400
2401 ret = ath10k_pci_cold_reset(ar);
2402 if (ret) {
2403 ath10k_warn(ar, "failed to cold reset: %d\n", ret);
2404 return ret;
2405 }
2406
2407 ret = ath10k_pci_wait_for_target_init(ar);
2408 if (ret) {
2409 ath10k_warn(ar, "failed to wait for target after cold reset: %d\n",
2410 ret);
2411 return ret;
2412 }
2413
Michal Kaziord63955b2015-01-24 12:14:49 +02002414 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot qca988x chip reset complete (cold)\n");
Michal Kazior0bc14d02014-10-28 10:32:07 +01002415
2416 return 0;
2417}
2418
Michal Kaziord63955b2015-01-24 12:14:49 +02002419static int ath10k_pci_qca6174_chip_reset(struct ath10k *ar)
2420{
2421 int ret;
2422
2423 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot qca6174 chip reset\n");
2424
2425 /* FIXME: QCA6174 requires cold + warm reset to work. */
2426
2427 ret = ath10k_pci_cold_reset(ar);
2428 if (ret) {
2429 ath10k_warn(ar, "failed to cold reset: %d\n", ret);
2430 return ret;
2431 }
2432
2433 ret = ath10k_pci_wait_for_target_init(ar);
2434 if (ret) {
2435 ath10k_warn(ar, "failed to wait for target after cold reset: %d\n",
Kalle Valo617b0f42015-10-05 17:56:35 +03002436 ret);
Michal Kaziord63955b2015-01-24 12:14:49 +02002437 return ret;
2438 }
2439
2440 ret = ath10k_pci_warm_reset(ar);
2441 if (ret) {
2442 ath10k_warn(ar, "failed to warm reset: %d\n", ret);
2443 return ret;
2444 }
2445
2446 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot qca6174 chip reset complete (cold)\n");
2447
2448 return 0;
2449}
2450
Vasanthakumar Thiagarajan6e4202c2015-06-18 12:31:06 +05302451static int ath10k_pci_qca99x0_chip_reset(struct ath10k *ar)
2452{
2453 int ret;
2454
2455 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot qca99x0 chip reset\n");
2456
2457 ret = ath10k_pci_cold_reset(ar);
2458 if (ret) {
2459 ath10k_warn(ar, "failed to cold reset: %d\n", ret);
2460 return ret;
2461 }
2462
2463 ret = ath10k_pci_wait_for_target_init(ar);
2464 if (ret) {
2465 ath10k_warn(ar, "failed to wait for target after cold reset: %d\n",
2466 ret);
2467 return ret;
2468 }
2469
2470 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot qca99x0 chip reset complete (cold)\n");
2471
2472 return 0;
2473}
2474
Michal Kaziord63955b2015-01-24 12:14:49 +02002475static int ath10k_pci_chip_reset(struct ath10k *ar)
2476{
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03002477 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2478
2479 if (WARN_ON(!ar_pci->pci_hard_reset))
Michal Kaziord63955b2015-01-24 12:14:49 +02002480 return -ENOTSUPP;
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03002481
2482 return ar_pci->pci_hard_reset(ar);
Michal Kaziord63955b2015-01-24 12:14:49 +02002483}
2484
Michal Kazior0bc14d02014-10-28 10:32:07 +01002485static int ath10k_pci_hif_power_up(struct ath10k *ar)
Michal Kazior8c5c5362013-07-16 09:38:50 +02002486{
Janusz Dziedzic76d870e2015-05-18 09:38:16 +00002487 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02002488 int ret;
2489
Michal Kazior0bc14d02014-10-28 10:32:07 +01002490 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif power up\n");
2491
Janusz Dziedzic76d870e2015-05-18 09:38:16 +00002492 pcie_capability_read_word(ar_pci->pdev, PCI_EXP_LNKCTL,
2493 &ar_pci->link_ctl);
2494 pcie_capability_write_word(ar_pci->pdev, PCI_EXP_LNKCTL,
2495 ar_pci->link_ctl & ~PCI_EXP_LNKCTL_ASPMC);
2496
Michal Kazior8c5c5362013-07-16 09:38:50 +02002497 /*
2498 * Bring the target up cleanly.
2499 *
2500 * The target may be in an undefined state with an AUX-powered Target
2501 * and a Host in WoW mode. If the Host crashes, loses power, or is
2502 * restarted (without unloading the driver) then the Target is left
2503 * (aux) powered and running. On a subsequent driver load, the Target
2504 * is in an unexpected state. We try to catch that here in order to
2505 * reset the Target and retry the probe.
2506 */
Michal Kazior0bc14d02014-10-28 10:32:07 +01002507 ret = ath10k_pci_chip_reset(ar);
Michal Kazior5b2589f2013-11-08 08:01:30 +01002508 if (ret) {
Michal Kaziora2fa8802015-01-12 15:29:37 +01002509 if (ath10k_pci_has_fw_crashed(ar)) {
2510 ath10k_warn(ar, "firmware crashed during chip reset\n");
2511 ath10k_pci_fw_crashed_clear(ar);
2512 ath10k_pci_fw_crashed_dump(ar);
2513 }
2514
Michal Kazior0bc14d02014-10-28 10:32:07 +01002515 ath10k_err(ar, "failed to reset chip: %d\n", ret);
Bartosz Markowski707b1bbd2014-10-31 09:03:43 +01002516 goto err_sleep;
Michal Kazior5b2589f2013-11-08 08:01:30 +01002517 }
Michal Kazior8c5c5362013-07-16 09:38:50 +02002518
Michal Kazior84cbf3a2014-10-20 14:14:39 +02002519 ret = ath10k_pci_init_pipes(ar);
Michal Kazior8c5c5362013-07-16 09:38:50 +02002520 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002521 ath10k_err(ar, "failed to initialize CE: %d\n", ret);
Bartosz Markowski707b1bbd2014-10-31 09:03:43 +01002522 goto err_sleep;
Michal Kaziorab977bd2013-11-25 14:06:26 +01002523 }
2524
Michal Kazior98563d52013-11-08 08:01:33 +01002525 ret = ath10k_pci_init_config(ar);
2526 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002527 ath10k_err(ar, "failed to setup init config: %d\n", ret);
Michal Kazior5c771e72014-08-22 14:23:34 +02002528 goto err_ce;
Michal Kazior98563d52013-11-08 08:01:33 +01002529 }
Michal Kazior8c5c5362013-07-16 09:38:50 +02002530
2531 ret = ath10k_pci_wake_target_cpu(ar);
2532 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002533 ath10k_err(ar, "could not wake up target CPU: %d\n", ret);
Michal Kazior5c771e72014-08-22 14:23:34 +02002534 goto err_ce;
Michal Kazior8c5c5362013-07-16 09:38:50 +02002535 }
2536
2537 return 0;
2538
2539err_ce:
2540 ath10k_pci_ce_deinit(ar);
Michal Kazior0bc14d02014-10-28 10:32:07 +01002541
Bartosz Markowski707b1bbd2014-10-31 09:03:43 +01002542err_sleep:
Michal Kazior8c5c5362013-07-16 09:38:50 +02002543 return ret;
2544}
2545
Raja Manif52f5172016-01-27 15:24:22 +05302546void ath10k_pci_hif_power_down(struct ath10k *ar)
Michal Kazior8c5c5362013-07-16 09:38:50 +02002547{
Michal Kazior7aa7a722014-08-25 12:09:38 +02002548 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot hif power down\n");
Bartosz Markowski8cc8df92013-08-02 09:58:49 +02002549
Michal Kaziorc011b282014-10-28 10:32:08 +01002550 /* Currently hif_power_up performs effectively a reset and hif_stop
2551 * resets the chip as well so there's no point in resetting here.
2552 */
Michal Kazior8c5c5362013-07-16 09:38:50 +02002553}
2554
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002555#ifdef CONFIG_PM
2556
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002557static int ath10k_pci_hif_suspend(struct ath10k *ar)
2558{
Michal Kazior77258d42015-05-18 09:38:18 +00002559 /* The grace timer can still be counting down and ar->ps_awake be true.
2560 * It is known that the device may be asleep after resuming regardless
2561 * of the SoC powersave state before suspending. Hence make sure the
2562 * device is asleep before proceeding.
2563 */
2564 ath10k_pci_sleep_sync(ar);
Michal Kazior320e14b2015-03-02 13:22:13 +01002565
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002566 return 0;
2567}
2568
2569static int ath10k_pci_hif_resume(struct ath10k *ar)
2570{
2571 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2572 struct pci_dev *pdev = ar_pci->pdev;
2573 u32 val;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03002574 int ret = 0;
2575
Rajkumar Manoharand9d6a5a2015-12-16 16:52:19 +02002576 ret = ath10k_pci_force_wake(ar);
2577 if (ret) {
2578 ath10k_err(ar, "failed to wake up target: %d\n", ret);
2579 return ret;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03002580 }
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002581
Michal Kazior9ff4be92015-03-02 13:22:14 +01002582 /* Suspend/Resume resets the PCI configuration space, so we have to
2583 * re-disable the RETRY_TIMEOUT register (0x41) to keep PCI Tx retries
2584 * from interfering with C3 CPU state. pci_restore_state won't help
2585 * here since it only restores the first 64 bytes pci config header.
2586 */
2587 pci_read_config_dword(pdev, 0x40, &val);
2588 if ((val & 0x0000ff00) != 0)
2589 pci_write_config_dword(pdev, 0x40, val & 0xffff00ff);
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002590
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03002591 return ret;
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002592}
2593#endif
2594
Sven Eckelmann6847f962016-06-02 17:59:50 +03002595static bool ath10k_pci_validate_cal(void *data, size_t size)
2596{
2597 __le16 *cal_words = data;
2598 u16 checksum = 0;
2599 size_t i;
2600
2601 if (size % 2 != 0)
2602 return false;
2603
2604 for (i = 0; i < size / 2; i++)
2605 checksum ^= le16_to_cpu(cal_words[i]);
2606
2607 return checksum == 0xffff;
2608}
2609
2610static void ath10k_pci_enable_eeprom(struct ath10k *ar)
2611{
2612 /* Enable SI clock */
2613 ath10k_pci_soc_write32(ar, CLOCK_CONTROL_OFFSET, 0x0);
2614
2615 /* Configure GPIOs for I2C operation */
2616 ath10k_pci_write32(ar,
2617 GPIO_BASE_ADDRESS + GPIO_PIN0_OFFSET +
2618 4 * QCA9887_1_0_I2C_SDA_GPIO_PIN,
2619 SM(QCA9887_1_0_I2C_SDA_PIN_CONFIG,
2620 GPIO_PIN0_CONFIG) |
2621 SM(1, GPIO_PIN0_PAD_PULL));
2622
2623 ath10k_pci_write32(ar,
2624 GPIO_BASE_ADDRESS + GPIO_PIN0_OFFSET +
2625 4 * QCA9887_1_0_SI_CLK_GPIO_PIN,
2626 SM(QCA9887_1_0_SI_CLK_PIN_CONFIG, GPIO_PIN0_CONFIG) |
2627 SM(1, GPIO_PIN0_PAD_PULL));
2628
2629 ath10k_pci_write32(ar,
2630 GPIO_BASE_ADDRESS +
2631 QCA9887_1_0_GPIO_ENABLE_W1TS_LOW_ADDRESS,
2632 1u << QCA9887_1_0_SI_CLK_GPIO_PIN);
2633
2634 /* In Swift ASIC - EEPROM clock will be (110MHz/512) = 214KHz */
2635 ath10k_pci_write32(ar,
2636 SI_BASE_ADDRESS + SI_CONFIG_OFFSET,
2637 SM(1, SI_CONFIG_ERR_INT) |
2638 SM(1, SI_CONFIG_BIDIR_OD_DATA) |
2639 SM(1, SI_CONFIG_I2C) |
2640 SM(1, SI_CONFIG_POS_SAMPLE) |
2641 SM(1, SI_CONFIG_INACTIVE_DATA) |
2642 SM(1, SI_CONFIG_INACTIVE_CLK) |
2643 SM(8, SI_CONFIG_DIVIDER));
2644}
2645
2646static int ath10k_pci_read_eeprom(struct ath10k *ar, u16 addr, u8 *out)
2647{
2648 u32 reg;
2649 int wait_limit;
2650
2651 /* set device select byte and for the read operation */
2652 reg = QCA9887_EEPROM_SELECT_READ |
2653 SM(addr, QCA9887_EEPROM_ADDR_LO) |
2654 SM(addr >> 8, QCA9887_EEPROM_ADDR_HI);
2655 ath10k_pci_write32(ar, SI_BASE_ADDRESS + SI_TX_DATA0_OFFSET, reg);
2656
2657 /* write transmit data, transfer length, and START bit */
2658 ath10k_pci_write32(ar, SI_BASE_ADDRESS + SI_CS_OFFSET,
2659 SM(1, SI_CS_START) | SM(1, SI_CS_RX_CNT) |
2660 SM(4, SI_CS_TX_CNT));
2661
2662 /* wait max 1 sec */
2663 wait_limit = 100000;
2664
2665 /* wait for SI_CS_DONE_INT */
2666 do {
2667 reg = ath10k_pci_read32(ar, SI_BASE_ADDRESS + SI_CS_OFFSET);
2668 if (MS(reg, SI_CS_DONE_INT))
2669 break;
2670
2671 wait_limit--;
2672 udelay(10);
2673 } while (wait_limit > 0);
2674
2675 if (!MS(reg, SI_CS_DONE_INT)) {
2676 ath10k_err(ar, "timeout while reading device EEPROM at %04x\n",
2677 addr);
2678 return -ETIMEDOUT;
2679 }
2680
2681 /* clear SI_CS_DONE_INT */
2682 ath10k_pci_write32(ar, SI_BASE_ADDRESS + SI_CS_OFFSET, reg);
2683
2684 if (MS(reg, SI_CS_DONE_ERR)) {
2685 ath10k_err(ar, "failed to read device EEPROM at %04x\n", addr);
2686 return -EIO;
2687 }
2688
2689 /* extract receive data */
2690 reg = ath10k_pci_read32(ar, SI_BASE_ADDRESS + SI_RX_DATA0_OFFSET);
2691 *out = reg;
2692
2693 return 0;
2694}
2695
2696static int ath10k_pci_hif_fetch_cal_eeprom(struct ath10k *ar, void **data,
2697 size_t *data_len)
2698{
2699 u8 *caldata = NULL;
2700 size_t calsize, i;
2701 int ret;
2702
2703 if (!QCA_REV_9887(ar))
2704 return -EOPNOTSUPP;
2705
2706 calsize = ar->hw_params.cal_data_len;
2707 caldata = kmalloc(calsize, GFP_KERNEL);
2708 if (!caldata)
2709 return -ENOMEM;
2710
2711 ath10k_pci_enable_eeprom(ar);
2712
2713 for (i = 0; i < calsize; i++) {
2714 ret = ath10k_pci_read_eeprom(ar, i, &caldata[i]);
2715 if (ret)
2716 goto err_free;
2717 }
2718
2719 if (!ath10k_pci_validate_cal(caldata, calsize))
2720 goto err_free;
2721
2722 *data = caldata;
2723 *data_len = calsize;
2724
2725 return 0;
2726
2727err_free:
2728 kfree(data);
2729
2730 return -EINVAL;
2731}
2732
Kalle Valo5e3dd152013-06-12 20:52:10 +03002733static const struct ath10k_hif_ops ath10k_pci_hif_ops = {
Michal Kazior726346f2014-02-27 18:50:04 +02002734 .tx_sg = ath10k_pci_hif_tx_sg,
Kalle Valoeef25402014-09-24 14:16:52 +03002735 .diag_read = ath10k_pci_hif_diag_read,
Yanbo Li9f65ad22014-11-25 12:24:48 +02002736 .diag_write = ath10k_pci_diag_write_mem,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002737 .exchange_bmi_msg = ath10k_pci_hif_exchange_bmi_msg,
2738 .start = ath10k_pci_hif_start,
2739 .stop = ath10k_pci_hif_stop,
2740 .map_service_to_pipe = ath10k_pci_hif_map_service_to_pipe,
2741 .get_default_pipe = ath10k_pci_hif_get_default_pipe,
2742 .send_complete_check = ath10k_pci_hif_send_complete_check,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002743 .get_free_queue_number = ath10k_pci_hif_get_free_queue_number,
Michal Kazior8c5c5362013-07-16 09:38:50 +02002744 .power_up = ath10k_pci_hif_power_up,
2745 .power_down = ath10k_pci_hif_power_down,
Yanbo Li077a3802014-11-25 12:24:33 +02002746 .read32 = ath10k_pci_read32,
2747 .write32 = ath10k_pci_write32,
Michal Kazior8cd13ca2013-07-16 09:38:54 +02002748#ifdef CONFIG_PM
2749 .suspend = ath10k_pci_hif_suspend,
2750 .resume = ath10k_pci_hif_resume,
2751#endif
Sven Eckelmann6847f962016-06-02 17:59:50 +03002752 .fetch_cal_eeprom = ath10k_pci_hif_fetch_cal_eeprom,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002753};
2754
Kalle Valo5e3dd152013-06-12 20:52:10 +03002755/*
2756 * Top-level interrupt handler for all PCI interrupts from a Target.
2757 * When a block of MSI interrupts is allocated, this top-level handler
2758 * is not used; instead, we directly call the correct sub-handler.
2759 */
2760static irqreturn_t ath10k_pci_interrupt_handler(int irq, void *arg)
2761{
2762 struct ath10k *ar = arg;
2763 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03002764 int ret;
2765
Mohammed Shafi Shajakhanfb7caab2016-06-29 19:29:24 +03002766 if (ath10k_pci_has_device_gone(ar))
2767 return IRQ_NONE;
2768
Rajkumar Manoharand9d6a5a2015-12-16 16:52:19 +02002769 ret = ath10k_pci_force_wake(ar);
2770 if (ret) {
2771 ath10k_warn(ar, "failed to wake device up on irq: %d\n", ret);
2772 return IRQ_NONE;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03002773 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002774
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05302775 if (ar_pci->oper_irq_mode == ATH10K_PCI_IRQ_LEGACY) {
Michal Kaziore5398872013-11-25 14:06:20 +01002776 if (!ath10k_pci_irq_pending(ar))
2777 return IRQ_NONE;
2778
Michal Kazior26852182013-11-25 14:06:25 +01002779 ath10k_pci_disable_and_clear_legacy_irq(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002780 }
2781
2782 tasklet_schedule(&ar_pci->intr_tq);
2783
2784 return IRQ_HANDLED;
2785}
2786
2787static void ath10k_pci_tasklet(unsigned long data)
2788{
2789 struct ath10k *ar = (struct ath10k *)data;
2790 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2791
Michal Kazior5c771e72014-08-22 14:23:34 +02002792 if (ath10k_pci_has_fw_crashed(ar)) {
Michal Kazior6f3b7ff2015-01-24 12:14:52 +02002793 ath10k_pci_irq_disable(ar);
Michal Kazior5c771e72014-08-22 14:23:34 +02002794 ath10k_pci_fw_crashed_clear(ar);
2795 ath10k_pci_fw_crashed_dump(ar);
2796 return;
2797 }
2798
Kalle Valo5e3dd152013-06-12 20:52:10 +03002799 ath10k_ce_per_engine_service_any(ar);
2800
Michal Kazior26852182013-11-25 14:06:25 +01002801 /* Re-enable legacy irq that was disabled in the irq handler */
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05302802 if (ar_pci->oper_irq_mode == ATH10K_PCI_IRQ_LEGACY)
Michal Kazior26852182013-11-25 14:06:25 +01002803 ath10k_pci_enable_legacy_irq(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002804}
2805
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002806static int ath10k_pci_request_irq_msi(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002807{
2808 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2809 int ret;
2810
2811 ret = request_irq(ar_pci->pdev->irq,
2812 ath10k_pci_interrupt_handler,
2813 IRQF_SHARED, "ath10k_pci", ar);
Kalle Valof3782742013-10-17 11:36:15 +03002814 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002815 ath10k_warn(ar, "failed to request MSI irq %d: %d\n",
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002816 ar_pci->pdev->irq, ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002817 return ret;
Kalle Valof3782742013-10-17 11:36:15 +03002818 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03002819
Kalle Valo5e3dd152013-06-12 20:52:10 +03002820 return 0;
2821}
2822
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002823static int ath10k_pci_request_irq_legacy(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002824{
2825 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002826 int ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002827
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002828 ret = request_irq(ar_pci->pdev->irq,
2829 ath10k_pci_interrupt_handler,
2830 IRQF_SHARED, "ath10k_pci", ar);
Kalle Valof3782742013-10-17 11:36:15 +03002831 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002832 ath10k_warn(ar, "failed to request legacy irq %d: %d\n",
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002833 ar_pci->pdev->irq, ret);
Kalle Valof3782742013-10-17 11:36:15 +03002834 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002835 }
2836
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002837 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002838}
2839
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002840static int ath10k_pci_request_irq(struct ath10k *ar)
2841{
2842 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2843
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05302844 switch (ar_pci->oper_irq_mode) {
2845 case ATH10K_PCI_IRQ_LEGACY:
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002846 return ath10k_pci_request_irq_legacy(ar);
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05302847 case ATH10K_PCI_IRQ_MSI:
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002848 return ath10k_pci_request_irq_msi(ar);
Janusz Dziedzicb8402d82015-09-17 08:17:33 +02002849 default:
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05302850 return -EINVAL;
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002851 }
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002852}
2853
2854static void ath10k_pci_free_irq(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002855{
2856 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002857
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05302858 free_irq(ar_pci->pdev->irq, ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002859}
2860
Raja Manif52f5172016-01-27 15:24:22 +05302861void ath10k_pci_init_irq_tasklets(struct ath10k *ar)
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002862{
2863 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002864
2865 tasklet_init(&ar_pci->intr_tq, ath10k_pci_tasklet, (unsigned long)ar);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002866}
2867
2868static int ath10k_pci_init_irq(struct ath10k *ar)
2869{
2870 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2871 int ret;
2872
2873 ath10k_pci_init_irq_tasklets(ar);
2874
Michal Kazior403d6272014-08-22 14:23:31 +02002875 if (ath10k_pci_irq_mode != ATH10K_PCI_IRQ_AUTO)
Michal Kazior7aa7a722014-08-25 12:09:38 +02002876 ath10k_info(ar, "limiting irq mode to: %d\n",
2877 ath10k_pci_irq_mode);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002878
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002879 /* Try MSI */
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002880 if (ath10k_pci_irq_mode != ATH10K_PCI_IRQ_LEGACY) {
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05302881 ar_pci->oper_irq_mode = ATH10K_PCI_IRQ_MSI;
Michal Kaziorcfe9c452013-11-25 14:06:27 +01002882 ret = pci_enable_msi(ar_pci->pdev);
2883 if (ret == 0)
2884 return 0;
2885
2886 /* fall-through */
2887 }
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002888
2889 /* Try legacy irq
2890 *
2891 * A potential race occurs here: The CORE_BASE write
2892 * depends on target correctly decoding AXI address but
2893 * host won't know when target writes BAR to CORE_CTRL.
2894 * This write might get lost if target has NOT written BAR.
2895 * For now, fix the race by repeating the write in below
2896 * synchronization checking. */
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05302897 ar_pci->oper_irq_mode = ATH10K_PCI_IRQ_LEGACY;
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002898
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002899 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
2900 PCIE_INTR_FIRMWARE_MASK | PCIE_INTR_CE_MASK_ALL);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002901
2902 return 0;
2903}
2904
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002905static void ath10k_pci_deinit_irq_legacy(struct ath10k *ar)
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002906{
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002907 ath10k_pci_write32(ar, SOC_CORE_BASE_ADDRESS + PCIE_INTR_ENABLE_ADDRESS,
2908 0);
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002909}
2910
2911static int ath10k_pci_deinit_irq(struct ath10k *ar)
2912{
2913 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
2914
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05302915 switch (ar_pci->oper_irq_mode) {
2916 case ATH10K_PCI_IRQ_LEGACY:
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002917 ath10k_pci_deinit_irq_legacy(ar);
Janusz Dziedzicb8402d82015-09-17 08:17:33 +02002918 break;
Alexander Gordeevbb8b6212014-02-13 17:50:01 +02002919 default:
2920 pci_disable_msi(ar_pci->pdev);
Janusz Dziedzicb8402d82015-09-17 08:17:33 +02002921 break;
Michal Kaziorfc15ca12013-11-25 14:06:21 +01002922 }
2923
Janusz Dziedzicb8402d82015-09-17 08:17:33 +02002924 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002925}
2926
Raja Manif52f5172016-01-27 15:24:22 +05302927int ath10k_pci_wait_for_target_init(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002928{
2929 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
Kalle Valo0399eca2014-03-28 09:32:21 +02002930 unsigned long timeout;
Kalle Valo0399eca2014-03-28 09:32:21 +02002931 u32 val;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002932
Michal Kazior7aa7a722014-08-25 12:09:38 +02002933 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot waiting target to initialise\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002934
Kalle Valo0399eca2014-03-28 09:32:21 +02002935 timeout = jiffies + msecs_to_jiffies(ATH10K_PCI_TARGET_WAIT);
2936
2937 do {
2938 val = ath10k_pci_read32(ar, FW_INDICATOR_ADDRESS);
2939
Michal Kazior7aa7a722014-08-25 12:09:38 +02002940 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot target indicator %x\n",
2941 val);
Kalle Valo50f87a62014-03-28 09:32:52 +02002942
Kalle Valo0399eca2014-03-28 09:32:21 +02002943 /* target should never return this */
2944 if (val == 0xffffffff)
2945 continue;
2946
Michal Kazior7710cd22014-04-23 19:30:04 +03002947 /* the device has crashed so don't bother trying anymore */
2948 if (val & FW_IND_EVENT_PENDING)
2949 break;
2950
Kalle Valo0399eca2014-03-28 09:32:21 +02002951 if (val & FW_IND_INITIALIZED)
2952 break;
2953
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05302954 if (ar_pci->oper_irq_mode == ATH10K_PCI_IRQ_LEGACY)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002955 /* Fix potential race by repeating CORE_BASE writes */
Michal Kaziora4282492014-10-20 14:14:37 +02002956 ath10k_pci_enable_legacy_irq(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002957
Kalle Valo0399eca2014-03-28 09:32:21 +02002958 mdelay(10);
2959 } while (time_before(jiffies, timeout));
2960
Michal Kaziora4282492014-10-20 14:14:37 +02002961 ath10k_pci_disable_and_clear_legacy_irq(ar);
Michal Kazior7c0f0e32014-10-20 14:14:38 +02002962 ath10k_pci_irq_msi_fw_mask(ar);
Michal Kaziora4282492014-10-20 14:14:37 +02002963
Michal Kazior6a4f6e12014-04-23 19:30:03 +03002964 if (val == 0xffffffff) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002965 ath10k_err(ar, "failed to read device register, device is gone\n");
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002966 return -EIO;
Michal Kazior6a4f6e12014-04-23 19:30:03 +03002967 }
2968
Michal Kazior7710cd22014-04-23 19:30:04 +03002969 if (val & FW_IND_EVENT_PENDING) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002970 ath10k_warn(ar, "device has crashed during init\n");
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002971 return -ECOMM;
Michal Kazior7710cd22014-04-23 19:30:04 +03002972 }
2973
Michal Kazior6a4f6e12014-04-23 19:30:03 +03002974 if (!(val & FW_IND_INITIALIZED)) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02002975 ath10k_err(ar, "failed to receive initialized event from target: %08x\n",
Kalle Valo0399eca2014-03-28 09:32:21 +02002976 val);
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002977 return -ETIMEDOUT;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002978 }
2979
Michal Kazior7aa7a722014-08-25 12:09:38 +02002980 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot target initialised\n");
Michal Kaziorc0c378f2014-08-07 11:03:28 +02002981 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002982}
2983
Michal Kaziorfc36e3f2014-02-10 17:14:22 +01002984static int ath10k_pci_cold_reset(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03002985{
Kalle Valo5e3dd152013-06-12 20:52:10 +03002986 u32 val;
2987
Michal Kazior7aa7a722014-08-25 12:09:38 +02002988 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot cold reset\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03002989
Ben Greearf51dbe72014-09-29 14:41:46 +03002990 spin_lock_bh(&ar->data_lock);
2991
2992 ar->stats.fw_cold_reset_counter++;
2993
2994 spin_unlock_bh(&ar->data_lock);
2995
Kalle Valo5e3dd152013-06-12 20:52:10 +03002996 /* Put Target, including PCIe, into RESET. */
Kalle Valoe479ed42013-09-01 10:01:53 +03002997 val = ath10k_pci_reg_read32(ar, SOC_GLOBAL_RESET_ADDRESS);
Kalle Valo5e3dd152013-06-12 20:52:10 +03002998 val |= 1;
Kalle Valoe479ed42013-09-01 10:01:53 +03002999 ath10k_pci_reg_write32(ar, SOC_GLOBAL_RESET_ADDRESS, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003000
Vasanthakumar Thiagarajanacd19582015-07-10 14:31:20 +05303001 /* After writing into SOC_GLOBAL_RESET to put device into
3002 * reset and pulling out of reset pcie may not be stable
3003 * for any immediate pcie register access and cause bus error,
3004 * add delay before any pcie access request to fix this issue.
3005 */
3006 msleep(20);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003007
3008 /* Pull Target, including PCIe, out of RESET. */
3009 val &= ~1;
Kalle Valoe479ed42013-09-01 10:01:53 +03003010 ath10k_pci_reg_write32(ar, SOC_GLOBAL_RESET_ADDRESS, val);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003011
Vasanthakumar Thiagarajanacd19582015-07-10 14:31:20 +05303012 msleep(20);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003013
Michal Kazior7aa7a722014-08-25 12:09:38 +02003014 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot cold reset complete\n");
Kalle Valo50f87a62014-03-28 09:32:52 +02003015
Michal Kazior5b2589f2013-11-08 08:01:30 +01003016 return 0;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003017}
3018
Michal Kazior2986e3e2014-08-07 11:03:30 +02003019static int ath10k_pci_claim(struct ath10k *ar)
Kalle Valo5e3dd152013-06-12 20:52:10 +03003020{
Michal Kazior2986e3e2014-08-07 11:03:30 +02003021 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
3022 struct pci_dev *pdev = ar_pci->pdev;
Michal Kazior2986e3e2014-08-07 11:03:30 +02003023 int ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003024
3025 pci_set_drvdata(pdev, ar);
3026
Kalle Valo5e3dd152013-06-12 20:52:10 +03003027 ret = pci_enable_device(pdev);
3028 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003029 ath10k_err(ar, "failed to enable pci device: %d\n", ret);
Michal Kazior2986e3e2014-08-07 11:03:30 +02003030 return ret;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003031 }
3032
Kalle Valo5e3dd152013-06-12 20:52:10 +03003033 ret = pci_request_region(pdev, BAR_NUM, "ath");
3034 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003035 ath10k_err(ar, "failed to request region BAR%d: %d\n", BAR_NUM,
Michal Kazior2986e3e2014-08-07 11:03:30 +02003036 ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003037 goto err_device;
3038 }
3039
Michal Kazior2986e3e2014-08-07 11:03:30 +02003040 /* Target expects 32 bit DMA. Enforce it. */
Kalle Valo5e3dd152013-06-12 20:52:10 +03003041 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
3042 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003043 ath10k_err(ar, "failed to set dma mask to 32-bit: %d\n", ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003044 goto err_region;
3045 }
3046
3047 ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
3048 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003049 ath10k_err(ar, "failed to set consistent dma mask to 32-bit: %d\n",
Michal Kazior2986e3e2014-08-07 11:03:30 +02003050 ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003051 goto err_region;
3052 }
3053
Kalle Valo5e3dd152013-06-12 20:52:10 +03003054 pci_set_master(pdev);
3055
Kalle Valo5e3dd152013-06-12 20:52:10 +03003056 /* Arrange for access to Target SoC registers. */
Michal Kazioraeae5b42015-06-15 14:46:42 +03003057 ar_pci->mem_len = pci_resource_len(pdev, BAR_NUM);
Michal Kazior2986e3e2014-08-07 11:03:30 +02003058 ar_pci->mem = pci_iomap(pdev, BAR_NUM, 0);
3059 if (!ar_pci->mem) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003060 ath10k_err(ar, "failed to iomap BAR%d\n", BAR_NUM);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003061 ret = -EIO;
3062 goto err_master;
3063 }
3064
Michal Kazior7aa7a722014-08-25 12:09:38 +02003065 ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot pci_mem 0x%p\n", ar_pci->mem);
Michal Kazior2986e3e2014-08-07 11:03:30 +02003066 return 0;
3067
3068err_master:
3069 pci_clear_master(pdev);
3070
3071err_region:
3072 pci_release_region(pdev, BAR_NUM);
3073
3074err_device:
3075 pci_disable_device(pdev);
3076
3077 return ret;
3078}
3079
3080static void ath10k_pci_release(struct ath10k *ar)
3081{
3082 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
3083 struct pci_dev *pdev = ar_pci->pdev;
3084
3085 pci_iounmap(pdev, ar_pci->mem);
3086 pci_release_region(pdev, BAR_NUM);
3087 pci_clear_master(pdev);
3088 pci_disable_device(pdev);
3089}
3090
Michal Kazior7505f7c2014-12-02 10:55:54 +02003091static bool ath10k_pci_chip_is_supported(u32 dev_id, u32 chip_id)
3092{
3093 const struct ath10k_pci_supp_chip *supp_chip;
3094 int i;
3095 u32 rev_id = MS(chip_id, SOC_CHIP_ID_REV);
3096
3097 for (i = 0; i < ARRAY_SIZE(ath10k_pci_supp_chips); i++) {
3098 supp_chip = &ath10k_pci_supp_chips[i];
3099
3100 if (supp_chip->dev_id == dev_id &&
3101 supp_chip->rev_id == rev_id)
3102 return true;
3103 }
3104
3105 return false;
3106}
3107
Raja Mani90188f82016-01-27 15:24:24 +05303108int ath10k_pci_setup_resource(struct ath10k *ar)
3109{
3110 struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
3111 int ret;
3112
3113 spin_lock_init(&ar_pci->ce_lock);
3114 spin_lock_init(&ar_pci->ps_lock);
3115
3116 setup_timer(&ar_pci->rx_post_retry, ath10k_pci_rx_replenish_retry,
3117 (unsigned long)ar);
3118
3119 if (QCA_REV_6174(ar))
3120 ath10k_pci_override_ce_config(ar);
3121
3122 ret = ath10k_pci_alloc_pipes(ar);
3123 if (ret) {
3124 ath10k_err(ar, "failed to allocate copy engine pipes: %d\n",
3125 ret);
3126 return ret;
3127 }
3128
3129 return 0;
3130}
3131
3132void ath10k_pci_release_resource(struct ath10k *ar)
3133{
3134 ath10k_pci_kill_tasklet(ar);
3135 ath10k_pci_ce_deinit(ar);
3136 ath10k_pci_free_pipes(ar);
3137}
3138
Raja Mani4ddb3292016-01-27 15:24:23 +05303139static const struct ath10k_bus_ops ath10k_pci_bus_ops = {
3140 .read32 = ath10k_bus_pci_read32,
3141 .write32 = ath10k_bus_pci_write32,
3142 .get_num_banks = ath10k_pci_get_num_banks,
3143};
3144
Kalle Valo5e3dd152013-06-12 20:52:10 +03003145static int ath10k_pci_probe(struct pci_dev *pdev,
3146 const struct pci_device_id *pci_dev)
3147{
Kalle Valo5e3dd152013-06-12 20:52:10 +03003148 int ret = 0;
3149 struct ath10k *ar;
3150 struct ath10k_pci *ar_pci;
Michal Kaziord63955b2015-01-24 12:14:49 +02003151 enum ath10k_hw_rev hw_rev;
Michal Kazior2986e3e2014-08-07 11:03:30 +02003152 u32 chip_id;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003153 bool pci_ps;
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03003154 int (*pci_soft_reset)(struct ath10k *ar);
3155 int (*pci_hard_reset)(struct ath10k *ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003156
Michal Kaziord63955b2015-01-24 12:14:49 +02003157 switch (pci_dev->device) {
3158 case QCA988X_2_0_DEVICE_ID:
3159 hw_rev = ATH10K_HW_QCA988X;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003160 pci_ps = false;
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03003161 pci_soft_reset = ath10k_pci_warm_reset;
3162 pci_hard_reset = ath10k_pci_qca988x_chip_reset;
Michal Kaziord63955b2015-01-24 12:14:49 +02003163 break;
Sven Eckelmann6fd3dd72016-06-02 17:59:49 +03003164 case QCA9887_1_0_DEVICE_ID:
3165 dev_warn(&pdev->dev, "QCA9887 support is still experimental, there are likely bugs. You have been warned.\n");
3166 hw_rev = ATH10K_HW_QCA9887;
3167 pci_ps = false;
3168 pci_soft_reset = ath10k_pci_warm_reset;
3169 pci_hard_reset = ath10k_pci_qca988x_chip_reset;
3170 break;
Michal Kazior36582e52015-08-13 14:32:26 +02003171 case QCA6164_2_1_DEVICE_ID:
Michal Kaziord63955b2015-01-24 12:14:49 +02003172 case QCA6174_2_1_DEVICE_ID:
3173 hw_rev = ATH10K_HW_QCA6174;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003174 pci_ps = true;
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03003175 pci_soft_reset = ath10k_pci_warm_reset;
3176 pci_hard_reset = ath10k_pci_qca6174_chip_reset;
Michal Kaziord63955b2015-01-24 12:14:49 +02003177 break;
Vasanthakumar Thiagarajan8bd47022015-06-18 12:31:03 +05303178 case QCA99X0_2_0_DEVICE_ID:
3179 hw_rev = ATH10K_HW_QCA99X0;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003180 pci_ps = false;
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03003181 pci_soft_reset = ath10k_pci_qca99x0_soft_chip_reset;
3182 pci_hard_reset = ath10k_pci_qca99x0_chip_reset;
Vasanthakumar Thiagarajan8bd47022015-06-18 12:31:03 +05303183 break;
Vasanthakumar Thiagarajan651b4cd2016-05-23 23:12:45 +03003184 case QCA9984_1_0_DEVICE_ID:
3185 hw_rev = ATH10K_HW_QCA9984;
3186 pci_ps = false;
3187 pci_soft_reset = ath10k_pci_qca99x0_soft_chip_reset;
3188 pci_hard_reset = ath10k_pci_qca99x0_chip_reset;
3189 break;
Anilkumar Kollie565c312016-06-30 15:24:00 +03003190 case QCA9888_2_0_DEVICE_ID:
3191 hw_rev = ATH10K_HW_QCA9888;
3192 pci_ps = false;
3193 pci_soft_reset = ath10k_pci_qca99x0_soft_chip_reset;
3194 pci_hard_reset = ath10k_pci_qca99x0_chip_reset;
3195 break;
Bartosz Markowskia226b512015-10-28 15:09:53 +01003196 case QCA9377_1_0_DEVICE_ID:
3197 hw_rev = ATH10K_HW_QCA9377;
3198 pci_ps = true;
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03003199 pci_soft_reset = NULL;
3200 pci_hard_reset = ath10k_pci_qca6174_chip_reset;
Bartosz Markowskia226b512015-10-28 15:09:53 +01003201 break;
Michal Kaziord63955b2015-01-24 12:14:49 +02003202 default:
3203 WARN_ON(1);
3204 return -ENOTSUPP;
3205 }
3206
3207 ar = ath10k_core_create(sizeof(*ar_pci), &pdev->dev, ATH10K_BUS_PCI,
3208 hw_rev, &ath10k_pci_hif_ops);
Michal Kaziore7b54192014-08-07 11:03:27 +02003209 if (!ar) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003210 dev_err(&pdev->dev, "failed to allocate core\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03003211 return -ENOMEM;
Michal Kaziore7b54192014-08-07 11:03:27 +02003212 }
Kalle Valo5e3dd152013-06-12 20:52:10 +03003213
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +03003214 ath10k_dbg(ar, ATH10K_DBG_BOOT, "pci probe %04x:%04x %04x:%04x\n",
3215 pdev->vendor, pdev->device,
3216 pdev->subsystem_vendor, pdev->subsystem_device);
Michal Kazior7aa7a722014-08-25 12:09:38 +02003217
Michal Kaziore7b54192014-08-07 11:03:27 +02003218 ar_pci = ath10k_pci_priv(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003219 ar_pci->pdev = pdev;
3220 ar_pci->dev = &pdev->dev;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003221 ar_pci->ar = ar;
Michal Kazior36582e52015-08-13 14:32:26 +02003222 ar->dev_id = pci_dev->device;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003223 ar_pci->pci_ps = pci_ps;
Raja Mani4ddb3292016-01-27 15:24:23 +05303224 ar_pci->bus_ops = &ath10k_pci_bus_ops;
Vasanthakumar Thiagarajan0fc7e272016-05-23 23:12:43 +03003225 ar_pci->pci_soft_reset = pci_soft_reset;
3226 ar_pci->pci_hard_reset = pci_hard_reset;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003227
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +03003228 ar->id.vendor = pdev->vendor;
3229 ar->id.device = pdev->device;
3230 ar->id.subsystem_vendor = pdev->subsystem_vendor;
3231 ar->id.subsystem_device = pdev->subsystem_device;
Michal Kaziorde57e2c2015-04-17 09:19:17 +00003232
Michal Kazior77258d42015-05-18 09:38:18 +00003233 setup_timer(&ar_pci->ps_timer, ath10k_pci_ps_timer,
3234 (unsigned long)ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003235
Raja Mani90188f82016-01-27 15:24:24 +05303236 ret = ath10k_pci_setup_resource(ar);
3237 if (ret) {
3238 ath10k_err(ar, "failed to setup resource: %d\n", ret);
3239 goto err_core_destroy;
3240 }
3241
Michal Kazior2986e3e2014-08-07 11:03:30 +02003242 ret = ath10k_pci_claim(ar);
Kalle Valoe01ae682013-09-01 11:22:14 +03003243 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003244 ath10k_err(ar, "failed to claim device: %d\n", ret);
Raja Mani90188f82016-01-27 15:24:24 +05303245 goto err_free_pipes;
Michal Kazior25d0dbc2014-03-28 10:02:38 +02003246 }
3247
Rajkumar Manoharand9d6a5a2015-12-16 16:52:19 +02003248 ret = ath10k_pci_force_wake(ar);
3249 if (ret) {
3250 ath10k_warn(ar, "failed to wake up device : %d\n", ret);
Raja Mani90188f82016-01-27 15:24:24 +05303251 goto err_sleep;
Anilkumar Kolli1aaf8ef2015-10-16 15:54:51 +03003252 }
3253
Rajkumar Manoharanaa538ac2015-12-16 16:52:19 +02003254 ath10k_pci_ce_deinit(ar);
3255 ath10k_pci_irq_disable(ar);
3256
Michal Kazior403d6272014-08-22 14:23:31 +02003257 ret = ath10k_pci_init_irq(ar);
3258 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003259 ath10k_err(ar, "failed to init irqs: %d\n", ret);
Raja Mani90188f82016-01-27 15:24:24 +05303260 goto err_sleep;
Michal Kazior403d6272014-08-22 14:23:31 +02003261 }
3262
Rajkumar Manoharancfe90112016-04-07 12:10:58 +05303263 ath10k_info(ar, "pci irq %s oper_irq_mode %d irq_mode %d reset_mode %d\n",
3264 ath10k_pci_get_irq_method(ar), ar_pci->oper_irq_mode,
Michal Kazior403d6272014-08-22 14:23:31 +02003265 ath10k_pci_irq_mode, ath10k_pci_reset_mode);
3266
Michal Kazior5c771e72014-08-22 14:23:34 +02003267 ret = ath10k_pci_request_irq(ar);
Michal Kazior403d6272014-08-22 14:23:31 +02003268 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003269 ath10k_warn(ar, "failed to request irqs: %d\n", ret);
Michal Kazior403d6272014-08-22 14:23:31 +02003270 goto err_deinit_irq;
3271 }
3272
Michal Kazior1a7fecb2015-01-24 12:14:48 +02003273 ret = ath10k_pci_chip_reset(ar);
3274 if (ret) {
3275 ath10k_err(ar, "failed to reset chip: %d\n", ret);
3276 goto err_free_irq;
3277 }
3278
3279 chip_id = ath10k_pci_soc_read32(ar, SOC_CHIP_ID_ADDRESS);
3280 if (chip_id == 0xffffffff) {
3281 ath10k_err(ar, "failed to get chip id\n");
3282 goto err_free_irq;
3283 }
3284
3285 if (!ath10k_pci_chip_is_supported(pdev->device, chip_id)) {
3286 ath10k_err(ar, "device %04x with chip_id %08x isn't supported\n",
3287 pdev->device, chip_id);
Michal Kaziord9585a92015-04-10 13:01:27 +00003288 goto err_free_irq;
Michal Kazior1a7fecb2015-01-24 12:14:48 +02003289 }
3290
Kalle Valoe01ae682013-09-01 11:22:14 +03003291 ret = ath10k_core_register(ar, chip_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003292 if (ret) {
Michal Kazior7aa7a722014-08-25 12:09:38 +02003293 ath10k_err(ar, "failed to register driver core: %d\n", ret);
Michal Kazior5c771e72014-08-22 14:23:34 +02003294 goto err_free_irq;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003295 }
3296
3297 return 0;
3298
Michal Kazior5c771e72014-08-22 14:23:34 +02003299err_free_irq:
3300 ath10k_pci_free_irq(ar);
Michal Kazior21396272014-08-28 10:24:40 +02003301 ath10k_pci_kill_tasklet(ar);
Michal Kazior5c771e72014-08-22 14:23:34 +02003302
Michal Kazior403d6272014-08-22 14:23:31 +02003303err_deinit_irq:
3304 ath10k_pci_deinit_irq(ar);
3305
Michal Kaziorc0c378f2014-08-07 11:03:28 +02003306err_sleep:
Michal Kazior0bcbbe62015-05-29 07:35:24 +02003307 ath10k_pci_sleep_sync(ar);
Michal Kazior2986e3e2014-08-07 11:03:30 +02003308 ath10k_pci_release(ar);
3309
Raja Mani90188f82016-01-27 15:24:24 +05303310err_free_pipes:
3311 ath10k_pci_free_pipes(ar);
3312
Michal Kaziore7b54192014-08-07 11:03:27 +02003313err_core_destroy:
Kalle Valo5e3dd152013-06-12 20:52:10 +03003314 ath10k_core_destroy(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003315
3316 return ret;
3317}
3318
3319static void ath10k_pci_remove(struct pci_dev *pdev)
3320{
3321 struct ath10k *ar = pci_get_drvdata(pdev);
3322 struct ath10k_pci *ar_pci;
3323
Michal Kazior7aa7a722014-08-25 12:09:38 +02003324 ath10k_dbg(ar, ATH10K_DBG_PCI, "pci remove\n");
Kalle Valo5e3dd152013-06-12 20:52:10 +03003325
3326 if (!ar)
3327 return;
3328
3329 ar_pci = ath10k_pci_priv(ar);
3330
3331 if (!ar_pci)
3332 return;
3333
Kalle Valo5e3dd152013-06-12 20:52:10 +03003334 ath10k_core_unregister(ar);
Michal Kazior5c771e72014-08-22 14:23:34 +02003335 ath10k_pci_free_irq(ar);
Michal Kazior403d6272014-08-22 14:23:31 +02003336 ath10k_pci_deinit_irq(ar);
Raja Mani90188f82016-01-27 15:24:24 +05303337 ath10k_pci_release_resource(ar);
Michal Kazior77258d42015-05-18 09:38:18 +00003338 ath10k_pci_sleep_sync(ar);
Michal Kazior2986e3e2014-08-07 11:03:30 +02003339 ath10k_pci_release(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003340 ath10k_core_destroy(ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003341}
3342
Kalle Valo5e3dd152013-06-12 20:52:10 +03003343MODULE_DEVICE_TABLE(pci, ath10k_pci_id_table);
3344
3345static struct pci_driver ath10k_pci_driver = {
3346 .name = "ath10k_pci",
3347 .id_table = ath10k_pci_id_table,
3348 .probe = ath10k_pci_probe,
3349 .remove = ath10k_pci_remove,
Kalle Valo5e3dd152013-06-12 20:52:10 +03003350};
3351
3352static int __init ath10k_pci_init(void)
3353{
3354 int ret;
3355
3356 ret = pci_register_driver(&ath10k_pci_driver);
3357 if (ret)
Michal Kazior7aa7a722014-08-25 12:09:38 +02003358 printk(KERN_ERR "failed to register ath10k pci driver: %d\n",
3359 ret);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003360
Raja Mani0b523ce2016-01-27 15:24:25 +05303361 ret = ath10k_ahb_init();
3362 if (ret)
3363 printk(KERN_ERR "ahb init failed: %d\n", ret);
3364
Kalle Valo5e3dd152013-06-12 20:52:10 +03003365 return ret;
3366}
3367module_init(ath10k_pci_init);
3368
3369static void __exit ath10k_pci_exit(void)
3370{
3371 pci_unregister_driver(&ath10k_pci_driver);
Raja Mani0b523ce2016-01-27 15:24:25 +05303372 ath10k_ahb_exit();
Kalle Valo5e3dd152013-06-12 20:52:10 +03003373}
3374
3375module_exit(ath10k_pci_exit);
3376
3377MODULE_AUTHOR("Qualcomm Atheros");
Rajkumar Manoharanb855de02016-05-27 20:15:57 +05303378MODULE_DESCRIPTION("Driver support for Qualcomm Atheros 802.11ac WLAN PCIe/AHB devices");
Kalle Valo5e3dd152013-06-12 20:52:10 +03003379MODULE_LICENSE("Dual BSD/GPL");
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003380
3381/* QCA988x 2.0 firmware files */
Bartosz Markowski8026cae2014-10-06 14:16:41 +02003382MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" ATH10K_FW_API2_FILE);
3383MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" ATH10K_FW_API3_FILE);
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003384MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" ATH10K_FW_API4_FILE);
Kalle Valo53513c32015-03-25 13:12:42 +02003385MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" ATH10K_FW_API5_FILE);
Kalle Valo5e3dd152013-06-12 20:52:10 +03003386MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" QCA988X_HW_2_0_BOARD_DATA_FILE);
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +03003387MODULE_FIRMWARE(QCA988X_HW_2_0_FW_DIR "/" ATH10K_BOARD_API2_FILE);
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003388
Sven Eckelmann6fd3dd72016-06-02 17:59:49 +03003389/* QCA9887 1.0 firmware files */
3390MODULE_FIRMWARE(QCA9887_HW_1_0_FW_DIR "/" ATH10K_FW_API5_FILE);
3391MODULE_FIRMWARE(QCA9887_HW_1_0_FW_DIR "/" QCA9887_HW_1_0_BOARD_DATA_FILE);
3392MODULE_FIRMWARE(QCA9887_HW_1_0_FW_DIR "/" ATH10K_BOARD_API2_FILE);
3393
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003394/* QCA6174 2.1 firmware files */
3395MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR "/" ATH10K_FW_API4_FILE);
Michal Kaziore451c1d2015-05-26 13:09:22 +02003396MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR "/" ATH10K_FW_API5_FILE);
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003397MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR "/" QCA6174_HW_2_1_BOARD_DATA_FILE);
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +03003398MODULE_FIRMWARE(QCA6174_HW_2_1_FW_DIR "/" ATH10K_BOARD_API2_FILE);
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003399
3400/* QCA6174 3.1 firmware files */
3401MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR "/" ATH10K_FW_API4_FILE);
Michal Kaziore451c1d2015-05-26 13:09:22 +02003402MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR "/" ATH10K_FW_API5_FILE);
Bartosz Markowski5c427f52015-02-18 13:16:37 +01003403MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR "/" QCA6174_HW_3_0_BOARD_DATA_FILE);
Manikanta Pubbisetty0a51b342015-10-09 11:55:58 +03003404MODULE_FIRMWARE(QCA6174_HW_3_0_FW_DIR "/" ATH10K_BOARD_API2_FILE);
Bartosz Markowskia226b512015-10-28 15:09:53 +01003405
3406/* QCA9377 1.0 firmware files */
3407MODULE_FIRMWARE(QCA9377_HW_1_0_FW_DIR "/" ATH10K_FW_API5_FILE);
3408MODULE_FIRMWARE(QCA9377_HW_1_0_FW_DIR "/" QCA9377_HW_1_0_BOARD_DATA_FILE);