1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * TI K3 R5F (MCU) Remote Processor driver
4 *
5 * Copyright (C) 2017-2022 Texas Instruments Incorporated - https://www.ti.com/
6 * Suman Anna <s-anna@ti.com>
7 */
8
9 #include <linux/dma-mapping.h>
10 #include <linux/err.h>
11 #include <linux/interrupt.h>
12 #include <linux/kernel.h>
13 #include <linux/mailbox_client.h>
14 #include <linux/module.h>
15 #include <linux/of.h>
16 #include <linux/of_address.h>
17 #include <linux/of_reserved_mem.h>
18 #include <linux/of_platform.h>
19 #include <linux/omap-mailbox.h>
20 #include <linux/platform_device.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/remoteproc.h>
23 #include <linux/reset.h>
24 #include <linux/slab.h>
25
26 #include "omap_remoteproc.h"
27 #include "remoteproc_internal.h"
28 #include "ti_sci_proc.h"
29
30 /* This address can either be for ATCM or BTCM with the other at address 0x0 */
31 #define K3_R5_TCM_DEV_ADDR 0x41010000
32
33 /* R5 TI-SCI Processor Configuration Flags */
34 #define PROC_BOOT_CFG_FLAG_R5_DBG_EN 0x00000001
35 #define PROC_BOOT_CFG_FLAG_R5_DBG_NIDEN 0x00000002
36 #define PROC_BOOT_CFG_FLAG_R5_LOCKSTEP 0x00000100
37 #define PROC_BOOT_CFG_FLAG_R5_TEINIT 0x00000200
38 #define PROC_BOOT_CFG_FLAG_R5_NMFI_EN 0x00000400
39 #define PROC_BOOT_CFG_FLAG_R5_TCM_RSTBASE 0x00000800
40 #define PROC_BOOT_CFG_FLAG_R5_BTCM_EN 0x00001000
41 #define PROC_BOOT_CFG_FLAG_R5_ATCM_EN 0x00002000
42 /* Available from J7200 SoCs onwards */
43 #define PROC_BOOT_CFG_FLAG_R5_MEM_INIT_DIS 0x00004000
44 /* Applicable to only AM64x SoCs */
45 #define PROC_BOOT_CFG_FLAG_R5_SINGLE_CORE 0x00008000
46
47 /* R5 TI-SCI Processor Control Flags */
48 #define PROC_BOOT_CTRL_FLAG_R5_CORE_HALT 0x00000001
49
50 /* R5 TI-SCI Processor Status Flags */
51 #define PROC_BOOT_STATUS_FLAG_R5_WFE 0x00000001
52 #define PROC_BOOT_STATUS_FLAG_R5_WFI 0x00000002
53 #define PROC_BOOT_STATUS_FLAG_R5_CLK_GATED 0x00000004
54 #define PROC_BOOT_STATUS_FLAG_R5_LOCKSTEP_PERMITTED 0x00000100
55 /* Applicable to only AM64x SoCs */
56 #define PROC_BOOT_STATUS_FLAG_R5_SINGLECORE_ONLY 0x00000200
57
58 /**
59 * struct k3_r5_mem - internal memory structure
60 * @cpu_addr: MPU virtual address of the memory region
61 * @bus_addr: Bus address used to access the memory region
62 * @dev_addr: Device address from remoteproc view
63 * @size: Size of the memory region
64 */
65 struct k3_r5_mem {
66 void __iomem *cpu_addr;
67 phys_addr_t bus_addr;
68 u32 dev_addr;
69 size_t size;
70 };
71
72 /*
73 * All cluster mode values are not applicable on all SoCs. The following
74 * are the modes supported on various SoCs:
75 * Split mode : AM65x, J721E, J7200 and AM64x SoCs
76 * LockStep mode : AM65x, J721E and J7200 SoCs
77 * Single-CPU mode : AM64x SoCs only
78 * Single-Core mode : AM62x, AM62A SoCs
79 */
80 enum cluster_mode {
81 CLUSTER_MODE_SPLIT = 0,
82 CLUSTER_MODE_LOCKSTEP,
83 CLUSTER_MODE_SINGLECPU,
84 CLUSTER_MODE_SINGLECORE
85 };
86
87 /**
88 * struct k3_r5_soc_data - match data to handle SoC variations
89 * @tcm_is_double: flag to denote the larger unified TCMs in certain modes
90 * @tcm_ecc_autoinit: flag to denote the auto-initialization of TCMs for ECC
91 * @single_cpu_mode: flag to denote if SoC/IP supports Single-CPU mode
92 * @is_single_core: flag to denote if SoC/IP has only single core R5
93 */
94 struct k3_r5_soc_data {
95 bool tcm_is_double;
96 bool tcm_ecc_autoinit;
97 bool single_cpu_mode;
98 bool is_single_core;
99 };
100
101 /**
102 * struct k3_r5_cluster - K3 R5F Cluster structure
103 * @dev: cached device pointer
104 * @mode: Mode to configure the Cluster - Split or LockStep
105 * @cores: list of R5 cores within the cluster
106 * @core_transition: wait queue to sync core state changes
107 * @soc_data: SoC-specific feature data for a R5FSS
108 */
109 struct k3_r5_cluster {
110 struct device *dev;
111 enum cluster_mode mode;
112 struct list_head cores;
113 wait_queue_head_t core_transition;
114 const struct k3_r5_soc_data *soc_data;
115 };
116
117 /**
118 * struct k3_r5_core - K3 R5 core structure
119 * @elem: linked list item
120 * @dev: cached device pointer
121 * @rproc: rproc handle representing this core
122 * @mem: internal memory regions data
123 * @sram: on-chip SRAM memory regions data
124 * @num_mems: number of internal memory regions
125 * @num_sram: number of on-chip SRAM memory regions
126 * @reset: reset control handle
127 * @tsp: TI-SCI processor control handle
128 * @ti_sci: TI-SCI handle
129 * @ti_sci_id: TI-SCI device identifier
130 * @atcm_enable: flag to control ATCM enablement
131 * @btcm_enable: flag to control BTCM enablement
132 * @loczrama: flag to dictate which TCM is at device address 0x0
133 * @released_from_reset: flag to signal when core is out of reset
134 */
135 struct k3_r5_core {
136 struct list_head elem;
137 struct device *dev;
138 struct rproc *rproc;
139 struct k3_r5_mem *mem;
140 struct k3_r5_mem *sram;
141 int num_mems;
142 int num_sram;
143 struct reset_control *reset;
144 struct ti_sci_proc *tsp;
145 const struct ti_sci_handle *ti_sci;
146 u32 ti_sci_id;
147 u32 atcm_enable;
148 u32 btcm_enable;
149 u32 loczrama;
150 bool released_from_reset;
151 };
152
153 /**
154 * struct k3_r5_rproc - K3 remote processor state
155 * @dev: cached device pointer
156 * @cluster: cached pointer to parent cluster structure
157 * @mbox: mailbox channel handle
158 * @client: mailbox client to request the mailbox channel
159 * @rproc: rproc handle
160 * @core: cached pointer to r5 core structure being used
161 * @rmem: reserved memory regions data
162 * @num_rmems: number of reserved memory regions
163 */
164 struct k3_r5_rproc {
165 struct device *dev;
166 struct k3_r5_cluster *cluster;
167 struct mbox_chan *mbox;
168 struct mbox_client client;
169 struct rproc *rproc;
170 struct k3_r5_core *core;
171 struct k3_r5_mem *rmem;
172 int num_rmems;
173 };
174
175 /**
176 * k3_r5_rproc_mbox_callback() - inbound mailbox message handler
177 * @client: mailbox client pointer used for requesting the mailbox channel
178 * @data: mailbox payload
179 *
180 * This handler is invoked by the OMAP mailbox driver whenever a mailbox
181 * message is received. Usually, the mailbox payload simply contains
182 * the index of the virtqueue that is kicked by the remote processor,
183 * and we let remoteproc core handle it.
184 *
185 * In addition to virtqueue indices, we also have some out-of-band values
186 * that indicate different events. Those values are deliberately very
187 * large so they don't coincide with virtqueue indices.
188 */
k3_r5_rproc_mbox_callback(struct mbox_client * client,void * data)189 static void k3_r5_rproc_mbox_callback(struct mbox_client *client, void *data)
190 {
191 struct k3_r5_rproc *kproc = container_of(client, struct k3_r5_rproc,
192 client);
193 struct device *dev = kproc->rproc->dev.parent;
194 const char *name = kproc->rproc->name;
195 u32 msg = omap_mbox_message(data);
196
197 /* Do not forward message from a detached core */
198 if (kproc->rproc->state == RPROC_DETACHED)
199 return;
200
201 dev_dbg(dev, "mbox msg: 0x%x\n", msg);
202
203 switch (msg) {
204 case RP_MBOX_CRASH:
205 /*
206 * remoteproc detected an exception, but error recovery is not
207 * supported. So, just log this for now
208 */
209 dev_err(dev, "K3 R5F rproc %s crashed\n", name);
210 break;
211 case RP_MBOX_ECHO_REPLY:
212 dev_info(dev, "received echo reply from %s\n", name);
213 break;
214 default:
215 /* silently handle all other valid messages */
216 if (msg >= RP_MBOX_READY && msg < RP_MBOX_END_MSG)
217 return;
218 if (msg > kproc->rproc->max_notifyid) {
219 dev_dbg(dev, "dropping unknown message 0x%x", msg);
220 return;
221 }
222 /* msg contains the index of the triggered vring */
223 if (rproc_vq_interrupt(kproc->rproc, msg) == IRQ_NONE)
224 dev_dbg(dev, "no message was found in vqid %d\n", msg);
225 }
226 }
227
228 /* kick a virtqueue */
k3_r5_rproc_kick(struct rproc * rproc,int vqid)229 static void k3_r5_rproc_kick(struct rproc *rproc, int vqid)
230 {
231 struct k3_r5_rproc *kproc = rproc->priv;
232 struct device *dev = rproc->dev.parent;
233 mbox_msg_t msg = (mbox_msg_t)vqid;
234 int ret;
235
236 /* Do not forward message to a detached core */
237 if (kproc->rproc->state == RPROC_DETACHED)
238 return;
239
240 /* send the index of the triggered virtqueue in the mailbox payload */
241 ret = mbox_send_message(kproc->mbox, (void *)msg);
242 if (ret < 0)
243 dev_err(dev, "failed to send mailbox message, status = %d\n",
244 ret);
245 }
246
k3_r5_split_reset(struct k3_r5_core * core)247 static int k3_r5_split_reset(struct k3_r5_core *core)
248 {
249 int ret;
250
251 ret = reset_control_assert(core->reset);
252 if (ret) {
253 dev_err(core->dev, "local-reset assert failed, ret = %d\n",
254 ret);
255 return ret;
256 }
257
258 ret = core->ti_sci->ops.dev_ops.put_device(core->ti_sci,
259 core->ti_sci_id);
260 if (ret) {
261 dev_err(core->dev, "module-reset assert failed, ret = %d\n",
262 ret);
263 if (reset_control_deassert(core->reset))
264 dev_warn(core->dev, "local-reset deassert back failed\n");
265 }
266
267 return ret;
268 }
269
k3_r5_split_release(struct k3_r5_core * core)270 static int k3_r5_split_release(struct k3_r5_core *core)
271 {
272 int ret;
273
274 ret = core->ti_sci->ops.dev_ops.get_device(core->ti_sci,
275 core->ti_sci_id);
276 if (ret) {
277 dev_err(core->dev, "module-reset deassert failed, ret = %d\n",
278 ret);
279 return ret;
280 }
281
282 ret = reset_control_deassert(core->reset);
283 if (ret) {
284 dev_err(core->dev, "local-reset deassert failed, ret = %d\n",
285 ret);
286 if (core->ti_sci->ops.dev_ops.put_device(core->ti_sci,
287 core->ti_sci_id))
288 dev_warn(core->dev, "module-reset assert back failed\n");
289 }
290
291 return ret;
292 }
293
k3_r5_lockstep_reset(struct k3_r5_cluster * cluster)294 static int k3_r5_lockstep_reset(struct k3_r5_cluster *cluster)
295 {
296 struct k3_r5_core *core;
297 int ret;
298
299 /* assert local reset on all applicable cores */
300 list_for_each_entry(core, &cluster->cores, elem) {
301 ret = reset_control_assert(core->reset);
302 if (ret) {
303 dev_err(core->dev, "local-reset assert failed, ret = %d\n",
304 ret);
305 core = list_prev_entry(core, elem);
306 goto unroll_local_reset;
307 }
308 }
309
310 /* disable PSC modules on all applicable cores */
311 list_for_each_entry(core, &cluster->cores, elem) {
312 ret = core->ti_sci->ops.dev_ops.put_device(core->ti_sci,
313 core->ti_sci_id);
314 if (ret) {
315 dev_err(core->dev, "module-reset assert failed, ret = %d\n",
316 ret);
317 goto unroll_module_reset;
318 }
319 }
320
321 return 0;
322
323 unroll_module_reset:
324 list_for_each_entry_continue_reverse(core, &cluster->cores, elem) {
325 if (core->ti_sci->ops.dev_ops.put_device(core->ti_sci,
326 core->ti_sci_id))
327 dev_warn(core->dev, "module-reset assert back failed\n");
328 }
329 core = list_last_entry(&cluster->cores, struct k3_r5_core, elem);
330 unroll_local_reset:
331 list_for_each_entry_from_reverse(core, &cluster->cores, elem) {
332 if (reset_control_deassert(core->reset))
333 dev_warn(core->dev, "local-reset deassert back failed\n");
334 }
335
336 return ret;
337 }
338
k3_r5_lockstep_release(struct k3_r5_cluster * cluster)339 static int k3_r5_lockstep_release(struct k3_r5_cluster *cluster)
340 {
341 struct k3_r5_core *core;
342 int ret;
343
344 /* enable PSC modules on all applicable cores */
345 list_for_each_entry_reverse(core, &cluster->cores, elem) {
346 ret = core->ti_sci->ops.dev_ops.get_device(core->ti_sci,
347 core->ti_sci_id);
348 if (ret) {
349 dev_err(core->dev, "module-reset deassert failed, ret = %d\n",
350 ret);
351 core = list_next_entry(core, elem);
352 goto unroll_module_reset;
353 }
354 }
355
356 /* deassert local reset on all applicable cores */
357 list_for_each_entry_reverse(core, &cluster->cores, elem) {
358 ret = reset_control_deassert(core->reset);
359 if (ret) {
360 dev_err(core->dev, "module-reset deassert failed, ret = %d\n",
361 ret);
362 goto unroll_local_reset;
363 }
364 }
365
366 return 0;
367
368 unroll_local_reset:
369 list_for_each_entry_continue(core, &cluster->cores, elem) {
370 if (reset_control_assert(core->reset))
371 dev_warn(core->dev, "local-reset assert back failed\n");
372 }
373 core = list_first_entry(&cluster->cores, struct k3_r5_core, elem);
374 unroll_module_reset:
375 list_for_each_entry_from(core, &cluster->cores, elem) {
376 if (core->ti_sci->ops.dev_ops.put_device(core->ti_sci,
377 core->ti_sci_id))
378 dev_warn(core->dev, "module-reset assert back failed\n");
379 }
380
381 return ret;
382 }
383
k3_r5_core_halt(struct k3_r5_core * core)384 static inline int k3_r5_core_halt(struct k3_r5_core *core)
385 {
386 return ti_sci_proc_set_control(core->tsp,
387 PROC_BOOT_CTRL_FLAG_R5_CORE_HALT, 0);
388 }
389
k3_r5_core_run(struct k3_r5_core * core)390 static inline int k3_r5_core_run(struct k3_r5_core *core)
391 {
392 return ti_sci_proc_set_control(core->tsp,
393 0, PROC_BOOT_CTRL_FLAG_R5_CORE_HALT);
394 }
395
k3_r5_rproc_request_mbox(struct rproc * rproc)396 static int k3_r5_rproc_request_mbox(struct rproc *rproc)
397 {
398 struct k3_r5_rproc *kproc = rproc->priv;
399 struct mbox_client *client = &kproc->client;
400 struct device *dev = kproc->dev;
401 int ret;
402
403 client->dev = dev;
404 client->tx_done = NULL;
405 client->rx_callback = k3_r5_rproc_mbox_callback;
406 client->tx_block = false;
407 client->knows_txdone = false;
408
409 kproc->mbox = mbox_request_channel(client, 0);
410 if (IS_ERR(kproc->mbox))
411 return dev_err_probe(dev, PTR_ERR(kproc->mbox),
412 "mbox_request_channel failed\n");
413
414 /*
415 * Ping the remote processor, this is only for sanity-sake for now;
416 * there is no functional effect whatsoever.
417 *
418 * Note that the reply will _not_ arrive immediately: this message
419 * will wait in the mailbox fifo until the remote processor is booted.
420 */
421 ret = mbox_send_message(kproc->mbox, (void *)RP_MBOX_ECHO_REQUEST);
422 if (ret < 0) {
423 dev_err(dev, "mbox_send_message failed: %d\n", ret);
424 mbox_free_channel(kproc->mbox);
425 return ret;
426 }
427
428 return 0;
429 }
430
431 /*
432 * The R5F cores have controls for both a reset and a halt/run. The code
433 * execution from DDR requires the initial boot-strapping code to be run
434 * from the internal TCMs. This function is used to release the resets on
435 * applicable cores to allow loading into the TCMs. The .prepare() ops is
436 * invoked by remoteproc core before any firmware loading, and is followed
437 * by the .start() ops after loading to actually let the R5 cores run.
438 *
439 * The Single-CPU mode on applicable SoCs (eg: AM64x) only uses Core0 to
440 * execute code, but combines the TCMs from both cores. The resets for both
441 * cores need to be released to make this possible, as the TCMs are in general
442 * private to each core. Only Core0 needs to be unhalted for running the
443 * cluster in this mode. The function uses the same reset logic as LockStep
444 * mode for this (though the behavior is agnostic of the reset release order).
445 * This callback is invoked only in remoteproc mode.
446 */
k3_r5_rproc_prepare(struct rproc * rproc)447 static int k3_r5_rproc_prepare(struct rproc *rproc)
448 {
449 struct k3_r5_rproc *kproc = rproc->priv;
450 struct k3_r5_cluster *cluster = kproc->cluster;
451 struct k3_r5_core *core = kproc->core;
452 struct device *dev = kproc->dev;
453 u32 ctrl = 0, cfg = 0, stat = 0;
454 u64 boot_vec = 0;
455 bool mem_init_dis;
456 int ret;
457
458 ret = ti_sci_proc_get_status(core->tsp, &boot_vec, &cfg, &ctrl, &stat);
459 if (ret < 0)
460 return ret;
461 mem_init_dis = !!(cfg & PROC_BOOT_CFG_FLAG_R5_MEM_INIT_DIS);
462
463 /* Re-use LockStep-mode reset logic for Single-CPU mode */
464 ret = (cluster->mode == CLUSTER_MODE_LOCKSTEP ||
465 cluster->mode == CLUSTER_MODE_SINGLECPU) ?
466 k3_r5_lockstep_release(cluster) : k3_r5_split_release(core);
467 if (ret) {
468 dev_err(dev, "unable to enable cores for TCM loading, ret = %d\n",
469 ret);
470 return ret;
471 }
472
473 /*
474 * Newer IP revisions like on J7200 SoCs support h/w auto-initialization
475 * of TCMs, so there is no need to perform the s/w memzero. This bit is
476 * configurable through System Firmware, the default value does perform
477 * auto-init, but account for it in case it is disabled
478 */
479 if (cluster->soc_data->tcm_ecc_autoinit && !mem_init_dis) {
480 dev_dbg(dev, "leveraging h/w init for TCM memories\n");
481 return 0;
482 }
483
484 /*
485 * Zero out both TCMs unconditionally (access from v8 Arm core is not
486 * affected by ATCM & BTCM enable configuration values) so that ECC
487 * can be effective on all TCM addresses.
488 */
489 dev_dbg(dev, "zeroing out ATCM memory\n");
490 memset(core->mem[0].cpu_addr, 0x00, core->mem[0].size);
491
492 dev_dbg(dev, "zeroing out BTCM memory\n");
493 memset(core->mem[1].cpu_addr, 0x00, core->mem[1].size);
494
495 return 0;
496 }
497
498 /*
499 * This function implements the .unprepare() ops and performs the complimentary
500 * operations to that of the .prepare() ops. The function is used to assert the
501 * resets on all applicable cores for the rproc device (depending on LockStep
502 * or Split mode). This completes the second portion of powering down the R5F
503 * cores. The cores themselves are only halted in the .stop() ops, and the
504 * .unprepare() ops is invoked by the remoteproc core after the remoteproc is
505 * stopped.
506 *
507 * The Single-CPU mode on applicable SoCs (eg: AM64x) combines the TCMs from
508 * both cores. The access is made possible only with releasing the resets for
509 * both cores, but with only Core0 unhalted. This function re-uses the same
510 * reset assert logic as LockStep mode for this mode (though the behavior is
511 * agnostic of the reset assert order). This callback is invoked only in
512 * remoteproc mode.
513 */
k3_r5_rproc_unprepare(struct rproc * rproc)514 static int k3_r5_rproc_unprepare(struct rproc *rproc)
515 {
516 struct k3_r5_rproc *kproc = rproc->priv;
517 struct k3_r5_cluster *cluster = kproc->cluster;
518 struct k3_r5_core *core = kproc->core;
519 struct device *dev = kproc->dev;
520 int ret;
521
522 /* Re-use LockStep-mode reset logic for Single-CPU mode */
523 ret = (cluster->mode == CLUSTER_MODE_LOCKSTEP ||
524 cluster->mode == CLUSTER_MODE_SINGLECPU) ?
525 k3_r5_lockstep_reset(cluster) : k3_r5_split_reset(core);
526 if (ret)
527 dev_err(dev, "unable to disable cores, ret = %d\n", ret);
528
529 return ret;
530 }
531
532 /*
533 * The R5F start sequence includes two different operations
534 * 1. Configure the boot vector for R5F core(s)
535 * 2. Unhalt/Run the R5F core(s)
536 *
537 * The sequence is different between LockStep and Split modes. The LockStep
538 * mode requires the boot vector to be configured only for Core0, and then
539 * unhalt both the cores to start the execution - Core1 needs to be unhalted
540 * first followed by Core0. The Split-mode requires that Core0 to be maintained
541 * always in a higher power state that Core1 (implying Core1 needs to be started
542 * always only after Core0 is started).
543 *
544 * The Single-CPU mode on applicable SoCs (eg: AM64x) only uses Core0 to execute
545 * code, so only Core0 needs to be unhalted. The function uses the same logic
546 * flow as Split-mode for this. This callback is invoked only in remoteproc
547 * mode.
548 */
k3_r5_rproc_start(struct rproc * rproc)549 static int k3_r5_rproc_start(struct rproc *rproc)
550 {
551 struct k3_r5_rproc *kproc = rproc->priv;
552 struct k3_r5_cluster *cluster = kproc->cluster;
553 struct device *dev = kproc->dev;
554 struct k3_r5_core *core0, *core;
555 u32 boot_addr;
556 int ret;
557
558 boot_addr = rproc->bootaddr;
559 /* TODO: add boot_addr sanity checking */
560 dev_dbg(dev, "booting R5F core using boot addr = 0x%x\n", boot_addr);
561
562 /* boot vector need not be programmed for Core1 in LockStep mode */
563 core = kproc->core;
564 ret = ti_sci_proc_set_config(core->tsp, boot_addr, 0, 0);
565 if (ret)
566 return ret;
567
568 /* unhalt/run all applicable cores */
569 if (cluster->mode == CLUSTER_MODE_LOCKSTEP) {
570 list_for_each_entry_reverse(core, &cluster->cores, elem) {
571 ret = k3_r5_core_run(core);
572 if (ret)
573 goto unroll_core_run;
574 }
575 } else {
576 /* do not allow core 1 to start before core 0 */
577 core0 = list_first_entry(&cluster->cores, struct k3_r5_core,
578 elem);
579 if (core != core0 && core0->rproc->state == RPROC_OFFLINE) {
580 dev_err(dev, "%s: can not start core 1 before core 0\n",
581 __func__);
582 return -EPERM;
583 }
584
585 ret = k3_r5_core_run(core);
586 if (ret)
587 return ret;
588
589 core->released_from_reset = true;
590 wake_up_interruptible(&cluster->core_transition);
591 }
592
593 return 0;
594
595 unroll_core_run:
596 list_for_each_entry_continue(core, &cluster->cores, elem) {
597 if (k3_r5_core_halt(core))
598 dev_warn(core->dev, "core halt back failed\n");
599 }
600 return ret;
601 }
602
603 /*
604 * The R5F stop function includes the following operations
605 * 1. Halt R5F core(s)
606 *
607 * The sequence is different between LockStep and Split modes, and the order
608 * of cores the operations are performed are also in general reverse to that
609 * of the start function. The LockStep mode requires each operation to be
610 * performed first on Core0 followed by Core1. The Split-mode requires that
611 * Core0 to be maintained always in a higher power state that Core1 (implying
612 * Core1 needs to be stopped first before Core0).
613 *
614 * The Single-CPU mode on applicable SoCs (eg: AM64x) only uses Core0 to execute
615 * code, so only Core0 needs to be halted. The function uses the same logic
616 * flow as Split-mode for this.
617 *
618 * Note that the R5F halt operation in general is not effective when the R5F
619 * core is running, but is needed to make sure the core won't run after
620 * deasserting the reset the subsequent time. The asserting of reset can
621 * be done here, but is preferred to be done in the .unprepare() ops - this
622 * maintains the symmetric behavior between the .start(), .stop(), .prepare()
623 * and .unprepare() ops, and also balances them well between sysfs 'state'
624 * flow and device bind/unbind or module removal. This callback is invoked
625 * only in remoteproc mode.
626 */
k3_r5_rproc_stop(struct rproc * rproc)627 static int k3_r5_rproc_stop(struct rproc *rproc)
628 {
629 struct k3_r5_rproc *kproc = rproc->priv;
630 struct k3_r5_cluster *cluster = kproc->cluster;
631 struct device *dev = kproc->dev;
632 struct k3_r5_core *core1, *core = kproc->core;
633 int ret;
634
635 /* halt all applicable cores */
636 if (cluster->mode == CLUSTER_MODE_LOCKSTEP) {
637 list_for_each_entry(core, &cluster->cores, elem) {
638 ret = k3_r5_core_halt(core);
639 if (ret) {
640 core = list_prev_entry(core, elem);
641 goto unroll_core_halt;
642 }
643 }
644 } else {
645 /* do not allow core 0 to stop before core 1 */
646 core1 = list_last_entry(&cluster->cores, struct k3_r5_core,
647 elem);
648 if (core != core1 && core1->rproc->state != RPROC_OFFLINE) {
649 dev_err(dev, "%s: can not stop core 0 before core 1\n",
650 __func__);
651 ret = -EPERM;
652 goto out;
653 }
654
655 ret = k3_r5_core_halt(core);
656 if (ret)
657 goto out;
658 }
659
660 return 0;
661
662 unroll_core_halt:
663 list_for_each_entry_from_reverse(core, &cluster->cores, elem) {
664 if (k3_r5_core_run(core))
665 dev_warn(core->dev, "core run back failed\n");
666 }
667 out:
668 return ret;
669 }
670
671 /*
672 * Attach to a running R5F remote processor (IPC-only mode)
673 *
674 * The R5F attach callback is a NOP. The remote processor is already booted, and
675 * all required resources have been acquired during probe routine, so there is
676 * no need to issue any TI-SCI commands to boot the R5F cores in IPC-only mode.
677 * This callback is invoked only in IPC-only mode and exists because
678 * rproc_validate() checks for its existence.
679 */
k3_r5_rproc_attach(struct rproc * rproc)680 static int k3_r5_rproc_attach(struct rproc *rproc) { return 0; }
681
682 /*
683 * Detach from a running R5F remote processor (IPC-only mode)
684 *
685 * The R5F detach callback is a NOP. The R5F cores are not stopped and will be
686 * left in booted state in IPC-only mode. This callback is invoked only in
687 * IPC-only mode and exists for sanity sake.
688 */
k3_r5_rproc_detach(struct rproc * rproc)689 static int k3_r5_rproc_detach(struct rproc *rproc) { return 0; }
690
691 /*
692 * This function implements the .get_loaded_rsc_table() callback and is used
693 * to provide the resource table for the booted R5F in IPC-only mode. The K3 R5F
694 * firmwares follow a design-by-contract approach and are expected to have the
695 * resource table at the base of the DDR region reserved for firmware usage.
696 * This provides flexibility for the remote processor to be booted by different
697 * bootloaders that may or may not have the ability to publish the resource table
698 * address and size through a DT property. This callback is invoked only in
699 * IPC-only mode.
700 */
k3_r5_get_loaded_rsc_table(struct rproc * rproc,size_t * rsc_table_sz)701 static struct resource_table *k3_r5_get_loaded_rsc_table(struct rproc *rproc,
702 size_t *rsc_table_sz)
703 {
704 struct k3_r5_rproc *kproc = rproc->priv;
705 struct device *dev = kproc->dev;
706
707 if (!kproc->rmem[0].cpu_addr) {
708 dev_err(dev, "memory-region #1 does not exist, loaded rsc table can't be found");
709 return ERR_PTR(-ENOMEM);
710 }
711
712 /*
713 * NOTE: The resource table size is currently hard-coded to a maximum
714 * of 256 bytes. The most common resource table usage for K3 firmwares
715 * is to only have the vdev resource entry and an optional trace entry.
716 * The exact size could be computed based on resource table address, but
717 * the hard-coded value suffices to support the IPC-only mode.
718 */
719 *rsc_table_sz = 256;
720 return (struct resource_table *)kproc->rmem[0].cpu_addr;
721 }
722
723 /*
724 * Internal Memory translation helper
725 *
726 * Custom function implementing the rproc .da_to_va ops to provide address
727 * translation (device address to kernel virtual address) for internal RAMs
728 * present in a DSP or IPU device). The translated addresses can be used
729 * either by the remoteproc core for loading, or by any rpmsg bus drivers.
730 */
k3_r5_rproc_da_to_va(struct rproc * rproc,u64 da,size_t len,bool * is_iomem)731 static void *k3_r5_rproc_da_to_va(struct rproc *rproc, u64 da, size_t len, bool *is_iomem)
732 {
733 struct k3_r5_rproc *kproc = rproc->priv;
734 struct k3_r5_core *core = kproc->core;
735 void __iomem *va = NULL;
736 phys_addr_t bus_addr;
737 u32 dev_addr, offset;
738 size_t size;
739 int i;
740
741 if (len == 0)
742 return NULL;
743
744 /* handle both R5 and SoC views of ATCM and BTCM */
745 for (i = 0; i < core->num_mems; i++) {
746 bus_addr = core->mem[i].bus_addr;
747 dev_addr = core->mem[i].dev_addr;
748 size = core->mem[i].size;
749
750 /* handle R5-view addresses of TCMs */
751 if (da >= dev_addr && ((da + len) <= (dev_addr + size))) {
752 offset = da - dev_addr;
753 va = core->mem[i].cpu_addr + offset;
754 return (__force void *)va;
755 }
756
757 /* handle SoC-view addresses of TCMs */
758 if (da >= bus_addr && ((da + len) <= (bus_addr + size))) {
759 offset = da - bus_addr;
760 va = core->mem[i].cpu_addr + offset;
761 return (__force void *)va;
762 }
763 }
764
765 /* handle any SRAM regions using SoC-view addresses */
766 for (i = 0; i < core->num_sram; i++) {
767 dev_addr = core->sram[i].dev_addr;
768 size = core->sram[i].size;
769
770 if (da >= dev_addr && ((da + len) <= (dev_addr + size))) {
771 offset = da - dev_addr;
772 va = core->sram[i].cpu_addr + offset;
773 return (__force void *)va;
774 }
775 }
776
777 /* handle static DDR reserved memory regions */
778 for (i = 0; i < kproc->num_rmems; i++) {
779 dev_addr = kproc->rmem[i].dev_addr;
780 size = kproc->rmem[i].size;
781
782 if (da >= dev_addr && ((da + len) <= (dev_addr + size))) {
783 offset = da - dev_addr;
784 va = kproc->rmem[i].cpu_addr + offset;
785 return (__force void *)va;
786 }
787 }
788
789 return NULL;
790 }
791
792 static const struct rproc_ops k3_r5_rproc_ops = {
793 .prepare = k3_r5_rproc_prepare,
794 .unprepare = k3_r5_rproc_unprepare,
795 .start = k3_r5_rproc_start,
796 .stop = k3_r5_rproc_stop,
797 .kick = k3_r5_rproc_kick,
798 .da_to_va = k3_r5_rproc_da_to_va,
799 };
800
801 /*
802 * Internal R5F Core configuration
803 *
804 * Each R5FSS has a cluster-level setting for configuring the processor
805 * subsystem either in a safety/fault-tolerant LockStep mode or a performance
806 * oriented Split mode on most SoCs. A fewer SoCs support a non-safety mode
807 * as an alternate for LockStep mode that exercises only a single R5F core
808 * called Single-CPU mode. Each R5F core has a number of settings to either
809 * enable/disable each of the TCMs, control which TCM appears at the R5F core's
810 * address 0x0. These settings need to be configured before the resets for the
811 * corresponding core are released. These settings are all protected and managed
812 * by the System Processor.
813 *
814 * This function is used to pre-configure these settings for each R5F core, and
815 * the configuration is all done through various ti_sci_proc functions that
816 * communicate with the System Processor. The function also ensures that both
817 * the cores are halted before the .prepare() step.
818 *
819 * The function is called from k3_r5_cluster_rproc_init() and is invoked either
820 * once (in LockStep mode or Single-CPU modes) or twice (in Split mode). Support
821 * for LockStep-mode is dictated by an eFUSE register bit, and the config
822 * settings retrieved from DT are adjusted accordingly as per the permitted
823 * cluster mode. Another eFUSE register bit dictates if the R5F cluster only
824 * supports a Single-CPU mode. All cluster level settings like Cluster mode and
825 * TEINIT (exception handling state dictating ARM or Thumb mode) can only be set
826 * and retrieved using Core0.
827 *
828 * The function behavior is different based on the cluster mode. The R5F cores
829 * are configured independently as per their individual settings in Split mode.
830 * They are identically configured in LockStep mode using the primary Core0
831 * settings. However, some individual settings cannot be set in LockStep mode.
832 * This is overcome by switching to Split-mode initially and then programming
833 * both the cores with the same settings, before reconfiguing again for
834 * LockStep mode.
835 */
k3_r5_rproc_configure(struct k3_r5_rproc * kproc)836 static int k3_r5_rproc_configure(struct k3_r5_rproc *kproc)
837 {
838 struct k3_r5_cluster *cluster = kproc->cluster;
839 struct device *dev = kproc->dev;
840 struct k3_r5_core *core0, *core, *temp;
841 u32 ctrl = 0, cfg = 0, stat = 0;
842 u32 set_cfg = 0, clr_cfg = 0;
843 u64 boot_vec = 0;
844 bool lockstep_en;
845 bool single_cpu;
846 int ret;
847
848 core0 = list_first_entry(&cluster->cores, struct k3_r5_core, elem);
849 if (cluster->mode == CLUSTER_MODE_LOCKSTEP ||
850 cluster->mode == CLUSTER_MODE_SINGLECPU ||
851 cluster->mode == CLUSTER_MODE_SINGLECORE) {
852 core = core0;
853 } else {
854 core = kproc->core;
855 }
856
857 ret = ti_sci_proc_get_status(core->tsp, &boot_vec, &cfg, &ctrl,
858 &stat);
859 if (ret < 0)
860 return ret;
861
862 dev_dbg(dev, "boot_vector = 0x%llx, cfg = 0x%x ctrl = 0x%x stat = 0x%x\n",
863 boot_vec, cfg, ctrl, stat);
864
865 single_cpu = !!(stat & PROC_BOOT_STATUS_FLAG_R5_SINGLECORE_ONLY);
866 lockstep_en = !!(stat & PROC_BOOT_STATUS_FLAG_R5_LOCKSTEP_PERMITTED);
867
868 /* Override to single CPU mode if set in status flag */
869 if (single_cpu && cluster->mode == CLUSTER_MODE_SPLIT) {
870 dev_err(cluster->dev, "split-mode not permitted, force configuring for single-cpu mode\n");
871 cluster->mode = CLUSTER_MODE_SINGLECPU;
872 }
873
874 /* Override to split mode if lockstep enable bit is not set in status flag */
875 if (!lockstep_en && cluster->mode == CLUSTER_MODE_LOCKSTEP) {
876 dev_err(cluster->dev, "lockstep mode not permitted, force configuring for split-mode\n");
877 cluster->mode = CLUSTER_MODE_SPLIT;
878 }
879
880 /* always enable ARM mode and set boot vector to 0 */
881 boot_vec = 0x0;
882 if (core == core0) {
883 clr_cfg = PROC_BOOT_CFG_FLAG_R5_TEINIT;
884 /*
885 * Single-CPU configuration bit can only be configured
886 * on Core0 and system firmware will NACK any requests
887 * with the bit configured, so program it only on
888 * permitted cores
889 */
890 if (cluster->mode == CLUSTER_MODE_SINGLECPU ||
891 cluster->mode == CLUSTER_MODE_SINGLECORE) {
892 set_cfg = PROC_BOOT_CFG_FLAG_R5_SINGLE_CORE;
893 } else {
894 /*
895 * LockStep configuration bit is Read-only on Split-mode
896 * _only_ devices and system firmware will NACK any
897 * requests with the bit configured, so program it only
898 * on permitted devices
899 */
900 if (lockstep_en)
901 clr_cfg |= PROC_BOOT_CFG_FLAG_R5_LOCKSTEP;
902 }
903 }
904
905 if (core->atcm_enable)
906 set_cfg |= PROC_BOOT_CFG_FLAG_R5_ATCM_EN;
907 else
908 clr_cfg |= PROC_BOOT_CFG_FLAG_R5_ATCM_EN;
909
910 if (core->btcm_enable)
911 set_cfg |= PROC_BOOT_CFG_FLAG_R5_BTCM_EN;
912 else
913 clr_cfg |= PROC_BOOT_CFG_FLAG_R5_BTCM_EN;
914
915 if (core->loczrama)
916 set_cfg |= PROC_BOOT_CFG_FLAG_R5_TCM_RSTBASE;
917 else
918 clr_cfg |= PROC_BOOT_CFG_FLAG_R5_TCM_RSTBASE;
919
920 if (cluster->mode == CLUSTER_MODE_LOCKSTEP) {
921 /*
922 * work around system firmware limitations to make sure both
923 * cores are programmed symmetrically in LockStep. LockStep
924 * and TEINIT config is only allowed with Core0.
925 */
926 list_for_each_entry(temp, &cluster->cores, elem) {
927 ret = k3_r5_core_halt(temp);
928 if (ret)
929 goto out;
930
931 if (temp != core) {
932 clr_cfg &= ~PROC_BOOT_CFG_FLAG_R5_LOCKSTEP;
933 clr_cfg &= ~PROC_BOOT_CFG_FLAG_R5_TEINIT;
934 }
935 ret = ti_sci_proc_set_config(temp->tsp, boot_vec,
936 set_cfg, clr_cfg);
937 if (ret)
938 goto out;
939 }
940
941 set_cfg = PROC_BOOT_CFG_FLAG_R5_LOCKSTEP;
942 clr_cfg = 0;
943 ret = ti_sci_proc_set_config(core->tsp, boot_vec,
944 set_cfg, clr_cfg);
945 } else {
946 ret = k3_r5_core_halt(core);
947 if (ret)
948 goto out;
949
950 ret = ti_sci_proc_set_config(core->tsp, boot_vec,
951 set_cfg, clr_cfg);
952 }
953
954 out:
955 return ret;
956 }
957
k3_r5_reserved_mem_init(struct k3_r5_rproc * kproc)958 static int k3_r5_reserved_mem_init(struct k3_r5_rproc *kproc)
959 {
960 struct device *dev = kproc->dev;
961 struct device_node *np = dev_of_node(dev);
962 struct device_node *rmem_np;
963 struct reserved_mem *rmem;
964 int num_rmems;
965 int ret, i;
966
967 num_rmems = of_property_count_elems_of_size(np, "memory-region",
968 sizeof(phandle));
969 if (num_rmems <= 0) {
970 dev_err(dev, "device does not have reserved memory regions, ret = %d\n",
971 num_rmems);
972 return -EINVAL;
973 }
974 if (num_rmems < 2) {
975 dev_err(dev, "device needs at least two memory regions to be defined, num = %d\n",
976 num_rmems);
977 return -EINVAL;
978 }
979
980 /* use reserved memory region 0 for vring DMA allocations */
981 ret = of_reserved_mem_device_init_by_idx(dev, np, 0);
982 if (ret) {
983 dev_err(dev, "device cannot initialize DMA pool, ret = %d\n",
984 ret);
985 return ret;
986 }
987
988 num_rmems--;
989 kproc->rmem = kcalloc(num_rmems, sizeof(*kproc->rmem), GFP_KERNEL);
990 if (!kproc->rmem) {
991 ret = -ENOMEM;
992 goto release_rmem;
993 }
994
995 /* use remaining reserved memory regions for static carveouts */
996 for (i = 0; i < num_rmems; i++) {
997 rmem_np = of_parse_phandle(np, "memory-region", i + 1);
998 if (!rmem_np) {
999 ret = -EINVAL;
1000 goto unmap_rmem;
1001 }
1002
1003 rmem = of_reserved_mem_lookup(rmem_np);
1004 if (!rmem) {
1005 of_node_put(rmem_np);
1006 ret = -EINVAL;
1007 goto unmap_rmem;
1008 }
1009 of_node_put(rmem_np);
1010
1011 kproc->rmem[i].bus_addr = rmem->base;
1012 /*
1013 * R5Fs do not have an MMU, but have a Region Address Translator
1014 * (RAT) module that provides a fixed entry translation between
1015 * the 32-bit processor addresses to 64-bit bus addresses. The
1016 * RAT is programmable only by the R5F cores. Support for RAT
1017 * is currently not supported, so 64-bit address regions are not
1018 * supported. The absence of MMUs implies that the R5F device
1019 * addresses/supported memory regions are restricted to 32-bit
1020 * bus addresses, and are identical
1021 */
1022 kproc->rmem[i].dev_addr = (u32)rmem->base;
1023 kproc->rmem[i].size = rmem->size;
1024 kproc->rmem[i].cpu_addr = ioremap_wc(rmem->base, rmem->size);
1025 if (!kproc->rmem[i].cpu_addr) {
1026 dev_err(dev, "failed to map reserved memory#%d at %pa of size %pa\n",
1027 i + 1, &rmem->base, &rmem->size);
1028 ret = -ENOMEM;
1029 goto unmap_rmem;
1030 }
1031
1032 dev_dbg(dev, "reserved memory%d: bus addr %pa size 0x%zx va %pK da 0x%x\n",
1033 i + 1, &kproc->rmem[i].bus_addr,
1034 kproc->rmem[i].size, kproc->rmem[i].cpu_addr,
1035 kproc->rmem[i].dev_addr);
1036 }
1037 kproc->num_rmems = num_rmems;
1038
1039 return 0;
1040
1041 unmap_rmem:
1042 for (i--; i >= 0; i--)
1043 iounmap(kproc->rmem[i].cpu_addr);
1044 kfree(kproc->rmem);
1045 release_rmem:
1046 of_reserved_mem_device_release(dev);
1047 return ret;
1048 }
1049
k3_r5_reserved_mem_exit(struct k3_r5_rproc * kproc)1050 static void k3_r5_reserved_mem_exit(struct k3_r5_rproc *kproc)
1051 {
1052 int i;
1053
1054 for (i = 0; i < kproc->num_rmems; i++)
1055 iounmap(kproc->rmem[i].cpu_addr);
1056 kfree(kproc->rmem);
1057
1058 of_reserved_mem_device_release(kproc->dev);
1059 }
1060
1061 /*
1062 * Each R5F core within a typical R5FSS instance has a total of 64 KB of TCMs,
1063 * split equally into two 32 KB banks between ATCM and BTCM. The TCMs from both
1064 * cores are usable in Split-mode, but only the Core0 TCMs can be used in
1065 * LockStep-mode. The newer revisions of the R5FSS IP maximizes these TCMs by
1066 * leveraging the Core1 TCMs as well in certain modes where they would have
1067 * otherwise been unusable (Eg: LockStep-mode on J7200 SoCs, Single-CPU mode on
1068 * AM64x SoCs). This is done by making a Core1 TCM visible immediately after the
1069 * corresponding Core0 TCM. The SoC memory map uses the larger 64 KB sizes for
1070 * the Core0 TCMs, and the dts representation reflects this increased size on
1071 * supported SoCs. The Core0 TCM sizes therefore have to be adjusted to only
1072 * half the original size in Split mode.
1073 */
k3_r5_adjust_tcm_sizes(struct k3_r5_rproc * kproc)1074 static void k3_r5_adjust_tcm_sizes(struct k3_r5_rproc *kproc)
1075 {
1076 struct k3_r5_cluster *cluster = kproc->cluster;
1077 struct k3_r5_core *core = kproc->core;
1078 struct device *cdev = core->dev;
1079 struct k3_r5_core *core0;
1080
1081 if (cluster->mode == CLUSTER_MODE_LOCKSTEP ||
1082 cluster->mode == CLUSTER_MODE_SINGLECPU ||
1083 cluster->mode == CLUSTER_MODE_SINGLECORE ||
1084 !cluster->soc_data->tcm_is_double)
1085 return;
1086
1087 core0 = list_first_entry(&cluster->cores, struct k3_r5_core, elem);
1088 if (core == core0) {
1089 WARN_ON(core->mem[0].size != SZ_64K);
1090 WARN_ON(core->mem[1].size != SZ_64K);
1091
1092 core->mem[0].size /= 2;
1093 core->mem[1].size /= 2;
1094
1095 dev_dbg(cdev, "adjusted TCM sizes, ATCM = 0x%zx BTCM = 0x%zx\n",
1096 core->mem[0].size, core->mem[1].size);
1097 }
1098 }
1099
1100 /*
1101 * This function checks and configures a R5F core for IPC-only or remoteproc
1102 * mode. The driver is configured to be in IPC-only mode for a R5F core when
1103 * the core has been loaded and started by a bootloader. The IPC-only mode is
1104 * detected by querying the System Firmware for reset, power on and halt status
1105 * and ensuring that the core is running. Any incomplete steps at bootloader
1106 * are validated and errored out.
1107 *
1108 * In IPC-only mode, the driver state flags for ATCM, BTCM and LOCZRAMA settings
1109 * and cluster mode parsed originally from kernel DT are updated to reflect the
1110 * actual values configured by bootloader. The driver internal device memory
1111 * addresses for TCMs are also updated.
1112 */
k3_r5_rproc_configure_mode(struct k3_r5_rproc * kproc)1113 static int k3_r5_rproc_configure_mode(struct k3_r5_rproc *kproc)
1114 {
1115 struct k3_r5_cluster *cluster = kproc->cluster;
1116 struct k3_r5_core *core = kproc->core;
1117 struct device *cdev = core->dev;
1118 bool r_state = false, c_state = false, lockstep_en = false, single_cpu = false;
1119 u32 ctrl = 0, cfg = 0, stat = 0, halted = 0;
1120 u64 boot_vec = 0;
1121 u32 atcm_enable, btcm_enable, loczrama;
1122 struct k3_r5_core *core0;
1123 enum cluster_mode mode = cluster->mode;
1124 int ret;
1125
1126 core0 = list_first_entry(&cluster->cores, struct k3_r5_core, elem);
1127
1128 ret = core->ti_sci->ops.dev_ops.is_on(core->ti_sci, core->ti_sci_id,
1129 &r_state, &c_state);
1130 if (ret) {
1131 dev_err(cdev, "failed to get initial state, mode cannot be determined, ret = %d\n",
1132 ret);
1133 return ret;
1134 }
1135 if (r_state != c_state) {
1136 dev_warn(cdev, "R5F core may have been powered on by a different host, programmed state (%d) != actual state (%d)\n",
1137 r_state, c_state);
1138 }
1139
1140 ret = reset_control_status(core->reset);
1141 if (ret < 0) {
1142 dev_err(cdev, "failed to get initial local reset status, ret = %d\n",
1143 ret);
1144 return ret;
1145 }
1146
1147 /*
1148 * Skip the waiting mechanism for sequential power-on of cores if the
1149 * core has already been booted by another entity.
1150 */
1151 core->released_from_reset = c_state;
1152
1153 ret = ti_sci_proc_get_status(core->tsp, &boot_vec, &cfg, &ctrl,
1154 &stat);
1155 if (ret < 0) {
1156 dev_err(cdev, "failed to get initial processor status, ret = %d\n",
1157 ret);
1158 return ret;
1159 }
1160 atcm_enable = cfg & PROC_BOOT_CFG_FLAG_R5_ATCM_EN ? 1 : 0;
1161 btcm_enable = cfg & PROC_BOOT_CFG_FLAG_R5_BTCM_EN ? 1 : 0;
1162 loczrama = cfg & PROC_BOOT_CFG_FLAG_R5_TCM_RSTBASE ? 1 : 0;
1163 single_cpu = cfg & PROC_BOOT_CFG_FLAG_R5_SINGLE_CORE ? 1 : 0;
1164 lockstep_en = cfg & PROC_BOOT_CFG_FLAG_R5_LOCKSTEP ? 1 : 0;
1165
1166 if (single_cpu && mode != CLUSTER_MODE_SINGLECORE)
1167 mode = CLUSTER_MODE_SINGLECPU;
1168 if (lockstep_en)
1169 mode = CLUSTER_MODE_LOCKSTEP;
1170
1171 halted = ctrl & PROC_BOOT_CTRL_FLAG_R5_CORE_HALT;
1172
1173 /*
1174 * IPC-only mode detection requires both local and module resets to
1175 * be deasserted and R5F core to be unhalted. Local reset status is
1176 * irrelevant if module reset is asserted (POR value has local reset
1177 * deasserted), and is deemed as remoteproc mode
1178 */
1179 if (c_state && !ret && !halted) {
1180 dev_info(cdev, "configured R5F for IPC-only mode\n");
1181 kproc->rproc->state = RPROC_DETACHED;
1182 ret = 1;
1183 /* override rproc ops with only required IPC-only mode ops */
1184 kproc->rproc->ops->prepare = NULL;
1185 kproc->rproc->ops->unprepare = NULL;
1186 kproc->rproc->ops->start = NULL;
1187 kproc->rproc->ops->stop = NULL;
1188 kproc->rproc->ops->attach = k3_r5_rproc_attach;
1189 kproc->rproc->ops->detach = k3_r5_rproc_detach;
1190 kproc->rproc->ops->get_loaded_rsc_table =
1191 k3_r5_get_loaded_rsc_table;
1192 } else if (!c_state) {
1193 dev_info(cdev, "configured R5F for remoteproc mode\n");
1194 ret = 0;
1195 } else {
1196 dev_err(cdev, "mismatched mode: local_reset = %s, module_reset = %s, core_state = %s\n",
1197 !ret ? "deasserted" : "asserted",
1198 c_state ? "deasserted" : "asserted",
1199 halted ? "halted" : "unhalted");
1200 ret = -EINVAL;
1201 }
1202
1203 /* fixup TCMs, cluster & core flags to actual values in IPC-only mode */
1204 if (ret > 0) {
1205 if (core == core0)
1206 cluster->mode = mode;
1207 core->atcm_enable = atcm_enable;
1208 core->btcm_enable = btcm_enable;
1209 core->loczrama = loczrama;
1210 core->mem[0].dev_addr = loczrama ? 0 : K3_R5_TCM_DEV_ADDR;
1211 core->mem[1].dev_addr = loczrama ? K3_R5_TCM_DEV_ADDR : 0;
1212 }
1213
1214 return ret;
1215 }
1216
k3_r5_cluster_rproc_init(struct platform_device * pdev)1217 static int k3_r5_cluster_rproc_init(struct platform_device *pdev)
1218 {
1219 struct k3_r5_cluster *cluster = platform_get_drvdata(pdev);
1220 struct device *dev = &pdev->dev;
1221 struct k3_r5_rproc *kproc;
1222 struct k3_r5_core *core, *core1;
1223 struct device *cdev;
1224 const char *fw_name;
1225 struct rproc *rproc;
1226 int ret, ret1;
1227
1228 core1 = list_last_entry(&cluster->cores, struct k3_r5_core, elem);
1229 list_for_each_entry(core, &cluster->cores, elem) {
1230 cdev = core->dev;
1231 ret = rproc_of_parse_firmware(cdev, 0, &fw_name);
1232 if (ret) {
1233 dev_err(dev, "failed to parse firmware-name property, ret = %d\n",
1234 ret);
1235 goto out;
1236 }
1237
1238 rproc = rproc_alloc(cdev, dev_name(cdev), &k3_r5_rproc_ops,
1239 fw_name, sizeof(*kproc));
1240 if (!rproc) {
1241 ret = -ENOMEM;
1242 goto out;
1243 }
1244
1245 /* K3 R5s have a Region Address Translator (RAT) but no MMU */
1246 rproc->has_iommu = false;
1247 /* error recovery is not supported at present */
1248 rproc->recovery_disabled = true;
1249
1250 kproc = rproc->priv;
1251 kproc->cluster = cluster;
1252 kproc->core = core;
1253 kproc->dev = cdev;
1254 kproc->rproc = rproc;
1255 core->rproc = rproc;
1256
1257 ret = k3_r5_rproc_request_mbox(rproc);
1258 if (ret)
1259 return ret;
1260
1261 ret = k3_r5_rproc_configure_mode(kproc);
1262 if (ret < 0)
1263 goto err_config;
1264 if (ret)
1265 goto init_rmem;
1266
1267 ret = k3_r5_rproc_configure(kproc);
1268 if (ret) {
1269 dev_err(dev, "initial configure failed, ret = %d\n",
1270 ret);
1271 goto err_config;
1272 }
1273
1274 init_rmem:
1275 k3_r5_adjust_tcm_sizes(kproc);
1276
1277 ret = k3_r5_reserved_mem_init(kproc);
1278 if (ret) {
1279 dev_err(dev, "reserved memory init failed, ret = %d\n",
1280 ret);
1281 goto err_config;
1282 }
1283
1284 ret = rproc_add(rproc);
1285 if (ret) {
1286 dev_err(dev, "rproc_add failed, ret = %d\n", ret);
1287 goto err_add;
1288 }
1289
1290 /* create only one rproc in lockstep, single-cpu or
1291 * single core mode
1292 */
1293 if (cluster->mode == CLUSTER_MODE_LOCKSTEP ||
1294 cluster->mode == CLUSTER_MODE_SINGLECPU ||
1295 cluster->mode == CLUSTER_MODE_SINGLECORE)
1296 break;
1297
1298 /*
1299 * R5 cores require to be powered on sequentially, core0
1300 * should be in higher power state than core1 in a cluster
1301 * So, wait for current core to power up before proceeding
1302 * to next core and put timeout of 2sec for each core.
1303 *
1304 * This waiting mechanism is necessary because
1305 * rproc_auto_boot_callback() for core1 can be called before
1306 * core0 due to thread execution order.
1307 */
1308 ret = wait_event_interruptible_timeout(cluster->core_transition,
1309 core->released_from_reset,
1310 msecs_to_jiffies(2000));
1311 if (ret <= 0) {
1312 dev_err(dev,
1313 "Timed out waiting for %s core to power up!\n",
1314 rproc->name);
1315 goto err_powerup;
1316 }
1317 }
1318
1319 return 0;
1320
1321 err_split:
1322 if (rproc->state == RPROC_ATTACHED) {
1323 ret1 = rproc_detach(rproc);
1324 if (ret1) {
1325 dev_err(kproc->dev, "failed to detach rproc, ret = %d\n",
1326 ret1);
1327 return ret1;
1328 }
1329 }
1330
1331 err_powerup:
1332 rproc_del(rproc);
1333 err_add:
1334 k3_r5_reserved_mem_exit(kproc);
1335 err_config:
1336 rproc_free(rproc);
1337 core->rproc = NULL;
1338 out:
1339 /* undo core0 upon any failures on core1 in split-mode */
1340 if (cluster->mode == CLUSTER_MODE_SPLIT && core == core1) {
1341 core = list_prev_entry(core, elem);
1342 rproc = core->rproc;
1343 kproc = rproc->priv;
1344 goto err_split;
1345 }
1346 return ret;
1347 }
1348
k3_r5_cluster_rproc_exit(void * data)1349 static void k3_r5_cluster_rproc_exit(void *data)
1350 {
1351 struct k3_r5_cluster *cluster = platform_get_drvdata(data);
1352 struct k3_r5_rproc *kproc;
1353 struct k3_r5_core *core;
1354 struct rproc *rproc;
1355 int ret;
1356
1357 /*
1358 * lockstep mode and single-cpu modes have only one rproc associated
1359 * with first core, whereas split-mode has two rprocs associated with
1360 * each core, and requires that core1 be powered down first
1361 */
1362 core = (cluster->mode == CLUSTER_MODE_LOCKSTEP ||
1363 cluster->mode == CLUSTER_MODE_SINGLECPU) ?
1364 list_first_entry(&cluster->cores, struct k3_r5_core, elem) :
1365 list_last_entry(&cluster->cores, struct k3_r5_core, elem);
1366
1367 list_for_each_entry_from_reverse(core, &cluster->cores, elem) {
1368 rproc = core->rproc;
1369 kproc = rproc->priv;
1370
1371 if (rproc->state == RPROC_ATTACHED) {
1372 ret = rproc_detach(rproc);
1373 if (ret) {
1374 dev_err(kproc->dev, "failed to detach rproc, ret = %d\n", ret);
1375 return;
1376 }
1377 }
1378
1379 mbox_free_channel(kproc->mbox);
1380
1381 rproc_del(rproc);
1382
1383 k3_r5_reserved_mem_exit(kproc);
1384
1385 rproc_free(rproc);
1386 core->rproc = NULL;
1387 }
1388 }
1389
k3_r5_core_of_get_internal_memories(struct platform_device * pdev,struct k3_r5_core * core)1390 static int k3_r5_core_of_get_internal_memories(struct platform_device *pdev,
1391 struct k3_r5_core *core)
1392 {
1393 static const char * const mem_names[] = {"atcm", "btcm"};
1394 struct device *dev = &pdev->dev;
1395 struct resource *res;
1396 int num_mems;
1397 int i;
1398
1399 num_mems = ARRAY_SIZE(mem_names);
1400 core->mem = devm_kcalloc(dev, num_mems, sizeof(*core->mem), GFP_KERNEL);
1401 if (!core->mem)
1402 return -ENOMEM;
1403
1404 for (i = 0; i < num_mems; i++) {
1405 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
1406 mem_names[i]);
1407 if (!res) {
1408 dev_err(dev, "found no memory resource for %s\n",
1409 mem_names[i]);
1410 return -EINVAL;
1411 }
1412 if (!devm_request_mem_region(dev, res->start,
1413 resource_size(res),
1414 dev_name(dev))) {
1415 dev_err(dev, "could not request %s region for resource\n",
1416 mem_names[i]);
1417 return -EBUSY;
1418 }
1419
1420 /*
1421 * TCMs are designed in general to support RAM-like backing
1422 * memories. So, map these as Normal Non-Cached memories. This
1423 * also avoids/fixes any potential alignment faults due to
1424 * unaligned data accesses when using memcpy() or memset()
1425 * functions (normally seen with device type memory).
1426 */
1427 core->mem[i].cpu_addr = devm_ioremap_wc(dev, res->start,
1428 resource_size(res));
1429 if (!core->mem[i].cpu_addr) {
1430 dev_err(dev, "failed to map %s memory\n", mem_names[i]);
1431 return -ENOMEM;
1432 }
1433 core->mem[i].bus_addr = res->start;
1434
1435 /*
1436 * TODO:
1437 * The R5F cores can place ATCM & BTCM anywhere in its address
1438 * based on the corresponding Region Registers in the System
1439 * Control coprocessor. For now, place ATCM and BTCM at
1440 * addresses 0 and 0x41010000 (same as the bus address on AM65x
1441 * SoCs) based on loczrama setting
1442 */
1443 if (!strcmp(mem_names[i], "atcm")) {
1444 core->mem[i].dev_addr = core->loczrama ?
1445 0 : K3_R5_TCM_DEV_ADDR;
1446 } else {
1447 core->mem[i].dev_addr = core->loczrama ?
1448 K3_R5_TCM_DEV_ADDR : 0;
1449 }
1450 core->mem[i].size = resource_size(res);
1451
1452 dev_dbg(dev, "memory %5s: bus addr %pa size 0x%zx va %pK da 0x%x\n",
1453 mem_names[i], &core->mem[i].bus_addr,
1454 core->mem[i].size, core->mem[i].cpu_addr,
1455 core->mem[i].dev_addr);
1456 }
1457 core->num_mems = num_mems;
1458
1459 return 0;
1460 }
1461
k3_r5_core_of_get_sram_memories(struct platform_device * pdev,struct k3_r5_core * core)1462 static int k3_r5_core_of_get_sram_memories(struct platform_device *pdev,
1463 struct k3_r5_core *core)
1464 {
1465 struct device_node *np = pdev->dev.of_node;
1466 struct device *dev = &pdev->dev;
1467 struct device_node *sram_np;
1468 struct resource res;
1469 int num_sram;
1470 int i, ret;
1471
1472 num_sram = of_property_count_elems_of_size(np, "sram", sizeof(phandle));
1473 if (num_sram <= 0) {
1474 dev_dbg(dev, "device does not use reserved on-chip memories, num_sram = %d\n",
1475 num_sram);
1476 return 0;
1477 }
1478
1479 core->sram = devm_kcalloc(dev, num_sram, sizeof(*core->sram), GFP_KERNEL);
1480 if (!core->sram)
1481 return -ENOMEM;
1482
1483 for (i = 0; i < num_sram; i++) {
1484 sram_np = of_parse_phandle(np, "sram", i);
1485 if (!sram_np)
1486 return -EINVAL;
1487
1488 if (!of_device_is_available(sram_np)) {
1489 of_node_put(sram_np);
1490 return -EINVAL;
1491 }
1492
1493 ret = of_address_to_resource(sram_np, 0, &res);
1494 of_node_put(sram_np);
1495 if (ret)
1496 return -EINVAL;
1497
1498 core->sram[i].bus_addr = res.start;
1499 core->sram[i].dev_addr = res.start;
1500 core->sram[i].size = resource_size(&res);
1501 core->sram[i].cpu_addr = devm_ioremap_wc(dev, res.start,
1502 resource_size(&res));
1503 if (!core->sram[i].cpu_addr) {
1504 dev_err(dev, "failed to parse and map sram%d memory at %pad\n",
1505 i, &res.start);
1506 return -ENOMEM;
1507 }
1508
1509 dev_dbg(dev, "memory sram%d: bus addr %pa size 0x%zx va %pK da 0x%x\n",
1510 i, &core->sram[i].bus_addr,
1511 core->sram[i].size, core->sram[i].cpu_addr,
1512 core->sram[i].dev_addr);
1513 }
1514 core->num_sram = num_sram;
1515
1516 return 0;
1517 }
1518
1519 static
k3_r5_core_of_get_tsp(struct device * dev,const struct ti_sci_handle * sci)1520 struct ti_sci_proc *k3_r5_core_of_get_tsp(struct device *dev,
1521 const struct ti_sci_handle *sci)
1522 {
1523 struct ti_sci_proc *tsp;
1524 u32 temp[2];
1525 int ret;
1526
1527 ret = of_property_read_u32_array(dev_of_node(dev), "ti,sci-proc-ids",
1528 temp, 2);
1529 if (ret < 0)
1530 return ERR_PTR(ret);
1531
1532 tsp = devm_kzalloc(dev, sizeof(*tsp), GFP_KERNEL);
1533 if (!tsp)
1534 return ERR_PTR(-ENOMEM);
1535
1536 tsp->dev = dev;
1537 tsp->sci = sci;
1538 tsp->ops = &sci->ops.proc_ops;
1539 tsp->proc_id = temp[0];
1540 tsp->host_id = temp[1];
1541
1542 return tsp;
1543 }
1544
k3_r5_core_of_init(struct platform_device * pdev)1545 static int k3_r5_core_of_init(struct platform_device *pdev)
1546 {
1547 struct device *dev = &pdev->dev;
1548 struct device_node *np = dev_of_node(dev);
1549 struct k3_r5_core *core;
1550 int ret;
1551
1552 if (!devres_open_group(dev, k3_r5_core_of_init, GFP_KERNEL))
1553 return -ENOMEM;
1554
1555 core = devm_kzalloc(dev, sizeof(*core), GFP_KERNEL);
1556 if (!core) {
1557 ret = -ENOMEM;
1558 goto err;
1559 }
1560
1561 core->dev = dev;
1562 /*
1563 * Use SoC Power-on-Reset values as default if no DT properties are
1564 * used to dictate the TCM configurations
1565 */
1566 core->atcm_enable = 0;
1567 core->btcm_enable = 1;
1568 core->loczrama = 1;
1569
1570 ret = of_property_read_u32(np, "ti,atcm-enable", &core->atcm_enable);
1571 if (ret < 0 && ret != -EINVAL) {
1572 dev_err(dev, "invalid format for ti,atcm-enable, ret = %d\n",
1573 ret);
1574 goto err;
1575 }
1576
1577 ret = of_property_read_u32(np, "ti,btcm-enable", &core->btcm_enable);
1578 if (ret < 0 && ret != -EINVAL) {
1579 dev_err(dev, "invalid format for ti,btcm-enable, ret = %d\n",
1580 ret);
1581 goto err;
1582 }
1583
1584 ret = of_property_read_u32(np, "ti,loczrama", &core->loczrama);
1585 if (ret < 0 && ret != -EINVAL) {
1586 dev_err(dev, "invalid format for ti,loczrama, ret = %d\n", ret);
1587 goto err;
1588 }
1589
1590 core->ti_sci = devm_ti_sci_get_by_phandle(dev, "ti,sci");
1591 if (IS_ERR(core->ti_sci)) {
1592 ret = PTR_ERR(core->ti_sci);
1593 if (ret != -EPROBE_DEFER) {
1594 dev_err(dev, "failed to get ti-sci handle, ret = %d\n",
1595 ret);
1596 }
1597 core->ti_sci = NULL;
1598 goto err;
1599 }
1600
1601 ret = of_property_read_u32(np, "ti,sci-dev-id", &core->ti_sci_id);
1602 if (ret) {
1603 dev_err(dev, "missing 'ti,sci-dev-id' property\n");
1604 goto err;
1605 }
1606
1607 core->reset = devm_reset_control_get_exclusive(dev, NULL);
1608 if (IS_ERR_OR_NULL(core->reset)) {
1609 ret = PTR_ERR_OR_ZERO(core->reset);
1610 if (!ret)
1611 ret = -ENODEV;
1612 if (ret != -EPROBE_DEFER) {
1613 dev_err(dev, "failed to get reset handle, ret = %d\n",
1614 ret);
1615 }
1616 goto err;
1617 }
1618
1619 core->tsp = k3_r5_core_of_get_tsp(dev, core->ti_sci);
1620 if (IS_ERR(core->tsp)) {
1621 ret = PTR_ERR(core->tsp);
1622 dev_err(dev, "failed to construct ti-sci proc control, ret = %d\n",
1623 ret);
1624 goto err;
1625 }
1626
1627 ret = k3_r5_core_of_get_internal_memories(pdev, core);
1628 if (ret) {
1629 dev_err(dev, "failed to get internal memories, ret = %d\n",
1630 ret);
1631 goto err;
1632 }
1633
1634 ret = k3_r5_core_of_get_sram_memories(pdev, core);
1635 if (ret) {
1636 dev_err(dev, "failed to get sram memories, ret = %d\n", ret);
1637 goto err;
1638 }
1639
1640 ret = ti_sci_proc_request(core->tsp);
1641 if (ret < 0) {
1642 dev_err(dev, "ti_sci_proc_request failed, ret = %d\n", ret);
1643 goto err;
1644 }
1645
1646 platform_set_drvdata(pdev, core);
1647 devres_close_group(dev, k3_r5_core_of_init);
1648
1649 return 0;
1650
1651 err:
1652 devres_release_group(dev, k3_r5_core_of_init);
1653 return ret;
1654 }
1655
1656 /*
1657 * free the resources explicitly since driver model is not being used
1658 * for the child R5F devices
1659 */
k3_r5_core_of_exit(struct platform_device * pdev)1660 static void k3_r5_core_of_exit(struct platform_device *pdev)
1661 {
1662 struct k3_r5_core *core = platform_get_drvdata(pdev);
1663 struct device *dev = &pdev->dev;
1664 int ret;
1665
1666 ret = ti_sci_proc_release(core->tsp);
1667 if (ret)
1668 dev_err(dev, "failed to release proc, ret = %d\n", ret);
1669
1670 platform_set_drvdata(pdev, NULL);
1671 devres_release_group(dev, k3_r5_core_of_init);
1672 }
1673
k3_r5_cluster_of_exit(void * data)1674 static void k3_r5_cluster_of_exit(void *data)
1675 {
1676 struct k3_r5_cluster *cluster = platform_get_drvdata(data);
1677 struct platform_device *cpdev;
1678 struct k3_r5_core *core, *temp;
1679
1680 list_for_each_entry_safe_reverse(core, temp, &cluster->cores, elem) {
1681 list_del(&core->elem);
1682 cpdev = to_platform_device(core->dev);
1683 k3_r5_core_of_exit(cpdev);
1684 }
1685 }
1686
k3_r5_cluster_of_init(struct platform_device * pdev)1687 static int k3_r5_cluster_of_init(struct platform_device *pdev)
1688 {
1689 struct k3_r5_cluster *cluster = platform_get_drvdata(pdev);
1690 struct device *dev = &pdev->dev;
1691 struct device_node *np = dev_of_node(dev);
1692 struct platform_device *cpdev;
1693 struct device_node *child;
1694 struct k3_r5_core *core;
1695 int ret;
1696
1697 for_each_available_child_of_node(np, child) {
1698 cpdev = of_find_device_by_node(child);
1699 if (!cpdev) {
1700 ret = -ENODEV;
1701 dev_err(dev, "could not get R5 core platform device\n");
1702 of_node_put(child);
1703 goto fail;
1704 }
1705
1706 ret = k3_r5_core_of_init(cpdev);
1707 if (ret) {
1708 dev_err(dev, "k3_r5_core_of_init failed, ret = %d\n",
1709 ret);
1710 put_device(&cpdev->dev);
1711 of_node_put(child);
1712 goto fail;
1713 }
1714
1715 core = platform_get_drvdata(cpdev);
1716 put_device(&cpdev->dev);
1717 list_add_tail(&core->elem, &cluster->cores);
1718 }
1719
1720 return 0;
1721
1722 fail:
1723 k3_r5_cluster_of_exit(pdev);
1724 return ret;
1725 }
1726
k3_r5_probe(struct platform_device * pdev)1727 static int k3_r5_probe(struct platform_device *pdev)
1728 {
1729 struct device *dev = &pdev->dev;
1730 struct device_node *np = dev_of_node(dev);
1731 struct k3_r5_cluster *cluster;
1732 const struct k3_r5_soc_data *data;
1733 int ret;
1734 int num_cores;
1735
1736 data = of_device_get_match_data(&pdev->dev);
1737 if (!data) {
1738 dev_err(dev, "SoC-specific data is not defined\n");
1739 return -ENODEV;
1740 }
1741
1742 cluster = devm_kzalloc(dev, sizeof(*cluster), GFP_KERNEL);
1743 if (!cluster)
1744 return -ENOMEM;
1745
1746 cluster->dev = dev;
1747 cluster->soc_data = data;
1748 INIT_LIST_HEAD(&cluster->cores);
1749 init_waitqueue_head(&cluster->core_transition);
1750
1751 ret = of_property_read_u32(np, "ti,cluster-mode", &cluster->mode);
1752 if (ret < 0 && ret != -EINVAL) {
1753 dev_err(dev, "invalid format for ti,cluster-mode, ret = %d\n",
1754 ret);
1755 return ret;
1756 }
1757
1758 if (ret == -EINVAL) {
1759 /*
1760 * default to most common efuse configurations - Split-mode on AM64x
1761 * and LockStep-mode on all others
1762 * default to most common efuse configurations -
1763 * Split-mode on AM64x
1764 * Single core on AM62x
1765 * LockStep-mode on all others
1766 */
1767 if (!data->is_single_core)
1768 cluster->mode = data->single_cpu_mode ?
1769 CLUSTER_MODE_SPLIT : CLUSTER_MODE_LOCKSTEP;
1770 else
1771 cluster->mode = CLUSTER_MODE_SINGLECORE;
1772 }
1773
1774 if ((cluster->mode == CLUSTER_MODE_SINGLECPU && !data->single_cpu_mode) ||
1775 (cluster->mode == CLUSTER_MODE_SINGLECORE && !data->is_single_core)) {
1776 dev_err(dev, "Cluster mode = %d is not supported on this SoC\n", cluster->mode);
1777 return -EINVAL;
1778 }
1779
1780 num_cores = of_get_available_child_count(np);
1781 if (num_cores != 2 && !data->is_single_core) {
1782 dev_err(dev, "MCU cluster requires both R5F cores to be enabled but num_cores is set to = %d\n",
1783 num_cores);
1784 return -ENODEV;
1785 }
1786
1787 if (num_cores != 1 && data->is_single_core) {
1788 dev_err(dev, "SoC supports only single core R5 but num_cores is set to %d\n",
1789 num_cores);
1790 return -ENODEV;
1791 }
1792
1793 platform_set_drvdata(pdev, cluster);
1794
1795 ret = devm_of_platform_populate(dev);
1796 if (ret) {
1797 dev_err(dev, "devm_of_platform_populate failed, ret = %d\n",
1798 ret);
1799 return ret;
1800 }
1801
1802 ret = k3_r5_cluster_of_init(pdev);
1803 if (ret) {
1804 dev_err(dev, "k3_r5_cluster_of_init failed, ret = %d\n", ret);
1805 return ret;
1806 }
1807
1808 ret = devm_add_action_or_reset(dev, k3_r5_cluster_of_exit, pdev);
1809 if (ret)
1810 return ret;
1811
1812 ret = k3_r5_cluster_rproc_init(pdev);
1813 if (ret) {
1814 dev_err(dev, "k3_r5_cluster_rproc_init failed, ret = %d\n",
1815 ret);
1816 return ret;
1817 }
1818
1819 ret = devm_add_action_or_reset(dev, k3_r5_cluster_rproc_exit, pdev);
1820 if (ret)
1821 return ret;
1822
1823 return 0;
1824 }
1825
1826 static const struct k3_r5_soc_data am65_j721e_soc_data = {
1827 .tcm_is_double = false,
1828 .tcm_ecc_autoinit = false,
1829 .single_cpu_mode = false,
1830 .is_single_core = false,
1831 };
1832
1833 static const struct k3_r5_soc_data j7200_j721s2_soc_data = {
1834 .tcm_is_double = true,
1835 .tcm_ecc_autoinit = true,
1836 .single_cpu_mode = false,
1837 .is_single_core = false,
1838 };
1839
1840 static const struct k3_r5_soc_data am64_soc_data = {
1841 .tcm_is_double = true,
1842 .tcm_ecc_autoinit = true,
1843 .single_cpu_mode = true,
1844 .is_single_core = false,
1845 };
1846
1847 static const struct k3_r5_soc_data am62_soc_data = {
1848 .tcm_is_double = false,
1849 .tcm_ecc_autoinit = true,
1850 .single_cpu_mode = false,
1851 .is_single_core = true,
1852 };
1853
1854 static const struct of_device_id k3_r5_of_match[] = {
1855 { .compatible = "ti,am654-r5fss", .data = &am65_j721e_soc_data, },
1856 { .compatible = "ti,j721e-r5fss", .data = &am65_j721e_soc_data, },
1857 { .compatible = "ti,j7200-r5fss", .data = &j7200_j721s2_soc_data, },
1858 { .compatible = "ti,am64-r5fss", .data = &am64_soc_data, },
1859 { .compatible = "ti,am62-r5fss", .data = &am62_soc_data, },
1860 { .compatible = "ti,j721s2-r5fss", .data = &j7200_j721s2_soc_data, },
1861 { /* sentinel */ },
1862 };
1863 MODULE_DEVICE_TABLE(of, k3_r5_of_match);
1864
1865 static struct platform_driver k3_r5_rproc_driver = {
1866 .probe = k3_r5_probe,
1867 .driver = {
1868 .name = "k3_r5_rproc",
1869 .of_match_table = k3_r5_of_match,
1870 },
1871 };
1872
1873 module_platform_driver(k3_r5_rproc_driver);
1874
1875 MODULE_LICENSE("GPL v2");
1876 MODULE_DESCRIPTION("TI K3 R5F remote processor driver");
1877 MODULE_AUTHOR("Suman Anna <s-anna@ti.com>");
1878