1 // SPDX-License-Identifier: GPL-2.0-only
3 * Remote Processor Framework
5 * Copyright (C) 2011 Texas Instruments, Inc.
6 * Copyright (C) 2011 Google, Inc.
17 #define pr_fmt(fmt) "%s: " fmt, __func__
19 #include <linux/delay.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/device.h>
23 #include <linux/panic_notifier.h>
24 #include <linux/slab.h>
25 #include <linux/mutex.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/firmware.h>
28 #include <linux/string.h>
29 #include <linux/debugfs.h>
30 #include <linux/rculist.h>
31 #include <linux/remoteproc.h>
32 #include <linux/iommu.h>
33 #include <linux/idr.h>
34 #include <linux/elf.h>
35 #include <linux/crc32.h>
36 #include <linux/of_reserved_mem.h>
37 #include <linux/virtio_ids.h>
38 #include <linux/virtio_ring.h>
39 #include <asm/byteorder.h>
40 #include <linux/platform_device.h>
42 #include "remoteproc_internal.h"
44 #define HIGH_BITS_MASK 0xFFFFFFFF00000000ULL
46 static DEFINE_MUTEX(rproc_list_mutex);
47 static LIST_HEAD(rproc_list);
48 static struct notifier_block rproc_panic_nb;
50 typedef int (*rproc_handle_resource_t)(struct rproc *rproc,
51 void *, int offset, int avail);
53 static int rproc_alloc_carveout(struct rproc *rproc,
54 struct rproc_mem_entry *mem);
55 static int rproc_release_carveout(struct rproc *rproc,
56 struct rproc_mem_entry *mem);
58 /* Unique indices for remoteproc devices */
59 static DEFINE_IDA(rproc_dev_index);
60 static struct workqueue_struct *rproc_recovery_wq;
62 static const char * const rproc_crash_names[] = {
63 [RPROC_MMUFAULT] = "mmufault",
64 [RPROC_WATCHDOG] = "watchdog",
65 [RPROC_FATAL_ERROR] = "fatal error",
68 /* translate rproc_crash_type to string */
69 static const char *rproc_crash_to_string(enum rproc_crash_type type)
71 if (type < ARRAY_SIZE(rproc_crash_names))
72 return rproc_crash_names[type];
77 * This is the IOMMU fault handler we register with the IOMMU API
78 * (when relevant; not all remote processors access memory through
81 * IOMMU core will invoke this handler whenever the remote processor
82 * will try to access an unmapped device address.
84 static int rproc_iommu_fault(struct iommu_domain *domain, struct device *dev,
85 unsigned long iova, int flags, void *token)
87 struct rproc *rproc = token;
89 dev_err(dev, "iommu fault: da 0x%lx flags 0x%x\n", iova, flags);
91 rproc_report_crash(rproc, RPROC_MMUFAULT);
94 * Let the iommu core know we're not really handling this fault;
95 * we just used it as a recovery trigger.
100 static int rproc_enable_iommu(struct rproc *rproc)
102 struct iommu_domain *domain;
103 struct device *dev = rproc->dev.parent;
106 if (!rproc->has_iommu) {
107 dev_dbg(dev, "iommu not present\n");
111 domain = iommu_domain_alloc(dev->bus);
113 dev_err(dev, "can't alloc iommu domain\n");
117 iommu_set_fault_handler(domain, rproc_iommu_fault, rproc);
119 ret = iommu_attach_device(domain, dev);
121 dev_err(dev, "can't attach iommu device: %d\n", ret);
125 rproc->domain = domain;
130 iommu_domain_free(domain);
134 static void rproc_disable_iommu(struct rproc *rproc)
136 struct iommu_domain *domain = rproc->domain;
137 struct device *dev = rproc->dev.parent;
142 iommu_detach_device(domain, dev);
143 iommu_domain_free(domain);
146 phys_addr_t rproc_va_to_pa(void *cpu_addr)
149 * Return physical address according to virtual address location
150 * - in vmalloc: if region ioremapped or defined as dma_alloc_coherent
151 * - in kernel: if region allocated in generic dma memory pool
153 if (is_vmalloc_addr(cpu_addr)) {
154 return page_to_phys(vmalloc_to_page(cpu_addr)) +
155 offset_in_page(cpu_addr);
158 WARN_ON(!virt_addr_valid(cpu_addr));
159 return virt_to_phys(cpu_addr);
161 EXPORT_SYMBOL(rproc_va_to_pa);
164 * rproc_da_to_va() - lookup the kernel virtual address for a remoteproc address
165 * @rproc: handle of a remote processor
166 * @da: remoteproc device address to translate
167 * @len: length of the memory region @da is pointing to
168 * @is_iomem: optional pointer filled in to indicate if @da is iomapped memory
170 * Some remote processors will ask us to allocate them physically contiguous
171 * memory regions (which we call "carveouts"), and map them to specific
172 * device addresses (which are hardcoded in the firmware). They may also have
173 * dedicated memory regions internal to the processors, and use them either
174 * exclusively or alongside carveouts.
176 * They may then ask us to copy objects into specific device addresses (e.g.
177 * code/data sections) or expose us certain symbols in other device address
178 * (e.g. their trace buffer).
180 * This function is a helper function with which we can go over the allocated
181 * carveouts and translate specific device addresses to kernel virtual addresses
182 * so we can access the referenced memory. This function also allows to perform
183 * translations on the internal remoteproc memory regions through a platform
184 * implementation specific da_to_va ops, if present.
186 * Note: phys_to_virt(iommu_iova_to_phys(rproc->domain, da)) will work too,
187 * but only on kernel direct mapped RAM memory. Instead, we're just using
188 * here the output of the DMA API for the carveouts, which should be more
191 * Return: a valid kernel address on success or NULL on failure
193 void *rproc_da_to_va(struct rproc *rproc, u64 da, size_t len, bool *is_iomem)
195 struct rproc_mem_entry *carveout;
198 if (rproc->ops->da_to_va) {
199 ptr = rproc->ops->da_to_va(rproc, da, len, is_iomem);
204 list_for_each_entry(carveout, &rproc->carveouts, node) {
205 int offset = da - carveout->da;
207 /* Verify that carveout is allocated */
211 /* try next carveout if da is too small */
215 /* try next carveout if da is too large */
216 if (offset + len > carveout->len)
219 ptr = carveout->va + offset;
222 *is_iomem = carveout->is_iomem;
230 EXPORT_SYMBOL(rproc_da_to_va);
233 * rproc_find_carveout_by_name() - lookup the carveout region by a name
234 * @rproc: handle of a remote processor
235 * @name: carveout name to find (format string)
236 * @...: optional parameters matching @name string
238 * Platform driver has the capability to register some pre-allacoted carveout
239 * (physically contiguous memory regions) before rproc firmware loading and
240 * associated resource table analysis. These regions may be dedicated memory
241 * regions internal to the coprocessor or specified DDR region with specific
244 * This function is a helper function with which we can go over the
245 * allocated carveouts and return associated region characteristics like
246 * coprocessor address, length or processor virtual address.
248 * Return: a valid pointer on carveout entry on success or NULL on failure.
251 struct rproc_mem_entry *
252 rproc_find_carveout_by_name(struct rproc *rproc, const char *name, ...)
256 struct rproc_mem_entry *carveout, *mem = NULL;
261 va_start(args, name);
262 vsnprintf(_name, sizeof(_name), name, args);
265 list_for_each_entry(carveout, &rproc->carveouts, node) {
266 /* Compare carveout and requested names */
267 if (!strcmp(carveout->name, _name)) {
277 * rproc_check_carveout_da() - Check specified carveout da configuration
278 * @rproc: handle of a remote processor
279 * @mem: pointer on carveout to check
280 * @da: area device address
281 * @len: associated area size
283 * This function is a helper function to verify requested device area (couple
284 * da, len) is part of specified carveout.
285 * If da is not set (defined as FW_RSC_ADDR_ANY), only requested length is
288 * Return: 0 if carveout matches request else error
290 static int rproc_check_carveout_da(struct rproc *rproc,
291 struct rproc_mem_entry *mem, u32 da, u32 len)
293 struct device *dev = &rproc->dev;
296 /* Check requested resource length */
297 if (len > mem->len) {
298 dev_err(dev, "Registered carveout doesn't fit len request\n");
302 if (da != FW_RSC_ADDR_ANY && mem->da == FW_RSC_ADDR_ANY) {
303 /* Address doesn't match registered carveout configuration */
305 } else if (da != FW_RSC_ADDR_ANY && mem->da != FW_RSC_ADDR_ANY) {
306 delta = da - mem->da;
308 /* Check requested resource belongs to registered carveout */
311 "Registered carveout doesn't fit da request\n");
315 if (delta + len > mem->len) {
317 "Registered carveout doesn't fit len request\n");
325 int rproc_alloc_vring(struct rproc_vdev *rvdev, int i)
327 struct rproc *rproc = rvdev->rproc;
328 struct device *dev = &rproc->dev;
329 struct rproc_vring *rvring = &rvdev->vring[i];
330 struct fw_rsc_vdev *rsc;
332 struct rproc_mem_entry *mem;
335 /* actual size of vring (in bytes) */
336 size = PAGE_ALIGN(vring_size(rvring->num, rvring->align));
338 rsc = (void *)rproc->table_ptr + rvdev->rsc_offset;
340 /* Search for pre-registered carveout */
341 mem = rproc_find_carveout_by_name(rproc, "vdev%dvring%d", rvdev->index,
344 if (rproc_check_carveout_da(rproc, mem, rsc->vring[i].da, size))
347 /* Register carveout in list */
348 mem = rproc_mem_entry_init(dev, NULL, 0,
349 size, rsc->vring[i].da,
350 rproc_alloc_carveout,
351 rproc_release_carveout,
355 dev_err(dev, "Can't allocate memory entry structure\n");
359 rproc_add_carveout(rproc, mem);
363 * Assign an rproc-wide unique index for this vring
364 * TODO: assign a notifyid for rvdev updates as well
365 * TODO: support predefined notifyids (via resource table)
367 ret = idr_alloc(&rproc->notifyids, rvring, 0, 0, GFP_KERNEL);
369 dev_err(dev, "idr_alloc failed: %d\n", ret);
374 /* Potentially bump max_notifyid */
375 if (notifyid > rproc->max_notifyid)
376 rproc->max_notifyid = notifyid;
378 rvring->notifyid = notifyid;
380 /* Let the rproc know the notifyid of this vring.*/
381 rsc->vring[i].notifyid = notifyid;
386 rproc_parse_vring(struct rproc_vdev *rvdev, struct fw_rsc_vdev *rsc, int i)
388 struct rproc *rproc = rvdev->rproc;
389 struct device *dev = &rproc->dev;
390 struct fw_rsc_vdev_vring *vring = &rsc->vring[i];
391 struct rproc_vring *rvring = &rvdev->vring[i];
393 dev_dbg(dev, "vdev rsc: vring%d: da 0x%x, qsz %d, align %d\n",
394 i, vring->da, vring->num, vring->align);
396 /* verify queue size and vring alignment are sane */
397 if (!vring->num || !vring->align) {
398 dev_err(dev, "invalid qsz (%d) or alignment (%d)\n",
399 vring->num, vring->align);
403 rvring->num = vring->num;
404 rvring->align = vring->align;
405 rvring->rvdev = rvdev;
410 void rproc_free_vring(struct rproc_vring *rvring)
412 struct rproc *rproc = rvring->rvdev->rproc;
413 int idx = rvring - rvring->rvdev->vring;
414 struct fw_rsc_vdev *rsc;
416 idr_remove(&rproc->notifyids, rvring->notifyid);
419 * At this point rproc_stop() has been called and the installed resource
420 * table in the remote processor memory may no longer be accessible. As
421 * such and as per rproc_stop(), rproc->table_ptr points to the cached
422 * resource table (rproc->cached_table). The cached resource table is
423 * only available when a remote processor has been booted by the
424 * remoteproc core, otherwise it is NULL.
426 * Based on the above, reset the virtio device section in the cached
427 * resource table only if there is one to work with.
429 if (rproc->table_ptr) {
430 rsc = (void *)rproc->table_ptr + rvring->rvdev->rsc_offset;
431 rsc->vring[idx].da = 0;
432 rsc->vring[idx].notifyid = -1;
436 void rproc_add_rvdev(struct rproc *rproc, struct rproc_vdev *rvdev)
439 list_add_tail(&rvdev->node, &rproc->rvdevs);
442 void rproc_remove_rvdev(struct rproc_vdev *rvdev)
445 list_del(&rvdev->node);
448 * rproc_handle_vdev() - handle a vdev fw resource
449 * @rproc: the remote processor
450 * @ptr: the vring resource descriptor
451 * @offset: offset of the resource entry
452 * @avail: size of available data (for sanity checking the image)
454 * This resource entry requests the host to statically register a virtio
455 * device (vdev), and setup everything needed to support it. It contains
456 * everything needed to make it possible: the virtio device id, virtio
457 * device features, vrings information, virtio config space, etc...
459 * Before registering the vdev, the vrings are allocated from non-cacheable
460 * physically contiguous memory. Currently we only support two vrings per
461 * remote processor (temporary limitation). We might also want to consider
462 * doing the vring allocation only later when ->find_vqs() is invoked, and
463 * then release them upon ->del_vqs().
465 * Note: @da is currently not really handled correctly: we dynamically
466 * allocate it using the DMA API, ignoring requested hard coded addresses,
467 * and we don't take care of any required IOMMU programming. This is all
468 * going to be taken care of when the generic iommu-based DMA API will be
469 * merged. Meanwhile, statically-addressed iommu-based firmware images should
470 * use RSC_DEVMEM resource entries to map their required @da to the physical
471 * address of their base CMA region (ouch, hacky!).
473 * Return: 0 on success, or an appropriate error code otherwise
475 static int rproc_handle_vdev(struct rproc *rproc, void *ptr,
476 int offset, int avail)
478 struct fw_rsc_vdev *rsc = ptr;
479 struct device *dev = &rproc->dev;
480 struct rproc_vdev *rvdev;
482 struct rproc_vdev_data rvdev_data;
483 struct platform_device *pdev;
485 /* make sure resource isn't truncated */
486 rsc_size = struct_size(rsc, vring, rsc->num_of_vrings);
487 if (size_add(rsc_size, rsc->config_len) > avail) {
488 dev_err(dev, "vdev rsc is truncated\n");
492 /* make sure reserved bytes are zeroes */
493 if (rsc->reserved[0] || rsc->reserved[1]) {
494 dev_err(dev, "vdev rsc has non zero reserved bytes\n");
498 dev_dbg(dev, "vdev rsc: id %d, dfeatures 0x%x, cfg len %d, %d vrings\n",
499 rsc->id, rsc->dfeatures, rsc->config_len, rsc->num_of_vrings);
501 /* we currently support only two vrings per rvdev */
502 if (rsc->num_of_vrings > ARRAY_SIZE(rvdev->vring)) {
503 dev_err(dev, "too many vrings: %d\n", rsc->num_of_vrings);
507 rvdev_data.id = rsc->id;
508 rvdev_data.index = rproc->nb_vdev++;
509 rvdev_data.rsc_offset = offset;
510 rvdev_data.rsc = rsc;
512 pdev = platform_device_register_data(dev, "rproc-virtio", rvdev_data.index, &rvdev_data,
515 dev_err(dev, "failed to create rproc-virtio device\n");
516 return PTR_ERR(pdev);
523 * rproc_handle_trace() - handle a shared trace buffer resource
524 * @rproc: the remote processor
525 * @ptr: the trace resource descriptor
526 * @offset: offset of the resource entry
527 * @avail: size of available data (for sanity checking the image)
529 * In case the remote processor dumps trace logs into memory,
530 * export it via debugfs.
532 * Currently, the 'da' member of @rsc should contain the device address
533 * where the remote processor is dumping the traces. Later we could also
534 * support dynamically allocating this address using the generic
535 * DMA API (but currently there isn't a use case for that).
537 * Return: 0 on success, or an appropriate error code otherwise
539 static int rproc_handle_trace(struct rproc *rproc, void *ptr,
540 int offset, int avail)
542 struct fw_rsc_trace *rsc = ptr;
543 struct rproc_debug_trace *trace;
544 struct device *dev = &rproc->dev;
547 if (sizeof(*rsc) > avail) {
548 dev_err(dev, "trace rsc is truncated\n");
552 /* make sure reserved bytes are zeroes */
554 dev_err(dev, "trace rsc has non zero reserved bytes\n");
558 trace = kzalloc(sizeof(*trace), GFP_KERNEL);
562 /* set the trace buffer dma properties */
563 trace->trace_mem.len = rsc->len;
564 trace->trace_mem.da = rsc->da;
566 /* set pointer on rproc device */
567 trace->rproc = rproc;
569 /* make sure snprintf always null terminates, even if truncating */
570 snprintf(name, sizeof(name), "trace%d", rproc->num_traces);
572 /* create the debugfs entry */
573 trace->tfile = rproc_create_trace_file(name, rproc, trace);
575 list_add_tail(&trace->node, &rproc->traces);
579 dev_dbg(dev, "%s added: da 0x%x, len 0x%x\n",
580 name, rsc->da, rsc->len);
586 * rproc_handle_devmem() - handle devmem resource entry
587 * @rproc: remote processor handle
588 * @ptr: the devmem resource entry
589 * @offset: offset of the resource entry
590 * @avail: size of available data (for sanity checking the image)
592 * Remote processors commonly need to access certain on-chip peripherals.
594 * Some of these remote processors access memory via an iommu device,
595 * and might require us to configure their iommu before they can access
596 * the on-chip peripherals they need.
598 * This resource entry is a request to map such a peripheral device.
600 * These devmem entries will contain the physical address of the device in
601 * the 'pa' member. If a specific device address is expected, then 'da' will
602 * contain it (currently this is the only use case supported). 'len' will
603 * contain the size of the physical region we need to map.
605 * Currently we just "trust" those devmem entries to contain valid physical
606 * addresses, but this is going to change: we want the implementations to
607 * tell us ranges of physical addresses the firmware is allowed to request,
608 * and not allow firmwares to request access to physical addresses that
609 * are outside those ranges.
611 * Return: 0 on success, or an appropriate error code otherwise
613 static int rproc_handle_devmem(struct rproc *rproc, void *ptr,
614 int offset, int avail)
616 struct fw_rsc_devmem *rsc = ptr;
617 struct rproc_mem_entry *mapping;
618 struct device *dev = &rproc->dev;
621 /* no point in handling this resource without a valid iommu domain */
625 if (sizeof(*rsc) > avail) {
626 dev_err(dev, "devmem rsc is truncated\n");
630 /* make sure reserved bytes are zeroes */
632 dev_err(dev, "devmem rsc has non zero reserved bytes\n");
636 mapping = kzalloc(sizeof(*mapping), GFP_KERNEL);
640 ret = iommu_map(rproc->domain, rsc->da, rsc->pa, rsc->len, rsc->flags);
642 dev_err(dev, "failed to map devmem: %d\n", ret);
647 * We'll need this info later when we'll want to unmap everything
648 * (e.g. on shutdown).
650 * We can't trust the remote processor not to change the resource
651 * table, so we must maintain this info independently.
653 mapping->da = rsc->da;
654 mapping->len = rsc->len;
655 list_add_tail(&mapping->node, &rproc->mappings);
657 dev_dbg(dev, "mapped devmem pa 0x%x, da 0x%x, len 0x%x\n",
658 rsc->pa, rsc->da, rsc->len);
668 * rproc_alloc_carveout() - allocated specified carveout
669 * @rproc: rproc handle
670 * @mem: the memory entry to allocate
672 * This function allocate specified memory entry @mem using
673 * dma_alloc_coherent() as default allocator
675 * Return: 0 on success, or an appropriate error code otherwise
677 static int rproc_alloc_carveout(struct rproc *rproc,
678 struct rproc_mem_entry *mem)
680 struct rproc_mem_entry *mapping = NULL;
681 struct device *dev = &rproc->dev;
686 va = dma_alloc_coherent(dev->parent, mem->len, &dma, GFP_KERNEL);
689 "failed to allocate dma memory: len 0x%zx\n",
694 dev_dbg(dev, "carveout va %pK, dma %pad, len 0x%zx\n",
697 if (mem->da != FW_RSC_ADDR_ANY && !rproc->domain) {
699 * Check requested da is equal to dma address
700 * and print a warn message in case of missalignment.
701 * Don't stop rproc_start sequence as coprocessor may
702 * build pa to da translation on its side.
704 if (mem->da != (u32)dma)
705 dev_warn(dev->parent,
706 "Allocated carveout doesn't fit device address request\n");
710 * Ok, this is non-standard.
712 * Sometimes we can't rely on the generic iommu-based DMA API
713 * to dynamically allocate the device address and then set the IOMMU
714 * tables accordingly, because some remote processors might
715 * _require_ us to use hard coded device addresses that their
716 * firmware was compiled with.
718 * In this case, we must use the IOMMU API directly and map
719 * the memory to the device address as expected by the remote
722 * Obviously such remote processor devices should not be configured
723 * to use the iommu-based DMA API: we expect 'dma' to contain the
724 * physical address in this case.
726 if (mem->da != FW_RSC_ADDR_ANY && rproc->domain) {
727 mapping = kzalloc(sizeof(*mapping), GFP_KERNEL);
733 ret = iommu_map(rproc->domain, mem->da, dma, mem->len,
736 dev_err(dev, "iommu_map failed: %d\n", ret);
741 * We'll need this info later when we'll want to unmap
742 * everything (e.g. on shutdown).
744 * We can't trust the remote processor not to change the
745 * resource table, so we must maintain this info independently.
747 mapping->da = mem->da;
748 mapping->len = mem->len;
749 list_add_tail(&mapping->node, &rproc->mappings);
751 dev_dbg(dev, "carveout mapped 0x%x to %pad\n",
755 if (mem->da == FW_RSC_ADDR_ANY) {
756 /* Update device address as undefined by requester */
757 if ((u64)dma & HIGH_BITS_MASK)
758 dev_warn(dev, "DMA address cast in 32bit to fit resource table format\n");
771 dma_free_coherent(dev->parent, mem->len, va, dma);
776 * rproc_release_carveout() - release acquired carveout
777 * @rproc: rproc handle
778 * @mem: the memory entry to release
780 * This function releases specified memory entry @mem allocated via
781 * rproc_alloc_carveout() function by @rproc.
783 * Return: 0 on success, or an appropriate error code otherwise
785 static int rproc_release_carveout(struct rproc *rproc,
786 struct rproc_mem_entry *mem)
788 struct device *dev = &rproc->dev;
790 /* clean up carveout allocations */
791 dma_free_coherent(dev->parent, mem->len, mem->va, mem->dma);
796 * rproc_handle_carveout() - handle phys contig memory allocation requests
797 * @rproc: rproc handle
798 * @ptr: the resource entry
799 * @offset: offset of the resource entry
800 * @avail: size of available data (for image validation)
802 * This function will handle firmware requests for allocation of physically
803 * contiguous memory regions.
805 * These request entries should come first in the firmware's resource table,
806 * as other firmware entries might request placing other data objects inside
807 * these memory regions (e.g. data/code segments, trace resource entries, ...).
809 * Allocating memory this way helps utilizing the reserved physical memory
810 * (e.g. CMA) more efficiently, and also minimizes the number of TLB entries
811 * needed to map it (in case @rproc is using an IOMMU). Reducing the TLB
812 * pressure is important; it may have a substantial impact on performance.
814 * Return: 0 on success, or an appropriate error code otherwise
816 static int rproc_handle_carveout(struct rproc *rproc,
817 void *ptr, int offset, int avail)
819 struct fw_rsc_carveout *rsc = ptr;
820 struct rproc_mem_entry *carveout;
821 struct device *dev = &rproc->dev;
823 if (sizeof(*rsc) > avail) {
824 dev_err(dev, "carveout rsc is truncated\n");
828 /* make sure reserved bytes are zeroes */
830 dev_err(dev, "carveout rsc has non zero reserved bytes\n");
834 dev_dbg(dev, "carveout rsc: name: %s, da 0x%x, pa 0x%x, len 0x%x, flags 0x%x\n",
835 rsc->name, rsc->da, rsc->pa, rsc->len, rsc->flags);
838 * Check carveout rsc already part of a registered carveout,
839 * Search by name, then check the da and length
841 carveout = rproc_find_carveout_by_name(rproc, rsc->name);
844 if (carveout->rsc_offset != FW_RSC_ADDR_ANY) {
846 "Carveout already associated to resource table\n");
850 if (rproc_check_carveout_da(rproc, carveout, rsc->da, rsc->len))
853 /* Update memory carveout with resource table info */
854 carveout->rsc_offset = offset;
855 carveout->flags = rsc->flags;
860 /* Register carveout in list */
861 carveout = rproc_mem_entry_init(dev, NULL, 0, rsc->len, rsc->da,
862 rproc_alloc_carveout,
863 rproc_release_carveout, rsc->name);
865 dev_err(dev, "Can't allocate memory entry structure\n");
869 carveout->flags = rsc->flags;
870 carveout->rsc_offset = offset;
871 rproc_add_carveout(rproc, carveout);
877 * rproc_add_carveout() - register an allocated carveout region
878 * @rproc: rproc handle
879 * @mem: memory entry to register
881 * This function registers specified memory entry in @rproc carveouts list.
882 * Specified carveout should have been allocated before registering.
884 void rproc_add_carveout(struct rproc *rproc, struct rproc_mem_entry *mem)
886 list_add_tail(&mem->node, &rproc->carveouts);
888 EXPORT_SYMBOL(rproc_add_carveout);
891 * rproc_mem_entry_init() - allocate and initialize rproc_mem_entry struct
892 * @dev: pointer on device struct
893 * @va: virtual address
895 * @len: memory carveout length
896 * @da: device address
897 * @alloc: memory carveout allocation function
898 * @release: memory carveout release function
899 * @name: carveout name
901 * This function allocates a rproc_mem_entry struct and fill it with parameters
902 * provided by client.
904 * Return: a valid pointer on success, or NULL on failure
907 struct rproc_mem_entry *
908 rproc_mem_entry_init(struct device *dev,
909 void *va, dma_addr_t dma, size_t len, u32 da,
910 int (*alloc)(struct rproc *, struct rproc_mem_entry *),
911 int (*release)(struct rproc *, struct rproc_mem_entry *),
912 const char *name, ...)
914 struct rproc_mem_entry *mem;
917 mem = kzalloc(sizeof(*mem), GFP_KERNEL);
926 mem->release = release;
927 mem->rsc_offset = FW_RSC_ADDR_ANY;
928 mem->of_resm_idx = -1;
930 va_start(args, name);
931 vsnprintf(mem->name, sizeof(mem->name), name, args);
936 EXPORT_SYMBOL(rproc_mem_entry_init);
939 * rproc_of_resm_mem_entry_init() - allocate and initialize rproc_mem_entry struct
940 * from a reserved memory phandle
941 * @dev: pointer on device struct
942 * @of_resm_idx: reserved memory phandle index in "memory-region"
943 * @len: memory carveout length
944 * @da: device address
945 * @name: carveout name
947 * This function allocates a rproc_mem_entry struct and fill it with parameters
948 * provided by client.
950 * Return: a valid pointer on success, or NULL on failure
953 struct rproc_mem_entry *
954 rproc_of_resm_mem_entry_init(struct device *dev, u32 of_resm_idx, size_t len,
955 u32 da, const char *name, ...)
957 struct rproc_mem_entry *mem;
960 mem = kzalloc(sizeof(*mem), GFP_KERNEL);
966 mem->rsc_offset = FW_RSC_ADDR_ANY;
967 mem->of_resm_idx = of_resm_idx;
969 va_start(args, name);
970 vsnprintf(mem->name, sizeof(mem->name), name, args);
975 EXPORT_SYMBOL(rproc_of_resm_mem_entry_init);
978 * rproc_of_parse_firmware() - parse and return the firmware-name
979 * @dev: pointer on device struct representing a rproc
980 * @index: index to use for the firmware-name retrieval
981 * @fw_name: pointer to a character string, in which the firmware
982 * name is returned on success and unmodified otherwise.
984 * This is an OF helper function that parses a device's DT node for
985 * the "firmware-name" property and returns the firmware name pointer
986 * in @fw_name on success.
988 * Return: 0 on success, or an appropriate failure.
990 int rproc_of_parse_firmware(struct device *dev, int index, const char **fw_name)
994 ret = of_property_read_string_index(dev->of_node, "firmware-name",
996 return ret ? ret : 0;
998 EXPORT_SYMBOL(rproc_of_parse_firmware);
1001 * A lookup table for resource handlers. The indices are defined in
1002 * enum fw_resource_type.
1004 static rproc_handle_resource_t rproc_loading_handlers[RSC_LAST] = {
1005 [RSC_CARVEOUT] = rproc_handle_carveout,
1006 [RSC_DEVMEM] = rproc_handle_devmem,
1007 [RSC_TRACE] = rproc_handle_trace,
1008 [RSC_VDEV] = rproc_handle_vdev,
1011 /* handle firmware resource entries before booting the remote processor */
1012 static int rproc_handle_resources(struct rproc *rproc,
1013 rproc_handle_resource_t handlers[RSC_LAST])
1015 struct device *dev = &rproc->dev;
1016 rproc_handle_resource_t handler;
1019 if (!rproc->table_ptr)
1022 for (i = 0; i < rproc->table_ptr->num; i++) {
1023 int offset = rproc->table_ptr->offset[i];
1024 struct fw_rsc_hdr *hdr = (void *)rproc->table_ptr + offset;
1025 int avail = rproc->table_sz - offset - sizeof(*hdr);
1026 void *rsc = (void *)hdr + sizeof(*hdr);
1028 /* make sure table isn't truncated */
1030 dev_err(dev, "rsc table is truncated\n");
1034 dev_dbg(dev, "rsc: type %d\n", hdr->type);
1036 if (hdr->type >= RSC_VENDOR_START &&
1037 hdr->type <= RSC_VENDOR_END) {
1038 ret = rproc_handle_rsc(rproc, hdr->type, rsc,
1039 offset + sizeof(*hdr), avail);
1040 if (ret == RSC_HANDLED)
1045 dev_warn(dev, "unsupported vendor resource %d\n",
1050 if (hdr->type >= RSC_LAST) {
1051 dev_warn(dev, "unsupported resource %d\n", hdr->type);
1055 handler = handlers[hdr->type];
1059 ret = handler(rproc, rsc, offset + sizeof(*hdr), avail);
1067 static int rproc_prepare_subdevices(struct rproc *rproc)
1069 struct rproc_subdev *subdev;
1072 list_for_each_entry(subdev, &rproc->subdevs, node) {
1073 if (subdev->prepare) {
1074 ret = subdev->prepare(subdev);
1076 goto unroll_preparation;
1083 list_for_each_entry_continue_reverse(subdev, &rproc->subdevs, node) {
1084 if (subdev->unprepare)
1085 subdev->unprepare(subdev);
1091 static int rproc_start_subdevices(struct rproc *rproc)
1093 struct rproc_subdev *subdev;
1096 list_for_each_entry(subdev, &rproc->subdevs, node) {
1097 if (subdev->start) {
1098 ret = subdev->start(subdev);
1100 goto unroll_registration;
1106 unroll_registration:
1107 list_for_each_entry_continue_reverse(subdev, &rproc->subdevs, node) {
1109 subdev->stop(subdev, true);
1115 static void rproc_stop_subdevices(struct rproc *rproc, bool crashed)
1117 struct rproc_subdev *subdev;
1119 list_for_each_entry_reverse(subdev, &rproc->subdevs, node) {
1121 subdev->stop(subdev, crashed);
1125 static void rproc_unprepare_subdevices(struct rproc *rproc)
1127 struct rproc_subdev *subdev;
1129 list_for_each_entry_reverse(subdev, &rproc->subdevs, node) {
1130 if (subdev->unprepare)
1131 subdev->unprepare(subdev);
1136 * rproc_alloc_registered_carveouts() - allocate all carveouts registered
1138 * @rproc: the remote processor handle
1140 * This function parses registered carveout list, performs allocation
1141 * if alloc() ops registered and updates resource table information
1142 * if rsc_offset set.
1144 * Return: 0 on success
1146 static int rproc_alloc_registered_carveouts(struct rproc *rproc)
1148 struct rproc_mem_entry *entry, *tmp;
1149 struct fw_rsc_carveout *rsc;
1150 struct device *dev = &rproc->dev;
1154 list_for_each_entry_safe(entry, tmp, &rproc->carveouts, node) {
1156 ret = entry->alloc(rproc, entry);
1158 dev_err(dev, "Unable to allocate carveout %s: %d\n",
1164 if (entry->rsc_offset != FW_RSC_ADDR_ANY) {
1165 /* update resource table */
1166 rsc = (void *)rproc->table_ptr + entry->rsc_offset;
1169 * Some remote processors might need to know the pa
1170 * even though they are behind an IOMMU. E.g., OMAP4's
1171 * remote M3 processor needs this so it can control
1172 * on-chip hardware accelerators that are not behind
1173 * the IOMMU, and therefor must know the pa.
1175 * Generally we don't want to expose physical addresses
1176 * if we don't have to (remote processors are generally
1177 * _not_ trusted), so we might want to do this only for
1178 * remote processor that _must_ have this (e.g. OMAP4's
1179 * dual M3 subsystem).
1181 * Non-IOMMU processors might also want to have this info.
1182 * In this case, the device address and the physical address
1186 /* Use va if defined else dma to generate pa */
1188 pa = (u64)rproc_va_to_pa(entry->va);
1190 pa = (u64)entry->dma;
1192 if (((u64)pa) & HIGH_BITS_MASK)
1194 "Physical address cast in 32bit to fit resource table format\n");
1197 rsc->da = entry->da;
1198 rsc->len = entry->len;
1207 * rproc_resource_cleanup() - clean up and free all acquired resources
1208 * @rproc: rproc handle
1210 * This function will free all resources acquired for @rproc, and it
1211 * is called whenever @rproc either shuts down or fails to boot.
1213 void rproc_resource_cleanup(struct rproc *rproc)
1215 struct rproc_mem_entry *entry, *tmp;
1216 struct rproc_debug_trace *trace, *ttmp;
1217 struct rproc_vdev *rvdev, *rvtmp;
1218 struct device *dev = &rproc->dev;
1220 /* clean up debugfs trace entries */
1221 list_for_each_entry_safe(trace, ttmp, &rproc->traces, node) {
1222 rproc_remove_trace_file(trace->tfile);
1223 rproc->num_traces--;
1224 list_del(&trace->node);
1228 /* clean up iommu mapping entries */
1229 list_for_each_entry_safe(entry, tmp, &rproc->mappings, node) {
1232 unmapped = iommu_unmap(rproc->domain, entry->da, entry->len);
1233 if (unmapped != entry->len) {
1234 /* nothing much to do besides complaining */
1235 dev_err(dev, "failed to unmap %zx/%zu\n", entry->len,
1239 list_del(&entry->node);
1243 /* clean up carveout allocations */
1244 list_for_each_entry_safe(entry, tmp, &rproc->carveouts, node) {
1246 entry->release(rproc, entry);
1247 list_del(&entry->node);
1251 /* clean up remote vdev entries */
1252 list_for_each_entry_safe(rvdev, rvtmp, &rproc->rvdevs, node)
1253 platform_device_unregister(rvdev->pdev);
1255 rproc_coredump_cleanup(rproc);
1257 EXPORT_SYMBOL(rproc_resource_cleanup);
1259 static int rproc_start(struct rproc *rproc, const struct firmware *fw)
1261 struct resource_table *loaded_table;
1262 struct device *dev = &rproc->dev;
1265 /* load the ELF segments to memory */
1266 ret = rproc_load_segments(rproc, fw);
1268 dev_err(dev, "Failed to load program segments: %d\n", ret);
1273 * The starting device has been given the rproc->cached_table as the
1274 * resource table. The address of the vring along with the other
1275 * allocated resources (carveouts etc) is stored in cached_table.
1276 * In order to pass this information to the remote device we must copy
1277 * this information to device memory. We also update the table_ptr so
1278 * that any subsequent changes will be applied to the loaded version.
1280 loaded_table = rproc_find_loaded_rsc_table(rproc, fw);
1282 memcpy(loaded_table, rproc->cached_table, rproc->table_sz);
1283 rproc->table_ptr = loaded_table;
1286 ret = rproc_prepare_subdevices(rproc);
1288 dev_err(dev, "failed to prepare subdevices for %s: %d\n",
1290 goto reset_table_ptr;
1293 /* power up the remote processor */
1294 ret = rproc->ops->start(rproc);
1296 dev_err(dev, "can't start rproc %s: %d\n", rproc->name, ret);
1297 goto unprepare_subdevices;
1300 /* Start any subdevices for the remote processor */
1301 ret = rproc_start_subdevices(rproc);
1303 dev_err(dev, "failed to probe subdevices for %s: %d\n",
1308 rproc->state = RPROC_RUNNING;
1310 dev_info(dev, "remote processor %s is now up\n", rproc->name);
1315 rproc->ops->stop(rproc);
1316 unprepare_subdevices:
1317 rproc_unprepare_subdevices(rproc);
1319 rproc->table_ptr = rproc->cached_table;
1324 static int __rproc_attach(struct rproc *rproc)
1326 struct device *dev = &rproc->dev;
1329 ret = rproc_prepare_subdevices(rproc);
1331 dev_err(dev, "failed to prepare subdevices for %s: %d\n",
1336 /* Attach to the remote processor */
1337 ret = rproc_attach_device(rproc);
1339 dev_err(dev, "can't attach to rproc %s: %d\n",
1341 goto unprepare_subdevices;
1344 /* Start any subdevices for the remote processor */
1345 ret = rproc_start_subdevices(rproc);
1347 dev_err(dev, "failed to probe subdevices for %s: %d\n",
1352 rproc->state = RPROC_ATTACHED;
1354 dev_info(dev, "remote processor %s is now attached\n", rproc->name);
1359 rproc->ops->stop(rproc);
1360 unprepare_subdevices:
1361 rproc_unprepare_subdevices(rproc);
1367 * take a firmware and boot a remote processor with it.
1369 static int rproc_fw_boot(struct rproc *rproc, const struct firmware *fw)
1371 struct device *dev = &rproc->dev;
1372 const char *name = rproc->firmware;
1375 ret = rproc_fw_sanity_check(rproc, fw);
1379 dev_info(dev, "Booting fw image %s, size %zd\n", name, fw->size);
1382 * if enabling an IOMMU isn't relevant for this rproc, this is
1385 ret = rproc_enable_iommu(rproc);
1387 dev_err(dev, "can't enable iommu: %d\n", ret);
1391 /* Prepare rproc for firmware loading if needed */
1392 ret = rproc_prepare_device(rproc);
1394 dev_err(dev, "can't prepare rproc %s: %d\n", rproc->name, ret);
1398 rproc->bootaddr = rproc_get_boot_addr(rproc, fw);
1400 /* Load resource table, core dump segment list etc from the firmware */
1401 ret = rproc_parse_fw(rproc, fw);
1403 goto unprepare_rproc;
1405 /* reset max_notifyid */
1406 rproc->max_notifyid = -1;
1408 /* reset handled vdev */
1411 /* handle fw resources which are required to boot rproc */
1412 ret = rproc_handle_resources(rproc, rproc_loading_handlers);
1414 dev_err(dev, "Failed to process resources: %d\n", ret);
1415 goto clean_up_resources;
1418 /* Allocate carveout resources associated to rproc */
1419 ret = rproc_alloc_registered_carveouts(rproc);
1421 dev_err(dev, "Failed to allocate associated carveouts: %d\n",
1423 goto clean_up_resources;
1426 ret = rproc_start(rproc, fw);
1428 goto clean_up_resources;
1433 rproc_resource_cleanup(rproc);
1434 kfree(rproc->cached_table);
1435 rproc->cached_table = NULL;
1436 rproc->table_ptr = NULL;
1438 /* release HW resources if needed */
1439 rproc_unprepare_device(rproc);
1441 rproc_disable_iommu(rproc);
1445 static int rproc_set_rsc_table(struct rproc *rproc)
1447 struct resource_table *table_ptr;
1448 struct device *dev = &rproc->dev;
1452 table_ptr = rproc_get_loaded_rsc_table(rproc, &table_sz);
1454 /* Not having a resource table is acceptable */
1458 if (IS_ERR(table_ptr)) {
1459 ret = PTR_ERR(table_ptr);
1460 dev_err(dev, "can't load resource table: %d\n", ret);
1465 * If it is possible to detach the remote processor, keep an untouched
1466 * copy of the resource table. That way we can start fresh again when
1467 * the remote processor is re-attached, that is:
1469 * DETACHED -> ATTACHED -> DETACHED -> ATTACHED
1471 * Free'd in rproc_reset_rsc_table_on_detach() and
1472 * rproc_reset_rsc_table_on_stop().
1474 if (rproc->ops->detach) {
1475 rproc->clean_table = kmemdup(table_ptr, table_sz, GFP_KERNEL);
1476 if (!rproc->clean_table)
1479 rproc->clean_table = NULL;
1482 rproc->cached_table = NULL;
1483 rproc->table_ptr = table_ptr;
1484 rproc->table_sz = table_sz;
1489 static int rproc_reset_rsc_table_on_detach(struct rproc *rproc)
1491 struct resource_table *table_ptr;
1493 /* A resource table was never retrieved, nothing to do here */
1494 if (!rproc->table_ptr)
1498 * If we made it to this point a clean_table _must_ have been
1499 * allocated in rproc_set_rsc_table(). If one isn't present
1500 * something went really wrong and we must complain.
1502 if (WARN_ON(!rproc->clean_table))
1505 /* Remember where the external entity installed the resource table */
1506 table_ptr = rproc->table_ptr;
1509 * If we made it here the remote processor was started by another
1510 * entity and a cache table doesn't exist. As such make a copy of
1511 * the resource table currently used by the remote processor and
1512 * use that for the rest of the shutdown process. The memory
1513 * allocated here is free'd in rproc_detach().
1515 rproc->cached_table = kmemdup(rproc->table_ptr,
1516 rproc->table_sz, GFP_KERNEL);
1517 if (!rproc->cached_table)
1521 * Use a copy of the resource table for the remainder of the
1524 rproc->table_ptr = rproc->cached_table;
1527 * Reset the memory area where the firmware loaded the resource table
1528 * to its original value. That way when we re-attach the remote
1529 * processor the resource table is clean and ready to be used again.
1531 memcpy(table_ptr, rproc->clean_table, rproc->table_sz);
1534 * The clean resource table is no longer needed. Allocated in
1535 * rproc_set_rsc_table().
1537 kfree(rproc->clean_table);
1542 static int rproc_reset_rsc_table_on_stop(struct rproc *rproc)
1544 /* A resource table was never retrieved, nothing to do here */
1545 if (!rproc->table_ptr)
1549 * If a cache table exists the remote processor was started by
1550 * the remoteproc core. That cache table should be used for
1551 * the rest of the shutdown process.
1553 if (rproc->cached_table)
1557 * If we made it here the remote processor was started by another
1558 * entity and a cache table doesn't exist. As such make a copy of
1559 * the resource table currently used by the remote processor and
1560 * use that for the rest of the shutdown process. The memory
1561 * allocated here is free'd in rproc_shutdown().
1563 rproc->cached_table = kmemdup(rproc->table_ptr,
1564 rproc->table_sz, GFP_KERNEL);
1565 if (!rproc->cached_table)
1569 * Since the remote processor is being switched off the clean table
1570 * won't be needed. Allocated in rproc_set_rsc_table().
1572 kfree(rproc->clean_table);
1576 * Use a copy of the resource table for the remainder of the
1579 rproc->table_ptr = rproc->cached_table;
1584 * Attach to remote processor - similar to rproc_fw_boot() but without
1585 * the steps that deal with the firmware image.
1587 static int rproc_attach(struct rproc *rproc)
1589 struct device *dev = &rproc->dev;
1593 * if enabling an IOMMU isn't relevant for this rproc, this is
1596 ret = rproc_enable_iommu(rproc);
1598 dev_err(dev, "can't enable iommu: %d\n", ret);
1602 /* Do anything that is needed to boot the remote processor */
1603 ret = rproc_prepare_device(rproc);
1605 dev_err(dev, "can't prepare rproc %s: %d\n", rproc->name, ret);
1609 ret = rproc_set_rsc_table(rproc);
1611 dev_err(dev, "can't load resource table: %d\n", ret);
1612 goto unprepare_device;
1615 /* reset max_notifyid */
1616 rproc->max_notifyid = -1;
1618 /* reset handled vdev */
1622 * Handle firmware resources required to attach to a remote processor.
1623 * Because we are attaching rather than booting the remote processor,
1624 * we expect the platform driver to properly set rproc->table_ptr.
1626 ret = rproc_handle_resources(rproc, rproc_loading_handlers);
1628 dev_err(dev, "Failed to process resources: %d\n", ret);
1629 goto unprepare_device;
1632 /* Allocate carveout resources associated to rproc */
1633 ret = rproc_alloc_registered_carveouts(rproc);
1635 dev_err(dev, "Failed to allocate associated carveouts: %d\n",
1637 goto clean_up_resources;
1640 ret = __rproc_attach(rproc);
1642 goto clean_up_resources;
1647 rproc_resource_cleanup(rproc);
1649 /* release HW resources if needed */
1650 rproc_unprepare_device(rproc);
1652 rproc_disable_iommu(rproc);
1657 * take a firmware and boot it up.
1659 * Note: this function is called asynchronously upon registration of the
1660 * remote processor (so we must wait until it completes before we try
1661 * to unregister the device. one other option is just to use kref here,
1662 * that might be cleaner).
1664 static void rproc_auto_boot_callback(const struct firmware *fw, void *context)
1666 struct rproc *rproc = context;
1670 release_firmware(fw);
1673 static int rproc_trigger_auto_boot(struct rproc *rproc)
1678 * Since the remote processor is in a detached state, it has already
1679 * been booted by another entity. As such there is no point in waiting
1680 * for a firmware image to be loaded, we can simply initiate the process
1681 * of attaching to it immediately.
1683 if (rproc->state == RPROC_DETACHED)
1684 return rproc_boot(rproc);
1687 * We're initiating an asynchronous firmware loading, so we can
1688 * be built-in kernel code, without hanging the boot process.
1690 ret = request_firmware_nowait(THIS_MODULE, FW_ACTION_UEVENT,
1691 rproc->firmware, &rproc->dev, GFP_KERNEL,
1692 rproc, rproc_auto_boot_callback);
1694 dev_err(&rproc->dev, "request_firmware_nowait err: %d\n", ret);
1699 static int rproc_stop(struct rproc *rproc, bool crashed)
1701 struct device *dev = &rproc->dev;
1704 /* No need to continue if a stop() operation has not been provided */
1705 if (!rproc->ops->stop)
1708 /* Stop any subdevices for the remote processor */
1709 rproc_stop_subdevices(rproc, crashed);
1711 /* the installed resource table is no longer accessible */
1712 ret = rproc_reset_rsc_table_on_stop(rproc);
1714 dev_err(dev, "can't reset resource table: %d\n", ret);
1719 /* power off the remote processor */
1720 ret = rproc->ops->stop(rproc);
1722 dev_err(dev, "can't stop rproc: %d\n", ret);
1726 rproc_unprepare_subdevices(rproc);
1728 rproc->state = RPROC_OFFLINE;
1730 dev_info(dev, "stopped remote processor %s\n", rproc->name);
1736 * __rproc_detach(): Does the opposite of __rproc_attach()
1738 static int __rproc_detach(struct rproc *rproc)
1740 struct device *dev = &rproc->dev;
1743 /* No need to continue if a detach() operation has not been provided */
1744 if (!rproc->ops->detach)
1747 /* Stop any subdevices for the remote processor */
1748 rproc_stop_subdevices(rproc, false);
1750 /* the installed resource table is no longer accessible */
1751 ret = rproc_reset_rsc_table_on_detach(rproc);
1753 dev_err(dev, "can't reset resource table: %d\n", ret);
1757 /* Tell the remote processor the core isn't available anymore */
1758 ret = rproc->ops->detach(rproc);
1760 dev_err(dev, "can't detach from rproc: %d\n", ret);
1764 rproc_unprepare_subdevices(rproc);
1766 rproc->state = RPROC_DETACHED;
1768 dev_info(dev, "detached remote processor %s\n", rproc->name);
1773 static int rproc_attach_recovery(struct rproc *rproc)
1777 ret = __rproc_detach(rproc);
1781 return __rproc_attach(rproc);
1784 static int rproc_boot_recovery(struct rproc *rproc)
1786 const struct firmware *firmware_p;
1787 struct device *dev = &rproc->dev;
1790 ret = rproc_stop(rproc, true);
1794 /* generate coredump */
1795 rproc->ops->coredump(rproc);
1798 ret = request_firmware(&firmware_p, rproc->firmware, dev);
1800 dev_err(dev, "request_firmware failed: %d\n", ret);
1804 /* boot the remote processor up again */
1805 ret = rproc_start(rproc, firmware_p);
1807 release_firmware(firmware_p);
1813 * rproc_trigger_recovery() - recover a remoteproc
1814 * @rproc: the remote processor
1816 * The recovery is done by resetting all the virtio devices, that way all the
1817 * rpmsg drivers will be reseted along with the remote processor making the
1818 * remoteproc functional again.
1820 * This function can sleep, so it cannot be called from atomic context.
1822 * Return: 0 on success or a negative value upon failure
1824 int rproc_trigger_recovery(struct rproc *rproc)
1826 struct device *dev = &rproc->dev;
1829 ret = mutex_lock_interruptible(&rproc->lock);
1833 /* State could have changed before we got the mutex */
1834 if (rproc->state != RPROC_CRASHED)
1837 dev_err(dev, "recovering %s\n", rproc->name);
1839 if (rproc_has_feature(rproc, RPROC_FEAT_ATTACH_ON_RECOVERY))
1840 ret = rproc_attach_recovery(rproc);
1842 ret = rproc_boot_recovery(rproc);
1845 mutex_unlock(&rproc->lock);
1850 * rproc_crash_handler_work() - handle a crash
1851 * @work: work treating the crash
1853 * This function needs to handle everything related to a crash, like cpu
1854 * registers and stack dump, information to help to debug the fatal error, etc.
1856 static void rproc_crash_handler_work(struct work_struct *work)
1858 struct rproc *rproc = container_of(work, struct rproc, crash_handler);
1859 struct device *dev = &rproc->dev;
1861 dev_dbg(dev, "enter %s\n", __func__);
1863 mutex_lock(&rproc->lock);
1865 if (rproc->state == RPROC_CRASHED || rproc->state == RPROC_OFFLINE) {
1866 /* handle only the first crash detected */
1867 mutex_unlock(&rproc->lock);
1871 rproc->state = RPROC_CRASHED;
1872 dev_err(dev, "handling crash #%u in %s\n", ++rproc->crash_cnt,
1875 mutex_unlock(&rproc->lock);
1877 if (!rproc->recovery_disabled)
1878 rproc_trigger_recovery(rproc);
1880 pm_relax(rproc->dev.parent);
1884 * rproc_boot() - boot a remote processor
1885 * @rproc: handle of a remote processor
1887 * Boot a remote processor (i.e. load its firmware, power it on, ...).
1889 * If the remote processor is already powered on, this function immediately
1890 * returns (successfully).
1892 * Return: 0 on success, and an appropriate error value otherwise
1894 int rproc_boot(struct rproc *rproc)
1896 const struct firmware *firmware_p;
1901 pr_err("invalid rproc handle\n");
1907 ret = mutex_lock_interruptible(&rproc->lock);
1909 dev_err(dev, "can't lock rproc %s: %d\n", rproc->name, ret);
1913 if (rproc->state == RPROC_DELETED) {
1915 dev_err(dev, "can't boot deleted rproc %s\n", rproc->name);
1919 /* skip the boot or attach process if rproc is already powered up */
1920 if (atomic_inc_return(&rproc->power) > 1) {
1925 if (rproc->state == RPROC_DETACHED) {
1926 dev_info(dev, "attaching to %s\n", rproc->name);
1928 ret = rproc_attach(rproc);
1930 dev_info(dev, "powering up %s\n", rproc->name);
1933 ret = request_firmware(&firmware_p, rproc->firmware, dev);
1935 dev_err(dev, "request_firmware failed: %d\n", ret);
1939 ret = rproc_fw_boot(rproc, firmware_p);
1941 release_firmware(firmware_p);
1946 atomic_dec(&rproc->power);
1948 mutex_unlock(&rproc->lock);
1951 EXPORT_SYMBOL(rproc_boot);
1954 * rproc_shutdown() - power off the remote processor
1955 * @rproc: the remote processor
1957 * Power off a remote processor (previously booted with rproc_boot()).
1959 * In case @rproc is still being used by an additional user(s), then
1960 * this function will just decrement the power refcount and exit,
1961 * without really powering off the device.
1963 * Every call to rproc_boot() must (eventually) be accompanied by a call
1964 * to rproc_shutdown(). Calling rproc_shutdown() redundantly is a bug.
1967 * - we're not decrementing the rproc's refcount, only the power refcount.
1968 * which means that the @rproc handle stays valid even after rproc_shutdown()
1969 * returns, and users can still use it with a subsequent rproc_boot(), if
1972 * Return: 0 on success, and an appropriate error value otherwise
1974 int rproc_shutdown(struct rproc *rproc)
1976 struct device *dev = &rproc->dev;
1979 ret = mutex_lock_interruptible(&rproc->lock);
1981 dev_err(dev, "can't lock rproc %s: %d\n", rproc->name, ret);
1985 if (rproc->state != RPROC_RUNNING &&
1986 rproc->state != RPROC_ATTACHED) {
1991 /* if the remote proc is still needed, bail out */
1992 if (!atomic_dec_and_test(&rproc->power))
1995 ret = rproc_stop(rproc, false);
1997 atomic_inc(&rproc->power);
2001 /* clean up all acquired resources */
2002 rproc_resource_cleanup(rproc);
2004 /* release HW resources if needed */
2005 rproc_unprepare_device(rproc);
2007 rproc_disable_iommu(rproc);
2009 /* Free the copy of the resource table */
2010 kfree(rproc->cached_table);
2011 rproc->cached_table = NULL;
2012 rproc->table_ptr = NULL;
2014 mutex_unlock(&rproc->lock);
2017 EXPORT_SYMBOL(rproc_shutdown);
2020 * rproc_detach() - Detach the remote processor from the
2023 * @rproc: the remote processor
2025 * Detach a remote processor (previously attached to with rproc_attach()).
2027 * In case @rproc is still being used by an additional user(s), then
2028 * this function will just decrement the power refcount and exit,
2029 * without disconnecting the device.
2031 * Function rproc_detach() calls __rproc_detach() in order to let a remote
2032 * processor know that services provided by the application processor are
2033 * no longer available. From there it should be possible to remove the
2034 * platform driver and even power cycle the application processor (if the HW
2035 * supports it) without needing to switch off the remote processor.
2037 * Return: 0 on success, and an appropriate error value otherwise
2039 int rproc_detach(struct rproc *rproc)
2041 struct device *dev = &rproc->dev;
2044 ret = mutex_lock_interruptible(&rproc->lock);
2046 dev_err(dev, "can't lock rproc %s: %d\n", rproc->name, ret);
2050 if (rproc->state != RPROC_ATTACHED) {
2055 /* if the remote proc is still needed, bail out */
2056 if (!atomic_dec_and_test(&rproc->power)) {
2061 ret = __rproc_detach(rproc);
2063 atomic_inc(&rproc->power);
2067 /* clean up all acquired resources */
2068 rproc_resource_cleanup(rproc);
2070 /* release HW resources if needed */
2071 rproc_unprepare_device(rproc);
2073 rproc_disable_iommu(rproc);
2075 /* Free the copy of the resource table */
2076 kfree(rproc->cached_table);
2077 rproc->cached_table = NULL;
2078 rproc->table_ptr = NULL;
2080 mutex_unlock(&rproc->lock);
2083 EXPORT_SYMBOL(rproc_detach);
2086 * rproc_get_by_phandle() - find a remote processor by phandle
2087 * @phandle: phandle to the rproc
2089 * Finds an rproc handle using the remote processor's phandle, and then
2090 * return a handle to the rproc.
2092 * This function increments the remote processor's refcount, so always
2093 * use rproc_put() to decrement it back once rproc isn't needed anymore.
2095 * Return: rproc handle on success, and NULL on failure
2098 struct rproc *rproc_get_by_phandle(phandle phandle)
2100 struct rproc *rproc = NULL, *r;
2101 struct device_node *np;
2103 np = of_find_node_by_phandle(phandle);
2108 list_for_each_entry_rcu(r, &rproc_list, node) {
2109 if (r->dev.parent && r->dev.parent->of_node == np) {
2110 /* prevent underlying implementation from being removed */
2111 if (!try_module_get(r->dev.parent->driver->owner)) {
2112 dev_err(&r->dev, "can't get owner\n");
2117 get_device(&rproc->dev);
2128 struct rproc *rproc_get_by_phandle(phandle phandle)
2133 EXPORT_SYMBOL(rproc_get_by_phandle);
2136 * rproc_set_firmware() - assign a new firmware
2137 * @rproc: rproc handle to which the new firmware is being assigned
2138 * @fw_name: new firmware name to be assigned
2140 * This function allows remoteproc drivers or clients to configure a custom
2141 * firmware name that is different from the default name used during remoteproc
2142 * registration. The function does not trigger a remote processor boot,
2143 * only sets the firmware name used for a subsequent boot. This function
2144 * should also be called only when the remote processor is offline.
2146 * This allows either the userspace to configure a different name through
2147 * sysfs or a kernel-level remoteproc or a remoteproc client driver to set
2148 * a specific firmware when it is controlling the boot and shutdown of the
2151 * Return: 0 on success or a negative value upon failure
2153 int rproc_set_firmware(struct rproc *rproc, const char *fw_name)
2159 if (!rproc || !fw_name)
2162 dev = rproc->dev.parent;
2164 ret = mutex_lock_interruptible(&rproc->lock);
2166 dev_err(dev, "can't lock rproc %s: %d\n", rproc->name, ret);
2170 if (rproc->state != RPROC_OFFLINE) {
2171 dev_err(dev, "can't change firmware while running\n");
2176 len = strcspn(fw_name, "\n");
2178 dev_err(dev, "can't provide empty string for firmware name\n");
2183 p = kstrndup(fw_name, len, GFP_KERNEL);
2189 kfree_const(rproc->firmware);
2190 rproc->firmware = p;
2193 mutex_unlock(&rproc->lock);
2196 EXPORT_SYMBOL(rproc_set_firmware);
2198 static int rproc_validate(struct rproc *rproc)
2200 switch (rproc->state) {
2203 * An offline processor without a start()
2204 * function makes no sense.
2206 if (!rproc->ops->start)
2209 case RPROC_DETACHED:
2211 * A remote processor in a detached state without an
2212 * attach() function makes not sense.
2214 if (!rproc->ops->attach)
2217 * When attaching to a remote processor the device memory
2218 * is already available and as such there is no need to have a
2221 if (rproc->cached_table)
2226 * When adding a remote processor, the state of the device
2227 * can be offline or detached, nothing else.
2236 * rproc_add() - register a remote processor
2237 * @rproc: the remote processor handle to register
2239 * Registers @rproc with the remoteproc framework, after it has been
2240 * allocated with rproc_alloc().
2242 * This is called by the platform-specific rproc implementation, whenever
2243 * a new remote processor device is probed.
2245 * Note: this function initiates an asynchronous firmware loading
2246 * context, which will look for virtio devices supported by the rproc's
2249 * If found, those virtio devices will be created and added, so as a result
2250 * of registering this remote processor, additional virtio drivers might be
2253 * Return: 0 on success and an appropriate error code otherwise
2255 int rproc_add(struct rproc *rproc)
2257 struct device *dev = &rproc->dev;
2260 ret = rproc_validate(rproc);
2264 /* add char device for this remoteproc */
2265 ret = rproc_char_device_add(rproc);
2269 ret = device_add(dev);
2272 goto rproc_remove_cdev;
2275 dev_info(dev, "%s is available\n", rproc->name);
2277 /* create debugfs entries */
2278 rproc_create_debug_dir(rproc);
2280 /* if rproc is marked always-on, request it to boot */
2281 if (rproc->auto_boot) {
2282 ret = rproc_trigger_auto_boot(rproc);
2284 goto rproc_remove_dev;
2287 /* expose to rproc_get_by_phandle users */
2288 mutex_lock(&rproc_list_mutex);
2289 list_add_rcu(&rproc->node, &rproc_list);
2290 mutex_unlock(&rproc_list_mutex);
2295 rproc_delete_debug_dir(rproc);
2298 rproc_char_device_remove(rproc);
2301 EXPORT_SYMBOL(rproc_add);
2303 static void devm_rproc_remove(void *rproc)
2309 * devm_rproc_add() - resource managed rproc_add()
2310 * @dev: the underlying device
2311 * @rproc: the remote processor handle to register
2313 * This function performs like rproc_add() but the registered rproc device will
2314 * automatically be removed on driver detach.
2316 * Return: 0 on success, negative errno on failure
2318 int devm_rproc_add(struct device *dev, struct rproc *rproc)
2322 err = rproc_add(rproc);
2326 return devm_add_action_or_reset(dev, devm_rproc_remove, rproc);
2328 EXPORT_SYMBOL(devm_rproc_add);
2331 * rproc_type_release() - release a remote processor instance
2332 * @dev: the rproc's device
2334 * This function should _never_ be called directly.
2336 * It will be called by the driver core when no one holds a valid pointer
2339 static void rproc_type_release(struct device *dev)
2341 struct rproc *rproc = container_of(dev, struct rproc, dev);
2343 dev_info(&rproc->dev, "releasing %s\n", rproc->name);
2345 idr_destroy(&rproc->notifyids);
2347 if (rproc->index >= 0)
2348 ida_free(&rproc_dev_index, rproc->index);
2350 kfree_const(rproc->firmware);
2351 kfree_const(rproc->name);
2356 static const struct device_type rproc_type = {
2357 .name = "remoteproc",
2358 .release = rproc_type_release,
2361 static int rproc_alloc_firmware(struct rproc *rproc,
2362 const char *name, const char *firmware)
2367 * Allocate a firmware name if the caller gave us one to work
2368 * with. Otherwise construct a new one using a default pattern.
2371 p = kstrdup_const(firmware, GFP_KERNEL);
2373 p = kasprintf(GFP_KERNEL, "rproc-%s-fw", name);
2378 rproc->firmware = p;
2383 static int rproc_alloc_ops(struct rproc *rproc, const struct rproc_ops *ops)
2385 rproc->ops = kmemdup(ops, sizeof(*ops), GFP_KERNEL);
2389 /* Default to rproc_coredump if no coredump function is specified */
2390 if (!rproc->ops->coredump)
2391 rproc->ops->coredump = rproc_coredump;
2393 if (rproc->ops->load)
2396 /* Default to ELF loader if no load function is specified */
2397 rproc->ops->load = rproc_elf_load_segments;
2398 rproc->ops->parse_fw = rproc_elf_load_rsc_table;
2399 rproc->ops->find_loaded_rsc_table = rproc_elf_find_loaded_rsc_table;
2400 rproc->ops->sanity_check = rproc_elf_sanity_check;
2401 rproc->ops->get_boot_addr = rproc_elf_get_boot_addr;
2407 * rproc_alloc() - allocate a remote processor handle
2408 * @dev: the underlying device
2409 * @name: name of this remote processor
2410 * @ops: platform-specific handlers (mainly start/stop)
2411 * @firmware: name of firmware file to load, can be NULL
2412 * @len: length of private data needed by the rproc driver (in bytes)
2414 * Allocates a new remote processor handle, but does not register
2415 * it yet. if @firmware is NULL, a default name is used.
2417 * This function should be used by rproc implementations during initialization
2418 * of the remote processor.
2420 * After creating an rproc handle using this function, and when ready,
2421 * implementations should then call rproc_add() to complete
2422 * the registration of the remote processor.
2424 * Note: _never_ directly deallocate @rproc, even if it was not registered
2425 * yet. Instead, when you need to unroll rproc_alloc(), use rproc_free().
2427 * Return: new rproc pointer on success, and NULL on failure
2429 struct rproc *rproc_alloc(struct device *dev, const char *name,
2430 const struct rproc_ops *ops,
2431 const char *firmware, int len)
2433 struct rproc *rproc;
2435 if (!dev || !name || !ops)
2438 rproc = kzalloc(sizeof(struct rproc) + len, GFP_KERNEL);
2442 rproc->priv = &rproc[1];
2443 rproc->auto_boot = true;
2444 rproc->elf_class = ELFCLASSNONE;
2445 rproc->elf_machine = EM_NONE;
2447 device_initialize(&rproc->dev);
2448 rproc->dev.parent = dev;
2449 rproc->dev.type = &rproc_type;
2450 rproc->dev.class = &rproc_class;
2451 rproc->dev.driver_data = rproc;
2452 idr_init(&rproc->notifyids);
2454 rproc->name = kstrdup_const(name, GFP_KERNEL);
2458 if (rproc_alloc_firmware(rproc, name, firmware))
2461 if (rproc_alloc_ops(rproc, ops))
2464 /* Assign a unique device index and name */
2465 rproc->index = ida_alloc(&rproc_dev_index, GFP_KERNEL);
2466 if (rproc->index < 0) {
2467 dev_err(dev, "ida_alloc failed: %d\n", rproc->index);
2471 dev_set_name(&rproc->dev, "remoteproc%d", rproc->index);
2473 atomic_set(&rproc->power, 0);
2475 mutex_init(&rproc->lock);
2477 INIT_LIST_HEAD(&rproc->carveouts);
2478 INIT_LIST_HEAD(&rproc->mappings);
2479 INIT_LIST_HEAD(&rproc->traces);
2480 INIT_LIST_HEAD(&rproc->rvdevs);
2481 INIT_LIST_HEAD(&rproc->subdevs);
2482 INIT_LIST_HEAD(&rproc->dump_segments);
2484 INIT_WORK(&rproc->crash_handler, rproc_crash_handler_work);
2486 rproc->state = RPROC_OFFLINE;
2491 put_device(&rproc->dev);
2494 EXPORT_SYMBOL(rproc_alloc);
2497 * rproc_free() - unroll rproc_alloc()
2498 * @rproc: the remote processor handle
2500 * This function decrements the rproc dev refcount.
2502 * If no one holds any reference to rproc anymore, then its refcount would
2503 * now drop to zero, and it would be freed.
2505 void rproc_free(struct rproc *rproc)
2507 put_device(&rproc->dev);
2509 EXPORT_SYMBOL(rproc_free);
2512 * rproc_put() - release rproc reference
2513 * @rproc: the remote processor handle
2515 * This function decrements the rproc dev refcount.
2517 * If no one holds any reference to rproc anymore, then its refcount would
2518 * now drop to zero, and it would be freed.
2520 void rproc_put(struct rproc *rproc)
2522 module_put(rproc->dev.parent->driver->owner);
2523 put_device(&rproc->dev);
2525 EXPORT_SYMBOL(rproc_put);
2528 * rproc_del() - unregister a remote processor
2529 * @rproc: rproc handle to unregister
2531 * This function should be called when the platform specific rproc
2532 * implementation decides to remove the rproc device. it should
2533 * _only_ be called if a previous invocation of rproc_add()
2534 * has completed successfully.
2536 * After rproc_del() returns, @rproc isn't freed yet, because
2537 * of the outstanding reference created by rproc_alloc. To decrement that
2538 * one last refcount, one still needs to call rproc_free().
2540 * Return: 0 on success and -EINVAL if @rproc isn't valid
2542 int rproc_del(struct rproc *rproc)
2547 /* TODO: make sure this works with rproc->power > 1 */
2548 rproc_shutdown(rproc);
2550 mutex_lock(&rproc->lock);
2551 rproc->state = RPROC_DELETED;
2552 mutex_unlock(&rproc->lock);
2554 rproc_delete_debug_dir(rproc);
2556 /* the rproc is downref'ed as soon as it's removed from the klist */
2557 mutex_lock(&rproc_list_mutex);
2558 list_del_rcu(&rproc->node);
2559 mutex_unlock(&rproc_list_mutex);
2561 /* Ensure that no readers of rproc_list are still active */
2564 device_del(&rproc->dev);
2565 rproc_char_device_remove(rproc);
2569 EXPORT_SYMBOL(rproc_del);
2571 static void devm_rproc_free(struct device *dev, void *res)
2573 rproc_free(*(struct rproc **)res);
2577 * devm_rproc_alloc() - resource managed rproc_alloc()
2578 * @dev: the underlying device
2579 * @name: name of this remote processor
2580 * @ops: platform-specific handlers (mainly start/stop)
2581 * @firmware: name of firmware file to load, can be NULL
2582 * @len: length of private data needed by the rproc driver (in bytes)
2584 * This function performs like rproc_alloc() but the acquired rproc device will
2585 * automatically be released on driver detach.
2587 * Return: new rproc instance, or NULL on failure
2589 struct rproc *devm_rproc_alloc(struct device *dev, const char *name,
2590 const struct rproc_ops *ops,
2591 const char *firmware, int len)
2593 struct rproc **ptr, *rproc;
2595 ptr = devres_alloc(devm_rproc_free, sizeof(*ptr), GFP_KERNEL);
2599 rproc = rproc_alloc(dev, name, ops, firmware, len);
2602 devres_add(dev, ptr);
2609 EXPORT_SYMBOL(devm_rproc_alloc);
2612 * rproc_add_subdev() - add a subdevice to a remoteproc
2613 * @rproc: rproc handle to add the subdevice to
2614 * @subdev: subdev handle to register
2616 * Caller is responsible for populating optional subdevice function pointers.
2618 void rproc_add_subdev(struct rproc *rproc, struct rproc_subdev *subdev)
2620 list_add_tail(&subdev->node, &rproc->subdevs);
2622 EXPORT_SYMBOL(rproc_add_subdev);
2625 * rproc_remove_subdev() - remove a subdevice from a remoteproc
2626 * @rproc: rproc handle to remove the subdevice from
2627 * @subdev: subdev handle, previously registered with rproc_add_subdev()
2629 void rproc_remove_subdev(struct rproc *rproc, struct rproc_subdev *subdev)
2631 list_del(&subdev->node);
2633 EXPORT_SYMBOL(rproc_remove_subdev);
2636 * rproc_get_by_child() - acquire rproc handle of @dev's ancestor
2637 * @dev: child device to find ancestor of
2639 * Return: the ancestor rproc instance, or NULL if not found
2641 struct rproc *rproc_get_by_child(struct device *dev)
2643 for (dev = dev->parent; dev; dev = dev->parent) {
2644 if (dev->type == &rproc_type)
2645 return dev->driver_data;
2650 EXPORT_SYMBOL(rproc_get_by_child);
2653 * rproc_report_crash() - rproc crash reporter function
2654 * @rproc: remote processor
2657 * This function must be called every time a crash is detected by the low-level
2658 * drivers implementing a specific remoteproc. This should not be called from a
2659 * non-remoteproc driver.
2661 * This function can be called from atomic/interrupt context.
2663 void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type)
2666 pr_err("NULL rproc pointer\n");
2670 /* Prevent suspend while the remoteproc is being recovered */
2671 pm_stay_awake(rproc->dev.parent);
2673 dev_err(&rproc->dev, "crash detected in %s: type %s\n",
2674 rproc->name, rproc_crash_to_string(type));
2676 queue_work(rproc_recovery_wq, &rproc->crash_handler);
2678 EXPORT_SYMBOL(rproc_report_crash);
2680 static int rproc_panic_handler(struct notifier_block *nb, unsigned long event,
2683 unsigned int longest = 0;
2684 struct rproc *rproc;
2688 list_for_each_entry_rcu(rproc, &rproc_list, node) {
2689 if (!rproc->ops->panic)
2692 if (rproc->state != RPROC_RUNNING &&
2693 rproc->state != RPROC_ATTACHED)
2696 d = rproc->ops->panic(rproc);
2697 longest = max(longest, d);
2702 * Delay for the longest requested duration before returning. This can
2703 * be used by the remoteproc drivers to give the remote processor time
2704 * to perform any requested operations (such as flush caches), when
2705 * it's not possible to signal the Linux side due to the panic.
2712 static void __init rproc_init_panic(void)
2714 rproc_panic_nb.notifier_call = rproc_panic_handler;
2715 atomic_notifier_chain_register(&panic_notifier_list, &rproc_panic_nb);
2718 static void __exit rproc_exit_panic(void)
2720 atomic_notifier_chain_unregister(&panic_notifier_list, &rproc_panic_nb);
2723 static int __init remoteproc_init(void)
2725 rproc_recovery_wq = alloc_workqueue("rproc_recovery_wq",
2726 WQ_UNBOUND | WQ_FREEZABLE, 0);
2727 if (!rproc_recovery_wq) {
2728 pr_err("remoteproc: creation of rproc_recovery_wq failed\n");
2733 rproc_init_debugfs();
2739 subsys_initcall(remoteproc_init);
2741 static void __exit remoteproc_exit(void)
2743 ida_destroy(&rproc_dev_index);
2745 if (!rproc_recovery_wq)
2749 rproc_exit_debugfs();
2751 destroy_workqueue(rproc_recovery_wq);
2753 module_exit(remoteproc_exit);
2755 MODULE_LICENSE("GPL v2");
2756 MODULE_DESCRIPTION("Generic Remote Processor Framework");