remoteproc: introduce rproc_get_by_phandle API
[firefly-linux-kernel-4.4.55.git] / drivers / remoteproc / remoteproc_core.c
1 /*
2  * Remote Processor Framework
3  *
4  * Copyright (C) 2011 Texas Instruments, Inc.
5  * Copyright (C) 2011 Google, Inc.
6  *
7  * Ohad Ben-Cohen <ohad@wizery.com>
8  * Brian Swetland <swetland@google.com>
9  * Mark Grosen <mgrosen@ti.com>
10  * Fernando Guzman Lugo <fernando.lugo@ti.com>
11  * Suman Anna <s-anna@ti.com>
12  * Robert Tivy <rtivy@ti.com>
13  * Armando Uribe De Leon <x0095078@ti.com>
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * version 2 as published by the Free Software Foundation.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  */
24
25 #define pr_fmt(fmt)    "%s: " fmt, __func__
26
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/device.h>
30 #include <linux/slab.h>
31 #include <linux/mutex.h>
32 #include <linux/dma-mapping.h>
33 #include <linux/firmware.h>
34 #include <linux/string.h>
35 #include <linux/debugfs.h>
36 #include <linux/remoteproc.h>
37 #include <linux/iommu.h>
38 #include <linux/idr.h>
39 #include <linux/elf.h>
40 #include <linux/crc32.h>
41 #include <linux/virtio_ids.h>
42 #include <linux/virtio_ring.h>
43 #include <asm/byteorder.h>
44
45 #include "remoteproc_internal.h"
46
47 static DEFINE_MUTEX(rproc_list_mutex);
48 static LIST_HEAD(rproc_list);
49
50 typedef int (*rproc_handle_resources_t)(struct rproc *rproc,
51                                 struct resource_table *table, int len);
52 typedef int (*rproc_handle_resource_t)(struct rproc *rproc,
53                                  void *, int offset, int avail);
54
55 /* Unique indices for remoteproc devices */
56 static DEFINE_IDA(rproc_dev_index);
57
58 static const char * const rproc_crash_names[] = {
59         [RPROC_MMUFAULT]        = "mmufault",
60 };
61
62 /* translate rproc_crash_type to string */
63 static const char *rproc_crash_to_string(enum rproc_crash_type type)
64 {
65         if (type < ARRAY_SIZE(rproc_crash_names))
66                 return rproc_crash_names[type];
67         return "unknown";
68 }
69
70 /*
71  * This is the IOMMU fault handler we register with the IOMMU API
72  * (when relevant; not all remote processors access memory through
73  * an IOMMU).
74  *
75  * IOMMU core will invoke this handler whenever the remote processor
76  * will try to access an unmapped device address.
77  */
78 static int rproc_iommu_fault(struct iommu_domain *domain, struct device *dev,
79                 unsigned long iova, int flags, void *token)
80 {
81         struct rproc *rproc = token;
82
83         dev_err(dev, "iommu fault: da 0x%lx flags 0x%x\n", iova, flags);
84
85         rproc_report_crash(rproc, RPROC_MMUFAULT);
86
87         /*
88          * Let the iommu core know we're not really handling this fault;
89          * we just used it as a recovery trigger.
90          */
91         return -ENOSYS;
92 }
93
94 static int rproc_enable_iommu(struct rproc *rproc)
95 {
96         struct iommu_domain *domain;
97         struct device *dev = rproc->dev.parent;
98         int ret;
99
100         if (!rproc->has_iommu) {
101                 dev_dbg(dev, "iommu not present\n");
102                 return 0;
103         }
104
105         domain = iommu_domain_alloc(dev->bus);
106         if (!domain) {
107                 dev_err(dev, "can't alloc iommu domain\n");
108                 return -ENOMEM;
109         }
110
111         iommu_set_fault_handler(domain, rproc_iommu_fault, rproc);
112
113         ret = iommu_attach_device(domain, dev);
114         if (ret) {
115                 dev_err(dev, "can't attach iommu device: %d\n", ret);
116                 goto free_domain;
117         }
118
119         rproc->domain = domain;
120
121         return 0;
122
123 free_domain:
124         iommu_domain_free(domain);
125         return ret;
126 }
127
128 static void rproc_disable_iommu(struct rproc *rproc)
129 {
130         struct iommu_domain *domain = rproc->domain;
131         struct device *dev = rproc->dev.parent;
132
133         if (!domain)
134                 return;
135
136         iommu_detach_device(domain, dev);
137         iommu_domain_free(domain);
138 }
139
140 /*
141  * Some remote processors will ask us to allocate them physically contiguous
142  * memory regions (which we call "carveouts"), and map them to specific
143  * device addresses (which are hardcoded in the firmware).
144  *
145  * They may then ask us to copy objects into specific device addresses (e.g.
146  * code/data sections) or expose us certain symbols in other device address
147  * (e.g. their trace buffer).
148  *
149  * This function is an internal helper with which we can go over the allocated
150  * carveouts and translate specific device address to kernel virtual addresses
151  * so we can access the referenced memory.
152  *
153  * Note: phys_to_virt(iommu_iova_to_phys(rproc->domain, da)) will work too,
154  * but only on kernel direct mapped RAM memory. Instead, we're just using
155  * here the output of the DMA API, which should be more correct.
156  */
157 void *rproc_da_to_va(struct rproc *rproc, u64 da, int len)
158 {
159         struct rproc_mem_entry *carveout;
160         void *ptr = NULL;
161
162         list_for_each_entry(carveout, &rproc->carveouts, node) {
163                 int offset = da - carveout->da;
164
165                 /* try next carveout if da is too small */
166                 if (offset < 0)
167                         continue;
168
169                 /* try next carveout if da is too large */
170                 if (offset + len > carveout->len)
171                         continue;
172
173                 ptr = carveout->va + offset;
174
175                 break;
176         }
177
178         return ptr;
179 }
180 EXPORT_SYMBOL(rproc_da_to_va);
181
182 int rproc_alloc_vring(struct rproc_vdev *rvdev, int i)
183 {
184         struct rproc *rproc = rvdev->rproc;
185         struct device *dev = &rproc->dev;
186         struct rproc_vring *rvring = &rvdev->vring[i];
187         struct fw_rsc_vdev *rsc;
188         dma_addr_t dma;
189         void *va;
190         int ret, size, notifyid;
191
192         /* actual size of vring (in bytes) */
193         size = PAGE_ALIGN(vring_size(rvring->len, rvring->align));
194
195         /*
196          * Allocate non-cacheable memory for the vring. In the future
197          * this call will also configure the IOMMU for us
198          */
199         va = dma_alloc_coherent(dev->parent, size, &dma, GFP_KERNEL);
200         if (!va) {
201                 dev_err(dev->parent, "dma_alloc_coherent failed\n");
202                 return -EINVAL;
203         }
204
205         /*
206          * Assign an rproc-wide unique index for this vring
207          * TODO: assign a notifyid for rvdev updates as well
208          * TODO: support predefined notifyids (via resource table)
209          */
210         ret = idr_alloc(&rproc->notifyids, rvring, 0, 0, GFP_KERNEL);
211         if (ret < 0) {
212                 dev_err(dev, "idr_alloc failed: %d\n", ret);
213                 dma_free_coherent(dev->parent, size, va, dma);
214                 return ret;
215         }
216         notifyid = ret;
217
218         dev_dbg(dev, "vring%d: va %p dma %llx size %x idr %d\n", i, va,
219                                 (unsigned long long)dma, size, notifyid);
220
221         rvring->va = va;
222         rvring->dma = dma;
223         rvring->notifyid = notifyid;
224
225         /*
226          * Let the rproc know the notifyid and da of this vring.
227          * Not all platforms use dma_alloc_coherent to automatically
228          * set up the iommu. In this case the device address (da) will
229          * hold the physical address and not the device address.
230          */
231         rsc = (void *)rproc->table_ptr + rvdev->rsc_offset;
232         rsc->vring[i].da = dma;
233         rsc->vring[i].notifyid = notifyid;
234         return 0;
235 }
236
237 static int
238 rproc_parse_vring(struct rproc_vdev *rvdev, struct fw_rsc_vdev *rsc, int i)
239 {
240         struct rproc *rproc = rvdev->rproc;
241         struct device *dev = &rproc->dev;
242         struct fw_rsc_vdev_vring *vring = &rsc->vring[i];
243         struct rproc_vring *rvring = &rvdev->vring[i];
244
245         dev_dbg(dev, "vdev rsc: vring%d: da %x, qsz %d, align %d\n",
246                                 i, vring->da, vring->num, vring->align);
247
248         /* make sure reserved bytes are zeroes */
249         if (vring->reserved) {
250                 dev_err(dev, "vring rsc has non zero reserved bytes\n");
251                 return -EINVAL;
252         }
253
254         /* verify queue size and vring alignment are sane */
255         if (!vring->num || !vring->align) {
256                 dev_err(dev, "invalid qsz (%d) or alignment (%d)\n",
257                                                 vring->num, vring->align);
258                 return -EINVAL;
259         }
260
261         rvring->len = vring->num;
262         rvring->align = vring->align;
263         rvring->rvdev = rvdev;
264
265         return 0;
266 }
267
268 void rproc_free_vring(struct rproc_vring *rvring)
269 {
270         int size = PAGE_ALIGN(vring_size(rvring->len, rvring->align));
271         struct rproc *rproc = rvring->rvdev->rproc;
272         int idx = rvring->rvdev->vring - rvring;
273         struct fw_rsc_vdev *rsc;
274
275         dma_free_coherent(rproc->dev.parent, size, rvring->va, rvring->dma);
276         idr_remove(&rproc->notifyids, rvring->notifyid);
277
278         /* reset resource entry info */
279         rsc = (void *)rproc->table_ptr + rvring->rvdev->rsc_offset;
280         rsc->vring[idx].da = 0;
281         rsc->vring[idx].notifyid = -1;
282 }
283
284 /**
285  * rproc_handle_vdev() - handle a vdev fw resource
286  * @rproc: the remote processor
287  * @rsc: the vring resource descriptor
288  * @avail: size of available data (for sanity checking the image)
289  *
290  * This resource entry requests the host to statically register a virtio
291  * device (vdev), and setup everything needed to support it. It contains
292  * everything needed to make it possible: the virtio device id, virtio
293  * device features, vrings information, virtio config space, etc...
294  *
295  * Before registering the vdev, the vrings are allocated from non-cacheable
296  * physically contiguous memory. Currently we only support two vrings per
297  * remote processor (temporary limitation). We might also want to consider
298  * doing the vring allocation only later when ->find_vqs() is invoked, and
299  * then release them upon ->del_vqs().
300  *
301  * Note: @da is currently not really handled correctly: we dynamically
302  * allocate it using the DMA API, ignoring requested hard coded addresses,
303  * and we don't take care of any required IOMMU programming. This is all
304  * going to be taken care of when the generic iommu-based DMA API will be
305  * merged. Meanwhile, statically-addressed iommu-based firmware images should
306  * use RSC_DEVMEM resource entries to map their required @da to the physical
307  * address of their base CMA region (ouch, hacky!).
308  *
309  * Returns 0 on success, or an appropriate error code otherwise
310  */
311 static int rproc_handle_vdev(struct rproc *rproc, struct fw_rsc_vdev *rsc,
312                                                         int offset, int avail)
313 {
314         struct device *dev = &rproc->dev;
315         struct rproc_vdev *rvdev;
316         int i, ret;
317
318         /* make sure resource isn't truncated */
319         if (sizeof(*rsc) + rsc->num_of_vrings * sizeof(struct fw_rsc_vdev_vring)
320                         + rsc->config_len > avail) {
321                 dev_err(dev, "vdev rsc is truncated\n");
322                 return -EINVAL;
323         }
324
325         /* make sure reserved bytes are zeroes */
326         if (rsc->reserved[0] || rsc->reserved[1]) {
327                 dev_err(dev, "vdev rsc has non zero reserved bytes\n");
328                 return -EINVAL;
329         }
330
331         dev_dbg(dev, "vdev rsc: id %d, dfeatures %x, cfg len %d, %d vrings\n",
332                 rsc->id, rsc->dfeatures, rsc->config_len, rsc->num_of_vrings);
333
334         /* we currently support only two vrings per rvdev */
335         if (rsc->num_of_vrings > ARRAY_SIZE(rvdev->vring)) {
336                 dev_err(dev, "too many vrings: %d\n", rsc->num_of_vrings);
337                 return -EINVAL;
338         }
339
340         rvdev = kzalloc(sizeof(struct rproc_vdev), GFP_KERNEL);
341         if (!rvdev)
342                 return -ENOMEM;
343
344         rvdev->rproc = rproc;
345
346         /* parse the vrings */
347         for (i = 0; i < rsc->num_of_vrings; i++) {
348                 ret = rproc_parse_vring(rvdev, rsc, i);
349                 if (ret)
350                         goto free_rvdev;
351         }
352
353         /* remember the resource offset*/
354         rvdev->rsc_offset = offset;
355
356         list_add_tail(&rvdev->node, &rproc->rvdevs);
357
358         /* it is now safe to add the virtio device */
359         ret = rproc_add_virtio_dev(rvdev, rsc->id);
360         if (ret)
361                 goto remove_rvdev;
362
363         return 0;
364
365 remove_rvdev:
366         list_del(&rvdev->node);
367 free_rvdev:
368         kfree(rvdev);
369         return ret;
370 }
371
372 /**
373  * rproc_handle_trace() - handle a shared trace buffer resource
374  * @rproc: the remote processor
375  * @rsc: the trace resource descriptor
376  * @avail: size of available data (for sanity checking the image)
377  *
378  * In case the remote processor dumps trace logs into memory,
379  * export it via debugfs.
380  *
381  * Currently, the 'da' member of @rsc should contain the device address
382  * where the remote processor is dumping the traces. Later we could also
383  * support dynamically allocating this address using the generic
384  * DMA API (but currently there isn't a use case for that).
385  *
386  * Returns 0 on success, or an appropriate error code otherwise
387  */
388 static int rproc_handle_trace(struct rproc *rproc, struct fw_rsc_trace *rsc,
389                                                         int offset, int avail)
390 {
391         struct rproc_mem_entry *trace;
392         struct device *dev = &rproc->dev;
393         void *ptr;
394         char name[15];
395
396         if (sizeof(*rsc) > avail) {
397                 dev_err(dev, "trace rsc is truncated\n");
398                 return -EINVAL;
399         }
400
401         /* make sure reserved bytes are zeroes */
402         if (rsc->reserved) {
403                 dev_err(dev, "trace rsc has non zero reserved bytes\n");
404                 return -EINVAL;
405         }
406
407         /* what's the kernel address of this resource ? */
408         ptr = rproc_da_to_va(rproc, rsc->da, rsc->len);
409         if (!ptr) {
410                 dev_err(dev, "erroneous trace resource entry\n");
411                 return -EINVAL;
412         }
413
414         trace = kzalloc(sizeof(*trace), GFP_KERNEL);
415         if (!trace)
416                 return -ENOMEM;
417
418         /* set the trace buffer dma properties */
419         trace->len = rsc->len;
420         trace->va = ptr;
421
422         /* make sure snprintf always null terminates, even if truncating */
423         snprintf(name, sizeof(name), "trace%d", rproc->num_traces);
424
425         /* create the debugfs entry */
426         trace->priv = rproc_create_trace_file(name, rproc, trace);
427         if (!trace->priv) {
428                 trace->va = NULL;
429                 kfree(trace);
430                 return -EINVAL;
431         }
432
433         list_add_tail(&trace->node, &rproc->traces);
434
435         rproc->num_traces++;
436
437         dev_dbg(dev, "%s added: va %p, da 0x%x, len 0x%x\n", name, ptr,
438                                                 rsc->da, rsc->len);
439
440         return 0;
441 }
442
443 /**
444  * rproc_handle_devmem() - handle devmem resource entry
445  * @rproc: remote processor handle
446  * @rsc: the devmem resource entry
447  * @avail: size of available data (for sanity checking the image)
448  *
449  * Remote processors commonly need to access certain on-chip peripherals.
450  *
451  * Some of these remote processors access memory via an iommu device,
452  * and might require us to configure their iommu before they can access
453  * the on-chip peripherals they need.
454  *
455  * This resource entry is a request to map such a peripheral device.
456  *
457  * These devmem entries will contain the physical address of the device in
458  * the 'pa' member. If a specific device address is expected, then 'da' will
459  * contain it (currently this is the only use case supported). 'len' will
460  * contain the size of the physical region we need to map.
461  *
462  * Currently we just "trust" those devmem entries to contain valid physical
463  * addresses, but this is going to change: we want the implementations to
464  * tell us ranges of physical addresses the firmware is allowed to request,
465  * and not allow firmwares to request access to physical addresses that
466  * are outside those ranges.
467  */
468 static int rproc_handle_devmem(struct rproc *rproc, struct fw_rsc_devmem *rsc,
469                                                         int offset, int avail)
470 {
471         struct rproc_mem_entry *mapping;
472         struct device *dev = &rproc->dev;
473         int ret;
474
475         /* no point in handling this resource without a valid iommu domain */
476         if (!rproc->domain)
477                 return -EINVAL;
478
479         if (sizeof(*rsc) > avail) {
480                 dev_err(dev, "devmem rsc is truncated\n");
481                 return -EINVAL;
482         }
483
484         /* make sure reserved bytes are zeroes */
485         if (rsc->reserved) {
486                 dev_err(dev, "devmem rsc has non zero reserved bytes\n");
487                 return -EINVAL;
488         }
489
490         mapping = kzalloc(sizeof(*mapping), GFP_KERNEL);
491         if (!mapping)
492                 return -ENOMEM;
493
494         ret = iommu_map(rproc->domain, rsc->da, rsc->pa, rsc->len, rsc->flags);
495         if (ret) {
496                 dev_err(dev, "failed to map devmem: %d\n", ret);
497                 goto out;
498         }
499
500         /*
501          * We'll need this info later when we'll want to unmap everything
502          * (e.g. on shutdown).
503          *
504          * We can't trust the remote processor not to change the resource
505          * table, so we must maintain this info independently.
506          */
507         mapping->da = rsc->da;
508         mapping->len = rsc->len;
509         list_add_tail(&mapping->node, &rproc->mappings);
510
511         dev_dbg(dev, "mapped devmem pa 0x%x, da 0x%x, len 0x%x\n",
512                                         rsc->pa, rsc->da, rsc->len);
513
514         return 0;
515
516 out:
517         kfree(mapping);
518         return ret;
519 }
520
521 /**
522  * rproc_handle_carveout() - handle phys contig memory allocation requests
523  * @rproc: rproc handle
524  * @rsc: the resource entry
525  * @avail: size of available data (for image validation)
526  *
527  * This function will handle firmware requests for allocation of physically
528  * contiguous memory regions.
529  *
530  * These request entries should come first in the firmware's resource table,
531  * as other firmware entries might request placing other data objects inside
532  * these memory regions (e.g. data/code segments, trace resource entries, ...).
533  *
534  * Allocating memory this way helps utilizing the reserved physical memory
535  * (e.g. CMA) more efficiently, and also minimizes the number of TLB entries
536  * needed to map it (in case @rproc is using an IOMMU). Reducing the TLB
537  * pressure is important; it may have a substantial impact on performance.
538  */
539 static int rproc_handle_carveout(struct rproc *rproc,
540                                                 struct fw_rsc_carveout *rsc,
541                                                 int offset, int avail)
542
543 {
544         struct rproc_mem_entry *carveout, *mapping;
545         struct device *dev = &rproc->dev;
546         dma_addr_t dma;
547         void *va;
548         int ret;
549
550         if (sizeof(*rsc) > avail) {
551                 dev_err(dev, "carveout rsc is truncated\n");
552                 return -EINVAL;
553         }
554
555         /* make sure reserved bytes are zeroes */
556         if (rsc->reserved) {
557                 dev_err(dev, "carveout rsc has non zero reserved bytes\n");
558                 return -EINVAL;
559         }
560
561         dev_dbg(dev, "carveout rsc: da %x, pa %x, len %x, flags %x\n",
562                         rsc->da, rsc->pa, rsc->len, rsc->flags);
563
564         carveout = kzalloc(sizeof(*carveout), GFP_KERNEL);
565         if (!carveout)
566                 return -ENOMEM;
567
568         va = dma_alloc_coherent(dev->parent, rsc->len, &dma, GFP_KERNEL);
569         if (!va) {
570                 dev_err(dev->parent, "dma_alloc_coherent err: %d\n", rsc->len);
571                 ret = -ENOMEM;
572                 goto free_carv;
573         }
574
575         dev_dbg(dev, "carveout va %p, dma %llx, len 0x%x\n", va,
576                                         (unsigned long long)dma, rsc->len);
577
578         /*
579          * Ok, this is non-standard.
580          *
581          * Sometimes we can't rely on the generic iommu-based DMA API
582          * to dynamically allocate the device address and then set the IOMMU
583          * tables accordingly, because some remote processors might
584          * _require_ us to use hard coded device addresses that their
585          * firmware was compiled with.
586          *
587          * In this case, we must use the IOMMU API directly and map
588          * the memory to the device address as expected by the remote
589          * processor.
590          *
591          * Obviously such remote processor devices should not be configured
592          * to use the iommu-based DMA API: we expect 'dma' to contain the
593          * physical address in this case.
594          */
595         if (rproc->domain) {
596                 mapping = kzalloc(sizeof(*mapping), GFP_KERNEL);
597                 if (!mapping) {
598                         dev_err(dev, "kzalloc mapping failed\n");
599                         ret = -ENOMEM;
600                         goto dma_free;
601                 }
602
603                 ret = iommu_map(rproc->domain, rsc->da, dma, rsc->len,
604                                                                 rsc->flags);
605                 if (ret) {
606                         dev_err(dev, "iommu_map failed: %d\n", ret);
607                         goto free_mapping;
608                 }
609
610                 /*
611                  * We'll need this info later when we'll want to unmap
612                  * everything (e.g. on shutdown).
613                  *
614                  * We can't trust the remote processor not to change the
615                  * resource table, so we must maintain this info independently.
616                  */
617                 mapping->da = rsc->da;
618                 mapping->len = rsc->len;
619                 list_add_tail(&mapping->node, &rproc->mappings);
620
621                 dev_dbg(dev, "carveout mapped 0x%x to 0x%llx\n",
622                                         rsc->da, (unsigned long long)dma);
623         }
624
625         /*
626          * Some remote processors might need to know the pa
627          * even though they are behind an IOMMU. E.g., OMAP4's
628          * remote M3 processor needs this so it can control
629          * on-chip hardware accelerators that are not behind
630          * the IOMMU, and therefor must know the pa.
631          *
632          * Generally we don't want to expose physical addresses
633          * if we don't have to (remote processors are generally
634          * _not_ trusted), so we might want to do this only for
635          * remote processor that _must_ have this (e.g. OMAP4's
636          * dual M3 subsystem).
637          *
638          * Non-IOMMU processors might also want to have this info.
639          * In this case, the device address and the physical address
640          * are the same.
641          */
642         rsc->pa = dma;
643
644         carveout->va = va;
645         carveout->len = rsc->len;
646         carveout->dma = dma;
647         carveout->da = rsc->da;
648
649         list_add_tail(&carveout->node, &rproc->carveouts);
650
651         return 0;
652
653 free_mapping:
654         kfree(mapping);
655 dma_free:
656         dma_free_coherent(dev->parent, rsc->len, va, dma);
657 free_carv:
658         kfree(carveout);
659         return ret;
660 }
661
662 static int rproc_count_vrings(struct rproc *rproc, struct fw_rsc_vdev *rsc,
663                               int offset, int avail)
664 {
665         /* Summarize the number of notification IDs */
666         rproc->max_notifyid += rsc->num_of_vrings;
667
668         return 0;
669 }
670
671 /*
672  * A lookup table for resource handlers. The indices are defined in
673  * enum fw_resource_type.
674  */
675 static rproc_handle_resource_t rproc_loading_handlers[RSC_LAST] = {
676         [RSC_CARVEOUT] = (rproc_handle_resource_t)rproc_handle_carveout,
677         [RSC_DEVMEM] = (rproc_handle_resource_t)rproc_handle_devmem,
678         [RSC_TRACE] = (rproc_handle_resource_t)rproc_handle_trace,
679         [RSC_VDEV] = NULL, /* VDEVs were handled upon registrarion */
680 };
681
682 static rproc_handle_resource_t rproc_vdev_handler[RSC_LAST] = {
683         [RSC_VDEV] = (rproc_handle_resource_t)rproc_handle_vdev,
684 };
685
686 static rproc_handle_resource_t rproc_count_vrings_handler[RSC_LAST] = {
687         [RSC_VDEV] = (rproc_handle_resource_t)rproc_count_vrings,
688 };
689
690 /* handle firmware resource entries before booting the remote processor */
691 static int rproc_handle_resources(struct rproc *rproc, int len,
692                                   rproc_handle_resource_t handlers[RSC_LAST])
693 {
694         struct device *dev = &rproc->dev;
695         rproc_handle_resource_t handler;
696         int ret = 0, i;
697
698         for (i = 0; i < rproc->table_ptr->num; i++) {
699                 int offset = rproc->table_ptr->offset[i];
700                 struct fw_rsc_hdr *hdr = (void *)rproc->table_ptr + offset;
701                 int avail = len - offset - sizeof(*hdr);
702                 void *rsc = (void *)hdr + sizeof(*hdr);
703
704                 /* make sure table isn't truncated */
705                 if (avail < 0) {
706                         dev_err(dev, "rsc table is truncated\n");
707                         return -EINVAL;
708                 }
709
710                 dev_dbg(dev, "rsc: type %d\n", hdr->type);
711
712                 if (hdr->type >= RSC_LAST) {
713                         dev_warn(dev, "unsupported resource %d\n", hdr->type);
714                         continue;
715                 }
716
717                 handler = handlers[hdr->type];
718                 if (!handler)
719                         continue;
720
721                 ret = handler(rproc, rsc, offset + sizeof(*hdr), avail);
722                 if (ret)
723                         break;
724         }
725
726         return ret;
727 }
728
729 /**
730  * rproc_resource_cleanup() - clean up and free all acquired resources
731  * @rproc: rproc handle
732  *
733  * This function will free all resources acquired for @rproc, and it
734  * is called whenever @rproc either shuts down or fails to boot.
735  */
736 static void rproc_resource_cleanup(struct rproc *rproc)
737 {
738         struct rproc_mem_entry *entry, *tmp;
739         struct device *dev = &rproc->dev;
740
741         /* clean up debugfs trace entries */
742         list_for_each_entry_safe(entry, tmp, &rproc->traces, node) {
743                 rproc_remove_trace_file(entry->priv);
744                 rproc->num_traces--;
745                 list_del(&entry->node);
746                 kfree(entry);
747         }
748
749         /* clean up iommu mapping entries */
750         list_for_each_entry_safe(entry, tmp, &rproc->mappings, node) {
751                 size_t unmapped;
752
753                 unmapped = iommu_unmap(rproc->domain, entry->da, entry->len);
754                 if (unmapped != entry->len) {
755                         /* nothing much to do besides complaining */
756                         dev_err(dev, "failed to unmap %u/%zu\n", entry->len,
757                                                                 unmapped);
758                 }
759
760                 list_del(&entry->node);
761                 kfree(entry);
762         }
763
764         /* clean up carveout allocations */
765         list_for_each_entry_safe(entry, tmp, &rproc->carveouts, node) {
766                 dma_free_coherent(dev->parent, entry->len, entry->va,
767                                   entry->dma);
768                 list_del(&entry->node);
769                 kfree(entry);
770         }
771 }
772
773 /*
774  * take a firmware and boot a remote processor with it.
775  */
776 static int rproc_fw_boot(struct rproc *rproc, const struct firmware *fw)
777 {
778         struct device *dev = &rproc->dev;
779         const char *name = rproc->firmware;
780         struct resource_table *table, *loaded_table;
781         int ret, tablesz;
782
783         if (!rproc->table_ptr)
784                 return -ENOMEM;
785
786         ret = rproc_fw_sanity_check(rproc, fw);
787         if (ret)
788                 return ret;
789
790         dev_info(dev, "Booting fw image %s, size %zd\n", name, fw->size);
791
792         /*
793          * if enabling an IOMMU isn't relevant for this rproc, this is
794          * just a nop
795          */
796         ret = rproc_enable_iommu(rproc);
797         if (ret) {
798                 dev_err(dev, "can't enable iommu: %d\n", ret);
799                 return ret;
800         }
801
802         rproc->bootaddr = rproc_get_boot_addr(rproc, fw);
803         ret = -EINVAL;
804
805         /* look for the resource table */
806         table = rproc_find_rsc_table(rproc, fw, &tablesz);
807         if (!table)
808                 goto clean_up;
809
810         /* Verify that resource table in loaded fw is unchanged */
811         if (rproc->table_csum != crc32(0, table, tablesz)) {
812                 dev_err(dev, "resource checksum failed, fw changed?\n");
813                 goto clean_up;
814         }
815
816         /* handle fw resources which are required to boot rproc */
817         ret = rproc_handle_resources(rproc, tablesz, rproc_loading_handlers);
818         if (ret) {
819                 dev_err(dev, "Failed to process resources: %d\n", ret);
820                 goto clean_up;
821         }
822
823         /* load the ELF segments to memory */
824         ret = rproc_load_segments(rproc, fw);
825         if (ret) {
826                 dev_err(dev, "Failed to load program segments: %d\n", ret);
827                 goto clean_up;
828         }
829
830         /*
831          * The starting device has been given the rproc->cached_table as the
832          * resource table. The address of the vring along with the other
833          * allocated resources (carveouts etc) is stored in cached_table.
834          * In order to pass this information to the remote device we must
835          * copy this information to device memory.
836          */
837         loaded_table = rproc_find_loaded_rsc_table(rproc, fw);
838         if (!loaded_table) {
839                 ret = -EINVAL;
840                 goto clean_up;
841         }
842
843         memcpy(loaded_table, rproc->cached_table, tablesz);
844
845         /* power up the remote processor */
846         ret = rproc->ops->start(rproc);
847         if (ret) {
848                 dev_err(dev, "can't start rproc %s: %d\n", rproc->name, ret);
849                 goto clean_up;
850         }
851
852         /*
853          * Update table_ptr so that all subsequent vring allocations and
854          * virtio fields manipulation update the actual loaded resource table
855          * in device memory.
856          */
857         rproc->table_ptr = loaded_table;
858
859         rproc->state = RPROC_RUNNING;
860
861         dev_info(dev, "remote processor %s is now up\n", rproc->name);
862
863         return 0;
864
865 clean_up:
866         rproc_resource_cleanup(rproc);
867         rproc_disable_iommu(rproc);
868         return ret;
869 }
870
871 /*
872  * take a firmware and look for virtio devices to register.
873  *
874  * Note: this function is called asynchronously upon registration of the
875  * remote processor (so we must wait until it completes before we try
876  * to unregister the device. one other option is just to use kref here,
877  * that might be cleaner).
878  */
879 static void rproc_fw_config_virtio(const struct firmware *fw, void *context)
880 {
881         struct rproc *rproc = context;
882         struct resource_table *table;
883         int ret, tablesz;
884
885         if (rproc_fw_sanity_check(rproc, fw) < 0)
886                 goto out;
887
888         /* look for the resource table */
889         table = rproc_find_rsc_table(rproc, fw,  &tablesz);
890         if (!table)
891                 goto out;
892
893         rproc->table_csum = crc32(0, table, tablesz);
894
895         /*
896          * Create a copy of the resource table. When a virtio device starts
897          * and calls vring_new_virtqueue() the address of the allocated vring
898          * will be stored in the cached_table. Before the device is started,
899          * cached_table will be copied into devic memory.
900          */
901         rproc->cached_table = kmemdup(table, tablesz, GFP_KERNEL);
902         if (!rproc->cached_table)
903                 goto out;
904
905         rproc->table_ptr = rproc->cached_table;
906
907         /* count the number of notify-ids */
908         rproc->max_notifyid = -1;
909         ret = rproc_handle_resources(rproc, tablesz,
910                                      rproc_count_vrings_handler);
911         if (ret)
912                 goto out;
913
914         /* look for virtio devices and register them */
915         ret = rproc_handle_resources(rproc, tablesz, rproc_vdev_handler);
916
917 out:
918         release_firmware(fw);
919         /* allow rproc_del() contexts, if any, to proceed */
920         complete_all(&rproc->firmware_loading_complete);
921 }
922
923 static int rproc_add_virtio_devices(struct rproc *rproc)
924 {
925         int ret;
926
927         /* rproc_del() calls must wait until async loader completes */
928         init_completion(&rproc->firmware_loading_complete);
929
930         /*
931          * We must retrieve early virtio configuration info from
932          * the firmware (e.g. whether to register a virtio device,
933          * what virtio features does it support, ...).
934          *
935          * We're initiating an asynchronous firmware loading, so we can
936          * be built-in kernel code, without hanging the boot process.
937          */
938         ret = request_firmware_nowait(THIS_MODULE, FW_ACTION_HOTPLUG,
939                                       rproc->firmware, &rproc->dev, GFP_KERNEL,
940                                       rproc, rproc_fw_config_virtio);
941         if (ret < 0) {
942                 dev_err(&rproc->dev, "request_firmware_nowait err: %d\n", ret);
943                 complete_all(&rproc->firmware_loading_complete);
944         }
945
946         return ret;
947 }
948
949 /**
950  * rproc_trigger_recovery() - recover a remoteproc
951  * @rproc: the remote processor
952  *
953  * The recovery is done by reseting all the virtio devices, that way all the
954  * rpmsg drivers will be reseted along with the remote processor making the
955  * remoteproc functional again.
956  *
957  * This function can sleep, so it cannot be called from atomic context.
958  */
959 int rproc_trigger_recovery(struct rproc *rproc)
960 {
961         struct rproc_vdev *rvdev, *rvtmp;
962
963         dev_err(&rproc->dev, "recovering %s\n", rproc->name);
964
965         init_completion(&rproc->crash_comp);
966
967         /* clean up remote vdev entries */
968         list_for_each_entry_safe(rvdev, rvtmp, &rproc->rvdevs, node)
969                 rproc_remove_virtio_dev(rvdev);
970
971         /* wait until there is no more rproc users */
972         wait_for_completion(&rproc->crash_comp);
973
974         /* Free the copy of the resource table */
975         kfree(rproc->cached_table);
976
977         return rproc_add_virtio_devices(rproc);
978 }
979
980 /**
981  * rproc_crash_handler_work() - handle a crash
982  *
983  * This function needs to handle everything related to a crash, like cpu
984  * registers and stack dump, information to help to debug the fatal error, etc.
985  */
986 static void rproc_crash_handler_work(struct work_struct *work)
987 {
988         struct rproc *rproc = container_of(work, struct rproc, crash_handler);
989         struct device *dev = &rproc->dev;
990
991         dev_dbg(dev, "enter %s\n", __func__);
992
993         mutex_lock(&rproc->lock);
994
995         if (rproc->state == RPROC_CRASHED || rproc->state == RPROC_OFFLINE) {
996                 /* handle only the first crash detected */
997                 mutex_unlock(&rproc->lock);
998                 return;
999         }
1000
1001         rproc->state = RPROC_CRASHED;
1002         dev_err(dev, "handling crash #%u in %s\n", ++rproc->crash_cnt,
1003                 rproc->name);
1004
1005         mutex_unlock(&rproc->lock);
1006
1007         if (!rproc->recovery_disabled)
1008                 rproc_trigger_recovery(rproc);
1009 }
1010
1011 /**
1012  * rproc_boot() - boot a remote processor
1013  * @rproc: handle of a remote processor
1014  *
1015  * Boot a remote processor (i.e. load its firmware, power it on, ...).
1016  *
1017  * If the remote processor is already powered on, this function immediately
1018  * returns (successfully).
1019  *
1020  * Returns 0 on success, and an appropriate error value otherwise.
1021  */
1022 int rproc_boot(struct rproc *rproc)
1023 {
1024         const struct firmware *firmware_p;
1025         struct device *dev;
1026         int ret;
1027
1028         if (!rproc) {
1029                 pr_err("invalid rproc handle\n");
1030                 return -EINVAL;
1031         }
1032
1033         dev = &rproc->dev;
1034
1035         ret = mutex_lock_interruptible(&rproc->lock);
1036         if (ret) {
1037                 dev_err(dev, "can't lock rproc %s: %d\n", rproc->name, ret);
1038                 return ret;
1039         }
1040
1041         /* loading a firmware is required */
1042         if (!rproc->firmware) {
1043                 dev_err(dev, "%s: no firmware to load\n", __func__);
1044                 ret = -EINVAL;
1045                 goto unlock_mutex;
1046         }
1047
1048         /* prevent underlying implementation from being removed */
1049         if (!try_module_get(dev->parent->driver->owner)) {
1050                 dev_err(dev, "%s: can't get owner\n", __func__);
1051                 ret = -EINVAL;
1052                 goto unlock_mutex;
1053         }
1054
1055         /* skip the boot process if rproc is already powered up */
1056         if (atomic_inc_return(&rproc->power) > 1) {
1057                 ret = 0;
1058                 goto unlock_mutex;
1059         }
1060
1061         dev_info(dev, "powering up %s\n", rproc->name);
1062
1063         /* load firmware */
1064         ret = request_firmware(&firmware_p, rproc->firmware, dev);
1065         if (ret < 0) {
1066                 dev_err(dev, "request_firmware failed: %d\n", ret);
1067                 goto downref_rproc;
1068         }
1069
1070         ret = rproc_fw_boot(rproc, firmware_p);
1071
1072         release_firmware(firmware_p);
1073
1074 downref_rproc:
1075         if (ret) {
1076                 module_put(dev->parent->driver->owner);
1077                 atomic_dec(&rproc->power);
1078         }
1079 unlock_mutex:
1080         mutex_unlock(&rproc->lock);
1081         return ret;
1082 }
1083 EXPORT_SYMBOL(rproc_boot);
1084
1085 /**
1086  * rproc_shutdown() - power off the remote processor
1087  * @rproc: the remote processor
1088  *
1089  * Power off a remote processor (previously booted with rproc_boot()).
1090  *
1091  * In case @rproc is still being used by an additional user(s), then
1092  * this function will just decrement the power refcount and exit,
1093  * without really powering off the device.
1094  *
1095  * Every call to rproc_boot() must (eventually) be accompanied by a call
1096  * to rproc_shutdown(). Calling rproc_shutdown() redundantly is a bug.
1097  *
1098  * Notes:
1099  * - we're not decrementing the rproc's refcount, only the power refcount.
1100  *   which means that the @rproc handle stays valid even after rproc_shutdown()
1101  *   returns, and users can still use it with a subsequent rproc_boot(), if
1102  *   needed.
1103  */
1104 void rproc_shutdown(struct rproc *rproc)
1105 {
1106         struct device *dev = &rproc->dev;
1107         int ret;
1108
1109         ret = mutex_lock_interruptible(&rproc->lock);
1110         if (ret) {
1111                 dev_err(dev, "can't lock rproc %s: %d\n", rproc->name, ret);
1112                 return;
1113         }
1114
1115         /* if the remote proc is still needed, bail out */
1116         if (!atomic_dec_and_test(&rproc->power))
1117                 goto out;
1118
1119         /* power off the remote processor */
1120         ret = rproc->ops->stop(rproc);
1121         if (ret) {
1122                 atomic_inc(&rproc->power);
1123                 dev_err(dev, "can't stop rproc: %d\n", ret);
1124                 goto out;
1125         }
1126
1127         /* clean up all acquired resources */
1128         rproc_resource_cleanup(rproc);
1129
1130         rproc_disable_iommu(rproc);
1131
1132         /* Give the next start a clean resource table */
1133         rproc->table_ptr = rproc->cached_table;
1134
1135         /* if in crash state, unlock crash handler */
1136         if (rproc->state == RPROC_CRASHED)
1137                 complete_all(&rproc->crash_comp);
1138
1139         rproc->state = RPROC_OFFLINE;
1140
1141         dev_info(dev, "stopped remote processor %s\n", rproc->name);
1142
1143 out:
1144         mutex_unlock(&rproc->lock);
1145         if (!ret)
1146                 module_put(dev->parent->driver->owner);
1147 }
1148 EXPORT_SYMBOL(rproc_shutdown);
1149
1150 /**
1151  * rproc_get_by_phandle() - find a remote processor by phandle
1152  * @phandle: phandle to the rproc
1153  *
1154  * Finds an rproc handle using the remote processor's phandle, and then
1155  * return a handle to the rproc.
1156  *
1157  * This function increments the remote processor's refcount, so always
1158  * use rproc_put() to decrement it back once rproc isn't needed anymore.
1159  *
1160  * Returns the rproc handle on success, and NULL on failure.
1161  */
1162 struct rproc *rproc_get_by_phandle(phandle phandle)
1163 {
1164         struct rproc *rproc = NULL, *r;
1165         struct device_node *np;
1166
1167         np = of_find_node_by_phandle(phandle);
1168         if (!np)
1169                 return NULL;
1170
1171         mutex_lock(&rproc_list_mutex);
1172         list_for_each_entry(r, &rproc_list, node) {
1173                 if (r->dev.parent && r->dev.parent->of_node == np) {
1174                         rproc = r;
1175                         get_device(&rproc->dev);
1176                         break;
1177                 }
1178         }
1179         mutex_unlock(&rproc_list_mutex);
1180
1181         of_node_put(np);
1182
1183         return rproc;
1184 }
1185 EXPORT_SYMBOL(rproc_get_by_phandle);
1186
1187 /**
1188  * rproc_add() - register a remote processor
1189  * @rproc: the remote processor handle to register
1190  *
1191  * Registers @rproc with the remoteproc framework, after it has been
1192  * allocated with rproc_alloc().
1193  *
1194  * This is called by the platform-specific rproc implementation, whenever
1195  * a new remote processor device is probed.
1196  *
1197  * Returns 0 on success and an appropriate error code otherwise.
1198  *
1199  * Note: this function initiates an asynchronous firmware loading
1200  * context, which will look for virtio devices supported by the rproc's
1201  * firmware.
1202  *
1203  * If found, those virtio devices will be created and added, so as a result
1204  * of registering this remote processor, additional virtio drivers might be
1205  * probed.
1206  */
1207 int rproc_add(struct rproc *rproc)
1208 {
1209         struct device *dev = &rproc->dev;
1210         int ret;
1211
1212         ret = device_add(dev);
1213         if (ret < 0)
1214                 return ret;
1215
1216         /* expose to rproc_get_by_phandle users */
1217         mutex_lock(&rproc_list_mutex);
1218         list_add(&rproc->node, &rproc_list);
1219         mutex_unlock(&rproc_list_mutex);
1220
1221         dev_info(dev, "%s is available\n", rproc->name);
1222
1223         dev_info(dev, "Note: remoteproc is still under development and considered experimental.\n");
1224         dev_info(dev, "THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.\n");
1225
1226         /* create debugfs entries */
1227         rproc_create_debug_dir(rproc);
1228
1229         return rproc_add_virtio_devices(rproc);
1230 }
1231 EXPORT_SYMBOL(rproc_add);
1232
1233 /**
1234  * rproc_type_release() - release a remote processor instance
1235  * @dev: the rproc's device
1236  *
1237  * This function should _never_ be called directly.
1238  *
1239  * It will be called by the driver core when no one holds a valid pointer
1240  * to @dev anymore.
1241  */
1242 static void rproc_type_release(struct device *dev)
1243 {
1244         struct rproc *rproc = container_of(dev, struct rproc, dev);
1245
1246         dev_info(&rproc->dev, "releasing %s\n", rproc->name);
1247
1248         rproc_delete_debug_dir(rproc);
1249
1250         idr_destroy(&rproc->notifyids);
1251
1252         if (rproc->index >= 0)
1253                 ida_simple_remove(&rproc_dev_index, rproc->index);
1254
1255         kfree(rproc);
1256 }
1257
1258 static struct device_type rproc_type = {
1259         .name           = "remoteproc",
1260         .release        = rproc_type_release,
1261 };
1262
1263 /**
1264  * rproc_alloc() - allocate a remote processor handle
1265  * @dev: the underlying device
1266  * @name: name of this remote processor
1267  * @ops: platform-specific handlers (mainly start/stop)
1268  * @firmware: name of firmware file to load, can be NULL
1269  * @len: length of private data needed by the rproc driver (in bytes)
1270  *
1271  * Allocates a new remote processor handle, but does not register
1272  * it yet. if @firmware is NULL, a default name is used.
1273  *
1274  * This function should be used by rproc implementations during initialization
1275  * of the remote processor.
1276  *
1277  * After creating an rproc handle using this function, and when ready,
1278  * implementations should then call rproc_add() to complete
1279  * the registration of the remote processor.
1280  *
1281  * On success the new rproc is returned, and on failure, NULL.
1282  *
1283  * Note: _never_ directly deallocate @rproc, even if it was not registered
1284  * yet. Instead, when you need to unroll rproc_alloc(), use rproc_put().
1285  */
1286 struct rproc *rproc_alloc(struct device *dev, const char *name,
1287                                 const struct rproc_ops *ops,
1288                                 const char *firmware, int len)
1289 {
1290         struct rproc *rproc;
1291         char *p, *template = "rproc-%s-fw";
1292         int name_len = 0;
1293
1294         if (!dev || !name || !ops)
1295                 return NULL;
1296
1297         if (!firmware)
1298                 /*
1299                  * Make room for default firmware name (minus %s plus '\0').
1300                  * If the caller didn't pass in a firmware name then
1301                  * construct a default name.  We're already glomming 'len'
1302                  * bytes onto the end of the struct rproc allocation, so do
1303                  * a few more for the default firmware name (but only if
1304                  * the caller doesn't pass one).
1305                  */
1306                 name_len = strlen(name) + strlen(template) - 2 + 1;
1307
1308         rproc = kzalloc(sizeof(struct rproc) + len + name_len, GFP_KERNEL);
1309         if (!rproc)
1310                 return NULL;
1311
1312         if (!firmware) {
1313                 p = (char *)rproc + sizeof(struct rproc) + len;
1314                 snprintf(p, name_len, template, name);
1315         } else {
1316                 p = (char *)firmware;
1317         }
1318
1319         rproc->firmware = p;
1320         rproc->name = name;
1321         rproc->ops = ops;
1322         rproc->priv = &rproc[1];
1323
1324         device_initialize(&rproc->dev);
1325         rproc->dev.parent = dev;
1326         rproc->dev.type = &rproc_type;
1327
1328         /* Assign a unique device index and name */
1329         rproc->index = ida_simple_get(&rproc_dev_index, 0, 0, GFP_KERNEL);
1330         if (rproc->index < 0) {
1331                 dev_err(dev, "ida_simple_get failed: %d\n", rproc->index);
1332                 put_device(&rproc->dev);
1333                 return NULL;
1334         }
1335
1336         dev_set_name(&rproc->dev, "remoteproc%d", rproc->index);
1337
1338         atomic_set(&rproc->power, 0);
1339
1340         /* Set ELF as the default fw_ops handler */
1341         rproc->fw_ops = &rproc_elf_fw_ops;
1342
1343         mutex_init(&rproc->lock);
1344
1345         idr_init(&rproc->notifyids);
1346
1347         INIT_LIST_HEAD(&rproc->carveouts);
1348         INIT_LIST_HEAD(&rproc->mappings);
1349         INIT_LIST_HEAD(&rproc->traces);
1350         INIT_LIST_HEAD(&rproc->rvdevs);
1351
1352         INIT_WORK(&rproc->crash_handler, rproc_crash_handler_work);
1353         init_completion(&rproc->crash_comp);
1354
1355         rproc->state = RPROC_OFFLINE;
1356
1357         return rproc;
1358 }
1359 EXPORT_SYMBOL(rproc_alloc);
1360
1361 /**
1362  * rproc_put() - unroll rproc_alloc()
1363  * @rproc: the remote processor handle
1364  *
1365  * This function decrements the rproc dev refcount.
1366  *
1367  * If no one holds any reference to rproc anymore, then its refcount would
1368  * now drop to zero, and it would be freed.
1369  */
1370 void rproc_put(struct rproc *rproc)
1371 {
1372         put_device(&rproc->dev);
1373 }
1374 EXPORT_SYMBOL(rproc_put);
1375
1376 /**
1377  * rproc_del() - unregister a remote processor
1378  * @rproc: rproc handle to unregister
1379  *
1380  * This function should be called when the platform specific rproc
1381  * implementation decides to remove the rproc device. it should
1382  * _only_ be called if a previous invocation of rproc_add()
1383  * has completed successfully.
1384  *
1385  * After rproc_del() returns, @rproc isn't freed yet, because
1386  * of the outstanding reference created by rproc_alloc. To decrement that
1387  * one last refcount, one still needs to call rproc_put().
1388  *
1389  * Returns 0 on success and -EINVAL if @rproc isn't valid.
1390  */
1391 int rproc_del(struct rproc *rproc)
1392 {
1393         struct rproc_vdev *rvdev, *tmp;
1394
1395         if (!rproc)
1396                 return -EINVAL;
1397
1398         /* if rproc is just being registered, wait */
1399         wait_for_completion(&rproc->firmware_loading_complete);
1400
1401         /* clean up remote vdev entries */
1402         list_for_each_entry_safe(rvdev, tmp, &rproc->rvdevs, node)
1403                 rproc_remove_virtio_dev(rvdev);
1404
1405         /* Free the copy of the resource table */
1406         kfree(rproc->cached_table);
1407
1408         /* the rproc is downref'ed as soon as it's removed from the klist */
1409         mutex_lock(&rproc_list_mutex);
1410         list_del(&rproc->node);
1411         mutex_unlock(&rproc_list_mutex);
1412
1413         device_del(&rproc->dev);
1414
1415         return 0;
1416 }
1417 EXPORT_SYMBOL(rproc_del);
1418
1419 /**
1420  * rproc_report_crash() - rproc crash reporter function
1421  * @rproc: remote processor
1422  * @type: crash type
1423  *
1424  * This function must be called every time a crash is detected by the low-level
1425  * drivers implementing a specific remoteproc. This should not be called from a
1426  * non-remoteproc driver.
1427  *
1428  * This function can be called from atomic/interrupt context.
1429  */
1430 void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type)
1431 {
1432         if (!rproc) {
1433                 pr_err("NULL rproc pointer\n");
1434                 return;
1435         }
1436
1437         dev_err(&rproc->dev, "crash detected in %s: type %s\n",
1438                 rproc->name, rproc_crash_to_string(type));
1439
1440         /* create a new task to handle the error */
1441         schedule_work(&rproc->crash_handler);
1442 }
1443 EXPORT_SYMBOL(rproc_report_crash);
1444
1445 static int __init remoteproc_init(void)
1446 {
1447         rproc_init_debugfs();
1448
1449         return 0;
1450 }
1451 module_init(remoteproc_init);
1452
1453 static void __exit remoteproc_exit(void)
1454 {
1455         rproc_exit_debugfs();
1456 }
1457 module_exit(remoteproc_exit);
1458
1459 MODULE_LICENSE("GPL v2");
1460 MODULE_DESCRIPTION("Generic Remote Processor Framework");