2 * Qualcomm Wireless Connectivity Subsystem Peripheral Image Loader
4 * Copyright (C) 2016 Linaro Ltd
5 * Copyright (C) 2014 Sony Mobile Communications AB
6 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <linux/clk.h>
19 #include <linux/delay.h>
20 #include <linux/firmware.h>
21 #include <linux/interrupt.h>
22 #include <linux/kernel.h>
23 #include <linux/module.h>
25 #include <linux/of_address.h>
26 #include <linux/of_device.h>
27 #include <linux/platform_device.h>
28 #include <linux/qcom_scm.h>
29 #include <linux/regulator/consumer.h>
30 #include <linux/remoteproc.h>
31 #include <linux/soc/qcom/smem.h>
32 #include <linux/soc/qcom/smem_state.h>
34 #include "qcom_mdt_loader.h"
35 #include "remoteproc_internal.h"
36 #include "qcom_wcnss.h"
38 #define WCNSS_CRASH_REASON_SMEM 422
39 #define WCNSS_FIRMWARE_NAME "wcnss.mdt"
40 #define WCNSS_PAS_ID 6
42 #define WCNSS_SPARE_NVBIN_DLND BIT(25)
44 #define WCNSS_PMU_IRIS_XO_CFG BIT(3)
45 #define WCNSS_PMU_IRIS_XO_EN BIT(4)
46 #define WCNSS_PMU_GC_BUS_MUX_SEL_TOP BIT(5)
47 #define WCNSS_PMU_IRIS_XO_CFG_STS BIT(6) /* 1: in progress, 0: done */
49 #define WCNSS_PMU_IRIS_RESET BIT(7)
50 #define WCNSS_PMU_IRIS_RESET_STS BIT(8) /* 1: in progress, 0: done */
51 #define WCNSS_PMU_IRIS_XO_READ BIT(9)
52 #define WCNSS_PMU_IRIS_XO_READ_STS BIT(10)
54 #define WCNSS_PMU_XO_MODE_MASK GENMASK(2, 1)
55 #define WCNSS_PMU_XO_MODE_19p2 0
56 #define WCNSS_PMU_XO_MODE_48 3
62 const struct wcnss_vreg_info
*vregs
;
70 void __iomem
*pmu_cfg
;
71 void __iomem
*spare_out
;
81 struct qcom_smem_state
*state
;
84 struct mutex iris_lock
;
85 struct qcom_iris
*iris
;
87 struct regulator_bulk_data
*vregs
;
90 struct completion start_done
;
91 struct completion stop_done
;
94 phys_addr_t mem_reloc
;
99 static const struct wcnss_data riva_data
= {
101 .spare_offset
= 0xb4,
103 .vregs
= (struct wcnss_vreg_info
[]) {
104 { "vddmx", 1050000, 1150000, 0 },
105 { "vddcx", 1050000, 1150000, 0 },
106 { "vddpx", 1800000, 1800000, 0 },
111 static const struct wcnss_data pronto_v1_data
= {
112 .pmu_offset
= 0x1004,
113 .spare_offset
= 0x1088,
115 .vregs
= (struct wcnss_vreg_info
[]) {
116 { "vddmx", 950000, 1150000, 0 },
117 { "vddcx", .super_turbo
= true},
118 { "vddpx", 1800000, 1800000, 0 },
123 static const struct wcnss_data pronto_v2_data
= {
124 .pmu_offset
= 0x1004,
125 .spare_offset
= 0x1088,
127 .vregs
= (struct wcnss_vreg_info
[]) {
128 { "vddmx", 1287500, 1287500, 0 },
129 { "vddcx", .super_turbo
= true },
130 { "vddpx", 1800000, 1800000, 0 },
135 void qcom_wcnss_assign_iris(struct qcom_wcnss
*wcnss
,
136 struct qcom_iris
*iris
,
139 mutex_lock(&wcnss
->iris_lock
);
142 wcnss
->use_48mhz_xo
= use_48mhz_xo
;
144 mutex_unlock(&wcnss
->iris_lock
);
147 static int wcnss_load(struct rproc
*rproc
, const struct firmware
*fw
)
149 struct qcom_wcnss
*wcnss
= (struct qcom_wcnss
*)rproc
->priv
;
155 ret
= qcom_scm_pas_init_image(WCNSS_PAS_ID
, fw
->data
, fw
->size
);
157 dev_err(&rproc
->dev
, "invalid firmware metadata\n");
161 ret
= qcom_mdt_parse(fw
, &fw_addr
, &fw_size
, &relocate
);
163 dev_err(&rproc
->dev
, "failed to parse mdt header\n");
168 wcnss
->mem_reloc
= fw_addr
;
170 ret
= qcom_scm_pas_mem_setup(WCNSS_PAS_ID
, wcnss
->mem_phys
, fw_size
);
172 dev_err(&rproc
->dev
, "unable to setup memory for image\n");
177 return qcom_mdt_load(rproc
, fw
, rproc
->firmware
);
180 static const struct rproc_fw_ops wcnss_fw_ops
= {
181 .find_rsc_table
= qcom_mdt_find_rsc_table
,
185 static void wcnss_indicate_nv_download(struct qcom_wcnss
*wcnss
)
189 /* Indicate NV download capability */
190 val
= readl(wcnss
->spare_out
);
191 val
|= WCNSS_SPARE_NVBIN_DLND
;
192 writel(val
, wcnss
->spare_out
);
195 static void wcnss_configure_iris(struct qcom_wcnss
*wcnss
)
199 /* Clear PMU cfg register */
200 writel(0, wcnss
->pmu_cfg
);
202 val
= WCNSS_PMU_GC_BUS_MUX_SEL_TOP
| WCNSS_PMU_IRIS_XO_EN
;
203 writel(val
, wcnss
->pmu_cfg
);
206 val
&= ~WCNSS_PMU_XO_MODE_MASK
;
207 if (wcnss
->use_48mhz_xo
)
208 val
|= WCNSS_PMU_XO_MODE_48
<< 1;
210 val
|= WCNSS_PMU_XO_MODE_19p2
<< 1;
211 writel(val
, wcnss
->pmu_cfg
);
214 val
|= WCNSS_PMU_IRIS_RESET
;
215 writel(val
, wcnss
->pmu_cfg
);
217 /* Wait for PMU.iris_reg_reset_sts */
218 while (readl(wcnss
->pmu_cfg
) & WCNSS_PMU_IRIS_RESET_STS
)
221 /* Clear IRIS reset */
222 val
&= ~WCNSS_PMU_IRIS_RESET
;
223 writel(val
, wcnss
->pmu_cfg
);
225 /* Start IRIS XO configuration */
226 val
|= WCNSS_PMU_IRIS_XO_CFG
;
227 writel(val
, wcnss
->pmu_cfg
);
229 /* Wait for XO configuration to finish */
230 while (readl(wcnss
->pmu_cfg
) & WCNSS_PMU_IRIS_XO_CFG_STS
)
233 /* Stop IRIS XO configuration */
234 val
&= ~WCNSS_PMU_GC_BUS_MUX_SEL_TOP
;
235 val
&= ~WCNSS_PMU_IRIS_XO_CFG
;
236 writel(val
, wcnss
->pmu_cfg
);
238 /* Add some delay for XO to settle */
242 static int wcnss_start(struct rproc
*rproc
)
244 struct qcom_wcnss
*wcnss
= (struct qcom_wcnss
*)rproc
->priv
;
247 mutex_lock(&wcnss
->iris_lock
);
249 dev_err(wcnss
->dev
, "no iris registered\n");
251 goto release_iris_lock
;
254 ret
= regulator_bulk_enable(wcnss
->num_vregs
, wcnss
->vregs
);
256 goto release_iris_lock
;
258 ret
= qcom_iris_enable(wcnss
->iris
);
260 goto disable_regulators
;
262 wcnss_indicate_nv_download(wcnss
);
263 wcnss_configure_iris(wcnss
);
265 ret
= qcom_scm_pas_auth_and_reset(WCNSS_PAS_ID
);
268 "failed to authenticate image and release reset\n");
272 ret
= wait_for_completion_timeout(&wcnss
->start_done
,
273 msecs_to_jiffies(5000));
274 if (wcnss
->ready_irq
> 0 && ret
== 0) {
275 /* We have a ready_irq, but it didn't fire in time. */
276 dev_err(wcnss
->dev
, "start timed out\n");
277 qcom_scm_pas_shutdown(WCNSS_PAS_ID
);
285 qcom_iris_disable(wcnss
->iris
);
287 regulator_bulk_disable(wcnss
->num_vregs
, wcnss
->vregs
);
289 mutex_unlock(&wcnss
->iris_lock
);
294 static int wcnss_stop(struct rproc
*rproc
)
296 struct qcom_wcnss
*wcnss
= (struct qcom_wcnss
*)rproc
->priv
;
300 qcom_smem_state_update_bits(wcnss
->state
,
301 BIT(wcnss
->stop_bit
),
302 BIT(wcnss
->stop_bit
));
304 ret
= wait_for_completion_timeout(&wcnss
->stop_done
,
305 msecs_to_jiffies(5000));
307 dev_err(wcnss
->dev
, "timed out on wait\n");
309 qcom_smem_state_update_bits(wcnss
->state
,
310 BIT(wcnss
->stop_bit
),
314 ret
= qcom_scm_pas_shutdown(WCNSS_PAS_ID
);
316 dev_err(wcnss
->dev
, "failed to shutdown: %d\n", ret
);
321 static void *wcnss_da_to_va(struct rproc
*rproc
, u64 da
, int len
)
323 struct qcom_wcnss
*wcnss
= (struct qcom_wcnss
*)rproc
->priv
;
326 offset
= da
- wcnss
->mem_reloc
;
327 if (offset
< 0 || offset
+ len
> wcnss
->mem_size
)
330 return wcnss
->mem_region
+ offset
;
333 static const struct rproc_ops wcnss_ops
= {
334 .start
= wcnss_start
,
336 .da_to_va
= wcnss_da_to_va
,
339 static irqreturn_t
wcnss_wdog_interrupt(int irq
, void *dev
)
341 struct qcom_wcnss
*wcnss
= dev
;
343 rproc_report_crash(wcnss
->rproc
, RPROC_WATCHDOG
);
348 static irqreturn_t
wcnss_fatal_interrupt(int irq
, void *dev
)
350 struct qcom_wcnss
*wcnss
= dev
;
354 msg
= qcom_smem_get(QCOM_SMEM_HOST_ANY
, WCNSS_CRASH_REASON_SMEM
, &len
);
355 if (!IS_ERR(msg
) && len
> 0 && msg
[0])
356 dev_err(wcnss
->dev
, "fatal error received: %s\n", msg
);
358 rproc_report_crash(wcnss
->rproc
, RPROC_FATAL_ERROR
);
366 static irqreturn_t
wcnss_ready_interrupt(int irq
, void *dev
)
368 struct qcom_wcnss
*wcnss
= dev
;
370 complete(&wcnss
->start_done
);
375 static irqreturn_t
wcnss_handover_interrupt(int irq
, void *dev
)
378 * XXX: At this point we're supposed to release the resources that we
379 * have been holding on behalf of the WCNSS. Unfortunately this
380 * interrupt comes way before the other side seems to be done.
382 * So we're currently relying on the ready interrupt firing later then
383 * this and we just disable the resources at the end of wcnss_start().
389 static irqreturn_t
wcnss_stop_ack_interrupt(int irq
, void *dev
)
391 struct qcom_wcnss
*wcnss
= dev
;
393 complete(&wcnss
->stop_done
);
398 static int wcnss_init_regulators(struct qcom_wcnss
*wcnss
,
399 const struct wcnss_vreg_info
*info
,
402 struct regulator_bulk_data
*bulk
;
406 bulk
= devm_kcalloc(wcnss
->dev
,
407 num_vregs
, sizeof(struct regulator_bulk_data
),
412 for (i
= 0; i
< num_vregs
; i
++)
413 bulk
[i
].supply
= info
[i
].name
;
415 ret
= devm_regulator_bulk_get(wcnss
->dev
, num_vregs
, bulk
);
419 for (i
= 0; i
< num_vregs
; i
++) {
420 if (info
[i
].max_voltage
)
421 regulator_set_voltage(bulk
[i
].consumer
,
423 info
[i
].max_voltage
);
426 regulator_set_load(bulk
[i
].consumer
, info
[i
].load_uA
);
430 wcnss
->num_vregs
= num_vregs
;
435 static int wcnss_request_irq(struct qcom_wcnss
*wcnss
,
436 struct platform_device
*pdev
,
439 irq_handler_t thread_fn
)
443 ret
= platform_get_irq_byname(pdev
, name
);
444 if (ret
< 0 && optional
) {
445 dev_dbg(&pdev
->dev
, "no %s IRQ defined, ignoring\n", name
);
447 } else if (ret
< 0) {
448 dev_err(&pdev
->dev
, "no %s IRQ defined\n", name
);
452 ret
= devm_request_threaded_irq(&pdev
->dev
, ret
,
454 IRQF_TRIGGER_RISING
| IRQF_ONESHOT
,
457 dev_err(&pdev
->dev
, "request %s IRQ failed\n", name
);
462 static int wcnss_alloc_memory_region(struct qcom_wcnss
*wcnss
)
464 struct device_node
*node
;
468 node
= of_parse_phandle(wcnss
->dev
->of_node
, "memory-region", 0);
470 dev_err(wcnss
->dev
, "no memory-region specified\n");
474 ret
= of_address_to_resource(node
, 0, &r
);
478 wcnss
->mem_phys
= wcnss
->mem_reloc
= r
.start
;
479 wcnss
->mem_size
= resource_size(&r
);
480 wcnss
->mem_region
= devm_ioremap_wc(wcnss
->dev
, wcnss
->mem_phys
, wcnss
->mem_size
);
481 if (!wcnss
->mem_region
) {
482 dev_err(wcnss
->dev
, "unable to map memory region: %pa+%zx\n",
483 &r
.start
, wcnss
->mem_size
);
490 static int wcnss_probe(struct platform_device
*pdev
)
492 const struct wcnss_data
*data
;
493 struct qcom_wcnss
*wcnss
;
494 struct resource
*res
;
499 data
= of_device_get_match_data(&pdev
->dev
);
501 if (!qcom_scm_is_available())
502 return -EPROBE_DEFER
;
504 if (!qcom_scm_pas_supported(WCNSS_PAS_ID
)) {
505 dev_err(&pdev
->dev
, "PAS is not available for WCNSS\n");
509 rproc
= rproc_alloc(&pdev
->dev
, pdev
->name
, &wcnss_ops
,
510 WCNSS_FIRMWARE_NAME
, sizeof(*wcnss
));
512 dev_err(&pdev
->dev
, "unable to allocate remoteproc\n");
516 rproc
->fw_ops
= &wcnss_fw_ops
;
518 wcnss
= (struct qcom_wcnss
*)rproc
->priv
;
519 wcnss
->dev
= &pdev
->dev
;
520 wcnss
->rproc
= rproc
;
521 platform_set_drvdata(pdev
, wcnss
);
523 init_completion(&wcnss
->start_done
);
524 init_completion(&wcnss
->stop_done
);
526 mutex_init(&wcnss
->iris_lock
);
528 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "pmu");
529 mmio
= devm_ioremap_resource(&pdev
->dev
, res
);
535 ret
= wcnss_alloc_memory_region(wcnss
);
539 wcnss
->pmu_cfg
= mmio
+ data
->pmu_offset
;
540 wcnss
->spare_out
= mmio
+ data
->spare_offset
;
542 ret
= wcnss_init_regulators(wcnss
, data
->vregs
, data
->num_vregs
);
546 ret
= wcnss_request_irq(wcnss
, pdev
, "wdog", false, wcnss_wdog_interrupt
);
549 wcnss
->wdog_irq
= ret
;
551 ret
= wcnss_request_irq(wcnss
, pdev
, "fatal", false, wcnss_fatal_interrupt
);
554 wcnss
->fatal_irq
= ret
;
556 ret
= wcnss_request_irq(wcnss
, pdev
, "ready", true, wcnss_ready_interrupt
);
559 wcnss
->ready_irq
= ret
;
561 ret
= wcnss_request_irq(wcnss
, pdev
, "handover", true, wcnss_handover_interrupt
);
564 wcnss
->handover_irq
= ret
;
566 ret
= wcnss_request_irq(wcnss
, pdev
, "stop-ack", true, wcnss_stop_ack_interrupt
);
569 wcnss
->stop_ack_irq
= ret
;
571 if (wcnss
->stop_ack_irq
) {
572 wcnss
->state
= qcom_smem_state_get(&pdev
->dev
, "stop",
574 if (IS_ERR(wcnss
->state
)) {
575 ret
= PTR_ERR(wcnss
->state
);
580 ret
= rproc_add(rproc
);
584 return of_platform_populate(pdev
->dev
.of_node
, NULL
, NULL
, &pdev
->dev
);
592 static int wcnss_remove(struct platform_device
*pdev
)
594 struct qcom_wcnss
*wcnss
= platform_get_drvdata(pdev
);
596 of_platform_depopulate(&pdev
->dev
);
598 qcom_smem_state_put(wcnss
->state
);
599 rproc_del(wcnss
->rproc
);
600 rproc_free(wcnss
->rproc
);
605 static const struct of_device_id wcnss_of_match
[] = {
606 { .compatible
= "qcom,riva-pil", &riva_data
},
607 { .compatible
= "qcom,pronto-v1-pil", &pronto_v1_data
},
608 { .compatible
= "qcom,pronto-v2-pil", &pronto_v2_data
},
612 static struct platform_driver wcnss_driver
= {
613 .probe
= wcnss_probe
,
614 .remove
= wcnss_remove
,
616 .name
= "qcom-wcnss-pil",
617 .of_match_table
= wcnss_of_match
,
621 static int __init
wcnss_init(void)
625 ret
= platform_driver_register(&wcnss_driver
);
629 ret
= platform_driver_register(&qcom_iris_driver
);
631 platform_driver_unregister(&wcnss_driver
);
635 module_init(wcnss_init
);
637 static void __exit
wcnss_exit(void)
639 platform_driver_unregister(&qcom_iris_driver
);
640 platform_driver_unregister(&wcnss_driver
);
642 module_exit(wcnss_exit
);
644 MODULE_DESCRIPTION("Qualcomm Peripherial Image Loader for Wireless Subsystem");
645 MODULE_LICENSE("GPL v2");