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/kernel.h>
20 #include <linux/module.h>
21 #include <linux/device.h>
22 #include <linux/slab.h>
23 #include <linux/mutex.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/firmware.h>
26 #include <linux/string.h>
27 #include <linux/debugfs.h>
28 #include <linux/devcoredump.h>
29 #include <linux/remoteproc.h>
30 #include <linux/iommu.h>
31 #include <linux/idr.h>
32 #include <linux/elf.h>
33 #include <linux/crc32.h>
34 #include <linux/of_reserved_mem.h>
35 #include <linux/virtio_ids.h>
36 #include <linux/virtio_ring.h>
37 #include <asm/byteorder.h>
38 #include <linux/platform_device.h>
40 #include "remoteproc_internal.h"
42 #define HIGH_BITS_MASK 0xFFFFFFFF00000000ULL
44 static DEFINE_MUTEX(rproc_list_mutex);
45 static LIST_HEAD(rproc_list);
47 typedef int (*rproc_handle_resources_t)(struct rproc *rproc,
48 struct resource_table *table, int len);
49 typedef int (*rproc_handle_resource_t)(struct rproc *rproc,
50 void *, int offset, int avail);
52 static int rproc_alloc_carveout(struct rproc *rproc,
53 struct rproc_mem_entry *mem);
54 static int rproc_release_carveout(struct rproc *rproc,
55 struct rproc_mem_entry *mem);
57 /* Unique indices for remoteproc devices */
58 static DEFINE_IDA(rproc_dev_index);
60 static const char * const rproc_crash_names[] = {
61 [RPROC_MMUFAULT] = "mmufault",
62 [RPROC_WATCHDOG] = "watchdog",
63 [RPROC_FATAL_ERROR] = "fatal error",
66 /* translate rproc_crash_type to string */
67 static const char *rproc_crash_to_string(enum rproc_crash_type type)
69 if (type < ARRAY_SIZE(rproc_crash_names))
70 return rproc_crash_names[type];
75 * This is the IOMMU fault handler we register with the IOMMU API
76 * (when relevant; not all remote processors access memory through
79 * IOMMU core will invoke this handler whenever the remote processor
80 * will try to access an unmapped device address.
82 static int rproc_iommu_fault(struct iommu_domain *domain, struct device *dev,
83 unsigned long iova, int flags, void *token)
85 struct rproc *rproc = token;
87 dev_err(dev, "iommu fault: da 0x%lx flags 0x%x\n", iova, flags);
89 rproc_report_crash(rproc, RPROC_MMUFAULT);
92 * Let the iommu core know we're not really handling this fault;
93 * we just used it as a recovery trigger.
98 static int rproc_enable_iommu(struct rproc *rproc)
100 struct iommu_domain *domain;
101 struct device *dev = rproc->dev.parent;
104 if (!rproc->has_iommu) {
105 dev_dbg(dev, "iommu not present\n");
109 domain = iommu_domain_alloc(dev->bus);
111 dev_err(dev, "can't alloc iommu domain\n");
115 iommu_set_fault_handler(domain, rproc_iommu_fault, rproc);
117 ret = iommu_attach_device(domain, dev);
119 dev_err(dev, "can't attach iommu device: %d\n", ret);
123 rproc->domain = domain;
128 iommu_domain_free(domain);
132 static void rproc_disable_iommu(struct rproc *rproc)
134 struct iommu_domain *domain = rproc->domain;
135 struct device *dev = rproc->dev.parent;
140 iommu_detach_device(domain, dev);
141 iommu_domain_free(domain);
144 phys_addr_t rproc_va_to_pa(void *cpu_addr)
147 * Return physical address according to virtual address location
148 * - in vmalloc: if region ioremapped or defined as dma_alloc_coherent
149 * - in kernel: if region allocated in generic dma memory pool
151 if (is_vmalloc_addr(cpu_addr)) {
152 return page_to_phys(vmalloc_to_page(cpu_addr)) +
153 offset_in_page(cpu_addr);
156 WARN_ON(!virt_addr_valid(cpu_addr));
157 return virt_to_phys(cpu_addr);
159 EXPORT_SYMBOL(rproc_va_to_pa);
162 * rproc_da_to_va() - lookup the kernel virtual address for a remoteproc address
163 * @rproc: handle of a remote processor
164 * @da: remoteproc device address to translate
165 * @len: length of the memory region @da is pointing to
167 * Some remote processors will ask us to allocate them physically contiguous
168 * memory regions (which we call "carveouts"), and map them to specific
169 * device addresses (which are hardcoded in the firmware). They may also have
170 * dedicated memory regions internal to the processors, and use them either
171 * exclusively or alongside carveouts.
173 * They may then ask us to copy objects into specific device addresses (e.g.
174 * code/data sections) or expose us certain symbols in other device address
175 * (e.g. their trace buffer).
177 * This function is a helper function with which we can go over the allocated
178 * carveouts and translate specific device addresses to kernel virtual addresses
179 * so we can access the referenced memory. This function also allows to perform
180 * translations on the internal remoteproc memory regions through a platform
181 * implementation specific da_to_va ops, if present.
183 * The function returns a valid kernel address on success or NULL on failure.
185 * Note: phys_to_virt(iommu_iova_to_phys(rproc->domain, da)) will work too,
186 * but only on kernel direct mapped RAM memory. Instead, we're just using
187 * here the output of the DMA API for the carveouts, which should be more
190 void *rproc_da_to_va(struct rproc *rproc, u64 da, int len)
192 struct rproc_mem_entry *carveout;
195 if (rproc->ops->da_to_va) {
196 ptr = rproc->ops->da_to_va(rproc, da, len);
201 list_for_each_entry(carveout, &rproc->carveouts, node) {
202 int offset = da - carveout->da;
204 /* Verify that carveout is allocated */
208 /* try next carveout if da is too small */
212 /* try next carveout if da is too large */
213 if (offset + len > carveout->len)
216 ptr = carveout->va + offset;
224 EXPORT_SYMBOL(rproc_da_to_va);
227 * rproc_find_carveout_by_name() - lookup the carveout region by a name
228 * @rproc: handle of a remote processor
229 * @name,..: carveout name to find (standard printf format)
231 * Platform driver has the capability to register some pre-allacoted carveout
232 * (physically contiguous memory regions) before rproc firmware loading and
233 * associated resource table analysis. These regions may be dedicated memory
234 * regions internal to the coprocessor or specified DDR region with specific
237 * This function is a helper function with which we can go over the
238 * allocated carveouts and return associated region characteristics like
239 * coprocessor address, length or processor virtual address.
241 * Return: a valid pointer on carveout entry on success or NULL on failure.
243 struct rproc_mem_entry *
244 rproc_find_carveout_by_name(struct rproc *rproc, const char *name, ...)
248 struct rproc_mem_entry *carveout, *mem = NULL;
253 va_start(args, name);
254 vsnprintf(_name, sizeof(_name), name, args);
257 list_for_each_entry(carveout, &rproc->carveouts, node) {
258 /* Compare carveout and requested names */
259 if (!strcmp(carveout->name, _name)) {
269 * rproc_check_carveout_da() - Check specified carveout da configuration
270 * @rproc: handle of a remote processor
271 * @mem: pointer on carveout to check
272 * @da: area device address
273 * @len: associated area size
275 * This function is a helper function to verify requested device area (couple
276 * da, len) is part of specified carveout.
277 * If da is not set (defined as FW_RSC_ADDR_ANY), only requested length is
280 * Return: 0 if carveout matches request else error
282 static int rproc_check_carveout_da(struct rproc *rproc,
283 struct rproc_mem_entry *mem, u32 da, u32 len)
285 struct device *dev = &rproc->dev;
288 /* Check requested resource length */
289 if (len > mem->len) {
290 dev_err(dev, "Registered carveout doesn't fit len request\n");
294 if (da != FW_RSC_ADDR_ANY && mem->da == FW_RSC_ADDR_ANY) {
295 /* Address doesn't match registered carveout configuration */
297 } else if (da != FW_RSC_ADDR_ANY && mem->da != FW_RSC_ADDR_ANY) {
298 delta = da - mem->da;
300 /* Check requested resource belongs to registered carveout */
303 "Registered carveout doesn't fit da request\n");
307 if (delta + len > mem->len) {
309 "Registered carveout doesn't fit len request\n");
317 int rproc_alloc_vring(struct rproc_vdev *rvdev, int i)
319 struct rproc *rproc = rvdev->rproc;
320 struct device *dev = &rproc->dev;
321 struct rproc_vring *rvring = &rvdev->vring[i];
322 struct fw_rsc_vdev *rsc;
323 int ret, size, notifyid;
324 struct rproc_mem_entry *mem;
326 /* actual size of vring (in bytes) */
327 size = PAGE_ALIGN(vring_size(rvring->len, rvring->align));
329 rsc = (void *)rproc->table_ptr + rvdev->rsc_offset;
331 /* Search for pre-registered carveout */
332 mem = rproc_find_carveout_by_name(rproc, "vdev%dvring%d", rvdev->index,
335 if (rproc_check_carveout_da(rproc, mem, rsc->vring[i].da, size))
338 /* Register carveout in in list */
339 mem = rproc_mem_entry_init(dev, 0, 0, size, rsc->vring[i].da,
340 rproc_alloc_carveout,
341 rproc_release_carveout,
345 dev_err(dev, "Can't allocate memory entry structure\n");
349 rproc_add_carveout(rproc, mem);
353 * Assign an rproc-wide unique index for this vring
354 * TODO: assign a notifyid for rvdev updates as well
355 * TODO: support predefined notifyids (via resource table)
357 ret = idr_alloc(&rproc->notifyids, rvring, 0, 0, GFP_KERNEL);
359 dev_err(dev, "idr_alloc failed: %d\n", ret);
364 /* Potentially bump max_notifyid */
365 if (notifyid > rproc->max_notifyid)
366 rproc->max_notifyid = notifyid;
368 rvring->notifyid = notifyid;
370 /* Let the rproc know the notifyid of this vring.*/
371 rsc->vring[i].notifyid = notifyid;
376 rproc_parse_vring(struct rproc_vdev *rvdev, struct fw_rsc_vdev *rsc, int i)
378 struct rproc *rproc = rvdev->rproc;
379 struct device *dev = &rproc->dev;
380 struct fw_rsc_vdev_vring *vring = &rsc->vring[i];
381 struct rproc_vring *rvring = &rvdev->vring[i];
383 dev_dbg(dev, "vdev rsc: vring%d: da 0x%x, qsz %d, align %d\n",
384 i, vring->da, vring->num, vring->align);
386 /* verify queue size and vring alignment are sane */
387 if (!vring->num || !vring->align) {
388 dev_err(dev, "invalid qsz (%d) or alignment (%d)\n",
389 vring->num, vring->align);
393 rvring->len = vring->num;
394 rvring->align = vring->align;
395 rvring->rvdev = rvdev;
400 void rproc_free_vring(struct rproc_vring *rvring)
402 struct rproc *rproc = rvring->rvdev->rproc;
403 int idx = rvring->rvdev->vring - rvring;
404 struct fw_rsc_vdev *rsc;
406 idr_remove(&rproc->notifyids, rvring->notifyid);
408 /* reset resource entry info */
409 rsc = (void *)rproc->table_ptr + rvring->rvdev->rsc_offset;
410 rsc->vring[idx].da = 0;
411 rsc->vring[idx].notifyid = -1;
414 static int rproc_vdev_do_start(struct rproc_subdev *subdev)
416 struct rproc_vdev *rvdev = container_of(subdev, struct rproc_vdev, subdev);
418 return rproc_add_virtio_dev(rvdev, rvdev->id);
421 static void rproc_vdev_do_stop(struct rproc_subdev *subdev, bool crashed)
423 struct rproc_vdev *rvdev = container_of(subdev, struct rproc_vdev, subdev);
426 ret = device_for_each_child(&rvdev->dev, NULL, rproc_remove_virtio_dev);
428 dev_warn(&rvdev->dev, "can't remove vdev child device: %d\n", ret);
432 * rproc_rvdev_release() - release the existence of a rvdev
434 * @dev: the subdevice's dev
436 static void rproc_rvdev_release(struct device *dev)
438 struct rproc_vdev *rvdev = container_of(dev, struct rproc_vdev, dev);
440 of_reserved_mem_device_release(dev);
446 * rproc_handle_vdev() - handle a vdev fw resource
447 * @rproc: the remote processor
448 * @rsc: the vring resource descriptor
449 * @avail: size of available data (for sanity checking the image)
451 * This resource entry requests the host to statically register a virtio
452 * device (vdev), and setup everything needed to support it. It contains
453 * everything needed to make it possible: the virtio device id, virtio
454 * device features, vrings information, virtio config space, etc...
456 * Before registering the vdev, the vrings are allocated from non-cacheable
457 * physically contiguous memory. Currently we only support two vrings per
458 * remote processor (temporary limitation). We might also want to consider
459 * doing the vring allocation only later when ->find_vqs() is invoked, and
460 * then release them upon ->del_vqs().
462 * Note: @da is currently not really handled correctly: we dynamically
463 * allocate it using the DMA API, ignoring requested hard coded addresses,
464 * and we don't take care of any required IOMMU programming. This is all
465 * going to be taken care of when the generic iommu-based DMA API will be
466 * merged. Meanwhile, statically-addressed iommu-based firmware images should
467 * use RSC_DEVMEM resource entries to map their required @da to the physical
468 * address of their base CMA region (ouch, hacky!).
470 * Returns 0 on success, or an appropriate error code otherwise
472 static int rproc_handle_vdev(struct rproc *rproc, struct fw_rsc_vdev *rsc,
473 int offset, int avail)
475 struct device *dev = &rproc->dev;
476 struct rproc_vdev *rvdev;
480 /* make sure resource isn't truncated */
481 if (sizeof(*rsc) + rsc->num_of_vrings * sizeof(struct fw_rsc_vdev_vring)
482 + rsc->config_len > avail) {
483 dev_err(dev, "vdev rsc is truncated\n");
487 /* make sure reserved bytes are zeroes */
488 if (rsc->reserved[0] || rsc->reserved[1]) {
489 dev_err(dev, "vdev rsc has non zero reserved bytes\n");
493 dev_dbg(dev, "vdev rsc: id %d, dfeatures 0x%x, cfg len %d, %d vrings\n",
494 rsc->id, rsc->dfeatures, rsc->config_len, rsc->num_of_vrings);
496 /* we currently support only two vrings per rvdev */
497 if (rsc->num_of_vrings > ARRAY_SIZE(rvdev->vring)) {
498 dev_err(dev, "too many vrings: %d\n", rsc->num_of_vrings);
502 rvdev = kzalloc(sizeof(*rvdev), GFP_KERNEL);
506 kref_init(&rvdev->refcount);
509 rvdev->rproc = rproc;
510 rvdev->index = rproc->nb_vdev++;
512 /* Initialise vdev subdevice */
513 snprintf(name, sizeof(name), "vdev%dbuffer", rvdev->index);
514 rvdev->dev.parent = rproc->dev.parent;
515 rvdev->dev.dma_pfn_offset = rproc->dev.parent->dma_pfn_offset;
516 rvdev->dev.release = rproc_rvdev_release;
517 dev_set_name(&rvdev->dev, "%s#%s", dev_name(rvdev->dev.parent), name);
518 dev_set_drvdata(&rvdev->dev, rvdev);
520 ret = device_register(&rvdev->dev);
522 put_device(&rvdev->dev);
525 /* Make device dma capable by inheriting from parent's capabilities */
526 set_dma_ops(&rvdev->dev, get_dma_ops(rproc->dev.parent));
528 ret = dma_coerce_mask_and_coherent(&rvdev->dev,
529 dma_get_mask(rproc->dev.parent));
532 "Failed to set DMA mask %llx. Trying to continue... %x\n",
533 dma_get_mask(rproc->dev.parent), ret);
536 /* parse the vrings */
537 for (i = 0; i < rsc->num_of_vrings; i++) {
538 ret = rproc_parse_vring(rvdev, rsc, i);
543 /* remember the resource offset*/
544 rvdev->rsc_offset = offset;
546 /* allocate the vring resources */
547 for (i = 0; i < rsc->num_of_vrings; i++) {
548 ret = rproc_alloc_vring(rvdev, i);
550 goto unwind_vring_allocations;
553 list_add_tail(&rvdev->node, &rproc->rvdevs);
555 rvdev->subdev.start = rproc_vdev_do_start;
556 rvdev->subdev.stop = rproc_vdev_do_stop;
558 rproc_add_subdev(rproc, &rvdev->subdev);
562 unwind_vring_allocations:
563 for (i--; i >= 0; i--)
564 rproc_free_vring(&rvdev->vring[i]);
566 device_unregister(&rvdev->dev);
570 void rproc_vdev_release(struct kref *ref)
572 struct rproc_vdev *rvdev = container_of(ref, struct rproc_vdev, refcount);
573 struct rproc_vring *rvring;
574 struct rproc *rproc = rvdev->rproc;
577 for (id = 0; id < ARRAY_SIZE(rvdev->vring); id++) {
578 rvring = &rvdev->vring[id];
579 rproc_free_vring(rvring);
582 rproc_remove_subdev(rproc, &rvdev->subdev);
583 list_del(&rvdev->node);
584 device_unregister(&rvdev->dev);
588 * rproc_handle_trace() - handle a shared trace buffer resource
589 * @rproc: the remote processor
590 * @rsc: the trace resource descriptor
591 * @avail: size of available data (for sanity checking the image)
593 * In case the remote processor dumps trace logs into memory,
594 * export it via debugfs.
596 * Currently, the 'da' member of @rsc should contain the device address
597 * where the remote processor is dumping the traces. Later we could also
598 * support dynamically allocating this address using the generic
599 * DMA API (but currently there isn't a use case for that).
601 * Returns 0 on success, or an appropriate error code otherwise
603 static int rproc_handle_trace(struct rproc *rproc, struct fw_rsc_trace *rsc,
604 int offset, int avail)
606 struct rproc_debug_trace *trace;
607 struct device *dev = &rproc->dev;
610 if (sizeof(*rsc) > avail) {
611 dev_err(dev, "trace rsc is truncated\n");
615 /* make sure reserved bytes are zeroes */
617 dev_err(dev, "trace rsc has non zero reserved bytes\n");
621 trace = kzalloc(sizeof(*trace), GFP_KERNEL);
625 /* set the trace buffer dma properties */
626 trace->trace_mem.len = rsc->len;
627 trace->trace_mem.da = rsc->da;
629 /* set pointer on rproc device */
630 trace->rproc = rproc;
632 /* make sure snprintf always null terminates, even if truncating */
633 snprintf(name, sizeof(name), "trace%d", rproc->num_traces);
635 /* create the debugfs entry */
636 trace->tfile = rproc_create_trace_file(name, rproc, trace);
642 list_add_tail(&trace->node, &rproc->traces);
646 dev_dbg(dev, "%s added: da 0x%x, len 0x%x\n",
647 name, rsc->da, rsc->len);
653 * rproc_handle_devmem() - handle devmem resource entry
654 * @rproc: remote processor handle
655 * @rsc: the devmem resource entry
656 * @avail: size of available data (for sanity checking the image)
658 * Remote processors commonly need to access certain on-chip peripherals.
660 * Some of these remote processors access memory via an iommu device,
661 * and might require us to configure their iommu before they can access
662 * the on-chip peripherals they need.
664 * This resource entry is a request to map such a peripheral device.
666 * These devmem entries will contain the physical address of the device in
667 * the 'pa' member. If a specific device address is expected, then 'da' will
668 * contain it (currently this is the only use case supported). 'len' will
669 * contain the size of the physical region we need to map.
671 * Currently we just "trust" those devmem entries to contain valid physical
672 * addresses, but this is going to change: we want the implementations to
673 * tell us ranges of physical addresses the firmware is allowed to request,
674 * and not allow firmwares to request access to physical addresses that
675 * are outside those ranges.
677 static int rproc_handle_devmem(struct rproc *rproc, struct fw_rsc_devmem *rsc,
678 int offset, int avail)
680 struct rproc_mem_entry *mapping;
681 struct device *dev = &rproc->dev;
684 /* no point in handling this resource without a valid iommu domain */
688 if (sizeof(*rsc) > avail) {
689 dev_err(dev, "devmem rsc is truncated\n");
693 /* make sure reserved bytes are zeroes */
695 dev_err(dev, "devmem rsc has non zero reserved bytes\n");
699 mapping = kzalloc(sizeof(*mapping), GFP_KERNEL);
703 ret = iommu_map(rproc->domain, rsc->da, rsc->pa, rsc->len, rsc->flags);
705 dev_err(dev, "failed to map devmem: %d\n", ret);
710 * We'll need this info later when we'll want to unmap everything
711 * (e.g. on shutdown).
713 * We can't trust the remote processor not to change the resource
714 * table, so we must maintain this info independently.
716 mapping->da = rsc->da;
717 mapping->len = rsc->len;
718 list_add_tail(&mapping->node, &rproc->mappings);
720 dev_dbg(dev, "mapped devmem pa 0x%x, da 0x%x, len 0x%x\n",
721 rsc->pa, rsc->da, rsc->len);
731 * rproc_alloc_carveout() - allocated specified carveout
732 * @rproc: rproc handle
733 * @mem: the memory entry to allocate
735 * This function allocate specified memory entry @mem using
736 * dma_alloc_coherent() as default allocator
738 static int rproc_alloc_carveout(struct rproc *rproc,
739 struct rproc_mem_entry *mem)
741 struct rproc_mem_entry *mapping = NULL;
742 struct device *dev = &rproc->dev;
747 va = dma_alloc_coherent(dev->parent, mem->len, &dma, GFP_KERNEL);
750 "failed to allocate dma memory: len 0x%x\n", mem->len);
754 dev_dbg(dev, "carveout va %pK, dma %pad, len 0x%x\n",
757 if (mem->da != FW_RSC_ADDR_ANY && !rproc->domain) {
759 * Check requested da is equal to dma address
760 * and print a warn message in case of missalignment.
761 * Don't stop rproc_start sequence as coprocessor may
762 * build pa to da translation on its side.
764 if (mem->da != (u32)dma)
765 dev_warn(dev->parent,
766 "Allocated carveout doesn't fit device address request\n");
770 * Ok, this is non-standard.
772 * Sometimes we can't rely on the generic iommu-based DMA API
773 * to dynamically allocate the device address and then set the IOMMU
774 * tables accordingly, because some remote processors might
775 * _require_ us to use hard coded device addresses that their
776 * firmware was compiled with.
778 * In this case, we must use the IOMMU API directly and map
779 * the memory to the device address as expected by the remote
782 * Obviously such remote processor devices should not be configured
783 * to use the iommu-based DMA API: we expect 'dma' to contain the
784 * physical address in this case.
786 if (mem->da != FW_RSC_ADDR_ANY && rproc->domain) {
787 mapping = kzalloc(sizeof(*mapping), GFP_KERNEL);
793 ret = iommu_map(rproc->domain, mem->da, dma, mem->len,
796 dev_err(dev, "iommu_map failed: %d\n", ret);
801 * We'll need this info later when we'll want to unmap
802 * everything (e.g. on shutdown).
804 * We can't trust the remote processor not to change the
805 * resource table, so we must maintain this info independently.
807 mapping->da = mem->da;
808 mapping->len = mem->len;
809 list_add_tail(&mapping->node, &rproc->mappings);
811 dev_dbg(dev, "carveout mapped 0x%x to %pad\n",
815 if (mem->da == FW_RSC_ADDR_ANY) {
816 /* Update device address as undefined by requester */
817 if ((u64)dma & HIGH_BITS_MASK)
818 dev_warn(dev, "DMA address cast in 32bit to fit resource table format\n");
831 dma_free_coherent(dev->parent, mem->len, va, dma);
836 * rproc_release_carveout() - release acquired carveout
837 * @rproc: rproc handle
838 * @mem: the memory entry to release
840 * This function releases specified memory entry @mem allocated via
841 * rproc_alloc_carveout() function by @rproc.
843 static int rproc_release_carveout(struct rproc *rproc,
844 struct rproc_mem_entry *mem)
846 struct device *dev = &rproc->dev;
848 /* clean up carveout allocations */
849 dma_free_coherent(dev->parent, mem->len, mem->va, mem->dma);
854 * rproc_handle_carveout() - handle phys contig memory allocation requests
855 * @rproc: rproc handle
856 * @rsc: the resource entry
857 * @avail: size of available data (for image validation)
859 * This function will handle firmware requests for allocation of physically
860 * contiguous memory regions.
862 * These request entries should come first in the firmware's resource table,
863 * as other firmware entries might request placing other data objects inside
864 * these memory regions (e.g. data/code segments, trace resource entries, ...).
866 * Allocating memory this way helps utilizing the reserved physical memory
867 * (e.g. CMA) more efficiently, and also minimizes the number of TLB entries
868 * needed to map it (in case @rproc is using an IOMMU). Reducing the TLB
869 * pressure is important; it may have a substantial impact on performance.
871 static int rproc_handle_carveout(struct rproc *rproc,
872 struct fw_rsc_carveout *rsc,
873 int offset, int avail)
875 struct rproc_mem_entry *carveout;
876 struct device *dev = &rproc->dev;
878 if (sizeof(*rsc) > avail) {
879 dev_err(dev, "carveout rsc is truncated\n");
883 /* make sure reserved bytes are zeroes */
885 dev_err(dev, "carveout rsc has non zero reserved bytes\n");
889 dev_dbg(dev, "carveout rsc: name: %s, da 0x%x, pa 0x%x, len 0x%x, flags 0x%x\n",
890 rsc->name, rsc->da, rsc->pa, rsc->len, rsc->flags);
893 * Check carveout rsc already part of a registered carveout,
894 * Search by name, then check the da and length
896 carveout = rproc_find_carveout_by_name(rproc, rsc->name);
899 if (carveout->rsc_offset != FW_RSC_ADDR_ANY) {
901 "Carveout already associated to resource table\n");
905 if (rproc_check_carveout_da(rproc, carveout, rsc->da, rsc->len))
908 /* Update memory carveout with resource table info */
909 carveout->rsc_offset = offset;
910 carveout->flags = rsc->flags;
915 /* Register carveout in in list */
916 carveout = rproc_mem_entry_init(dev, 0, 0, rsc->len, rsc->da,
917 rproc_alloc_carveout,
918 rproc_release_carveout, rsc->name);
920 dev_err(dev, "Can't allocate memory entry structure\n");
924 carveout->flags = rsc->flags;
925 carveout->rsc_offset = offset;
926 rproc_add_carveout(rproc, carveout);
932 * rproc_add_carveout() - register an allocated carveout region
933 * @rproc: rproc handle
934 * @mem: memory entry to register
936 * This function registers specified memory entry in @rproc carveouts list.
937 * Specified carveout should have been allocated before registering.
939 void rproc_add_carveout(struct rproc *rproc, struct rproc_mem_entry *mem)
941 list_add_tail(&mem->node, &rproc->carveouts);
943 EXPORT_SYMBOL(rproc_add_carveout);
946 * rproc_mem_entry_init() - allocate and initialize rproc_mem_entry struct
947 * @dev: pointer on device struct
948 * @va: virtual address
950 * @len: memory carveout length
951 * @da: device address
952 * @alloc: memory carveout allocation function
953 * @release: memory carveout release function
954 * @name: carveout name
956 * This function allocates a rproc_mem_entry struct and fill it with parameters
957 * provided by client.
959 struct rproc_mem_entry *
960 rproc_mem_entry_init(struct device *dev,
961 void *va, dma_addr_t dma, int len, u32 da,
962 int (*alloc)(struct rproc *, struct rproc_mem_entry *),
963 int (*release)(struct rproc *, struct rproc_mem_entry *),
964 const char *name, ...)
966 struct rproc_mem_entry *mem;
969 mem = kzalloc(sizeof(*mem), GFP_KERNEL);
978 mem->release = release;
979 mem->rsc_offset = FW_RSC_ADDR_ANY;
980 mem->of_resm_idx = -1;
982 va_start(args, name);
983 vsnprintf(mem->name, sizeof(mem->name), name, args);
988 EXPORT_SYMBOL(rproc_mem_entry_init);
991 * rproc_of_resm_mem_entry_init() - allocate and initialize rproc_mem_entry struct
992 * from a reserved memory phandle
993 * @dev: pointer on device struct
994 * @of_resm_idx: reserved memory phandle index in "memory-region"
995 * @len: memory carveout length
996 * @da: device address
997 * @name: carveout name
999 * This function allocates a rproc_mem_entry struct and fill it with parameters
1000 * provided by client.
1002 struct rproc_mem_entry *
1003 rproc_of_resm_mem_entry_init(struct device *dev, u32 of_resm_idx, int len,
1004 u32 da, const char *name, ...)
1006 struct rproc_mem_entry *mem;
1009 mem = kzalloc(sizeof(*mem), GFP_KERNEL);
1015 mem->rsc_offset = FW_RSC_ADDR_ANY;
1016 mem->of_resm_idx = of_resm_idx;
1018 va_start(args, name);
1019 vsnprintf(mem->name, sizeof(mem->name), name, args);
1024 EXPORT_SYMBOL(rproc_of_resm_mem_entry_init);
1027 * A lookup table for resource handlers. The indices are defined in
1028 * enum fw_resource_type.
1030 static rproc_handle_resource_t rproc_loading_handlers[RSC_LAST] = {
1031 [RSC_CARVEOUT] = (rproc_handle_resource_t)rproc_handle_carveout,
1032 [RSC_DEVMEM] = (rproc_handle_resource_t)rproc_handle_devmem,
1033 [RSC_TRACE] = (rproc_handle_resource_t)rproc_handle_trace,
1034 [RSC_VDEV] = (rproc_handle_resource_t)rproc_handle_vdev,
1037 /* handle firmware resource entries before booting the remote processor */
1038 static int rproc_handle_resources(struct rproc *rproc,
1039 rproc_handle_resource_t handlers[RSC_LAST])
1041 struct device *dev = &rproc->dev;
1042 rproc_handle_resource_t handler;
1045 if (!rproc->table_ptr)
1048 for (i = 0; i < rproc->table_ptr->num; i++) {
1049 int offset = rproc->table_ptr->offset[i];
1050 struct fw_rsc_hdr *hdr = (void *)rproc->table_ptr + offset;
1051 int avail = rproc->table_sz - offset - sizeof(*hdr);
1052 void *rsc = (void *)hdr + sizeof(*hdr);
1054 /* make sure table isn't truncated */
1056 dev_err(dev, "rsc table is truncated\n");
1060 dev_dbg(dev, "rsc: type %d\n", hdr->type);
1062 if (hdr->type >= RSC_VENDOR_START &&
1063 hdr->type <= RSC_VENDOR_END) {
1064 ret = rproc_handle_rsc(rproc, hdr->type, rsc,
1065 offset + sizeof(*hdr), avail);
1066 if (ret == RSC_HANDLED)
1071 dev_warn(dev, "unsupported vendor resource %d\n",
1076 if (hdr->type >= RSC_LAST) {
1077 dev_warn(dev, "unsupported resource %d\n", hdr->type);
1081 handler = handlers[hdr->type];
1085 ret = handler(rproc, rsc, offset + sizeof(*hdr), avail);
1093 static int rproc_prepare_subdevices(struct rproc *rproc)
1095 struct rproc_subdev *subdev;
1098 list_for_each_entry(subdev, &rproc->subdevs, node) {
1099 if (subdev->prepare) {
1100 ret = subdev->prepare(subdev);
1102 goto unroll_preparation;
1109 list_for_each_entry_continue_reverse(subdev, &rproc->subdevs, node) {
1110 if (subdev->unprepare)
1111 subdev->unprepare(subdev);
1117 static int rproc_start_subdevices(struct rproc *rproc)
1119 struct rproc_subdev *subdev;
1122 list_for_each_entry(subdev, &rproc->subdevs, node) {
1123 if (subdev->start) {
1124 ret = subdev->start(subdev);
1126 goto unroll_registration;
1132 unroll_registration:
1133 list_for_each_entry_continue_reverse(subdev, &rproc->subdevs, node) {
1135 subdev->stop(subdev, true);
1141 static void rproc_stop_subdevices(struct rproc *rproc, bool crashed)
1143 struct rproc_subdev *subdev;
1145 list_for_each_entry_reverse(subdev, &rproc->subdevs, node) {
1147 subdev->stop(subdev, crashed);
1151 static void rproc_unprepare_subdevices(struct rproc *rproc)
1153 struct rproc_subdev *subdev;
1155 list_for_each_entry_reverse(subdev, &rproc->subdevs, node) {
1156 if (subdev->unprepare)
1157 subdev->unprepare(subdev);
1162 * rproc_alloc_registered_carveouts() - allocate all carveouts registered
1164 * @rproc: the remote processor handle
1166 * This function parses registered carveout list, performs allocation
1167 * if alloc() ops registered and updates resource table information
1168 * if rsc_offset set.
1170 * Return: 0 on success
1172 static int rproc_alloc_registered_carveouts(struct rproc *rproc)
1174 struct rproc_mem_entry *entry, *tmp;
1175 struct fw_rsc_carveout *rsc;
1176 struct device *dev = &rproc->dev;
1180 list_for_each_entry_safe(entry, tmp, &rproc->carveouts, node) {
1182 ret = entry->alloc(rproc, entry);
1184 dev_err(dev, "Unable to allocate carveout %s: %d\n",
1190 if (entry->rsc_offset != FW_RSC_ADDR_ANY) {
1191 /* update resource table */
1192 rsc = (void *)rproc->table_ptr + entry->rsc_offset;
1195 * Some remote processors might need to know the pa
1196 * even though they are behind an IOMMU. E.g., OMAP4's
1197 * remote M3 processor needs this so it can control
1198 * on-chip hardware accelerators that are not behind
1199 * the IOMMU, and therefor must know the pa.
1201 * Generally we don't want to expose physical addresses
1202 * if we don't have to (remote processors are generally
1203 * _not_ trusted), so we might want to do this only for
1204 * remote processor that _must_ have this (e.g. OMAP4's
1205 * dual M3 subsystem).
1207 * Non-IOMMU processors might also want to have this info.
1208 * In this case, the device address and the physical address
1212 /* Use va if defined else dma to generate pa */
1214 pa = (u64)rproc_va_to_pa(entry->va);
1216 pa = (u64)entry->dma;
1218 if (((u64)pa) & HIGH_BITS_MASK)
1220 "Physical address cast in 32bit to fit resource table format\n");
1223 rsc->da = entry->da;
1224 rsc->len = entry->len;
1232 * rproc_coredump_cleanup() - clean up dump_segments list
1233 * @rproc: the remote processor handle
1235 static void rproc_coredump_cleanup(struct rproc *rproc)
1237 struct rproc_dump_segment *entry, *tmp;
1239 list_for_each_entry_safe(entry, tmp, &rproc->dump_segments, node) {
1240 list_del(&entry->node);
1246 * rproc_resource_cleanup() - clean up and free all acquired resources
1247 * @rproc: rproc handle
1249 * This function will free all resources acquired for @rproc, and it
1250 * is called whenever @rproc either shuts down or fails to boot.
1252 static void rproc_resource_cleanup(struct rproc *rproc)
1254 struct rproc_mem_entry *entry, *tmp;
1255 struct rproc_debug_trace *trace, *ttmp;
1256 struct rproc_vdev *rvdev, *rvtmp;
1257 struct device *dev = &rproc->dev;
1259 /* clean up debugfs trace entries */
1260 list_for_each_entry_safe(trace, ttmp, &rproc->traces, node) {
1261 rproc_remove_trace_file(trace->tfile);
1262 rproc->num_traces--;
1263 list_del(&trace->node);
1267 /* clean up iommu mapping entries */
1268 list_for_each_entry_safe(entry, tmp, &rproc->mappings, node) {
1271 unmapped = iommu_unmap(rproc->domain, entry->da, entry->len);
1272 if (unmapped != entry->len) {
1273 /* nothing much to do besides complaining */
1274 dev_err(dev, "failed to unmap %u/%zu\n", entry->len,
1278 list_del(&entry->node);
1282 /* clean up carveout allocations */
1283 list_for_each_entry_safe(entry, tmp, &rproc->carveouts, node) {
1285 entry->release(rproc, entry);
1286 list_del(&entry->node);
1290 /* clean up remote vdev entries */
1291 list_for_each_entry_safe(rvdev, rvtmp, &rproc->rvdevs, node)
1292 kref_put(&rvdev->refcount, rproc_vdev_release);
1294 rproc_coredump_cleanup(rproc);
1297 static int rproc_start(struct rproc *rproc, const struct firmware *fw)
1299 struct resource_table *loaded_table;
1300 struct device *dev = &rproc->dev;
1303 /* load the ELF segments to memory */
1304 ret = rproc_load_segments(rproc, fw);
1306 dev_err(dev, "Failed to load program segments: %d\n", ret);
1311 * The starting device has been given the rproc->cached_table as the
1312 * resource table. The address of the vring along with the other
1313 * allocated resources (carveouts etc) is stored in cached_table.
1314 * In order to pass this information to the remote device we must copy
1315 * this information to device memory. We also update the table_ptr so
1316 * that any subsequent changes will be applied to the loaded version.
1318 loaded_table = rproc_find_loaded_rsc_table(rproc, fw);
1320 memcpy(loaded_table, rproc->cached_table, rproc->table_sz);
1321 rproc->table_ptr = loaded_table;
1324 ret = rproc_prepare_subdevices(rproc);
1326 dev_err(dev, "failed to prepare subdevices for %s: %d\n",
1328 goto reset_table_ptr;
1331 /* power up the remote processor */
1332 ret = rproc->ops->start(rproc);
1334 dev_err(dev, "can't start rproc %s: %d\n", rproc->name, ret);
1335 goto unprepare_subdevices;
1338 /* Start any subdevices for the remote processor */
1339 ret = rproc_start_subdevices(rproc);
1341 dev_err(dev, "failed to probe subdevices for %s: %d\n",
1346 rproc->state = RPROC_RUNNING;
1348 dev_info(dev, "remote processor %s is now up\n", rproc->name);
1353 rproc->ops->stop(rproc);
1354 unprepare_subdevices:
1355 rproc_unprepare_subdevices(rproc);
1357 rproc->table_ptr = rproc->cached_table;
1363 * take a firmware and boot a remote processor with it.
1365 static int rproc_fw_boot(struct rproc *rproc, const struct firmware *fw)
1367 struct device *dev = &rproc->dev;
1368 const char *name = rproc->firmware;
1371 ret = rproc_fw_sanity_check(rproc, fw);
1375 dev_info(dev, "Booting fw image %s, size %zd\n", name, fw->size);
1378 * if enabling an IOMMU isn't relevant for this rproc, this is
1381 ret = rproc_enable_iommu(rproc);
1383 dev_err(dev, "can't enable iommu: %d\n", ret);
1387 rproc->bootaddr = rproc_get_boot_addr(rproc, fw);
1389 /* Load resource table, core dump segment list etc from the firmware */
1390 ret = rproc_parse_fw(rproc, fw);
1394 /* reset max_notifyid */
1395 rproc->max_notifyid = -1;
1397 /* reset handled vdev */
1400 /* handle fw resources which are required to boot rproc */
1401 ret = rproc_handle_resources(rproc, rproc_loading_handlers);
1403 dev_err(dev, "Failed to process resources: %d\n", ret);
1404 goto clean_up_resources;
1407 /* Allocate carveout resources associated to rproc */
1408 ret = rproc_alloc_registered_carveouts(rproc);
1410 dev_err(dev, "Failed to allocate associated carveouts: %d\n",
1412 goto clean_up_resources;
1415 ret = rproc_start(rproc, fw);
1417 goto clean_up_resources;
1422 rproc_resource_cleanup(rproc);
1423 kfree(rproc->cached_table);
1424 rproc->cached_table = NULL;
1425 rproc->table_ptr = NULL;
1427 rproc_disable_iommu(rproc);
1432 * take a firmware and boot it up.
1434 * Note: this function is called asynchronously upon registration of the
1435 * remote processor (so we must wait until it completes before we try
1436 * to unregister the device. one other option is just to use kref here,
1437 * that might be cleaner).
1439 static void rproc_auto_boot_callback(const struct firmware *fw, void *context)
1441 struct rproc *rproc = context;
1445 release_firmware(fw);
1448 static int rproc_trigger_auto_boot(struct rproc *rproc)
1453 * We're initiating an asynchronous firmware loading, so we can
1454 * be built-in kernel code, without hanging the boot process.
1456 ret = request_firmware_nowait(THIS_MODULE, FW_ACTION_HOTPLUG,
1457 rproc->firmware, &rproc->dev, GFP_KERNEL,
1458 rproc, rproc_auto_boot_callback);
1460 dev_err(&rproc->dev, "request_firmware_nowait err: %d\n", ret);
1465 static int rproc_stop(struct rproc *rproc, bool crashed)
1467 struct device *dev = &rproc->dev;
1470 /* Stop any subdevices for the remote processor */
1471 rproc_stop_subdevices(rproc, crashed);
1473 /* the installed resource table is no longer accessible */
1474 rproc->table_ptr = rproc->cached_table;
1476 /* power off the remote processor */
1477 ret = rproc->ops->stop(rproc);
1479 dev_err(dev, "can't stop rproc: %d\n", ret);
1483 rproc_unprepare_subdevices(rproc);
1485 rproc->state = RPROC_OFFLINE;
1487 dev_info(dev, "stopped remote processor %s\n", rproc->name);
1493 * rproc_coredump_add_segment() - add segment of device memory to coredump
1494 * @rproc: handle of a remote processor
1495 * @da: device address
1496 * @size: size of segment
1498 * Add device memory to the list of segments to be included in a coredump for
1501 * Return: 0 on success, negative errno on error.
1503 int rproc_coredump_add_segment(struct rproc *rproc, dma_addr_t da, size_t size)
1505 struct rproc_dump_segment *segment;
1507 segment = kzalloc(sizeof(*segment), GFP_KERNEL);
1512 segment->size = size;
1514 list_add_tail(&segment->node, &rproc->dump_segments);
1518 EXPORT_SYMBOL(rproc_coredump_add_segment);
1521 * rproc_coredump_add_custom_segment() - add custom coredump segment
1522 * @rproc: handle of a remote processor
1523 * @da: device address
1524 * @size: size of segment
1525 * @dumpfn: custom dump function called for each segment during coredump
1526 * @priv: private data
1528 * Add device memory to the list of segments to be included in the coredump
1529 * and associate the segment with the given custom dump function and private
1532 * Return: 0 on success, negative errno on error.
1534 int rproc_coredump_add_custom_segment(struct rproc *rproc,
1535 dma_addr_t da, size_t size,
1536 void (*dumpfn)(struct rproc *rproc,
1537 struct rproc_dump_segment *segment,
1541 struct rproc_dump_segment *segment;
1543 segment = kzalloc(sizeof(*segment), GFP_KERNEL);
1548 segment->size = size;
1549 segment->priv = priv;
1550 segment->dump = dumpfn;
1552 list_add_tail(&segment->node, &rproc->dump_segments);
1556 EXPORT_SYMBOL(rproc_coredump_add_custom_segment);
1559 * rproc_coredump() - perform coredump
1560 * @rproc: rproc handle
1562 * This function will generate an ELF header for the registered segments
1563 * and create a devcoredump device associated with rproc.
1565 static void rproc_coredump(struct rproc *rproc)
1567 struct rproc_dump_segment *segment;
1568 struct elf32_phdr *phdr;
1569 struct elf32_hdr *ehdr;
1576 if (list_empty(&rproc->dump_segments))
1579 data_size = sizeof(*ehdr);
1580 list_for_each_entry(segment, &rproc->dump_segments, node) {
1581 data_size += sizeof(*phdr) + segment->size;
1586 data = vmalloc(data_size);
1592 memset(ehdr, 0, sizeof(*ehdr));
1593 memcpy(ehdr->e_ident, ELFMAG, SELFMAG);
1594 ehdr->e_ident[EI_CLASS] = ELFCLASS32;
1595 ehdr->e_ident[EI_DATA] = ELFDATA2LSB;
1596 ehdr->e_ident[EI_VERSION] = EV_CURRENT;
1597 ehdr->e_ident[EI_OSABI] = ELFOSABI_NONE;
1598 ehdr->e_type = ET_CORE;
1599 ehdr->e_machine = EM_NONE;
1600 ehdr->e_version = EV_CURRENT;
1601 ehdr->e_entry = rproc->bootaddr;
1602 ehdr->e_phoff = sizeof(*ehdr);
1603 ehdr->e_ehsize = sizeof(*ehdr);
1604 ehdr->e_phentsize = sizeof(*phdr);
1605 ehdr->e_phnum = phnum;
1607 phdr = data + ehdr->e_phoff;
1608 offset = ehdr->e_phoff + sizeof(*phdr) * ehdr->e_phnum;
1609 list_for_each_entry(segment, &rproc->dump_segments, node) {
1610 memset(phdr, 0, sizeof(*phdr));
1611 phdr->p_type = PT_LOAD;
1612 phdr->p_offset = offset;
1613 phdr->p_vaddr = segment->da;
1614 phdr->p_paddr = segment->da;
1615 phdr->p_filesz = segment->size;
1616 phdr->p_memsz = segment->size;
1617 phdr->p_flags = PF_R | PF_W | PF_X;
1620 if (segment->dump) {
1621 segment->dump(rproc, segment, data + offset);
1623 ptr = rproc_da_to_va(rproc, segment->da, segment->size);
1625 dev_err(&rproc->dev,
1626 "invalid coredump segment (%pad, %zu)\n",
1627 &segment->da, segment->size);
1628 memset(data + offset, 0xff, segment->size);
1630 memcpy(data + offset, ptr, segment->size);
1634 offset += phdr->p_filesz;
1638 dev_coredumpv(&rproc->dev, data, data_size, GFP_KERNEL);
1642 * rproc_trigger_recovery() - recover a remoteproc
1643 * @rproc: the remote processor
1645 * The recovery is done by resetting all the virtio devices, that way all the
1646 * rpmsg drivers will be reseted along with the remote processor making the
1647 * remoteproc functional again.
1649 * This function can sleep, so it cannot be called from atomic context.
1651 int rproc_trigger_recovery(struct rproc *rproc)
1653 const struct firmware *firmware_p;
1654 struct device *dev = &rproc->dev;
1657 dev_err(dev, "recovering %s\n", rproc->name);
1659 ret = mutex_lock_interruptible(&rproc->lock);
1663 ret = rproc_stop(rproc, true);
1667 /* generate coredump */
1668 rproc_coredump(rproc);
1671 ret = request_firmware(&firmware_p, rproc->firmware, dev);
1673 dev_err(dev, "request_firmware failed: %d\n", ret);
1677 /* boot the remote processor up again */
1678 ret = rproc_start(rproc, firmware_p);
1680 release_firmware(firmware_p);
1683 mutex_unlock(&rproc->lock);
1688 * rproc_crash_handler_work() - handle a crash
1690 * This function needs to handle everything related to a crash, like cpu
1691 * registers and stack dump, information to help to debug the fatal error, etc.
1693 static void rproc_crash_handler_work(struct work_struct *work)
1695 struct rproc *rproc = container_of(work, struct rproc, crash_handler);
1696 struct device *dev = &rproc->dev;
1698 dev_dbg(dev, "enter %s\n", __func__);
1700 mutex_lock(&rproc->lock);
1702 if (rproc->state == RPROC_CRASHED || rproc->state == RPROC_OFFLINE) {
1703 /* handle only the first crash detected */
1704 mutex_unlock(&rproc->lock);
1708 rproc->state = RPROC_CRASHED;
1709 dev_err(dev, "handling crash #%u in %s\n", ++rproc->crash_cnt,
1712 mutex_unlock(&rproc->lock);
1714 if (!rproc->recovery_disabled)
1715 rproc_trigger_recovery(rproc);
1719 * rproc_boot() - boot a remote processor
1720 * @rproc: handle of a remote processor
1722 * Boot a remote processor (i.e. load its firmware, power it on, ...).
1724 * If the remote processor is already powered on, this function immediately
1725 * returns (successfully).
1727 * Returns 0 on success, and an appropriate error value otherwise.
1729 int rproc_boot(struct rproc *rproc)
1731 const struct firmware *firmware_p;
1736 pr_err("invalid rproc handle\n");
1742 ret = mutex_lock_interruptible(&rproc->lock);
1744 dev_err(dev, "can't lock rproc %s: %d\n", rproc->name, ret);
1748 if (rproc->state == RPROC_DELETED) {
1750 dev_err(dev, "can't boot deleted rproc %s\n", rproc->name);
1754 /* skip the boot process if rproc is already powered up */
1755 if (atomic_inc_return(&rproc->power) > 1) {
1760 dev_info(dev, "powering up %s\n", rproc->name);
1763 ret = request_firmware(&firmware_p, rproc->firmware, dev);
1765 dev_err(dev, "request_firmware failed: %d\n", ret);
1769 ret = rproc_fw_boot(rproc, firmware_p);
1771 release_firmware(firmware_p);
1775 atomic_dec(&rproc->power);
1777 mutex_unlock(&rproc->lock);
1780 EXPORT_SYMBOL(rproc_boot);
1783 * rproc_shutdown() - power off the remote processor
1784 * @rproc: the remote processor
1786 * Power off a remote processor (previously booted with rproc_boot()).
1788 * In case @rproc is still being used by an additional user(s), then
1789 * this function will just decrement the power refcount and exit,
1790 * without really powering off the device.
1792 * Every call to rproc_boot() must (eventually) be accompanied by a call
1793 * to rproc_shutdown(). Calling rproc_shutdown() redundantly is a bug.
1796 * - we're not decrementing the rproc's refcount, only the power refcount.
1797 * which means that the @rproc handle stays valid even after rproc_shutdown()
1798 * returns, and users can still use it with a subsequent rproc_boot(), if
1801 void rproc_shutdown(struct rproc *rproc)
1803 struct device *dev = &rproc->dev;
1806 ret = mutex_lock_interruptible(&rproc->lock);
1808 dev_err(dev, "can't lock rproc %s: %d\n", rproc->name, ret);
1812 /* if the remote proc is still needed, bail out */
1813 if (!atomic_dec_and_test(&rproc->power))
1816 ret = rproc_stop(rproc, false);
1818 atomic_inc(&rproc->power);
1822 /* clean up all acquired resources */
1823 rproc_resource_cleanup(rproc);
1825 rproc_disable_iommu(rproc);
1827 /* Free the copy of the resource table */
1828 kfree(rproc->cached_table);
1829 rproc->cached_table = NULL;
1830 rproc->table_ptr = NULL;
1832 mutex_unlock(&rproc->lock);
1834 EXPORT_SYMBOL(rproc_shutdown);
1837 * rproc_get_by_phandle() - find a remote processor by phandle
1838 * @phandle: phandle to the rproc
1840 * Finds an rproc handle using the remote processor's phandle, and then
1841 * return a handle to the rproc.
1843 * This function increments the remote processor's refcount, so always
1844 * use rproc_put() to decrement it back once rproc isn't needed anymore.
1846 * Returns the rproc handle on success, and NULL on failure.
1849 struct rproc *rproc_get_by_phandle(phandle phandle)
1851 struct rproc *rproc = NULL, *r;
1852 struct device_node *np;
1854 np = of_find_node_by_phandle(phandle);
1858 mutex_lock(&rproc_list_mutex);
1859 list_for_each_entry(r, &rproc_list, node) {
1860 if (r->dev.parent && r->dev.parent->of_node == np) {
1861 /* prevent underlying implementation from being removed */
1862 if (!try_module_get(r->dev.parent->driver->owner)) {
1863 dev_err(&r->dev, "can't get owner\n");
1868 get_device(&rproc->dev);
1872 mutex_unlock(&rproc_list_mutex);
1879 struct rproc *rproc_get_by_phandle(phandle phandle)
1884 EXPORT_SYMBOL(rproc_get_by_phandle);
1887 * rproc_add() - register a remote processor
1888 * @rproc: the remote processor handle to register
1890 * Registers @rproc with the remoteproc framework, after it has been
1891 * allocated with rproc_alloc().
1893 * This is called by the platform-specific rproc implementation, whenever
1894 * a new remote processor device is probed.
1896 * Returns 0 on success and an appropriate error code otherwise.
1898 * Note: this function initiates an asynchronous firmware loading
1899 * context, which will look for virtio devices supported by the rproc's
1902 * If found, those virtio devices will be created and added, so as a result
1903 * of registering this remote processor, additional virtio drivers might be
1906 int rproc_add(struct rproc *rproc)
1908 struct device *dev = &rproc->dev;
1911 ret = device_add(dev);
1915 dev_info(dev, "%s is available\n", rproc->name);
1917 /* create debugfs entries */
1918 rproc_create_debug_dir(rproc);
1920 /* if rproc is marked always-on, request it to boot */
1921 if (rproc->auto_boot) {
1922 ret = rproc_trigger_auto_boot(rproc);
1927 /* expose to rproc_get_by_phandle users */
1928 mutex_lock(&rproc_list_mutex);
1929 list_add(&rproc->node, &rproc_list);
1930 mutex_unlock(&rproc_list_mutex);
1934 EXPORT_SYMBOL(rproc_add);
1937 * rproc_type_release() - release a remote processor instance
1938 * @dev: the rproc's device
1940 * This function should _never_ be called directly.
1942 * It will be called by the driver core when no one holds a valid pointer
1945 static void rproc_type_release(struct device *dev)
1947 struct rproc *rproc = container_of(dev, struct rproc, dev);
1949 dev_info(&rproc->dev, "releasing %s\n", rproc->name);
1951 idr_destroy(&rproc->notifyids);
1953 if (rproc->index >= 0)
1954 ida_simple_remove(&rproc_dev_index, rproc->index);
1956 kfree(rproc->firmware);
1961 static const struct device_type rproc_type = {
1962 .name = "remoteproc",
1963 .release = rproc_type_release,
1967 * rproc_alloc() - allocate a remote processor handle
1968 * @dev: the underlying device
1969 * @name: name of this remote processor
1970 * @ops: platform-specific handlers (mainly start/stop)
1971 * @firmware: name of firmware file to load, can be NULL
1972 * @len: length of private data needed by the rproc driver (in bytes)
1974 * Allocates a new remote processor handle, but does not register
1975 * it yet. if @firmware is NULL, a default name is used.
1977 * This function should be used by rproc implementations during initialization
1978 * of the remote processor.
1980 * After creating an rproc handle using this function, and when ready,
1981 * implementations should then call rproc_add() to complete
1982 * the registration of the remote processor.
1984 * On success the new rproc is returned, and on failure, NULL.
1986 * Note: _never_ directly deallocate @rproc, even if it was not registered
1987 * yet. Instead, when you need to unroll rproc_alloc(), use rproc_free().
1989 struct rproc *rproc_alloc(struct device *dev, const char *name,
1990 const struct rproc_ops *ops,
1991 const char *firmware, int len)
1993 struct rproc *rproc;
1994 char *p, *template = "rproc-%s-fw";
1997 if (!dev || !name || !ops)
2002 * If the caller didn't pass in a firmware name then
2003 * construct a default name.
2005 name_len = strlen(name) + strlen(template) - 2 + 1;
2006 p = kmalloc(name_len, GFP_KERNEL);
2009 snprintf(p, name_len, template, name);
2011 p = kstrdup(firmware, GFP_KERNEL);
2016 rproc = kzalloc(sizeof(struct rproc) + len, GFP_KERNEL);
2022 rproc->ops = kmemdup(ops, sizeof(*ops), GFP_KERNEL);
2029 rproc->firmware = p;
2031 rproc->priv = &rproc[1];
2032 rproc->auto_boot = true;
2034 device_initialize(&rproc->dev);
2035 rproc->dev.parent = dev;
2036 rproc->dev.type = &rproc_type;
2037 rproc->dev.class = &rproc_class;
2038 rproc->dev.driver_data = rproc;
2040 /* Assign a unique device index and name */
2041 rproc->index = ida_simple_get(&rproc_dev_index, 0, 0, GFP_KERNEL);
2042 if (rproc->index < 0) {
2043 dev_err(dev, "ida_simple_get failed: %d\n", rproc->index);
2044 put_device(&rproc->dev);
2048 dev_set_name(&rproc->dev, "remoteproc%d", rproc->index);
2050 atomic_set(&rproc->power, 0);
2052 /* Default to ELF loader if no load function is specified */
2053 if (!rproc->ops->load) {
2054 rproc->ops->load = rproc_elf_load_segments;
2055 rproc->ops->parse_fw = rproc_elf_load_rsc_table;
2056 rproc->ops->find_loaded_rsc_table = rproc_elf_find_loaded_rsc_table;
2057 rproc->ops->sanity_check = rproc_elf_sanity_check;
2058 rproc->ops->get_boot_addr = rproc_elf_get_boot_addr;
2061 mutex_init(&rproc->lock);
2063 idr_init(&rproc->notifyids);
2065 INIT_LIST_HEAD(&rproc->carveouts);
2066 INIT_LIST_HEAD(&rproc->mappings);
2067 INIT_LIST_HEAD(&rproc->traces);
2068 INIT_LIST_HEAD(&rproc->rvdevs);
2069 INIT_LIST_HEAD(&rproc->subdevs);
2070 INIT_LIST_HEAD(&rproc->dump_segments);
2072 INIT_WORK(&rproc->crash_handler, rproc_crash_handler_work);
2074 rproc->state = RPROC_OFFLINE;
2078 EXPORT_SYMBOL(rproc_alloc);
2081 * rproc_free() - unroll rproc_alloc()
2082 * @rproc: the remote processor handle
2084 * This function decrements the rproc dev refcount.
2086 * If no one holds any reference to rproc anymore, then its refcount would
2087 * now drop to zero, and it would be freed.
2089 void rproc_free(struct rproc *rproc)
2091 put_device(&rproc->dev);
2093 EXPORT_SYMBOL(rproc_free);
2096 * rproc_put() - release rproc reference
2097 * @rproc: the remote processor handle
2099 * This function decrements the rproc dev refcount.
2101 * If no one holds any reference to rproc anymore, then its refcount would
2102 * now drop to zero, and it would be freed.
2104 void rproc_put(struct rproc *rproc)
2106 module_put(rproc->dev.parent->driver->owner);
2107 put_device(&rproc->dev);
2109 EXPORT_SYMBOL(rproc_put);
2112 * rproc_del() - unregister a remote processor
2113 * @rproc: rproc handle to unregister
2115 * This function should be called when the platform specific rproc
2116 * implementation decides to remove the rproc device. it should
2117 * _only_ be called if a previous invocation of rproc_add()
2118 * has completed successfully.
2120 * After rproc_del() returns, @rproc isn't freed yet, because
2121 * of the outstanding reference created by rproc_alloc. To decrement that
2122 * one last refcount, one still needs to call rproc_free().
2124 * Returns 0 on success and -EINVAL if @rproc isn't valid.
2126 int rproc_del(struct rproc *rproc)
2131 /* if rproc is marked always-on, rproc_add() booted it */
2132 /* TODO: make sure this works with rproc->power > 1 */
2133 if (rproc->auto_boot)
2134 rproc_shutdown(rproc);
2136 mutex_lock(&rproc->lock);
2137 rproc->state = RPROC_DELETED;
2138 mutex_unlock(&rproc->lock);
2140 rproc_delete_debug_dir(rproc);
2142 /* the rproc is downref'ed as soon as it's removed from the klist */
2143 mutex_lock(&rproc_list_mutex);
2144 list_del(&rproc->node);
2145 mutex_unlock(&rproc_list_mutex);
2147 device_del(&rproc->dev);
2151 EXPORT_SYMBOL(rproc_del);
2154 * rproc_add_subdev() - add a subdevice to a remoteproc
2155 * @rproc: rproc handle to add the subdevice to
2156 * @subdev: subdev handle to register
2158 * Caller is responsible for populating optional subdevice function pointers.
2160 void rproc_add_subdev(struct rproc *rproc, struct rproc_subdev *subdev)
2162 list_add_tail(&subdev->node, &rproc->subdevs);
2164 EXPORT_SYMBOL(rproc_add_subdev);
2167 * rproc_remove_subdev() - remove a subdevice from a remoteproc
2168 * @rproc: rproc handle to remove the subdevice from
2169 * @subdev: subdev handle, previously registered with rproc_add_subdev()
2171 void rproc_remove_subdev(struct rproc *rproc, struct rproc_subdev *subdev)
2173 list_del(&subdev->node);
2175 EXPORT_SYMBOL(rproc_remove_subdev);
2178 * rproc_get_by_child() - acquire rproc handle of @dev's ancestor
2179 * @dev: child device to find ancestor of
2181 * Returns the ancestor rproc instance, or NULL if not found.
2183 struct rproc *rproc_get_by_child(struct device *dev)
2185 for (dev = dev->parent; dev; dev = dev->parent) {
2186 if (dev->type == &rproc_type)
2187 return dev->driver_data;
2192 EXPORT_SYMBOL(rproc_get_by_child);
2195 * rproc_report_crash() - rproc crash reporter function
2196 * @rproc: remote processor
2199 * This function must be called every time a crash is detected by the low-level
2200 * drivers implementing a specific remoteproc. This should not be called from a
2201 * non-remoteproc driver.
2203 * This function can be called from atomic/interrupt context.
2205 void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type)
2208 pr_err("NULL rproc pointer\n");
2212 dev_err(&rproc->dev, "crash detected in %s: type %s\n",
2213 rproc->name, rproc_crash_to_string(type));
2215 /* create a new task to handle the error */
2216 schedule_work(&rproc->crash_handler);
2218 EXPORT_SYMBOL(rproc_report_crash);
2220 static int __init remoteproc_init(void)
2223 rproc_init_debugfs();
2227 module_init(remoteproc_init);
2229 static void __exit remoteproc_exit(void)
2231 ida_destroy(&rproc_dev_index);
2233 rproc_exit_debugfs();
2236 module_exit(remoteproc_exit);
2238 MODULE_LICENSE("GPL v2");
2239 MODULE_DESCRIPTION("Generic Remote Processor Framework");