xref: /openbmc/linux/drivers/net/wireless/ath/ath10k/ahb.c (revision 1fb7f897)
1 // SPDX-License-Identifier: ISC
2 /*
3  * Copyright (c) 2016-2017 Qualcomm Atheros, Inc. All rights reserved.
4  * Copyright (c) 2015 The Linux Foundation. All rights reserved.
5  */
6 #include <linux/module.h>
7 #include <linux/of.h>
8 #include <linux/of_device.h>
9 #include <linux/clk.h>
10 #include <linux/reset.h>
11 #include "core.h"
12 #include "debug.h"
13 #include "pci.h"
14 #include "ahb.h"
15 
16 static const struct of_device_id ath10k_ahb_of_match[] = {
17 	{ .compatible = "qcom,ipq4019-wifi",
18 	  .data = (void *)ATH10K_HW_QCA4019
19 	},
20 	{ }
21 };
22 
23 MODULE_DEVICE_TABLE(of, ath10k_ahb_of_match);
24 
25 #define QCA4019_SRAM_ADDR      0x000C0000
26 #define QCA4019_SRAM_LEN       0x00040000 /* 256 kb */
27 
28 static inline struct ath10k_ahb *ath10k_ahb_priv(struct ath10k *ar)
29 {
30 	return &((struct ath10k_pci *)ar->drv_priv)->ahb[0];
31 }
32 
33 static void ath10k_ahb_write32(struct ath10k *ar, u32 offset, u32 value)
34 {
35 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
36 
37 	iowrite32(value, ar_ahb->mem + offset);
38 }
39 
40 static u32 ath10k_ahb_read32(struct ath10k *ar, u32 offset)
41 {
42 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
43 
44 	return ioread32(ar_ahb->mem + offset);
45 }
46 
47 static u32 ath10k_ahb_gcc_read32(struct ath10k *ar, u32 offset)
48 {
49 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
50 
51 	return ioread32(ar_ahb->gcc_mem + offset);
52 }
53 
54 static void ath10k_ahb_tcsr_write32(struct ath10k *ar, u32 offset, u32 value)
55 {
56 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
57 
58 	iowrite32(value, ar_ahb->tcsr_mem + offset);
59 }
60 
61 static u32 ath10k_ahb_tcsr_read32(struct ath10k *ar, u32 offset)
62 {
63 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
64 
65 	return ioread32(ar_ahb->tcsr_mem + offset);
66 }
67 
68 static u32 ath10k_ahb_soc_read32(struct ath10k *ar, u32 addr)
69 {
70 	return ath10k_ahb_read32(ar, RTC_SOC_BASE_ADDRESS + addr);
71 }
72 
73 static int ath10k_ahb_get_num_banks(struct ath10k *ar)
74 {
75 	if (ar->hw_rev == ATH10K_HW_QCA4019)
76 		return 1;
77 
78 	ath10k_warn(ar, "unknown number of banks, assuming 1\n");
79 	return 1;
80 }
81 
82 static int ath10k_ahb_clock_init(struct ath10k *ar)
83 {
84 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
85 	struct device *dev;
86 
87 	dev = &ar_ahb->pdev->dev;
88 
89 	ar_ahb->cmd_clk = devm_clk_get(dev, "wifi_wcss_cmd");
90 	if (IS_ERR_OR_NULL(ar_ahb->cmd_clk)) {
91 		ath10k_err(ar, "failed to get cmd clk: %ld\n",
92 			   PTR_ERR(ar_ahb->cmd_clk));
93 		return ar_ahb->cmd_clk ? PTR_ERR(ar_ahb->cmd_clk) : -ENODEV;
94 	}
95 
96 	ar_ahb->ref_clk = devm_clk_get(dev, "wifi_wcss_ref");
97 	if (IS_ERR_OR_NULL(ar_ahb->ref_clk)) {
98 		ath10k_err(ar, "failed to get ref clk: %ld\n",
99 			   PTR_ERR(ar_ahb->ref_clk));
100 		return ar_ahb->ref_clk ? PTR_ERR(ar_ahb->ref_clk) : -ENODEV;
101 	}
102 
103 	ar_ahb->rtc_clk = devm_clk_get(dev, "wifi_wcss_rtc");
104 	if (IS_ERR_OR_NULL(ar_ahb->rtc_clk)) {
105 		ath10k_err(ar, "failed to get rtc clk: %ld\n",
106 			   PTR_ERR(ar_ahb->rtc_clk));
107 		return ar_ahb->rtc_clk ? PTR_ERR(ar_ahb->rtc_clk) : -ENODEV;
108 	}
109 
110 	return 0;
111 }
112 
113 static void ath10k_ahb_clock_deinit(struct ath10k *ar)
114 {
115 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
116 
117 	ar_ahb->cmd_clk = NULL;
118 	ar_ahb->ref_clk = NULL;
119 	ar_ahb->rtc_clk = NULL;
120 }
121 
122 static int ath10k_ahb_clock_enable(struct ath10k *ar)
123 {
124 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
125 	int ret;
126 
127 	if (IS_ERR_OR_NULL(ar_ahb->cmd_clk) ||
128 	    IS_ERR_OR_NULL(ar_ahb->ref_clk) ||
129 	    IS_ERR_OR_NULL(ar_ahb->rtc_clk)) {
130 		ath10k_err(ar, "clock(s) is/are not initialized\n");
131 		ret = -EIO;
132 		goto out;
133 	}
134 
135 	ret = clk_prepare_enable(ar_ahb->cmd_clk);
136 	if (ret) {
137 		ath10k_err(ar, "failed to enable cmd clk: %d\n", ret);
138 		goto out;
139 	}
140 
141 	ret = clk_prepare_enable(ar_ahb->ref_clk);
142 	if (ret) {
143 		ath10k_err(ar, "failed to enable ref clk: %d\n", ret);
144 		goto err_cmd_clk_disable;
145 	}
146 
147 	ret = clk_prepare_enable(ar_ahb->rtc_clk);
148 	if (ret) {
149 		ath10k_err(ar, "failed to enable rtc clk: %d\n", ret);
150 		goto err_ref_clk_disable;
151 	}
152 
153 	return 0;
154 
155 err_ref_clk_disable:
156 	clk_disable_unprepare(ar_ahb->ref_clk);
157 
158 err_cmd_clk_disable:
159 	clk_disable_unprepare(ar_ahb->cmd_clk);
160 
161 out:
162 	return ret;
163 }
164 
165 static void ath10k_ahb_clock_disable(struct ath10k *ar)
166 {
167 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
168 
169 	clk_disable_unprepare(ar_ahb->cmd_clk);
170 
171 	clk_disable_unprepare(ar_ahb->ref_clk);
172 
173 	clk_disable_unprepare(ar_ahb->rtc_clk);
174 }
175 
176 static int ath10k_ahb_rst_ctrl_init(struct ath10k *ar)
177 {
178 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
179 	struct device *dev;
180 
181 	dev = &ar_ahb->pdev->dev;
182 
183 	ar_ahb->core_cold_rst = devm_reset_control_get_exclusive(dev,
184 								 "wifi_core_cold");
185 	if (IS_ERR(ar_ahb->core_cold_rst)) {
186 		ath10k_err(ar, "failed to get core cold rst ctrl: %ld\n",
187 			   PTR_ERR(ar_ahb->core_cold_rst));
188 		return PTR_ERR(ar_ahb->core_cold_rst);
189 	}
190 
191 	ar_ahb->radio_cold_rst = devm_reset_control_get_exclusive(dev,
192 								  "wifi_radio_cold");
193 	if (IS_ERR(ar_ahb->radio_cold_rst)) {
194 		ath10k_err(ar, "failed to get radio cold rst ctrl: %ld\n",
195 			   PTR_ERR(ar_ahb->radio_cold_rst));
196 		return PTR_ERR(ar_ahb->radio_cold_rst);
197 	}
198 
199 	ar_ahb->radio_warm_rst = devm_reset_control_get_exclusive(dev,
200 								  "wifi_radio_warm");
201 	if (IS_ERR(ar_ahb->radio_warm_rst)) {
202 		ath10k_err(ar, "failed to get radio warm rst ctrl: %ld\n",
203 			   PTR_ERR(ar_ahb->radio_warm_rst));
204 		return PTR_ERR(ar_ahb->radio_warm_rst);
205 	}
206 
207 	ar_ahb->radio_srif_rst = devm_reset_control_get_exclusive(dev,
208 								  "wifi_radio_srif");
209 	if (IS_ERR(ar_ahb->radio_srif_rst)) {
210 		ath10k_err(ar, "failed to get radio srif rst ctrl: %ld\n",
211 			   PTR_ERR(ar_ahb->radio_srif_rst));
212 		return PTR_ERR(ar_ahb->radio_srif_rst);
213 	}
214 
215 	ar_ahb->cpu_init_rst = devm_reset_control_get_exclusive(dev,
216 								"wifi_cpu_init");
217 	if (IS_ERR(ar_ahb->cpu_init_rst)) {
218 		ath10k_err(ar, "failed to get cpu init rst ctrl: %ld\n",
219 			   PTR_ERR(ar_ahb->cpu_init_rst));
220 		return PTR_ERR(ar_ahb->cpu_init_rst);
221 	}
222 
223 	return 0;
224 }
225 
226 static void ath10k_ahb_rst_ctrl_deinit(struct ath10k *ar)
227 {
228 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
229 
230 	ar_ahb->core_cold_rst = NULL;
231 	ar_ahb->radio_cold_rst = NULL;
232 	ar_ahb->radio_warm_rst = NULL;
233 	ar_ahb->radio_srif_rst = NULL;
234 	ar_ahb->cpu_init_rst = NULL;
235 }
236 
237 static int ath10k_ahb_release_reset(struct ath10k *ar)
238 {
239 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
240 	int ret;
241 
242 	if (IS_ERR_OR_NULL(ar_ahb->radio_cold_rst) ||
243 	    IS_ERR_OR_NULL(ar_ahb->radio_warm_rst) ||
244 	    IS_ERR_OR_NULL(ar_ahb->radio_srif_rst) ||
245 	    IS_ERR_OR_NULL(ar_ahb->cpu_init_rst)) {
246 		ath10k_err(ar, "rst ctrl(s) is/are not initialized\n");
247 		return -EINVAL;
248 	}
249 
250 	ret = reset_control_deassert(ar_ahb->radio_cold_rst);
251 	if (ret) {
252 		ath10k_err(ar, "failed to deassert radio cold rst: %d\n", ret);
253 		return ret;
254 	}
255 
256 	ret = reset_control_deassert(ar_ahb->radio_warm_rst);
257 	if (ret) {
258 		ath10k_err(ar, "failed to deassert radio warm rst: %d\n", ret);
259 		return ret;
260 	}
261 
262 	ret = reset_control_deassert(ar_ahb->radio_srif_rst);
263 	if (ret) {
264 		ath10k_err(ar, "failed to deassert radio srif rst: %d\n", ret);
265 		return ret;
266 	}
267 
268 	ret = reset_control_deassert(ar_ahb->cpu_init_rst);
269 	if (ret) {
270 		ath10k_err(ar, "failed to deassert cpu init rst: %d\n", ret);
271 		return ret;
272 	}
273 
274 	return 0;
275 }
276 
277 static void ath10k_ahb_halt_axi_bus(struct ath10k *ar, u32 haltreq_reg,
278 				    u32 haltack_reg)
279 {
280 	unsigned long timeout;
281 	u32 val;
282 
283 	/* Issue halt axi bus request */
284 	val = ath10k_ahb_tcsr_read32(ar, haltreq_reg);
285 	val |= AHB_AXI_BUS_HALT_REQ;
286 	ath10k_ahb_tcsr_write32(ar, haltreq_reg, val);
287 
288 	/* Wait for axi bus halted ack */
289 	timeout = jiffies + msecs_to_jiffies(ATH10K_AHB_AXI_BUS_HALT_TIMEOUT);
290 	do {
291 		val = ath10k_ahb_tcsr_read32(ar, haltack_reg);
292 		if (val & AHB_AXI_BUS_HALT_ACK)
293 			break;
294 
295 		mdelay(1);
296 	} while (time_before(jiffies, timeout));
297 
298 	if (!(val & AHB_AXI_BUS_HALT_ACK)) {
299 		ath10k_err(ar, "failed to halt axi bus: %d\n", val);
300 		return;
301 	}
302 
303 	ath10k_dbg(ar, ATH10K_DBG_AHB, "axi bus halted\n");
304 }
305 
306 static void ath10k_ahb_halt_chip(struct ath10k *ar)
307 {
308 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
309 	u32 core_id, glb_cfg_reg, haltreq_reg, haltack_reg;
310 	u32 val;
311 	int ret;
312 
313 	if (IS_ERR_OR_NULL(ar_ahb->core_cold_rst) ||
314 	    IS_ERR_OR_NULL(ar_ahb->radio_cold_rst) ||
315 	    IS_ERR_OR_NULL(ar_ahb->radio_warm_rst) ||
316 	    IS_ERR_OR_NULL(ar_ahb->radio_srif_rst) ||
317 	    IS_ERR_OR_NULL(ar_ahb->cpu_init_rst)) {
318 		ath10k_err(ar, "rst ctrl(s) is/are not initialized\n");
319 		return;
320 	}
321 
322 	core_id = ath10k_ahb_read32(ar, ATH10K_AHB_WLAN_CORE_ID_REG);
323 
324 	switch (core_id) {
325 	case 0:
326 		glb_cfg_reg = ATH10K_AHB_TCSR_WIFI0_GLB_CFG;
327 		haltreq_reg = ATH10K_AHB_TCSR_WCSS0_HALTREQ;
328 		haltack_reg = ATH10K_AHB_TCSR_WCSS0_HALTACK;
329 		break;
330 	case 1:
331 		glb_cfg_reg = ATH10K_AHB_TCSR_WIFI1_GLB_CFG;
332 		haltreq_reg = ATH10K_AHB_TCSR_WCSS1_HALTREQ;
333 		haltack_reg = ATH10K_AHB_TCSR_WCSS1_HALTACK;
334 		break;
335 	default:
336 		ath10k_err(ar, "invalid core id %d found, skipping reset sequence\n",
337 			   core_id);
338 		return;
339 	}
340 
341 	ath10k_ahb_halt_axi_bus(ar, haltreq_reg, haltack_reg);
342 
343 	val = ath10k_ahb_tcsr_read32(ar, glb_cfg_reg);
344 	val |= TCSR_WIFIX_GLB_CFG_DISABLE_CORE_CLK;
345 	ath10k_ahb_tcsr_write32(ar, glb_cfg_reg, val);
346 
347 	ret = reset_control_assert(ar_ahb->core_cold_rst);
348 	if (ret)
349 		ath10k_err(ar, "failed to assert core cold rst: %d\n", ret);
350 	msleep(1);
351 
352 	ret = reset_control_assert(ar_ahb->radio_cold_rst);
353 	if (ret)
354 		ath10k_err(ar, "failed to assert radio cold rst: %d\n", ret);
355 	msleep(1);
356 
357 	ret = reset_control_assert(ar_ahb->radio_warm_rst);
358 	if (ret)
359 		ath10k_err(ar, "failed to assert radio warm rst: %d\n", ret);
360 	msleep(1);
361 
362 	ret = reset_control_assert(ar_ahb->radio_srif_rst);
363 	if (ret)
364 		ath10k_err(ar, "failed to assert radio srif rst: %d\n", ret);
365 	msleep(1);
366 
367 	ret = reset_control_assert(ar_ahb->cpu_init_rst);
368 	if (ret)
369 		ath10k_err(ar, "failed to assert cpu init rst: %d\n", ret);
370 	msleep(10);
371 
372 	/* Clear halt req and core clock disable req before
373 	 * deasserting wifi core reset.
374 	 */
375 	val = ath10k_ahb_tcsr_read32(ar, haltreq_reg);
376 	val &= ~AHB_AXI_BUS_HALT_REQ;
377 	ath10k_ahb_tcsr_write32(ar, haltreq_reg, val);
378 
379 	val = ath10k_ahb_tcsr_read32(ar, glb_cfg_reg);
380 	val &= ~TCSR_WIFIX_GLB_CFG_DISABLE_CORE_CLK;
381 	ath10k_ahb_tcsr_write32(ar, glb_cfg_reg, val);
382 
383 	ret = reset_control_deassert(ar_ahb->core_cold_rst);
384 	if (ret)
385 		ath10k_err(ar, "failed to deassert core cold rst: %d\n", ret);
386 
387 	ath10k_dbg(ar, ATH10K_DBG_AHB, "core %d reset done\n", core_id);
388 }
389 
390 static irqreturn_t ath10k_ahb_interrupt_handler(int irq, void *arg)
391 {
392 	struct ath10k *ar = arg;
393 
394 	if (!ath10k_pci_irq_pending(ar))
395 		return IRQ_NONE;
396 
397 	ath10k_pci_disable_and_clear_legacy_irq(ar);
398 	ath10k_pci_irq_msi_fw_mask(ar);
399 	napi_schedule(&ar->napi);
400 
401 	return IRQ_HANDLED;
402 }
403 
404 static int ath10k_ahb_request_irq_legacy(struct ath10k *ar)
405 {
406 	struct ath10k_pci *ar_pci = ath10k_pci_priv(ar);
407 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
408 	int ret;
409 
410 	ret = request_irq(ar_ahb->irq,
411 			  ath10k_ahb_interrupt_handler,
412 			  IRQF_SHARED, "ath10k_ahb", ar);
413 	if (ret) {
414 		ath10k_warn(ar, "failed to request legacy irq %d: %d\n",
415 			    ar_ahb->irq, ret);
416 		return ret;
417 	}
418 	ar_pci->oper_irq_mode = ATH10K_PCI_IRQ_LEGACY;
419 
420 	return 0;
421 }
422 
423 static void ath10k_ahb_release_irq_legacy(struct ath10k *ar)
424 {
425 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
426 
427 	free_irq(ar_ahb->irq, ar);
428 }
429 
430 static void ath10k_ahb_irq_disable(struct ath10k *ar)
431 {
432 	ath10k_ce_disable_interrupts(ar);
433 	ath10k_pci_disable_and_clear_legacy_irq(ar);
434 }
435 
436 static int ath10k_ahb_resource_init(struct ath10k *ar)
437 {
438 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
439 	struct platform_device *pdev;
440 	struct resource *res;
441 	int ret;
442 
443 	pdev = ar_ahb->pdev;
444 
445 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
446 	if (!res) {
447 		ath10k_err(ar, "failed to get memory resource\n");
448 		ret = -ENXIO;
449 		goto out;
450 	}
451 
452 	ar_ahb->mem = devm_ioremap_resource(&pdev->dev, res);
453 	if (IS_ERR(ar_ahb->mem)) {
454 		ath10k_err(ar, "mem ioremap error\n");
455 		ret = PTR_ERR(ar_ahb->mem);
456 		goto out;
457 	}
458 
459 	ar_ahb->mem_len = resource_size(res);
460 
461 	ar_ahb->gcc_mem = ioremap(ATH10K_GCC_REG_BASE,
462 				  ATH10K_GCC_REG_SIZE);
463 	if (!ar_ahb->gcc_mem) {
464 		ath10k_err(ar, "gcc mem ioremap error\n");
465 		ret = -ENOMEM;
466 		goto err_mem_unmap;
467 	}
468 
469 	ar_ahb->tcsr_mem = ioremap(ATH10K_TCSR_REG_BASE,
470 				   ATH10K_TCSR_REG_SIZE);
471 	if (!ar_ahb->tcsr_mem) {
472 		ath10k_err(ar, "tcsr mem ioremap error\n");
473 		ret = -ENOMEM;
474 		goto err_gcc_mem_unmap;
475 	}
476 
477 	ret = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
478 	if (ret) {
479 		ath10k_err(ar, "failed to set 32-bit dma mask: %d\n", ret);
480 		goto err_tcsr_mem_unmap;
481 	}
482 
483 	ret = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
484 	if (ret) {
485 		ath10k_err(ar, "failed to set 32-bit consistent dma: %d\n",
486 			   ret);
487 		goto err_tcsr_mem_unmap;
488 	}
489 
490 	ret = ath10k_ahb_clock_init(ar);
491 	if (ret)
492 		goto err_tcsr_mem_unmap;
493 
494 	ret = ath10k_ahb_rst_ctrl_init(ar);
495 	if (ret)
496 		goto err_clock_deinit;
497 
498 	ar_ahb->irq = platform_get_irq_byname(pdev, "legacy");
499 	if (ar_ahb->irq < 0) {
500 		ath10k_err(ar, "failed to get irq number: %d\n", ar_ahb->irq);
501 		ret = ar_ahb->irq;
502 		goto err_clock_deinit;
503 	}
504 
505 	ath10k_dbg(ar, ATH10K_DBG_BOOT, "irq: %d\n", ar_ahb->irq);
506 
507 	ath10k_dbg(ar, ATH10K_DBG_BOOT, "mem: 0x%pK mem_len: %lu gcc mem: 0x%pK tcsr_mem: 0x%pK\n",
508 		   ar_ahb->mem, ar_ahb->mem_len,
509 		   ar_ahb->gcc_mem, ar_ahb->tcsr_mem);
510 	return 0;
511 
512 err_clock_deinit:
513 	ath10k_ahb_clock_deinit(ar);
514 
515 err_tcsr_mem_unmap:
516 	iounmap(ar_ahb->tcsr_mem);
517 
518 err_gcc_mem_unmap:
519 	ar_ahb->tcsr_mem = NULL;
520 	iounmap(ar_ahb->gcc_mem);
521 
522 err_mem_unmap:
523 	ar_ahb->gcc_mem = NULL;
524 	devm_iounmap(&pdev->dev, ar_ahb->mem);
525 
526 out:
527 	ar_ahb->mem = NULL;
528 	return ret;
529 }
530 
531 static void ath10k_ahb_resource_deinit(struct ath10k *ar)
532 {
533 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
534 	struct device *dev;
535 
536 	dev = &ar_ahb->pdev->dev;
537 
538 	if (ar_ahb->mem)
539 		devm_iounmap(dev, ar_ahb->mem);
540 
541 	if (ar_ahb->gcc_mem)
542 		iounmap(ar_ahb->gcc_mem);
543 
544 	if (ar_ahb->tcsr_mem)
545 		iounmap(ar_ahb->tcsr_mem);
546 
547 	ar_ahb->mem = NULL;
548 	ar_ahb->gcc_mem = NULL;
549 	ar_ahb->tcsr_mem = NULL;
550 
551 	ath10k_ahb_clock_deinit(ar);
552 	ath10k_ahb_rst_ctrl_deinit(ar);
553 }
554 
555 static int ath10k_ahb_prepare_device(struct ath10k *ar)
556 {
557 	u32 val;
558 	int ret;
559 
560 	ret = ath10k_ahb_clock_enable(ar);
561 	if (ret) {
562 		ath10k_err(ar, "failed to enable clocks\n");
563 		return ret;
564 	}
565 
566 	/* Clock for the target is supplied from outside of target (ie,
567 	 * external clock module controlled by the host). Target needs
568 	 * to know what frequency target cpu is configured which is needed
569 	 * for target internal use. Read target cpu frequency info from
570 	 * gcc register and write into target's scratch register where
571 	 * target expects this information.
572 	 */
573 	val = ath10k_ahb_gcc_read32(ar, ATH10K_AHB_GCC_FEPLL_PLL_DIV);
574 	ath10k_ahb_write32(ar, ATH10K_AHB_WIFI_SCRATCH_5_REG, val);
575 
576 	ret = ath10k_ahb_release_reset(ar);
577 	if (ret)
578 		goto err_clk_disable;
579 
580 	ath10k_ahb_irq_disable(ar);
581 
582 	ath10k_ahb_write32(ar, FW_INDICATOR_ADDRESS, FW_IND_HOST_READY);
583 
584 	ret = ath10k_pci_wait_for_target_init(ar);
585 	if (ret)
586 		goto err_halt_chip;
587 
588 	return 0;
589 
590 err_halt_chip:
591 	ath10k_ahb_halt_chip(ar);
592 
593 err_clk_disable:
594 	ath10k_ahb_clock_disable(ar);
595 
596 	return ret;
597 }
598 
599 static int ath10k_ahb_chip_reset(struct ath10k *ar)
600 {
601 	int ret;
602 
603 	ath10k_ahb_halt_chip(ar);
604 	ath10k_ahb_clock_disable(ar);
605 
606 	ret = ath10k_ahb_prepare_device(ar);
607 	if (ret)
608 		return ret;
609 
610 	return 0;
611 }
612 
613 static int ath10k_ahb_wake_target_cpu(struct ath10k *ar)
614 {
615 	u32 addr, val;
616 
617 	addr = SOC_CORE_BASE_ADDRESS | CORE_CTRL_ADDRESS;
618 	val = ath10k_ahb_read32(ar, addr);
619 	val |= ATH10K_AHB_CORE_CTRL_CPU_INTR_MASK;
620 	ath10k_ahb_write32(ar, addr, val);
621 
622 	return 0;
623 }
624 
625 static int ath10k_ahb_hif_start(struct ath10k *ar)
626 {
627 	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot ahb hif start\n");
628 
629 	ath10k_core_napi_enable(ar);
630 	ath10k_ce_enable_interrupts(ar);
631 	ath10k_pci_enable_legacy_irq(ar);
632 
633 	ath10k_pci_rx_post(ar);
634 
635 	return 0;
636 }
637 
638 static void ath10k_ahb_hif_stop(struct ath10k *ar)
639 {
640 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
641 
642 	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot ahb hif stop\n");
643 
644 	ath10k_ahb_irq_disable(ar);
645 	synchronize_irq(ar_ahb->irq);
646 
647 	ath10k_core_napi_sync_disable(ar);
648 
649 	ath10k_pci_flush(ar);
650 }
651 
652 static int ath10k_ahb_hif_power_up(struct ath10k *ar,
653 				   enum ath10k_firmware_mode fw_mode)
654 {
655 	int ret;
656 
657 	ath10k_dbg(ar, ATH10K_DBG_BOOT, "boot ahb hif power up\n");
658 
659 	ret = ath10k_ahb_chip_reset(ar);
660 	if (ret) {
661 		ath10k_err(ar, "failed to reset chip: %d\n", ret);
662 		goto out;
663 	}
664 
665 	ret = ath10k_pci_init_pipes(ar);
666 	if (ret) {
667 		ath10k_err(ar, "failed to initialize CE: %d\n", ret);
668 		goto out;
669 	}
670 
671 	ret = ath10k_pci_init_config(ar);
672 	if (ret) {
673 		ath10k_err(ar, "failed to setup init config: %d\n", ret);
674 		goto err_ce_deinit;
675 	}
676 
677 	ret = ath10k_ahb_wake_target_cpu(ar);
678 	if (ret) {
679 		ath10k_err(ar, "could not wake up target CPU: %d\n", ret);
680 		goto err_ce_deinit;
681 	}
682 
683 	return 0;
684 
685 err_ce_deinit:
686 	ath10k_pci_ce_deinit(ar);
687 out:
688 	return ret;
689 }
690 
691 static u32 ath10k_ahb_qca4019_targ_cpu_to_ce_addr(struct ath10k *ar, u32 addr)
692 {
693 	u32 val = 0, region = addr & 0xfffff;
694 
695 	val = ath10k_pci_read32(ar, PCIE_BAR_REG_ADDRESS);
696 
697 	if (region >= QCA4019_SRAM_ADDR && region <=
698 	    (QCA4019_SRAM_ADDR + QCA4019_SRAM_LEN)) {
699 		/* SRAM contents for QCA4019 can be directly accessed and
700 		 * no conversions are required
701 		 */
702 		val |= region;
703 	} else {
704 		val |= 0x100000 | region;
705 	}
706 
707 	return val;
708 }
709 
710 static const struct ath10k_hif_ops ath10k_ahb_hif_ops = {
711 	.tx_sg                  = ath10k_pci_hif_tx_sg,
712 	.diag_read              = ath10k_pci_hif_diag_read,
713 	.diag_write             = ath10k_pci_diag_write_mem,
714 	.exchange_bmi_msg       = ath10k_pci_hif_exchange_bmi_msg,
715 	.start                  = ath10k_ahb_hif_start,
716 	.stop                   = ath10k_ahb_hif_stop,
717 	.map_service_to_pipe    = ath10k_pci_hif_map_service_to_pipe,
718 	.get_default_pipe       = ath10k_pci_hif_get_default_pipe,
719 	.send_complete_check    = ath10k_pci_hif_send_complete_check,
720 	.get_free_queue_number  = ath10k_pci_hif_get_free_queue_number,
721 	.power_up               = ath10k_ahb_hif_power_up,
722 	.power_down             = ath10k_pci_hif_power_down,
723 	.read32                 = ath10k_ahb_read32,
724 	.write32                = ath10k_ahb_write32,
725 };
726 
727 static const struct ath10k_bus_ops ath10k_ahb_bus_ops = {
728 	.read32		= ath10k_ahb_read32,
729 	.write32	= ath10k_ahb_write32,
730 	.get_num_banks	= ath10k_ahb_get_num_banks,
731 };
732 
733 static int ath10k_ahb_probe(struct platform_device *pdev)
734 {
735 	struct ath10k *ar;
736 	struct ath10k_ahb *ar_ahb;
737 	struct ath10k_pci *ar_pci;
738 	const struct of_device_id *of_id;
739 	enum ath10k_hw_rev hw_rev;
740 	size_t size;
741 	int ret;
742 	struct ath10k_bus_params bus_params = {};
743 
744 	of_id = of_match_device(ath10k_ahb_of_match, &pdev->dev);
745 	if (!of_id) {
746 		dev_err(&pdev->dev, "failed to find matching device tree id\n");
747 		return -EINVAL;
748 	}
749 
750 	hw_rev = (enum ath10k_hw_rev)of_id->data;
751 
752 	size = sizeof(*ar_pci) + sizeof(*ar_ahb);
753 	ar = ath10k_core_create(size, &pdev->dev, ATH10K_BUS_AHB,
754 				hw_rev, &ath10k_ahb_hif_ops);
755 	if (!ar) {
756 		dev_err(&pdev->dev, "failed to allocate core\n");
757 		return -ENOMEM;
758 	}
759 
760 	ath10k_dbg(ar, ATH10K_DBG_BOOT, "ahb probe\n");
761 
762 	ar_pci = ath10k_pci_priv(ar);
763 	ar_ahb = ath10k_ahb_priv(ar);
764 
765 	ar_ahb->pdev = pdev;
766 	platform_set_drvdata(pdev, ar);
767 
768 	ret = ath10k_ahb_resource_init(ar);
769 	if (ret)
770 		goto err_core_destroy;
771 
772 	ar->dev_id = 0;
773 	ar_pci->mem = ar_ahb->mem;
774 	ar_pci->mem_len = ar_ahb->mem_len;
775 	ar_pci->ar = ar;
776 	ar_pci->ce.bus_ops = &ath10k_ahb_bus_ops;
777 	ar_pci->targ_cpu_to_ce_addr = ath10k_ahb_qca4019_targ_cpu_to_ce_addr;
778 	ar->ce_priv = &ar_pci->ce;
779 
780 	ret = ath10k_pci_setup_resource(ar);
781 	if (ret) {
782 		ath10k_err(ar, "failed to setup resource: %d\n", ret);
783 		goto err_resource_deinit;
784 	}
785 
786 	ath10k_pci_init_napi(ar);
787 
788 	ret = ath10k_ahb_request_irq_legacy(ar);
789 	if (ret)
790 		goto err_free_pipes;
791 
792 	ret = ath10k_ahb_prepare_device(ar);
793 	if (ret)
794 		goto err_free_irq;
795 
796 	ath10k_pci_ce_deinit(ar);
797 
798 	bus_params.dev_type = ATH10K_DEV_TYPE_LL;
799 	bus_params.chip_id = ath10k_ahb_soc_read32(ar, SOC_CHIP_ID_ADDRESS);
800 	if (bus_params.chip_id == 0xffffffff) {
801 		ath10k_err(ar, "failed to get chip id\n");
802 		ret = -ENODEV;
803 		goto err_halt_device;
804 	}
805 
806 	ret = ath10k_core_register(ar, &bus_params);
807 	if (ret) {
808 		ath10k_err(ar, "failed to register driver core: %d\n", ret);
809 		goto err_halt_device;
810 	}
811 
812 	return 0;
813 
814 err_halt_device:
815 	ath10k_ahb_halt_chip(ar);
816 	ath10k_ahb_clock_disable(ar);
817 
818 err_free_irq:
819 	ath10k_ahb_release_irq_legacy(ar);
820 
821 err_free_pipes:
822 	ath10k_pci_release_resource(ar);
823 
824 err_resource_deinit:
825 	ath10k_ahb_resource_deinit(ar);
826 
827 err_core_destroy:
828 	ath10k_core_destroy(ar);
829 	platform_set_drvdata(pdev, NULL);
830 
831 	return ret;
832 }
833 
834 static int ath10k_ahb_remove(struct platform_device *pdev)
835 {
836 	struct ath10k *ar = platform_get_drvdata(pdev);
837 	struct ath10k_ahb *ar_ahb;
838 
839 	if (!ar)
840 		return -EINVAL;
841 
842 	ar_ahb = ath10k_ahb_priv(ar);
843 
844 	if (!ar_ahb)
845 		return -EINVAL;
846 
847 	ath10k_dbg(ar, ATH10K_DBG_AHB, "ahb remove\n");
848 
849 	ath10k_core_unregister(ar);
850 	ath10k_ahb_irq_disable(ar);
851 	ath10k_ahb_release_irq_legacy(ar);
852 	ath10k_pci_release_resource(ar);
853 	ath10k_ahb_halt_chip(ar);
854 	ath10k_ahb_clock_disable(ar);
855 	ath10k_ahb_resource_deinit(ar);
856 	ath10k_core_destroy(ar);
857 
858 	platform_set_drvdata(pdev, NULL);
859 
860 	return 0;
861 }
862 
863 static struct platform_driver ath10k_ahb_driver = {
864 	.driver         = {
865 		.name   = "ath10k_ahb",
866 		.of_match_table = ath10k_ahb_of_match,
867 	},
868 	.probe  = ath10k_ahb_probe,
869 	.remove = ath10k_ahb_remove,
870 };
871 
872 int ath10k_ahb_init(void)
873 {
874 	int ret;
875 
876 	ret = platform_driver_register(&ath10k_ahb_driver);
877 	if (ret)
878 		printk(KERN_ERR "failed to register ath10k ahb driver: %d\n",
879 		       ret);
880 	return ret;
881 }
882 
883 void ath10k_ahb_exit(void)
884 {
885 	platform_driver_unregister(&ath10k_ahb_driver);
886 }
887