1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright 2021 NXP */
4 #include <dt-bindings/firmware/imx/rsrc.h>
5 #include <linux/arm-smccc.h>
8 #include <linux/firmware.h>
9 #include <linux/firmware/imx/sci.h>
10 #include <linux/interrupt.h>
11 #include <linux/kernel.h>
12 #include <linux/mailbox_client.h>
13 #include <linux/mfd/syscon.h>
14 #include <linux/module.h>
16 #include <linux/of_reserved_mem.h>
17 #include <linux/platform_device.h>
18 #include <linux/pm_domain.h>
19 #include <linux/pm_runtime.h>
20 #include <linux/regmap.h>
21 #include <linux/remoteproc.h>
22 #include <linux/slab.h>
24 #include "imx_rproc.h"
25 #include "remoteproc_elf_helpers.h"
26 #include "remoteproc_internal.h"
28 #define DSP_RPROC_CLK_MAX 5
33 static unsigned int no_mailboxes
;
34 module_param_named(no_mailboxes
, no_mailboxes
, int, 0644);
35 MODULE_PARM_DESC(no_mailboxes
,
36 "There is no mailbox between cores, so ignore remote proc reply after start, default is 0 (off).");
38 #define REMOTE_IS_READY BIT(0)
39 #define REMOTE_READY_WAIT_MAX_RETRIES 500
43 #define ATT_OWN BIT(31)
44 /* DSP instruction area */
45 #define ATT_IRAM BIT(30)
47 /* Definitions for i.MX8MP */
49 #define IMX8M_DAP_DEBUG 0x28800000
50 #define IMX8M_DAP_DEBUG_SIZE (64 * 1024)
51 #define IMX8M_DAP_PWRCTL (0x4000 + 0x3020)
52 #define IMX8M_PWRCTL_CORERESET BIT(16)
54 /* DSP audio mix registers */
55 #define IMX8M_AudioDSP_REG0 0x100
56 #define IMX8M_AudioDSP_REG1 0x104
57 #define IMX8M_AudioDSP_REG2 0x108
58 #define IMX8M_AudioDSP_REG3 0x10c
60 #define IMX8M_AudioDSP_REG2_RUNSTALL BIT(5)
61 #define IMX8M_AudioDSP_REG2_PWAITMODE BIT(1)
63 /* Definitions for i.MX8ULP */
64 #define IMX8ULP_SIM_LPAV_REG_SYSCTRL0 0x8
65 #define IMX8ULP_SYSCTRL0_DSP_DBG_RST BIT(25)
66 #define IMX8ULP_SYSCTRL0_DSP_PLAT_CLK_EN BIT(19)
67 #define IMX8ULP_SYSCTRL0_DSP_PBCLK_EN BIT(18)
68 #define IMX8ULP_SYSCTRL0_DSP_CLK_EN BIT(17)
69 #define IMX8ULP_SYSCTRL0_DSP_RST BIT(16)
70 #define IMX8ULP_SYSCTRL0_DSP_OCD_HALT BIT(14)
71 #define IMX8ULP_SYSCTRL0_DSP_STALL BIT(13)
73 #define IMX8ULP_SIP_HIFI_XRDC 0xc200000e
76 * enum - Predefined Mailbox Messages
78 * @RP_MBOX_SUSPEND_SYSTEM: system suspend request for the remote processor
80 * @RP_MBOX_SUSPEND_ACK: successful response from remote processor for a
83 * @RP_MBOX_RESUME_SYSTEM: system resume request for the remote processor
85 * @RP_MBOX_RESUME_ACK: successful response from remote processor for a
88 enum imx_dsp_rp_mbox_messages
{
89 RP_MBOX_SUSPEND_SYSTEM
= 0xFF11,
90 RP_MBOX_SUSPEND_ACK
= 0xFF12,
91 RP_MBOX_RESUME_SYSTEM
= 0xFF13,
92 RP_MBOX_RESUME_ACK
= 0xFF14,
96 * struct imx_dsp_rproc - DSP remote processor state
97 * @regmap: regmap handler
98 * @rproc: rproc handler
99 * @dsp_dcfg: device configuration pointer
100 * @clks: clocks needed by this device
101 * @cl: mailbox client to request the mailbox channel
102 * @cl_rxdb: mailbox client to request the mailbox channel for doorbell
103 * @tx_ch: mailbox tx channel handle
104 * @rx_ch: mailbox rx channel handle
105 * @rxdb_ch: mailbox rx doorbell channel handle
106 * @pd_list: power domain list
107 * @ipc_handle: System Control Unit ipc handle
108 * @rproc_work: work for processing virtio interrupts
109 * @pm_comp: completion primitive to sync for suspend response
110 * @flags: control flags
112 struct imx_dsp_rproc
{
113 struct regmap
*regmap
;
115 const struct imx_dsp_rproc_dcfg
*dsp_dcfg
;
116 struct clk_bulk_data clks
[DSP_RPROC_CLK_MAX
];
117 struct mbox_client cl
;
118 struct mbox_client cl_rxdb
;
119 struct mbox_chan
*tx_ch
;
120 struct mbox_chan
*rx_ch
;
121 struct mbox_chan
*rxdb_ch
;
122 struct dev_pm_domain_list
*pd_list
;
123 struct imx_sc_ipc
*ipc_handle
;
124 struct work_struct rproc_work
;
125 struct completion pm_comp
;
130 * struct imx_dsp_rproc_dcfg - DSP remote processor configuration
131 * @dcfg: imx_rproc_dcfg handler
132 * @reset: reset callback function
134 struct imx_dsp_rproc_dcfg
{
135 const struct imx_rproc_dcfg
*dcfg
;
136 int (*reset
)(struct imx_dsp_rproc
*priv
);
139 static const struct imx_rproc_att imx_dsp_rproc_att_imx8qm
[] = {
140 /* dev addr , sys addr , size , flags */
141 { 0x596e8000, 0x556e8000, 0x00008000, ATT_OWN
},
142 { 0x596f0000, 0x556f0000, 0x00008000, ATT_OWN
},
143 { 0x596f8000, 0x556f8000, 0x00000800, ATT_OWN
| ATT_IRAM
},
144 { 0x55700000, 0x55700000, 0x00070000, ATT_OWN
},
146 { 0x80000000, 0x80000000, 0x60000000, 0},
149 static const struct imx_rproc_att imx_dsp_rproc_att_imx8qxp
[] = {
150 /* dev addr , sys addr , size , flags */
151 { 0x596e8000, 0x596e8000, 0x00008000, ATT_OWN
},
152 { 0x596f0000, 0x596f0000, 0x00008000, ATT_OWN
},
153 { 0x596f8000, 0x596f8000, 0x00000800, ATT_OWN
| ATT_IRAM
},
154 { 0x59700000, 0x59700000, 0x00070000, ATT_OWN
},
156 { 0x80000000, 0x80000000, 0x60000000, 0},
159 static const struct imx_rproc_att imx_dsp_rproc_att_imx8mp
[] = {
160 /* dev addr , sys addr , size , flags */
161 { 0x3b6e8000, 0x3b6e8000, 0x00008000, ATT_OWN
},
162 { 0x3b6f0000, 0x3b6f0000, 0x00008000, ATT_OWN
},
163 { 0x3b6f8000, 0x3b6f8000, 0x00000800, ATT_OWN
| ATT_IRAM
},
164 { 0x3b700000, 0x3b700000, 0x00040000, ATT_OWN
},
166 { 0x40000000, 0x40000000, 0x80000000, 0},
169 static const struct imx_rproc_att imx_dsp_rproc_att_imx8ulp
[] = {
170 /* dev addr , sys addr , size , flags */
171 { 0x21170000, 0x21170000, 0x00010000, ATT_OWN
| ATT_IRAM
},
172 { 0x21180000, 0x21180000, 0x00010000, ATT_OWN
},
174 { 0x0c000000, 0x80000000, 0x10000000, 0},
175 { 0x30000000, 0x90000000, 0x10000000, 0},
178 /* Initialize the mailboxes between cores, if exists */
179 static int (*imx_dsp_rproc_mbox_init
)(struct imx_dsp_rproc
*priv
);
181 /* Reset function for DSP on i.MX8MP */
182 static int imx8mp_dsp_reset(struct imx_dsp_rproc
*priv
)
184 void __iomem
*dap
= ioremap_wc(IMX8M_DAP_DEBUG
, IMX8M_DAP_DEBUG_SIZE
);
187 /* Put DSP into reset and stall */
188 pwrctl
= readl(dap
+ IMX8M_DAP_PWRCTL
);
189 pwrctl
|= IMX8M_PWRCTL_CORERESET
;
190 writel(pwrctl
, dap
+ IMX8M_DAP_PWRCTL
);
192 /* Keep reset asserted for 10 cycles */
195 regmap_update_bits(priv
->regmap
, IMX8M_AudioDSP_REG2
,
196 IMX8M_AudioDSP_REG2_RUNSTALL
,
197 IMX8M_AudioDSP_REG2_RUNSTALL
);
199 /* Take the DSP out of reset and keep stalled for FW loading */
200 pwrctl
= readl(dap
+ IMX8M_DAP_PWRCTL
);
201 pwrctl
&= ~IMX8M_PWRCTL_CORERESET
;
202 writel(pwrctl
, dap
+ IMX8M_DAP_PWRCTL
);
208 /* Reset function for DSP on i.MX8ULP */
209 static int imx8ulp_dsp_reset(struct imx_dsp_rproc
*priv
)
211 struct arm_smccc_res res
;
213 /* Put DSP into reset and stall */
214 regmap_update_bits(priv
->regmap
, IMX8ULP_SIM_LPAV_REG_SYSCTRL0
,
215 IMX8ULP_SYSCTRL0_DSP_RST
, IMX8ULP_SYSCTRL0_DSP_RST
);
216 regmap_update_bits(priv
->regmap
, IMX8ULP_SIM_LPAV_REG_SYSCTRL0
,
217 IMX8ULP_SYSCTRL0_DSP_STALL
,
218 IMX8ULP_SYSCTRL0_DSP_STALL
);
220 /* Configure resources of DSP through TFA */
221 arm_smccc_smc(IMX8ULP_SIP_HIFI_XRDC
, 0, 0, 0, 0, 0, 0, 0, &res
);
223 /* Take the DSP out of reset and keep stalled for FW loading */
224 regmap_update_bits(priv
->regmap
, IMX8ULP_SIM_LPAV_REG_SYSCTRL0
,
225 IMX8ULP_SYSCTRL0_DSP_RST
, 0);
226 regmap_update_bits(priv
->regmap
, IMX8ULP_SIM_LPAV_REG_SYSCTRL0
,
227 IMX8ULP_SYSCTRL0_DSP_DBG_RST
, 0);
232 /* Specific configuration for i.MX8MP */
233 static const struct imx_rproc_dcfg dsp_rproc_cfg_imx8mp
= {
234 .src_reg
= IMX8M_AudioDSP_REG2
,
235 .src_mask
= IMX8M_AudioDSP_REG2_RUNSTALL
,
237 .src_stop
= IMX8M_AudioDSP_REG2_RUNSTALL
,
238 .att
= imx_dsp_rproc_att_imx8mp
,
239 .att_size
= ARRAY_SIZE(imx_dsp_rproc_att_imx8mp
),
240 .method
= IMX_RPROC_MMIO
,
243 static const struct imx_dsp_rproc_dcfg imx_dsp_rproc_cfg_imx8mp
= {
244 .dcfg
= &dsp_rproc_cfg_imx8mp
,
245 .reset
= imx8mp_dsp_reset
,
248 /* Specific configuration for i.MX8ULP */
249 static const struct imx_rproc_dcfg dsp_rproc_cfg_imx8ulp
= {
250 .src_reg
= IMX8ULP_SIM_LPAV_REG_SYSCTRL0
,
251 .src_mask
= IMX8ULP_SYSCTRL0_DSP_STALL
,
253 .src_stop
= IMX8ULP_SYSCTRL0_DSP_STALL
,
254 .att
= imx_dsp_rproc_att_imx8ulp
,
255 .att_size
= ARRAY_SIZE(imx_dsp_rproc_att_imx8ulp
),
256 .method
= IMX_RPROC_MMIO
,
259 static const struct imx_dsp_rproc_dcfg imx_dsp_rproc_cfg_imx8ulp
= {
260 .dcfg
= &dsp_rproc_cfg_imx8ulp
,
261 .reset
= imx8ulp_dsp_reset
,
264 /* Specific configuration for i.MX8QXP */
265 static const struct imx_rproc_dcfg dsp_rproc_cfg_imx8qxp
= {
266 .att
= imx_dsp_rproc_att_imx8qxp
,
267 .att_size
= ARRAY_SIZE(imx_dsp_rproc_att_imx8qxp
),
268 .method
= IMX_RPROC_SCU_API
,
271 static const struct imx_dsp_rproc_dcfg imx_dsp_rproc_cfg_imx8qxp
= {
272 .dcfg
= &dsp_rproc_cfg_imx8qxp
,
275 /* Specific configuration for i.MX8QM */
276 static const struct imx_rproc_dcfg dsp_rproc_cfg_imx8qm
= {
277 .att
= imx_dsp_rproc_att_imx8qm
,
278 .att_size
= ARRAY_SIZE(imx_dsp_rproc_att_imx8qm
),
279 .method
= IMX_RPROC_SCU_API
,
282 static const struct imx_dsp_rproc_dcfg imx_dsp_rproc_cfg_imx8qm
= {
283 .dcfg
= &dsp_rproc_cfg_imx8qm
,
286 static int imx_dsp_rproc_ready(struct rproc
*rproc
)
288 struct imx_dsp_rproc
*priv
= rproc
->priv
;
294 for (i
= 0; i
< REMOTE_READY_WAIT_MAX_RETRIES
; i
++) {
295 if (priv
->flags
& REMOTE_IS_READY
)
297 usleep_range(100, 200);
304 * Start function for rproc_ops
306 * There is a handshake for start procedure: when DSP starts, it
307 * will send a doorbell message to this driver, then the
308 * REMOTE_IS_READY flags is set, then driver will kick
311 static int imx_dsp_rproc_start(struct rproc
*rproc
)
313 struct imx_dsp_rproc
*priv
= rproc
->priv
;
314 const struct imx_dsp_rproc_dcfg
*dsp_dcfg
= priv
->dsp_dcfg
;
315 const struct imx_rproc_dcfg
*dcfg
= dsp_dcfg
->dcfg
;
316 struct device
*dev
= rproc
->dev
.parent
;
319 switch (dcfg
->method
) {
321 ret
= regmap_update_bits(priv
->regmap
,
326 case IMX_RPROC_SCU_API
:
327 ret
= imx_sc_pm_cpu_start(priv
->ipc_handle
,
337 dev_err(dev
, "Failed to enable remote core!\n");
339 ret
= imx_dsp_rproc_ready(rproc
);
345 * Stop function for rproc_ops
346 * It clears the REMOTE_IS_READY flags
348 static int imx_dsp_rproc_stop(struct rproc
*rproc
)
350 struct imx_dsp_rproc
*priv
= rproc
->priv
;
351 const struct imx_dsp_rproc_dcfg
*dsp_dcfg
= priv
->dsp_dcfg
;
352 const struct imx_rproc_dcfg
*dcfg
= dsp_dcfg
->dcfg
;
353 struct device
*dev
= rproc
->dev
.parent
;
356 if (rproc
->state
== RPROC_CRASHED
) {
357 priv
->flags
&= ~REMOTE_IS_READY
;
361 switch (dcfg
->method
) {
363 ret
= regmap_update_bits(priv
->regmap
, dcfg
->src_reg
, dcfg
->src_mask
,
366 case IMX_RPROC_SCU_API
:
367 ret
= imx_sc_pm_cpu_start(priv
->ipc_handle
,
377 dev_err(dev
, "Failed to stop remote core\n");
379 priv
->flags
&= ~REMOTE_IS_READY
;
385 * imx_dsp_rproc_sys_to_da() - internal memory translation helper
386 * @priv: private data pointer
387 * @sys: system address (DDR address)
388 * @len: length of the memory buffer
389 * @da: device address to translate
391 * Convert system address (DDR address) to device address (DSP)
392 * for there may be memory remap for device.
394 static int imx_dsp_rproc_sys_to_da(struct imx_dsp_rproc
*priv
, u64 sys
,
397 const struct imx_dsp_rproc_dcfg
*dsp_dcfg
= priv
->dsp_dcfg
;
398 const struct imx_rproc_dcfg
*dcfg
= dsp_dcfg
->dcfg
;
401 /* Parse address translation table */
402 for (i
= 0; i
< dcfg
->att_size
; i
++) {
403 const struct imx_rproc_att
*att
= &dcfg
->att
[i
];
405 if (sys
>= att
->sa
&& sys
+ len
<= att
->sa
+ att
->size
) {
406 unsigned int offset
= sys
- att
->sa
;
408 *da
= att
->da
+ offset
;
416 /* Main virtqueue message work function
418 * This function is executed upon scheduling of the i.MX DSP remoteproc
419 * driver's workqueue. The workqueue is scheduled by the mailbox rx
422 * This work function processes both the Tx and Rx virtqueue indices on
423 * every invocation. The rproc_vq_interrupt function can detect if there
424 * are new unprocessed messages or not (returns IRQ_NONE vs IRQ_HANDLED),
425 * but there is no need to check for these return values. The index 0
426 * triggering will process all pending Rx buffers, and the index 1 triggering
427 * will process all newly available Tx buffers and will wakeup any potentially
431 * The current logic is based on an inherent design assumption of supporting
432 * only 2 vrings, but this can be changed if needed.
434 static void imx_dsp_rproc_vq_work(struct work_struct
*work
)
436 struct imx_dsp_rproc
*priv
= container_of(work
, struct imx_dsp_rproc
,
438 struct rproc
*rproc
= priv
->rproc
;
440 mutex_lock(&rproc
->lock
);
442 if (rproc
->state
!= RPROC_RUNNING
)
445 rproc_vq_interrupt(priv
->rproc
, 0);
446 rproc_vq_interrupt(priv
->rproc
, 1);
449 mutex_unlock(&rproc
->lock
);
453 * imx_dsp_rproc_rx_tx_callback() - inbound mailbox message handler
454 * @cl: mailbox client pointer used for requesting the mailbox channel
455 * @data: mailbox payload
457 * This handler is invoked by mailbox driver whenever a mailbox
458 * message is received. Usually, the SUSPEND and RESUME related messages
459 * are handled in this function, other messages are handled by remoteproc core
461 static void imx_dsp_rproc_rx_tx_callback(struct mbox_client
*cl
, void *data
)
463 struct rproc
*rproc
= dev_get_drvdata(cl
->dev
);
464 struct imx_dsp_rproc
*priv
= rproc
->priv
;
465 struct device
*dev
= rproc
->dev
.parent
;
466 u32 message
= (u32
)(*(u32
*)data
);
468 dev_dbg(dev
, "mbox msg: 0x%x\n", message
);
471 case RP_MBOX_SUSPEND_ACK
:
472 complete(&priv
->pm_comp
);
474 case RP_MBOX_RESUME_ACK
:
475 complete(&priv
->pm_comp
);
478 schedule_work(&priv
->rproc_work
);
484 * imx_dsp_rproc_rxdb_callback() - inbound mailbox message handler
485 * @cl: mailbox client pointer used for requesting the mailbox channel
486 * @data: mailbox payload
488 * For doorbell, there is no message specified, just set REMOTE_IS_READY
491 static void imx_dsp_rproc_rxdb_callback(struct mbox_client
*cl
, void *data
)
493 struct rproc
*rproc
= dev_get_drvdata(cl
->dev
);
494 struct imx_dsp_rproc
*priv
= rproc
->priv
;
496 /* Remote is ready after firmware is loaded and running */
497 priv
->flags
|= REMOTE_IS_READY
;
501 * imx_dsp_rproc_mbox_alloc() - request mailbox channels
502 * @priv: private data pointer
504 * Request three mailbox channels (tx, rx, rxdb).
506 static int imx_dsp_rproc_mbox_alloc(struct imx_dsp_rproc
*priv
)
508 struct device
*dev
= priv
->rproc
->dev
.parent
;
509 struct mbox_client
*cl
;
512 if (!of_property_present(dev
->of_node
, "mbox-names"))
519 cl
->knows_txdone
= false;
520 cl
->rx_callback
= imx_dsp_rproc_rx_tx_callback
;
522 /* Channel for sending message */
523 priv
->tx_ch
= mbox_request_channel_byname(cl
, "tx");
524 if (IS_ERR(priv
->tx_ch
)) {
525 ret
= PTR_ERR(priv
->tx_ch
);
526 dev_dbg(cl
->dev
, "failed to request tx mailbox channel: %d\n",
531 /* Channel for receiving message */
532 priv
->rx_ch
= mbox_request_channel_byname(cl
, "rx");
533 if (IS_ERR(priv
->rx_ch
)) {
534 ret
= PTR_ERR(priv
->rx_ch
);
535 dev_dbg(cl
->dev
, "failed to request rx mailbox channel: %d\n",
537 goto free_channel_tx
;
542 cl
->rx_callback
= imx_dsp_rproc_rxdb_callback
;
545 * RX door bell is used to receive the ready signal from remote
546 * after firmware loaded.
548 priv
->rxdb_ch
= mbox_request_channel_byname(cl
, "rxdb");
549 if (IS_ERR(priv
->rxdb_ch
)) {
550 ret
= PTR_ERR(priv
->rxdb_ch
);
551 dev_dbg(cl
->dev
, "failed to request mbox chan rxdb, ret %d\n",
553 goto free_channel_rx
;
559 mbox_free_channel(priv
->rx_ch
);
561 mbox_free_channel(priv
->tx_ch
);
566 * imx_dsp_rproc_mbox_no_alloc()
568 * Empty function for no mailbox between cores
572 static int imx_dsp_rproc_mbox_no_alloc(struct imx_dsp_rproc
*priv
)
577 static void imx_dsp_rproc_free_mbox(struct imx_dsp_rproc
*priv
)
579 mbox_free_channel(priv
->tx_ch
);
580 mbox_free_channel(priv
->rx_ch
);
581 mbox_free_channel(priv
->rxdb_ch
);
585 * imx_dsp_rproc_add_carveout() - request mailbox channels
586 * @priv: private data pointer
588 * This function registers specified memory entry in @rproc carveouts list
589 * The carveouts can help to mapping the memory address for DSP.
591 static int imx_dsp_rproc_add_carveout(struct imx_dsp_rproc
*priv
)
593 const struct imx_dsp_rproc_dcfg
*dsp_dcfg
= priv
->dsp_dcfg
;
594 const struct imx_rproc_dcfg
*dcfg
= dsp_dcfg
->dcfg
;
595 struct rproc
*rproc
= priv
->rproc
;
596 struct device
*dev
= rproc
->dev
.parent
;
597 struct device_node
*np
= dev
->of_node
;
598 struct of_phandle_iterator it
;
599 struct rproc_mem_entry
*mem
;
600 struct reserved_mem
*rmem
;
601 void __iomem
*cpu_addr
;
605 /* Remap required addresses */
606 for (a
= 0; a
< dcfg
->att_size
; a
++) {
607 const struct imx_rproc_att
*att
= &dcfg
->att
[a
];
609 if (!(att
->flags
& ATT_OWN
))
612 if (imx_dsp_rproc_sys_to_da(priv
, att
->sa
, att
->size
, &da
))
615 cpu_addr
= devm_ioremap_wc(dev
, att
->sa
, att
->size
);
617 dev_err(dev
, "failed to map memory %p\n", &att
->sa
);
621 /* Register memory region */
622 mem
= rproc_mem_entry_init(dev
, (void __force
*)cpu_addr
, (dma_addr_t
)att
->sa
,
623 att
->size
, da
, NULL
, NULL
, "dsp_mem");
626 rproc_coredump_add_segment(rproc
, da
, att
->size
);
630 rproc_add_carveout(rproc
, mem
);
633 of_phandle_iterator_init(&it
, np
, "memory-region", NULL
, 0);
634 while (of_phandle_iterator_next(&it
) == 0) {
636 * Ignore the first memory region which will be used vdev buffer.
637 * No need to do extra handlings, rproc_add_virtio_dev will handle it.
639 if (!strcmp(it
.node
->name
, "vdev0buffer"))
642 rmem
= of_reserved_mem_lookup(it
.node
);
644 of_node_put(it
.node
);
645 dev_err(dev
, "unable to acquire memory-region\n");
649 if (imx_dsp_rproc_sys_to_da(priv
, rmem
->base
, rmem
->size
, &da
)) {
650 of_node_put(it
.node
);
654 cpu_addr
= devm_ioremap_wc(dev
, rmem
->base
, rmem
->size
);
656 of_node_put(it
.node
);
657 dev_err(dev
, "failed to map memory %p\n", &rmem
->base
);
661 /* Register memory region */
662 mem
= rproc_mem_entry_init(dev
, (void __force
*)cpu_addr
, (dma_addr_t
)rmem
->base
,
663 rmem
->size
, da
, NULL
, NULL
, it
.node
->name
);
666 rproc_coredump_add_segment(rproc
, da
, rmem
->size
);
668 of_node_put(it
.node
);
672 rproc_add_carveout(rproc
, mem
);
678 /* Prepare function for rproc_ops */
679 static int imx_dsp_rproc_prepare(struct rproc
*rproc
)
681 struct imx_dsp_rproc
*priv
= rproc
->priv
;
682 struct device
*dev
= rproc
->dev
.parent
;
683 struct rproc_mem_entry
*carveout
;
686 ret
= imx_dsp_rproc_add_carveout(priv
);
688 dev_err(dev
, "failed on imx_dsp_rproc_add_carveout\n");
692 pm_runtime_get_sync(dev
);
695 * Clear buffers after pm rumtime for internal ocram is not
696 * accessible if power and clock are not enabled.
698 list_for_each_entry(carveout
, &rproc
->carveouts
, node
) {
700 memset(carveout
->va
, 0, carveout
->len
);
706 /* Unprepare function for rproc_ops */
707 static int imx_dsp_rproc_unprepare(struct rproc
*rproc
)
709 pm_runtime_put_sync(rproc
->dev
.parent
);
714 /* Kick function for rproc_ops */
715 static void imx_dsp_rproc_kick(struct rproc
*rproc
, int vqid
)
717 struct imx_dsp_rproc
*priv
= rproc
->priv
;
718 struct device
*dev
= rproc
->dev
.parent
;
723 dev_err(dev
, "No initialized mbox tx channel\n");
728 * Send the index of the triggered virtqueue as the mu payload.
729 * Let remote processor know which virtqueue is used.
733 err
= mbox_send_message(priv
->tx_ch
, (void *)&mmsg
);
735 dev_err(dev
, "%s: failed (%d, err:%d)\n", __func__
, vqid
, err
);
739 * Custom memory copy implementation for i.MX DSP Cores
741 * The IRAM is part of the HiFi DSP.
742 * According to hw specs only 32-bits writes are allowed.
744 static int imx_dsp_rproc_memcpy(void *dst
, const void *src
, size_t size
)
746 void __iomem
*dest
= (void __iomem
*)dst
;
747 const u8
*src_byte
= src
;
748 const u32
*source
= src
;
753 /* destination must be 32bit aligned */
754 if (!IS_ALIGNED((uintptr_t)dest
, 4))
760 /* copy data in units of 32 bits at a time */
761 for (i
= 0; i
< q
; i
++)
762 writel(source
[i
], dest
+ i
* 4);
765 affected_mask
= GENMASK(8 * r
, 0);
768 * first read the 32bit data of dest, then change affected
769 * bytes, and write back to dest.
770 * For unaffected bytes, it should not be changed
772 tmp
= readl(dest
+ q
* 4);
773 tmp
&= ~affected_mask
;
775 /* avoid reading after end of source */
776 for (i
= 0; i
< r
; i
++)
777 tmp
|= (src_byte
[q
* 4 + i
] << (8 * i
));
779 writel(tmp
, dest
+ q
* 4);
786 * Custom memset implementation for i.MX DSP Cores
788 * The IRAM is part of the HiFi DSP.
789 * According to hw specs only 32-bits writes are allowed.
791 static int imx_dsp_rproc_memset(void *addr
, u8 value
, size_t size
)
793 void __iomem
*tmp_dst
= (void __iomem
*)addr
;
799 /* destination must be 32bit aligned */
800 if (!IS_ALIGNED((uintptr_t)addr
, 4))
803 tmp_val
|= tmp_val
<< 8;
804 tmp_val
|= tmp_val
<< 16;
810 writel(tmp_val
, tmp_dst
++);
813 affected_mask
= GENMASK(8 * r
, 0);
816 * first read the 32bit data of addr, then change affected
817 * bytes, and write back to addr.
818 * For unaffected bytes, it should not be changed
820 tmp
= readl(tmp_dst
);
821 tmp
&= ~affected_mask
;
823 tmp
|= (tmp_val
& affected_mask
);
824 writel(tmp
, tmp_dst
);
831 * imx_dsp_rproc_elf_load_segments() - load firmware segments to memory
832 * @rproc: remote processor which will be booted using these fw segments
833 * @fw: the ELF firmware image
835 * This function loads the firmware segments to memory, where the remote
836 * processor expects them.
838 * Return: 0 on success and an appropriate error code otherwise
840 static int imx_dsp_rproc_elf_load_segments(struct rproc
*rproc
, const struct firmware
*fw
)
842 struct device
*dev
= &rproc
->dev
;
843 const void *ehdr
, *phdr
;
846 const u8
*elf_data
= fw
->data
;
847 u8
class = fw_elf_get_class(fw
);
848 u32 elf_phdr_get_size
= elf_size_of_phdr(class);
851 phnum
= elf_hdr_get_e_phnum(class, ehdr
);
852 phdr
= elf_data
+ elf_hdr_get_e_phoff(class, ehdr
);
854 /* go through the available ELF segments */
855 for (i
= 0; i
< phnum
; i
++, phdr
+= elf_phdr_get_size
) {
856 u64 da
= elf_phdr_get_p_paddr(class, phdr
);
857 u64 memsz
= elf_phdr_get_p_memsz(class, phdr
);
858 u64 filesz
= elf_phdr_get_p_filesz(class, phdr
);
859 u64 offset
= elf_phdr_get_p_offset(class, phdr
);
860 u32 type
= elf_phdr_get_p_type(class, phdr
);
863 if (type
!= PT_LOAD
|| !memsz
)
866 dev_dbg(dev
, "phdr: type %d da 0x%llx memsz 0x%llx filesz 0x%llx\n",
867 type
, da
, memsz
, filesz
);
869 if (filesz
> memsz
) {
870 dev_err(dev
, "bad phdr filesz 0x%llx memsz 0x%llx\n",
876 if (offset
+ filesz
> fw
->size
) {
877 dev_err(dev
, "truncated fw: need 0x%llx avail 0x%zx\n",
878 offset
+ filesz
, fw
->size
);
883 if (!rproc_u64_fit_in_size_t(memsz
)) {
884 dev_err(dev
, "size (%llx) does not fit in size_t type\n",
890 /* grab the kernel address for this device address */
891 ptr
= rproc_da_to_va(rproc
, da
, memsz
, NULL
);
893 dev_err(dev
, "bad phdr da 0x%llx mem 0x%llx\n", da
,
899 /* put the segment where the remote processor expects it */
901 ret
= imx_dsp_rproc_memcpy(ptr
, elf_data
+ offset
, filesz
);
903 dev_err(dev
, "memory copy failed for da 0x%llx memsz 0x%llx\n",
909 /* zero out remaining memory for this segment */
910 if (memsz
> filesz
) {
911 ret
= imx_dsp_rproc_memset(ptr
+ filesz
, 0, memsz
- filesz
);
913 dev_err(dev
, "memset failed for da 0x%llx memsz 0x%llx\n",
923 static int imx_dsp_rproc_parse_fw(struct rproc
*rproc
, const struct firmware
*fw
)
925 if (rproc_elf_load_rsc_table(rproc
, fw
))
926 dev_warn(&rproc
->dev
, "no resource table found for this firmware\n");
931 static const struct rproc_ops imx_dsp_rproc_ops
= {
932 .prepare
= imx_dsp_rproc_prepare
,
933 .unprepare
= imx_dsp_rproc_unprepare
,
934 .start
= imx_dsp_rproc_start
,
935 .stop
= imx_dsp_rproc_stop
,
936 .kick
= imx_dsp_rproc_kick
,
937 .load
= imx_dsp_rproc_elf_load_segments
,
938 .parse_fw
= imx_dsp_rproc_parse_fw
,
939 .find_loaded_rsc_table
= rproc_elf_find_loaded_rsc_table
,
940 .sanity_check
= rproc_elf_sanity_check
,
941 .get_boot_addr
= rproc_elf_get_boot_addr
,
945 * imx_dsp_attach_pm_domains() - attach the power domains
946 * @priv: private data pointer
948 * On i.MX8QM and i.MX8QXP there is multiple power domains
949 * required, so need to link them.
951 static int imx_dsp_attach_pm_domains(struct imx_dsp_rproc
*priv
)
953 struct device
*dev
= priv
->rproc
->dev
.parent
;
956 /* A single PM domain is already attached. */
960 ret
= dev_pm_domain_attach_list(dev
, NULL
, &priv
->pd_list
);
961 return ret
< 0 ? ret
: 0;
965 * imx_dsp_rproc_detect_mode() - detect DSP control mode
966 * @priv: private data pointer
968 * Different platform has different control method for DSP, which depends
969 * on how the DSP is integrated in platform.
971 * For i.MX8QXP and i.MX8QM, DSP should be started and stopped by System
973 * For i.MX8MP and i.MX8ULP, DSP should be started and stopped by system
974 * integration module.
976 static int imx_dsp_rproc_detect_mode(struct imx_dsp_rproc
*priv
)
978 const struct imx_dsp_rproc_dcfg
*dsp_dcfg
= priv
->dsp_dcfg
;
979 struct device
*dev
= priv
->rproc
->dev
.parent
;
980 struct regmap
*regmap
;
983 switch (dsp_dcfg
->dcfg
->method
) {
984 case IMX_RPROC_SCU_API
:
985 ret
= imx_scu_get_handle(&priv
->ipc_handle
);
990 regmap
= syscon_regmap_lookup_by_phandle(dev
->of_node
, "fsl,dsp-ctrl");
991 if (IS_ERR(regmap
)) {
992 dev_err(dev
, "failed to find syscon\n");
993 return PTR_ERR(regmap
);
996 priv
->regmap
= regmap
;
1006 static const char *imx_dsp_clks_names
[DSP_RPROC_CLK_MAX
] = {
1008 "core", "ocram", "debug", "ipg", "mu",
1011 static int imx_dsp_rproc_clk_get(struct imx_dsp_rproc
*priv
)
1013 struct device
*dev
= priv
->rproc
->dev
.parent
;
1014 struct clk_bulk_data
*clks
= priv
->clks
;
1017 for (i
= 0; i
< DSP_RPROC_CLK_MAX
; i
++)
1018 clks
[i
].id
= imx_dsp_clks_names
[i
];
1020 return devm_clk_bulk_get_optional(dev
, DSP_RPROC_CLK_MAX
, clks
);
1023 static int imx_dsp_rproc_probe(struct platform_device
*pdev
)
1025 const struct imx_dsp_rproc_dcfg
*dsp_dcfg
;
1026 struct device
*dev
= &pdev
->dev
;
1027 struct imx_dsp_rproc
*priv
;
1028 struct rproc
*rproc
;
1029 const char *fw_name
;
1032 dsp_dcfg
= of_device_get_match_data(dev
);
1036 ret
= rproc_of_parse_firmware(dev
, 0, &fw_name
);
1038 dev_err(dev
, "failed to parse firmware-name property, ret = %d\n",
1043 rproc
= devm_rproc_alloc(dev
, "imx-dsp-rproc", &imx_dsp_rproc_ops
,
1044 fw_name
, sizeof(*priv
));
1049 priv
->rproc
= rproc
;
1050 priv
->dsp_dcfg
= dsp_dcfg
;
1053 imx_dsp_rproc_mbox_init
= imx_dsp_rproc_mbox_no_alloc
;
1055 imx_dsp_rproc_mbox_init
= imx_dsp_rproc_mbox_alloc
;
1057 dev_set_drvdata(dev
, rproc
);
1059 INIT_WORK(&priv
->rproc_work
, imx_dsp_rproc_vq_work
);
1061 ret
= imx_dsp_rproc_detect_mode(priv
);
1063 dev_err(dev
, "failed on imx_dsp_rproc_detect_mode\n");
1067 /* There are multiple power domains required by DSP on some platform */
1068 ret
= imx_dsp_attach_pm_domains(priv
);
1070 dev_err(dev
, "failed on imx_dsp_attach_pm_domains\n");
1074 ret
= imx_dsp_rproc_clk_get(priv
);
1076 dev_err(dev
, "failed on imx_dsp_rproc_clk_get\n");
1077 goto err_detach_domains
;
1080 init_completion(&priv
->pm_comp
);
1081 rproc
->auto_boot
= false;
1082 ret
= rproc_add(rproc
);
1084 dev_err(dev
, "rproc_add failed\n");
1085 goto err_detach_domains
;
1088 pm_runtime_enable(dev
);
1093 dev_pm_domain_detach_list(priv
->pd_list
);
1098 static void imx_dsp_rproc_remove(struct platform_device
*pdev
)
1100 struct rproc
*rproc
= platform_get_drvdata(pdev
);
1101 struct imx_dsp_rproc
*priv
= rproc
->priv
;
1103 pm_runtime_disable(&pdev
->dev
);
1105 dev_pm_domain_detach_list(priv
->pd_list
);
1108 /* pm runtime functions */
1109 static int imx_dsp_runtime_resume(struct device
*dev
)
1111 struct rproc
*rproc
= dev_get_drvdata(dev
);
1112 struct imx_dsp_rproc
*priv
= rproc
->priv
;
1113 const struct imx_dsp_rproc_dcfg
*dsp_dcfg
= priv
->dsp_dcfg
;
1117 * There is power domain attached with mailbox, if setup mailbox
1118 * in probe(), then the power of mailbox is always enabled,
1119 * the power can't be saved.
1120 * So move setup of mailbox to runtime resume.
1122 ret
= imx_dsp_rproc_mbox_init(priv
);
1124 dev_err(dev
, "failed on imx_dsp_rproc_mbox_init\n");
1128 ret
= clk_bulk_prepare_enable(DSP_RPROC_CLK_MAX
, priv
->clks
);
1130 dev_err(dev
, "failed on clk_bulk_prepare_enable\n");
1134 /* Reset DSP if needed */
1135 if (dsp_dcfg
->reset
)
1136 dsp_dcfg
->reset(priv
);
1141 static int imx_dsp_runtime_suspend(struct device
*dev
)
1143 struct rproc
*rproc
= dev_get_drvdata(dev
);
1144 struct imx_dsp_rproc
*priv
= rproc
->priv
;
1146 clk_bulk_disable_unprepare(DSP_RPROC_CLK_MAX
, priv
->clks
);
1148 imx_dsp_rproc_free_mbox(priv
);
1153 static void imx_dsp_load_firmware(const struct firmware
*fw
, void *context
)
1155 struct rproc
*rproc
= context
;
1159 * Same flow as start procedure.
1160 * Load the ELF segments to memory firstly.
1162 ret
= rproc_load_segments(rproc
, fw
);
1166 /* Start the remote processor */
1167 ret
= rproc
->ops
->start(rproc
);
1171 rproc
->ops
->kick(rproc
, 0);
1174 release_firmware(fw
);
1177 static int imx_dsp_suspend(struct device
*dev
)
1179 struct rproc
*rproc
= dev_get_drvdata(dev
);
1180 struct imx_dsp_rproc
*priv
= rproc
->priv
;
1181 __u32 mmsg
= RP_MBOX_SUSPEND_SYSTEM
;
1184 if (rproc
->state
!= RPROC_RUNNING
)
1187 reinit_completion(&priv
->pm_comp
);
1189 /* Tell DSP that suspend is happening */
1190 ret
= mbox_send_message(priv
->tx_ch
, (void *)&mmsg
);
1192 dev_err(dev
, "PM mbox_send_message failed: %d\n", ret
);
1197 * DSP need to save the context at suspend.
1198 * Here waiting the response for DSP, then power can be disabled.
1200 if (!wait_for_completion_timeout(&priv
->pm_comp
, msecs_to_jiffies(100)))
1205 * The power of DSP is disabled in suspend, so force pm runtime
1206 * to be suspend, then we can reenable the power and clocks at
1209 return pm_runtime_force_suspend(dev
);
1212 static int imx_dsp_resume(struct device
*dev
)
1214 struct rproc
*rproc
= dev_get_drvdata(dev
);
1217 ret
= pm_runtime_force_resume(dev
);
1221 if (rproc
->state
!= RPROC_RUNNING
)
1225 * The power of DSP is disabled at suspend, the memory of dsp
1226 * is reset, the image segments are lost. So need to reload
1227 * firmware and restart the DSP if it is in running state.
1229 ret
= request_firmware_nowait(THIS_MODULE
, FW_ACTION_UEVENT
,
1230 rproc
->firmware
, dev
, GFP_KERNEL
,
1231 rproc
, imx_dsp_load_firmware
);
1233 dev_err(dev
, "load firmware failed: %d\n", ret
);
1240 pm_runtime_force_suspend(dev
);
1245 static const struct dev_pm_ops imx_dsp_rproc_pm_ops
= {
1246 SYSTEM_SLEEP_PM_OPS(imx_dsp_suspend
, imx_dsp_resume
)
1247 RUNTIME_PM_OPS(imx_dsp_runtime_suspend
, imx_dsp_runtime_resume
, NULL
)
1250 static const struct of_device_id imx_dsp_rproc_of_match
[] = {
1251 { .compatible
= "fsl,imx8qxp-hifi4", .data
= &imx_dsp_rproc_cfg_imx8qxp
},
1252 { .compatible
= "fsl,imx8qm-hifi4", .data
= &imx_dsp_rproc_cfg_imx8qm
},
1253 { .compatible
= "fsl,imx8mp-hifi4", .data
= &imx_dsp_rproc_cfg_imx8mp
},
1254 { .compatible
= "fsl,imx8ulp-hifi4", .data
= &imx_dsp_rproc_cfg_imx8ulp
},
1257 MODULE_DEVICE_TABLE(of
, imx_dsp_rproc_of_match
);
1259 static struct platform_driver imx_dsp_rproc_driver
= {
1260 .probe
= imx_dsp_rproc_probe
,
1261 .remove
= imx_dsp_rproc_remove
,
1263 .name
= "imx-dsp-rproc",
1264 .of_match_table
= imx_dsp_rproc_of_match
,
1265 .pm
= pm_ptr(&imx_dsp_rproc_pm_ops
),
1268 module_platform_driver(imx_dsp_rproc_driver
);
1270 MODULE_LICENSE("GPL v2");
1271 MODULE_DESCRIPTION("i.MX HiFi Core Remote Processor Control Driver");
1272 MODULE_AUTHOR("Shengjiu Wang <shengjiu.wang@nxp.com>");