blob: fc2ebff7d33214f9a847495b36c0f95566693c66 [file] [log] [blame]
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001/*
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>
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +030038#include <linux/idr.h>
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020039#include <linux/elf.h>
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +030040#include <linux/crc32.h>
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020041#include <linux/virtio_ids.h>
42#include <linux/virtio_ring.h>
Ohad Ben-Cohencf59d3e2012-01-31 15:23:41 +020043#include <asm/byteorder.h>
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020044
45#include "remoteproc_internal.h"
46
Dave Gerlachfec47d82015-05-22 15:45:27 -050047static DEFINE_MUTEX(rproc_list_mutex);
48static LIST_HEAD(rproc_list);
49
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020050typedef int (*rproc_handle_resources_t)(struct rproc *rproc,
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +020051 struct resource_table *table, int len);
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +030052typedef int (*rproc_handle_resource_t)(struct rproc *rproc,
53 void *, int offset, int avail);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020054
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +030055/* Unique indices for remoteproc devices */
56static DEFINE_IDA(rproc_dev_index);
57
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -050058static const char * const rproc_crash_names[] = {
59 [RPROC_MMUFAULT] = "mmufault",
Bjorn Anderssonb3d39032016-03-28 20:36:59 -070060 [RPROC_WATCHDOG] = "watchdog",
61 [RPROC_FATAL_ERROR] = "fatal error",
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -050062};
63
64/* translate rproc_crash_type to string */
65static const char *rproc_crash_to_string(enum rproc_crash_type type)
66{
67 if (type < ARRAY_SIZE(rproc_crash_names))
68 return rproc_crash_names[type];
Masanari Iidab23f7a02013-04-18 00:12:55 +090069 return "unknown";
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -050070}
71
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020072/*
73 * This is the IOMMU fault handler we register with the IOMMU API
74 * (when relevant; not all remote processors access memory through
75 * an IOMMU).
76 *
77 * IOMMU core will invoke this handler whenever the remote processor
78 * will try to access an unmapped device address.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020079 */
80static int rproc_iommu_fault(struct iommu_domain *domain, struct device *dev,
Anna, Suman730f84c2016-08-12 18:42:20 -050081 unsigned long iova, int flags, void *token)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020082{
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -050083 struct rproc *rproc = token;
84
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020085 dev_err(dev, "iommu fault: da 0x%lx flags 0x%x\n", iova, flags);
86
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -050087 rproc_report_crash(rproc, RPROC_MMUFAULT);
88
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020089 /*
90 * Let the iommu core know we're not really handling this fault;
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -050091 * we just used it as a recovery trigger.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +020092 */
93 return -ENOSYS;
94}
95
96static int rproc_enable_iommu(struct rproc *rproc)
97{
98 struct iommu_domain *domain;
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +030099 struct device *dev = rproc->dev.parent;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200100 int ret;
101
Suman Anna315491e2015-01-09 15:21:58 -0600102 if (!rproc->has_iommu) {
103 dev_dbg(dev, "iommu not present\n");
Mark Grosen0798e1d2011-12-13 08:41:47 +0200104 return 0;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200105 }
106
107 domain = iommu_domain_alloc(dev->bus);
108 if (!domain) {
109 dev_err(dev, "can't alloc iommu domain\n");
110 return -ENOMEM;
111 }
112
Ohad Ben-Cohen77ca2332012-05-21 20:20:05 +0300113 iommu_set_fault_handler(domain, rproc_iommu_fault, rproc);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200114
115 ret = iommu_attach_device(domain, dev);
116 if (ret) {
117 dev_err(dev, "can't attach iommu device: %d\n", ret);
118 goto free_domain;
119 }
120
121 rproc->domain = domain;
122
123 return 0;
124
125free_domain:
126 iommu_domain_free(domain);
127 return ret;
128}
129
130static void rproc_disable_iommu(struct rproc *rproc)
131{
132 struct iommu_domain *domain = rproc->domain;
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300133 struct device *dev = rproc->dev.parent;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200134
135 if (!domain)
136 return;
137
138 iommu_detach_device(domain, dev);
139 iommu_domain_free(domain);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200140}
141
Suman Annaa01f7cd2015-05-22 15:45:28 -0500142/**
143 * rproc_da_to_va() - lookup the kernel virtual address for a remoteproc address
144 * @rproc: handle of a remote processor
145 * @da: remoteproc device address to translate
146 * @len: length of the memory region @da is pointing to
147 *
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200148 * Some remote processors will ask us to allocate them physically contiguous
149 * memory regions (which we call "carveouts"), and map them to specific
Suman Annaa01f7cd2015-05-22 15:45:28 -0500150 * device addresses (which are hardcoded in the firmware). They may also have
151 * dedicated memory regions internal to the processors, and use them either
152 * exclusively or alongside carveouts.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200153 *
154 * They may then ask us to copy objects into specific device addresses (e.g.
155 * code/data sections) or expose us certain symbols in other device address
156 * (e.g. their trace buffer).
157 *
Suman Annaa01f7cd2015-05-22 15:45:28 -0500158 * This function is a helper function with which we can go over the allocated
159 * carveouts and translate specific device addresses to kernel virtual addresses
160 * so we can access the referenced memory. This function also allows to perform
161 * translations on the internal remoteproc memory regions through a platform
162 * implementation specific da_to_va ops, if present.
163 *
164 * The function returns a valid kernel address on success or NULL on failure.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200165 *
166 * Note: phys_to_virt(iommu_iova_to_phys(rproc->domain, da)) will work too,
167 * but only on kernel direct mapped RAM memory. Instead, we're just using
Suman Annaa01f7cd2015-05-22 15:45:28 -0500168 * here the output of the DMA API for the carveouts, which should be more
169 * correct.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200170 */
Sjur Brændeland72854fb2012-07-15 11:25:27 +0300171void *rproc_da_to_va(struct rproc *rproc, u64 da, int len)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200172{
173 struct rproc_mem_entry *carveout;
174 void *ptr = NULL;
175
Suman Annaa01f7cd2015-05-22 15:45:28 -0500176 if (rproc->ops->da_to_va) {
177 ptr = rproc->ops->da_to_va(rproc, da, len);
178 if (ptr)
179 goto out;
180 }
181
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200182 list_for_each_entry(carveout, &rproc->carveouts, node) {
183 int offset = da - carveout->da;
184
185 /* try next carveout if da is too small */
186 if (offset < 0)
187 continue;
188
189 /* try next carveout if da is too large */
190 if (offset + len > carveout->len)
191 continue;
192
193 ptr = carveout->va + offset;
194
195 break;
196 }
197
Suman Annaa01f7cd2015-05-22 15:45:28 -0500198out:
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200199 return ptr;
200}
Sjur Brændeland4afc89d2012-06-19 10:08:18 +0300201EXPORT_SYMBOL(rproc_da_to_va);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200202
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300203int rproc_alloc_vring(struct rproc_vdev *rvdev, int i)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200204{
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100205 struct rproc *rproc = rvdev->rproc;
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300206 struct device *dev = &rproc->dev;
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300207 struct rproc_vring *rvring = &rvdev->vring[i];
Sjur Brændelandc0d63152013-02-21 18:15:40 +0100208 struct fw_rsc_vdev *rsc;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100209 dma_addr_t dma;
210 void *va;
211 int ret, size, notifyid;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200212
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300213 /* actual size of vring (in bytes) */
214 size = PAGE_ALIGN(vring_size(rvring->len, rvring->align));
215
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300216 /*
217 * Allocate non-cacheable memory for the vring. In the future
218 * this call will also configure the IOMMU for us
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300219 */
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300220 va = dma_alloc_coherent(dev->parent, size, &dma, GFP_KERNEL);
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300221 if (!va) {
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300222 dev_err(dev->parent, "dma_alloc_coherent failed\n");
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300223 return -EINVAL;
224 }
225
226 /*
227 * Assign an rproc-wide unique index for this vring
228 * TODO: assign a notifyid for rvdev updates as well
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300229 * TODO: support predefined notifyids (via resource table)
230 */
Tejun Heo15fc6112013-02-27 17:04:39 -0800231 ret = idr_alloc(&rproc->notifyids, rvring, 0, 0, GFP_KERNEL);
Suman Annab39599b2013-03-06 16:56:48 -0600232 if (ret < 0) {
Tejun Heo15fc6112013-02-27 17:04:39 -0800233 dev_err(dev, "idr_alloc failed: %d\n", ret);
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300234 dma_free_coherent(dev->parent, size, va, dma);
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300235 return ret;
236 }
Tejun Heo15fc6112013-02-27 17:04:39 -0800237 notifyid = ret;
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300238
Bjorn Andersson48f18f82016-10-19 19:40:10 -0700239 /* Potentially bump max_notifyid */
240 if (notifyid > rproc->max_notifyid)
241 rproc->max_notifyid = notifyid;
242
Anna, Suman9d7814a2016-08-12 18:42:21 -0500243 dev_dbg(dev, "vring%d: va %p dma %pad size 0x%x idr %d\n",
Anna, Sumanb605ed8b22016-08-12 18:42:16 -0500244 i, va, &dma, size, notifyid);
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300245
246 rvring->va = va;
247 rvring->dma = dma;
248 rvring->notifyid = notifyid;
249
Sjur Brændelandc0d63152013-02-21 18:15:40 +0100250 /*
251 * Let the rproc know the notifyid and da of this vring.
252 * Not all platforms use dma_alloc_coherent to automatically
253 * set up the iommu. In this case the device address (da) will
254 * hold the physical address and not the device address.
255 */
256 rsc = (void *)rproc->table_ptr + rvdev->rsc_offset;
257 rsc->vring[i].da = dma;
258 rsc->vring[i].notifyid = notifyid;
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300259 return 0;
260}
261
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200262static int
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300263rproc_parse_vring(struct rproc_vdev *rvdev, struct fw_rsc_vdev *rsc, int i)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200264{
265 struct rproc *rproc = rvdev->rproc;
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300266 struct device *dev = &rproc->dev;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200267 struct fw_rsc_vdev_vring *vring = &rsc->vring[i];
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300268 struct rproc_vring *rvring = &rvdev->vring[i];
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200269
Anna, Suman9d7814a2016-08-12 18:42:21 -0500270 dev_dbg(dev, "vdev rsc: vring%d: da 0x%x, qsz %d, align %d\n",
Anna, Suman730f84c2016-08-12 18:42:20 -0500271 i, vring->da, vring->num, vring->align);
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100272
Ohad Ben-Cohen63140e02012-02-29 14:42:13 +0200273 /* verify queue size and vring alignment are sane */
274 if (!vring->num || !vring->align) {
275 dev_err(dev, "invalid qsz (%d) or alignment (%d)\n",
Anna, Suman730f84c2016-08-12 18:42:20 -0500276 vring->num, vring->align);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200277 return -EINVAL;
278 }
279
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300280 rvring->len = vring->num;
281 rvring->align = vring->align;
282 rvring->rvdev = rvdev;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200283
284 return 0;
285}
286
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300287void rproc_free_vring(struct rproc_vring *rvring)
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100288{
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300289 int size = PAGE_ALIGN(vring_size(rvring->len, rvring->align));
290 struct rproc *rproc = rvring->rvdev->rproc;
Sjur Brændelandc0d63152013-02-21 18:15:40 +0100291 int idx = rvring->rvdev->vring - rvring;
292 struct fw_rsc_vdev *rsc;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100293
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300294 dma_free_coherent(rproc->dev.parent, size, rvring->va, rvring->dma);
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300295 idr_remove(&rproc->notifyids, rvring->notifyid);
Sjur Brændeland099a3f32012-09-18 20:32:45 +0200296
Sjur Brændelandc0d63152013-02-21 18:15:40 +0100297 /* reset resource entry info */
298 rsc = (void *)rproc->table_ptr + rvring->rvdev->rsc_offset;
299 rsc->vring[idx].da = 0;
300 rsc->vring[idx].notifyid = -1;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100301}
302
Bjorn Anderssonf5bcb352016-10-19 19:40:09 -0700303static int rproc_vdev_do_probe(struct rproc_subdev *subdev)
304{
305 struct rproc_vdev *rvdev = container_of(subdev, struct rproc_vdev, subdev);
306
307 return rproc_add_virtio_dev(rvdev, rvdev->id);
308}
309
310static void rproc_vdev_do_remove(struct rproc_subdev *subdev)
311{
312 struct rproc_vdev *rvdev = container_of(subdev, struct rproc_vdev, subdev);
313
314 rproc_remove_virtio_dev(rvdev);
315}
316
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200317/**
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200318 * rproc_handle_vdev() - handle a vdev fw resource
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200319 * @rproc: the remote processor
320 * @rsc: the vring resource descriptor
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200321 * @avail: size of available data (for sanity checking the image)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200322 *
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100323 * This resource entry requests the host to statically register a virtio
324 * device (vdev), and setup everything needed to support it. It contains
325 * everything needed to make it possible: the virtio device id, virtio
326 * device features, vrings information, virtio config space, etc...
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200327 *
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100328 * Before registering the vdev, the vrings are allocated from non-cacheable
329 * physically contiguous memory. Currently we only support two vrings per
330 * remote processor (temporary limitation). We might also want to consider
331 * doing the vring allocation only later when ->find_vqs() is invoked, and
332 * then release them upon ->del_vqs().
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200333 *
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100334 * Note: @da is currently not really handled correctly: we dynamically
335 * allocate it using the DMA API, ignoring requested hard coded addresses,
336 * and we don't take care of any required IOMMU programming. This is all
337 * going to be taken care of when the generic iommu-based DMA API will be
338 * merged. Meanwhile, statically-addressed iommu-based firmware images should
339 * use RSC_DEVMEM resource entries to map their required @da to the physical
340 * address of their base CMA region (ouch, hacky!).
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200341 *
342 * Returns 0 on success, or an appropriate error code otherwise
343 */
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200344static int rproc_handle_vdev(struct rproc *rproc, struct fw_rsc_vdev *rsc,
Anna, Suman730f84c2016-08-12 18:42:20 -0500345 int offset, int avail)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200346{
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300347 struct device *dev = &rproc->dev;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100348 struct rproc_vdev *rvdev;
349 int i, ret;
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200350
351 /* make sure resource isn't truncated */
352 if (sizeof(*rsc) + rsc->num_of_vrings * sizeof(struct fw_rsc_vdev_vring)
353 + rsc->config_len > avail) {
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300354 dev_err(dev, "vdev rsc is truncated\n");
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200355 return -EINVAL;
356 }
357
358 /* make sure reserved bytes are zeroes */
359 if (rsc->reserved[0] || rsc->reserved[1]) {
360 dev_err(dev, "vdev rsc has non zero reserved bytes\n");
361 return -EINVAL;
362 }
363
Anna, Suman9d7814a2016-08-12 18:42:21 -0500364 dev_dbg(dev, "vdev rsc: id %d, dfeatures 0x%x, cfg len %d, %d vrings\n",
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200365 rsc->id, rsc->dfeatures, rsc->config_len, rsc->num_of_vrings);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200366
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100367 /* we currently support only two vrings per rvdev */
368 if (rsc->num_of_vrings > ARRAY_SIZE(rvdev->vring)) {
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200369 dev_err(dev, "too many vrings: %d\n", rsc->num_of_vrings);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200370 return -EINVAL;
371 }
372
Anna, Suman899585a2016-08-12 18:42:18 -0500373 rvdev = kzalloc(sizeof(*rvdev), GFP_KERNEL);
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100374 if (!rvdev)
375 return -ENOMEM;
376
Bjorn Anderssonaab8d802016-10-19 19:40:06 -0700377 kref_init(&rvdev->refcount);
378
Bjorn Anderssonf5bcb352016-10-19 19:40:09 -0700379 rvdev->id = rsc->id;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100380 rvdev->rproc = rproc;
381
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300382 /* parse the vrings */
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200383 for (i = 0; i < rsc->num_of_vrings; i++) {
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300384 ret = rproc_parse_vring(rvdev, rsc, i);
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100385 if (ret)
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300386 goto free_rvdev;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200387 }
388
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300389 /* remember the resource offset*/
390 rvdev->rsc_offset = offset;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100391
Bjorn Anderssona863af52016-10-19 19:40:07 -0700392 /* allocate the vring resources */
393 for (i = 0; i < rsc->num_of_vrings; i++) {
394 ret = rproc_alloc_vring(rvdev, i);
395 if (ret)
396 goto unwind_vring_allocations;
397 }
398
Bjorn Andersson2b45cef2016-10-19 19:40:08 -0700399 /* track the rvdevs list reference */
400 kref_get(&rvdev->refcount);
401
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100402 list_add_tail(&rvdev->node, &rproc->rvdevs);
403
Bjorn Anderssonf5bcb352016-10-19 19:40:09 -0700404 rproc_add_subdev(rproc, &rvdev->subdev,
405 rproc_vdev_do_probe, rproc_vdev_do_remove);
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100406
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200407 return 0;
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100408
Bjorn Anderssona863af52016-10-19 19:40:07 -0700409unwind_vring_allocations:
410 for (i--; i >= 0; i--)
411 rproc_free_vring(&rvdev->vring[i]);
Ohad Ben-Cohen6db20ea2012-05-17 14:23:59 +0300412free_rvdev:
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100413 kfree(rvdev);
414 return ret;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200415}
416
Bjorn Anderssonaab8d802016-10-19 19:40:06 -0700417void rproc_vdev_release(struct kref *ref)
418{
419 struct rproc_vdev *rvdev = container_of(ref, struct rproc_vdev, refcount);
Bjorn Anderssona863af52016-10-19 19:40:07 -0700420 struct rproc_vring *rvring;
Bjorn Anderssonf5bcb352016-10-19 19:40:09 -0700421 struct rproc *rproc = rvdev->rproc;
Bjorn Anderssona863af52016-10-19 19:40:07 -0700422 int id;
423
424 for (id = 0; id < ARRAY_SIZE(rvdev->vring); id++) {
425 rvring = &rvdev->vring[id];
426 if (!rvring->va)
427 continue;
428
429 rproc_free_vring(rvring);
430 }
Bjorn Anderssonaab8d802016-10-19 19:40:06 -0700431
Bjorn Anderssonf5bcb352016-10-19 19:40:09 -0700432 rproc_remove_subdev(rproc, &rvdev->subdev);
Bjorn Anderssonaab8d802016-10-19 19:40:06 -0700433 list_del(&rvdev->node);
434 kfree(rvdev);
435}
436
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200437/**
438 * rproc_handle_trace() - handle a shared trace buffer resource
439 * @rproc: the remote processor
440 * @rsc: the trace resource descriptor
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200441 * @avail: size of available data (for sanity checking the image)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200442 *
443 * In case the remote processor dumps trace logs into memory,
444 * export it via debugfs.
445 *
446 * Currently, the 'da' member of @rsc should contain the device address
447 * where the remote processor is dumping the traces. Later we could also
448 * support dynamically allocating this address using the generic
449 * DMA API (but currently there isn't a use case for that).
450 *
451 * Returns 0 on success, or an appropriate error code otherwise
452 */
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200453static int rproc_handle_trace(struct rproc *rproc, struct fw_rsc_trace *rsc,
Anna, Suman730f84c2016-08-12 18:42:20 -0500454 int offset, int avail)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200455{
456 struct rproc_mem_entry *trace;
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300457 struct device *dev = &rproc->dev;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200458 void *ptr;
459 char name[15];
460
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200461 if (sizeof(*rsc) > avail) {
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300462 dev_err(dev, "trace rsc is truncated\n");
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200463 return -EINVAL;
464 }
465
466 /* make sure reserved bytes are zeroes */
467 if (rsc->reserved) {
468 dev_err(dev, "trace rsc has non zero reserved bytes\n");
469 return -EINVAL;
470 }
471
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200472 /* what's the kernel address of this resource ? */
473 ptr = rproc_da_to_va(rproc, rsc->da, rsc->len);
474 if (!ptr) {
475 dev_err(dev, "erroneous trace resource entry\n");
476 return -EINVAL;
477 }
478
479 trace = kzalloc(sizeof(*trace), GFP_KERNEL);
Suman Anna172e6ab2015-02-27 17:18:23 -0600480 if (!trace)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200481 return -ENOMEM;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200482
483 /* set the trace buffer dma properties */
484 trace->len = rsc->len;
485 trace->va = ptr;
486
487 /* make sure snprintf always null terminates, even if truncating */
488 snprintf(name, sizeof(name), "trace%d", rproc->num_traces);
489
490 /* create the debugfs entry */
491 trace->priv = rproc_create_trace_file(name, rproc, trace);
492 if (!trace->priv) {
493 trace->va = NULL;
494 kfree(trace);
495 return -EINVAL;
496 }
497
498 list_add_tail(&trace->node, &rproc->traces);
499
500 rproc->num_traces++;
501
Lee Jones35386162016-08-04 10:21:46 +0100502 dev_dbg(dev, "%s added: va %p, da 0x%x, len 0x%x\n",
503 name, ptr, rsc->da, rsc->len);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200504
505 return 0;
506}
507
508/**
509 * rproc_handle_devmem() - handle devmem resource entry
510 * @rproc: remote processor handle
511 * @rsc: the devmem resource entry
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200512 * @avail: size of available data (for sanity checking the image)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200513 *
514 * Remote processors commonly need to access certain on-chip peripherals.
515 *
516 * Some of these remote processors access memory via an iommu device,
517 * and might require us to configure their iommu before they can access
518 * the on-chip peripherals they need.
519 *
520 * This resource entry is a request to map such a peripheral device.
521 *
522 * These devmem entries will contain the physical address of the device in
523 * the 'pa' member. If a specific device address is expected, then 'da' will
524 * contain it (currently this is the only use case supported). 'len' will
525 * contain the size of the physical region we need to map.
526 *
527 * Currently we just "trust" those devmem entries to contain valid physical
528 * addresses, but this is going to change: we want the implementations to
529 * tell us ranges of physical addresses the firmware is allowed to request,
530 * and not allow firmwares to request access to physical addresses that
531 * are outside those ranges.
532 */
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200533static int rproc_handle_devmem(struct rproc *rproc, struct fw_rsc_devmem *rsc,
Anna, Suman730f84c2016-08-12 18:42:20 -0500534 int offset, int avail)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200535{
536 struct rproc_mem_entry *mapping;
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300537 struct device *dev = &rproc->dev;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200538 int ret;
539
540 /* no point in handling this resource without a valid iommu domain */
541 if (!rproc->domain)
542 return -EINVAL;
543
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200544 if (sizeof(*rsc) > avail) {
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300545 dev_err(dev, "devmem rsc is truncated\n");
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200546 return -EINVAL;
547 }
548
549 /* make sure reserved bytes are zeroes */
550 if (rsc->reserved) {
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300551 dev_err(dev, "devmem rsc has non zero reserved bytes\n");
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200552 return -EINVAL;
553 }
554
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200555 mapping = kzalloc(sizeof(*mapping), GFP_KERNEL);
Suman Anna172e6ab2015-02-27 17:18:23 -0600556 if (!mapping)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200557 return -ENOMEM;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200558
559 ret = iommu_map(rproc->domain, rsc->da, rsc->pa, rsc->len, rsc->flags);
560 if (ret) {
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300561 dev_err(dev, "failed to map devmem: %d\n", ret);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200562 goto out;
563 }
564
565 /*
566 * We'll need this info later when we'll want to unmap everything
567 * (e.g. on shutdown).
568 *
569 * We can't trust the remote processor not to change the resource
570 * table, so we must maintain this info independently.
571 */
572 mapping->da = rsc->da;
573 mapping->len = rsc->len;
574 list_add_tail(&mapping->node, &rproc->mappings);
575
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300576 dev_dbg(dev, "mapped devmem pa 0x%x, da 0x%x, len 0x%x\n",
Anna, Suman730f84c2016-08-12 18:42:20 -0500577 rsc->pa, rsc->da, rsc->len);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200578
579 return 0;
580
581out:
582 kfree(mapping);
583 return ret;
584}
585
586/**
587 * rproc_handle_carveout() - handle phys contig memory allocation requests
588 * @rproc: rproc handle
589 * @rsc: the resource entry
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200590 * @avail: size of available data (for image validation)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200591 *
592 * This function will handle firmware requests for allocation of physically
593 * contiguous memory regions.
594 *
595 * These request entries should come first in the firmware's resource table,
596 * as other firmware entries might request placing other data objects inside
597 * these memory regions (e.g. data/code segments, trace resource entries, ...).
598 *
599 * Allocating memory this way helps utilizing the reserved physical memory
600 * (e.g. CMA) more efficiently, and also minimizes the number of TLB entries
601 * needed to map it (in case @rproc is using an IOMMU). Reducing the TLB
602 * pressure is important; it may have a substantial impact on performance.
603 */
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200604static int rproc_handle_carveout(struct rproc *rproc,
Anna, Suman730f84c2016-08-12 18:42:20 -0500605 struct fw_rsc_carveout *rsc,
606 int offset, int avail)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200607{
608 struct rproc_mem_entry *carveout, *mapping;
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300609 struct device *dev = &rproc->dev;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200610 dma_addr_t dma;
611 void *va;
612 int ret;
613
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200614 if (sizeof(*rsc) > avail) {
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300615 dev_err(dev, "carveout rsc is truncated\n");
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200616 return -EINVAL;
617 }
618
619 /* make sure reserved bytes are zeroes */
620 if (rsc->reserved) {
621 dev_err(dev, "carveout rsc has non zero reserved bytes\n");
622 return -EINVAL;
623 }
624
Anna, Suman9d7814a2016-08-12 18:42:21 -0500625 dev_dbg(dev, "carveout rsc: name: %s, da 0x%x, pa 0x%x, len 0x%x, flags 0x%x\n",
Lee Jones35386162016-08-04 10:21:46 +0100626 rsc->name, rsc->da, rsc->pa, rsc->len, rsc->flags);
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200627
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200628 carveout = kzalloc(sizeof(*carveout), GFP_KERNEL);
Suman Anna172e6ab2015-02-27 17:18:23 -0600629 if (!carveout)
Dan Carpenter7168d912012-09-25 10:01:56 +0300630 return -ENOMEM;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200631
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300632 va = dma_alloc_coherent(dev->parent, rsc->len, &dma, GFP_KERNEL);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200633 if (!va) {
Lee Jones9c219b22016-08-04 10:21:45 +0100634 dev_err(dev->parent,
635 "failed to allocate dma memory: len 0x%x\n", rsc->len);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200636 ret = -ENOMEM;
637 goto free_carv;
638 }
639
Anna, Sumanb605ed8b22016-08-12 18:42:16 -0500640 dev_dbg(dev, "carveout va %p, dma %pad, len 0x%x\n",
641 va, &dma, rsc->len);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200642
643 /*
644 * Ok, this is non-standard.
645 *
646 * Sometimes we can't rely on the generic iommu-based DMA API
647 * to dynamically allocate the device address and then set the IOMMU
648 * tables accordingly, because some remote processors might
649 * _require_ us to use hard coded device addresses that their
650 * firmware was compiled with.
651 *
652 * In this case, we must use the IOMMU API directly and map
653 * the memory to the device address as expected by the remote
654 * processor.
655 *
656 * Obviously such remote processor devices should not be configured
657 * to use the iommu-based DMA API: we expect 'dma' to contain the
658 * physical address in this case.
659 */
660 if (rproc->domain) {
Dan Carpenter7168d912012-09-25 10:01:56 +0300661 mapping = kzalloc(sizeof(*mapping), GFP_KERNEL);
662 if (!mapping) {
Dan Carpenter7168d912012-09-25 10:01:56 +0300663 ret = -ENOMEM;
664 goto dma_free;
665 }
666
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200667 ret = iommu_map(rproc->domain, rsc->da, dma, rsc->len,
Anna, Suman730f84c2016-08-12 18:42:20 -0500668 rsc->flags);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200669 if (ret) {
670 dev_err(dev, "iommu_map failed: %d\n", ret);
Dan Carpenter7168d912012-09-25 10:01:56 +0300671 goto free_mapping;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200672 }
673
674 /*
675 * We'll need this info later when we'll want to unmap
676 * everything (e.g. on shutdown).
677 *
678 * We can't trust the remote processor not to change the
679 * resource table, so we must maintain this info independently.
680 */
681 mapping->da = rsc->da;
682 mapping->len = rsc->len;
683 list_add_tail(&mapping->node, &rproc->mappings);
684
Anna, Sumanb605ed8b22016-08-12 18:42:16 -0500685 dev_dbg(dev, "carveout mapped 0x%x to %pad\n",
686 rsc->da, &dma);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200687 }
688
Ohad Ben-Cohen0e49b722012-07-01 11:30:57 +0300689 /*
690 * Some remote processors might need to know the pa
691 * even though they are behind an IOMMU. E.g., OMAP4's
692 * remote M3 processor needs this so it can control
693 * on-chip hardware accelerators that are not behind
694 * the IOMMU, and therefor must know the pa.
695 *
696 * Generally we don't want to expose physical addresses
697 * if we don't have to (remote processors are generally
698 * _not_ trusted), so we might want to do this only for
699 * remote processor that _must_ have this (e.g. OMAP4's
700 * dual M3 subsystem).
701 *
702 * Non-IOMMU processors might also want to have this info.
703 * In this case, the device address and the physical address
704 * are the same.
705 */
706 rsc->pa = dma;
707
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200708 carveout->va = va;
709 carveout->len = rsc->len;
710 carveout->dma = dma;
711 carveout->da = rsc->da;
712
713 list_add_tail(&carveout->node, &rproc->carveouts);
714
715 return 0;
716
Dan Carpenter7168d912012-09-25 10:01:56 +0300717free_mapping:
718 kfree(mapping);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200719dma_free:
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300720 dma_free_coherent(dev->parent, rsc->len, va, dma);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200721free_carv:
722 kfree(carveout);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200723 return ret;
724}
725
Ohad Ben-Cohene12bc142012-01-31 16:07:27 +0200726/*
727 * A lookup table for resource handlers. The indices are defined in
728 * enum fw_resource_type.
729 */
Sjur Brændeland232fcdb2013-02-21 18:15:36 +0100730static rproc_handle_resource_t rproc_loading_handlers[RSC_LAST] = {
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200731 [RSC_CARVEOUT] = (rproc_handle_resource_t)rproc_handle_carveout,
732 [RSC_DEVMEM] = (rproc_handle_resource_t)rproc_handle_devmem,
733 [RSC_TRACE] = (rproc_handle_resource_t)rproc_handle_trace,
Sjur Brændeland232fcdb2013-02-21 18:15:36 +0100734 [RSC_VDEV] = (rproc_handle_resource_t)rproc_handle_vdev,
735};
736
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200737/* handle firmware resource entries before booting the remote processor */
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300738static int rproc_handle_resources(struct rproc *rproc, int len,
Sjur Brændeland232fcdb2013-02-21 18:15:36 +0100739 rproc_handle_resource_t handlers[RSC_LAST])
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200740{
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300741 struct device *dev = &rproc->dev;
Ohad Ben-Cohene12bc142012-01-31 16:07:27 +0200742 rproc_handle_resource_t handler;
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200743 int ret = 0, i;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200744
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300745 for (i = 0; i < rproc->table_ptr->num; i++) {
746 int offset = rproc->table_ptr->offset[i];
747 struct fw_rsc_hdr *hdr = (void *)rproc->table_ptr + offset;
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200748 int avail = len - offset - sizeof(*hdr);
749 void *rsc = (void *)hdr + sizeof(*hdr);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200750
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200751 /* make sure table isn't truncated */
752 if (avail < 0) {
753 dev_err(dev, "rsc table is truncated\n");
754 return -EINVAL;
755 }
756
757 dev_dbg(dev, "rsc: type %d\n", hdr->type);
758
759 if (hdr->type >= RSC_LAST) {
760 dev_warn(dev, "unsupported resource %d\n", hdr->type);
Ohad Ben-Cohene12bc142012-01-31 16:07:27 +0200761 continue;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200762 }
763
Sjur Brændeland232fcdb2013-02-21 18:15:36 +0100764 handler = handlers[hdr->type];
Ohad Ben-Cohene12bc142012-01-31 16:07:27 +0200765 if (!handler)
766 continue;
767
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300768 ret = handler(rproc, rsc, offset + sizeof(*hdr), avail);
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100769 if (ret)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200770 break;
Ohad Ben-Cohenfd2c15e2012-02-01 21:56:16 +0200771 }
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200772
773 return ret;
774}
775
Bjorn Andersson7bdc9652016-10-19 19:40:02 -0700776static int rproc_probe_subdevices(struct rproc *rproc)
777{
778 struct rproc_subdev *subdev;
779 int ret;
780
781 list_for_each_entry(subdev, &rproc->subdevs, node) {
782 ret = subdev->probe(subdev);
783 if (ret)
784 goto unroll_registration;
785 }
786
787 return 0;
788
789unroll_registration:
790 list_for_each_entry_continue_reverse(subdev, &rproc->subdevs, node)
791 subdev->remove(subdev);
792
793 return ret;
794}
795
796static void rproc_remove_subdevices(struct rproc *rproc)
797{
798 struct rproc_subdev *subdev;
799
800 list_for_each_entry(subdev, &rproc->subdevs, node)
801 subdev->remove(subdev);
802}
803
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200804/**
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200805 * rproc_resource_cleanup() - clean up and free all acquired resources
806 * @rproc: rproc handle
807 *
808 * This function will free all resources acquired for @rproc, and it
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +0100809 * is called whenever @rproc either shuts down or fails to boot.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200810 */
811static void rproc_resource_cleanup(struct rproc *rproc)
812{
813 struct rproc_mem_entry *entry, *tmp;
Bjorn Anderssond81fb322016-08-11 14:52:52 -0700814 struct rproc_vdev *rvdev, *rvtmp;
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300815 struct device *dev = &rproc->dev;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200816
817 /* clean up debugfs trace entries */
818 list_for_each_entry_safe(entry, tmp, &rproc->traces, node) {
819 rproc_remove_trace_file(entry->priv);
820 rproc->num_traces--;
821 list_del(&entry->node);
822 kfree(entry);
823 }
824
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200825 /* clean up iommu mapping entries */
826 list_for_each_entry_safe(entry, tmp, &rproc->mappings, node) {
827 size_t unmapped;
828
829 unmapped = iommu_unmap(rproc->domain, entry->da, entry->len);
830 if (unmapped != entry->len) {
831 /* nothing much to do besides complaining */
Sjur Brændelande981f6d2012-06-10 14:37:07 +0300832 dev_err(dev, "failed to unmap %u/%zu\n", entry->len,
Anna, Suman730f84c2016-08-12 18:42:20 -0500833 unmapped);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200834 }
835
836 list_del(&entry->node);
837 kfree(entry);
838 }
Suman Annab6356a02013-07-01 17:01:56 +0300839
840 /* clean up carveout allocations */
841 list_for_each_entry_safe(entry, tmp, &rproc->carveouts, node) {
Suman Anna172e6ab2015-02-27 17:18:23 -0600842 dma_free_coherent(dev->parent, entry->len, entry->va,
843 entry->dma);
Suman Annab6356a02013-07-01 17:01:56 +0300844 list_del(&entry->node);
845 kfree(entry);
846 }
Bjorn Anderssond81fb322016-08-11 14:52:52 -0700847
848 /* clean up remote vdev entries */
Bjorn Anderssonf5bcb352016-10-19 19:40:09 -0700849 list_for_each_entry_safe(rvdev, rvtmp, &rproc->rvdevs, node)
Bjorn Andersson2b45cef2016-10-19 19:40:08 -0700850 kref_put(&rvdev->refcount, rproc_vdev_release);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200851}
852
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200853/*
854 * take a firmware and boot a remote processor with it.
855 */
856static int rproc_fw_boot(struct rproc *rproc, const struct firmware *fw)
857{
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +0300858 struct device *dev = &rproc->dev;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200859 const char *name = rproc->firmware;
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300860 struct resource_table *table, *loaded_table;
Ohad Ben-Cohen1e3e2c72012-02-13 21:47:49 +0100861 int ret, tablesz;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200862
863 ret = rproc_fw_sanity_check(rproc, fw);
864 if (ret)
865 return ret;
866
Sjur Brændelande981f6d2012-06-10 14:37:07 +0300867 dev_info(dev, "Booting fw image %s, size %zd\n", name, fw->size);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200868
869 /*
870 * if enabling an IOMMU isn't relevant for this rproc, this is
871 * just a nop
872 */
873 ret = rproc_enable_iommu(rproc);
874 if (ret) {
875 dev_err(dev, "can't enable iommu: %d\n", ret);
876 return ret;
877 }
878
Sjur Brændeland3e5f9eb2012-06-19 09:56:44 +0300879 rproc->bootaddr = rproc_get_boot_addr(rproc, fw);
Wei Yongjun89970d22013-06-30 11:07:13 +0300880 ret = -EINVAL;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200881
Ohad Ben-Cohen1e3e2c72012-02-13 21:47:49 +0100882 /* look for the resource table */
Sjur Brændelandbd484982012-06-19 09:55:34 +0300883 table = rproc_find_rsc_table(rproc, fw, &tablesz);
Stefan Agnera66a5112015-08-28 18:08:19 -0700884 if (!table) {
885 dev_err(dev, "Failed to find resource table\n");
Ohad Ben-Cohen1e3e2c72012-02-13 21:47:49 +0100886 goto clean_up;
Stefan Agnera66a5112015-08-28 18:08:19 -0700887 }
Ohad Ben-Cohen1e3e2c72012-02-13 21:47:49 +0100888
Bjorn Andersson988d2042016-08-11 14:52:53 -0700889 /*
890 * Create a copy of the resource table. When a virtio device starts
891 * and calls vring_new_virtqueue() the address of the allocated vring
Bjorn Anderssoncda85292016-10-19 19:40:12 -0700892 * will be stored in the table_ptr. Before the device is started,
893 * table_ptr will be copied into device memory.
Bjorn Andersson988d2042016-08-11 14:52:53 -0700894 */
Bjorn Anderssoncda85292016-10-19 19:40:12 -0700895 rproc->table_ptr = kmemdup(table, tablesz, GFP_KERNEL);
896 if (!rproc->table_ptr)
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300897 goto clean_up;
Bjorn Andersson988d2042016-08-11 14:52:53 -0700898
Bjorn Anderssonb35d7af2016-08-11 14:52:51 -0700899 /* reset max_notifyid */
900 rproc->max_notifyid = -1;
901
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200902 /* handle fw resources which are required to boot rproc */
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300903 ret = rproc_handle_resources(rproc, tablesz, rproc_loading_handlers);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200904 if (ret) {
905 dev_err(dev, "Failed to process resources: %d\n", ret);
Bjorn Andersson229b85a2016-10-02 17:41:29 -0700906 goto clean_up_resources;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200907 }
908
909 /* load the ELF segments to memory */
Sjur Brændelandbd484982012-06-19 09:55:34 +0300910 ret = rproc_load_segments(rproc, fw);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200911 if (ret) {
912 dev_err(dev, "Failed to load program segments: %d\n", ret);
Bjorn Andersson229b85a2016-10-02 17:41:29 -0700913 goto clean_up_resources;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200914 }
915
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300916 /*
Bjorn Anderssoncda85292016-10-19 19:40:12 -0700917 * The starting device has been given the rproc->table_ptr as the
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300918 * resource table. The address of the vring along with the other
Bjorn Anderssoncda85292016-10-19 19:40:12 -0700919 * allocated resources (carveouts etc) is stored in table_ptr.
Bjorn Andersson13c42452016-08-10 11:57:03 -0700920 * In order to pass this information to the remote device we must copy
921 * this information to device memory. We also update the table_ptr so
922 * that any subsequent changes will be applied to the loaded version.
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300923 */
924 loaded_table = rproc_find_loaded_rsc_table(rproc, fw);
Bjorn Anderssoncda85292016-10-19 19:40:12 -0700925 if (loaded_table)
926 memcpy(loaded_table, rproc->table_ptr, tablesz);
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300927
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200928 /* power up the remote processor */
929 ret = rproc->ops->start(rproc);
930 if (ret) {
931 dev_err(dev, "can't start rproc %s: %d\n", rproc->name, ret);
Bjorn Andersson229b85a2016-10-02 17:41:29 -0700932 goto clean_up_resources;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200933 }
934
Bjorn Andersson7bdc9652016-10-19 19:40:02 -0700935 /* probe any subdevices for the remote processor */
936 ret = rproc_probe_subdevices(rproc);
937 if (ret) {
938 dev_err(dev, "failed to probe subdevices for %s: %d\n",
939 rproc->name, ret);
940 goto stop_rproc;
941 }
942
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200943 rproc->state = RPROC_RUNNING;
944
945 dev_info(dev, "remote processor %s is now up\n", rproc->name);
946
947 return 0;
948
Bjorn Andersson7bdc9652016-10-19 19:40:02 -0700949stop_rproc:
950 rproc->ops->stop(rproc);
Bjorn Andersson229b85a2016-10-02 17:41:29 -0700951clean_up_resources:
952 rproc_resource_cleanup(rproc);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200953clean_up:
Bjorn Anderssoncda85292016-10-19 19:40:12 -0700954 kfree(rproc->table_ptr);
Bjorn Andersson988d2042016-08-11 14:52:53 -0700955 rproc->table_ptr = NULL;
956
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200957 rproc_disable_iommu(rproc);
958 return ret;
959}
960
961/*
962 * take a firmware and look for virtio devices to register.
963 *
964 * Note: this function is called asynchronously upon registration of the
965 * remote processor (so we must wait until it completes before we try
966 * to unregister the device. one other option is just to use kref here,
967 * that might be cleaner).
968 */
969static void rproc_fw_config_virtio(const struct firmware *fw, void *context)
970{
971 struct rproc *rproc = context;
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +0300972
Bjorn Anderssonddf71182016-08-11 14:52:50 -0700973 /* if rproc is marked always-on, request it to boot */
974 if (rproc->auto_boot)
975 rproc_boot_nowait(rproc);
976
Jesper Juhl3cc6e782012-04-09 22:51:25 +0200977 release_firmware(fw);
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +0300978 /* allow rproc_del() contexts, if any, to proceed */
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +0200979 complete_all(&rproc->firmware_loading_complete);
980}
981
Fernando Guzman Lugo70b85ef2012-08-30 13:26:13 -0500982static int rproc_add_virtio_devices(struct rproc *rproc)
983{
984 int ret;
985
986 /* rproc_del() calls must wait until async loader completes */
987 init_completion(&rproc->firmware_loading_complete);
988
989 /*
990 * We must retrieve early virtio configuration info from
991 * the firmware (e.g. whether to register a virtio device,
992 * what virtio features does it support, ...).
993 *
994 * We're initiating an asynchronous firmware loading, so we can
995 * be built-in kernel code, without hanging the boot process.
996 */
997 ret = request_firmware_nowait(THIS_MODULE, FW_ACTION_HOTPLUG,
998 rproc->firmware, &rproc->dev, GFP_KERNEL,
999 rproc, rproc_fw_config_virtio);
1000 if (ret < 0) {
1001 dev_err(&rproc->dev, "request_firmware_nowait err: %d\n", ret);
1002 complete_all(&rproc->firmware_loading_complete);
1003 }
1004
1005 return ret;
1006}
1007
1008/**
1009 * rproc_trigger_recovery() - recover a remoteproc
1010 * @rproc: the remote processor
1011 *
Anna, Suman56324d72016-08-12 18:42:17 -05001012 * The recovery is done by resetting all the virtio devices, that way all the
Fernando Guzman Lugo70b85ef2012-08-30 13:26:13 -05001013 * rpmsg drivers will be reseted along with the remote processor making the
1014 * remoteproc functional again.
1015 *
1016 * This function can sleep, so it cannot be called from atomic context.
1017 */
1018int rproc_trigger_recovery(struct rproc *rproc)
1019{
Fernando Guzman Lugo70b85ef2012-08-30 13:26:13 -05001020 dev_err(&rproc->dev, "recovering %s\n", rproc->name);
1021
1022 init_completion(&rproc->crash_comp);
1023
Bjorn Anderssonddf71182016-08-11 14:52:50 -07001024 /* shut down the remote */
1025 /* TODO: make sure this works with rproc->power > 1 */
1026 rproc_shutdown(rproc);
1027
Fernando Guzman Lugo70b85ef2012-08-30 13:26:13 -05001028 /* wait until there is no more rproc users */
1029 wait_for_completion(&rproc->crash_comp);
1030
Bjorn Anderssonddf71182016-08-11 14:52:50 -07001031 /*
Bjorn Anderssond81fb322016-08-11 14:52:52 -07001032 * boot the remote processor up again
Bjorn Anderssonddf71182016-08-11 14:52:50 -07001033 */
Bjorn Anderssond81fb322016-08-11 14:52:52 -07001034 rproc_boot(rproc);
Bjorn Anderssonddf71182016-08-11 14:52:50 -07001035
1036 return 0;
Fernando Guzman Lugo70b85ef2012-08-30 13:26:13 -05001037}
1038
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001039/**
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -05001040 * rproc_crash_handler_work() - handle a crash
1041 *
1042 * This function needs to handle everything related to a crash, like cpu
1043 * registers and stack dump, information to help to debug the fatal error, etc.
1044 */
1045static void rproc_crash_handler_work(struct work_struct *work)
1046{
1047 struct rproc *rproc = container_of(work, struct rproc, crash_handler);
1048 struct device *dev = &rproc->dev;
1049
1050 dev_dbg(dev, "enter %s\n", __func__);
1051
1052 mutex_lock(&rproc->lock);
1053
1054 if (rproc->state == RPROC_CRASHED || rproc->state == RPROC_OFFLINE) {
1055 /* handle only the first crash detected */
1056 mutex_unlock(&rproc->lock);
1057 return;
1058 }
1059
1060 rproc->state = RPROC_CRASHED;
1061 dev_err(dev, "handling crash #%u in %s\n", ++rproc->crash_cnt,
1062 rproc->name);
1063
1064 mutex_unlock(&rproc->lock);
1065
Fernando Guzman Lugo2e37abb2012-09-18 12:26:35 +03001066 if (!rproc->recovery_disabled)
1067 rproc_trigger_recovery(rproc);
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -05001068}
1069
1070/**
Lee Jones3d87fa12016-05-05 14:29:39 +01001071 * __rproc_boot() - boot a remote processor
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001072 * @rproc: handle of a remote processor
Lee Jones3d87fa12016-05-05 14:29:39 +01001073 * @wait: wait for rproc registration completion
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001074 *
1075 * Boot a remote processor (i.e. load its firmware, power it on, ...).
1076 *
1077 * If the remote processor is already powered on, this function immediately
1078 * returns (successfully).
1079 *
1080 * Returns 0 on success, and an appropriate error value otherwise.
1081 */
Lee Jones3d87fa12016-05-05 14:29:39 +01001082static int __rproc_boot(struct rproc *rproc, bool wait)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001083{
1084 const struct firmware *firmware_p;
1085 struct device *dev;
1086 int ret;
1087
1088 if (!rproc) {
1089 pr_err("invalid rproc handle\n");
1090 return -EINVAL;
1091 }
1092
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001093 dev = &rproc->dev;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001094
1095 ret = mutex_lock_interruptible(&rproc->lock);
1096 if (ret) {
1097 dev_err(dev, "can't lock rproc %s: %d\n", rproc->name, ret);
1098 return ret;
1099 }
1100
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001101 /* skip the boot process if rproc is already powered up */
1102 if (atomic_inc_return(&rproc->power) > 1) {
1103 ret = 0;
1104 goto unlock_mutex;
1105 }
1106
1107 dev_info(dev, "powering up %s\n", rproc->name);
1108
1109 /* load firmware */
1110 ret = request_firmware(&firmware_p, rproc->firmware, dev);
1111 if (ret < 0) {
1112 dev_err(dev, "request_firmware failed: %d\n", ret);
1113 goto downref_rproc;
1114 }
1115
Lee Jones3d87fa12016-05-05 14:29:39 +01001116 /* if rproc virtio is not yet configured, wait */
1117 if (wait)
1118 wait_for_completion(&rproc->firmware_loading_complete);
1119
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001120 ret = rproc_fw_boot(rproc, firmware_p);
1121
1122 release_firmware(firmware_p);
1123
1124downref_rproc:
Bjorn Anderssonfbb6aac2016-10-02 17:46:39 -07001125 if (ret)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001126 atomic_dec(&rproc->power);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001127unlock_mutex:
1128 mutex_unlock(&rproc->lock);
1129 return ret;
1130}
Lee Jones3d87fa12016-05-05 14:29:39 +01001131
1132/**
1133 * rproc_boot() - boot a remote processor
1134 * @rproc: handle of a remote processor
1135 */
1136int rproc_boot(struct rproc *rproc)
1137{
1138 return __rproc_boot(rproc, true);
1139}
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001140EXPORT_SYMBOL(rproc_boot);
1141
1142/**
Lee Jones3d87fa12016-05-05 14:29:39 +01001143 * rproc_boot_nowait() - boot a remote processor
1144 * @rproc: handle of a remote processor
1145 *
1146 * Same as rproc_boot() but don't wait for rproc registration completion
1147 */
1148int rproc_boot_nowait(struct rproc *rproc)
1149{
1150 return __rproc_boot(rproc, false);
1151}
1152
1153/**
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001154 * rproc_shutdown() - power off the remote processor
1155 * @rproc: the remote processor
1156 *
1157 * Power off a remote processor (previously booted with rproc_boot()).
1158 *
1159 * In case @rproc is still being used by an additional user(s), then
1160 * this function will just decrement the power refcount and exit,
1161 * without really powering off the device.
1162 *
1163 * Every call to rproc_boot() must (eventually) be accompanied by a call
1164 * to rproc_shutdown(). Calling rproc_shutdown() redundantly is a bug.
1165 *
1166 * Notes:
1167 * - we're not decrementing the rproc's refcount, only the power refcount.
1168 * which means that the @rproc handle stays valid even after rproc_shutdown()
1169 * returns, and users can still use it with a subsequent rproc_boot(), if
1170 * needed.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001171 */
1172void rproc_shutdown(struct rproc *rproc)
1173{
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001174 struct device *dev = &rproc->dev;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001175 int ret;
1176
1177 ret = mutex_lock_interruptible(&rproc->lock);
1178 if (ret) {
1179 dev_err(dev, "can't lock rproc %s: %d\n", rproc->name, ret);
1180 return;
1181 }
1182
1183 /* if the remote proc is still needed, bail out */
1184 if (!atomic_dec_and_test(&rproc->power))
1185 goto out;
1186
Bjorn Andersson7bdc9652016-10-19 19:40:02 -07001187 /* remove any subdevices for the remote processor */
1188 rproc_remove_subdevices(rproc);
1189
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001190 /* power off the remote processor */
1191 ret = rproc->ops->stop(rproc);
1192 if (ret) {
1193 atomic_inc(&rproc->power);
1194 dev_err(dev, "can't stop rproc: %d\n", ret);
1195 goto out;
1196 }
1197
1198 /* clean up all acquired resources */
1199 rproc_resource_cleanup(rproc);
1200
1201 rproc_disable_iommu(rproc);
1202
Bjorn Andersson988d2042016-08-11 14:52:53 -07001203 /* Free the copy of the resource table */
Bjorn Anderssoncda85292016-10-19 19:40:12 -07001204 kfree(rproc->table_ptr);
Bjorn Andersson988d2042016-08-11 14:52:53 -07001205 rproc->table_ptr = NULL;
Ohad Ben-Cohena2b950a2013-04-07 14:06:07 +03001206
Fernando Guzman Lugo70b85ef2012-08-30 13:26:13 -05001207 /* if in crash state, unlock crash handler */
1208 if (rproc->state == RPROC_CRASHED)
1209 complete_all(&rproc->crash_comp);
1210
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001211 rproc->state = RPROC_OFFLINE;
1212
1213 dev_info(dev, "stopped remote processor %s\n", rproc->name);
1214
1215out:
1216 mutex_unlock(&rproc->lock);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001217}
1218EXPORT_SYMBOL(rproc_shutdown);
1219
1220/**
Dave Gerlachfec47d82015-05-22 15:45:27 -05001221 * rproc_get_by_phandle() - find a remote processor by phandle
1222 * @phandle: phandle to the rproc
1223 *
1224 * Finds an rproc handle using the remote processor's phandle, and then
1225 * return a handle to the rproc.
1226 *
1227 * This function increments the remote processor's refcount, so always
1228 * use rproc_put() to decrement it back once rproc isn't needed anymore.
1229 *
1230 * Returns the rproc handle on success, and NULL on failure.
1231 */
Ohad Ben-Cohen8de3dbd2015-06-18 11:44:41 +03001232#ifdef CONFIG_OF
Dave Gerlachfec47d82015-05-22 15:45:27 -05001233struct rproc *rproc_get_by_phandle(phandle phandle)
1234{
1235 struct rproc *rproc = NULL, *r;
1236 struct device_node *np;
1237
1238 np = of_find_node_by_phandle(phandle);
1239 if (!np)
1240 return NULL;
1241
1242 mutex_lock(&rproc_list_mutex);
1243 list_for_each_entry(r, &rproc_list, node) {
1244 if (r->dev.parent && r->dev.parent->of_node == np) {
Bjorn Anderssonfbb6aac2016-10-02 17:46:39 -07001245 /* prevent underlying implementation from being removed */
1246 if (!try_module_get(r->dev.parent->driver->owner)) {
1247 dev_err(&r->dev, "can't get owner\n");
1248 break;
1249 }
1250
Dave Gerlachfec47d82015-05-22 15:45:27 -05001251 rproc = r;
1252 get_device(&rproc->dev);
1253 break;
1254 }
1255 }
1256 mutex_unlock(&rproc_list_mutex);
1257
1258 of_node_put(np);
1259
1260 return rproc;
1261}
Ohad Ben-Cohen8de3dbd2015-06-18 11:44:41 +03001262#else
1263struct rproc *rproc_get_by_phandle(phandle phandle)
1264{
1265 return NULL;
1266}
1267#endif
Dave Gerlachfec47d82015-05-22 15:45:27 -05001268EXPORT_SYMBOL(rproc_get_by_phandle);
1269
1270/**
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001271 * rproc_add() - register a remote processor
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001272 * @rproc: the remote processor handle to register
1273 *
1274 * Registers @rproc with the remoteproc framework, after it has been
1275 * allocated with rproc_alloc().
1276 *
1277 * This is called by the platform-specific rproc implementation, whenever
1278 * a new remote processor device is probed.
1279 *
1280 * Returns 0 on success and an appropriate error code otherwise.
1281 *
1282 * Note: this function initiates an asynchronous firmware loading
1283 * context, which will look for virtio devices supported by the rproc's
1284 * firmware.
1285 *
1286 * If found, those virtio devices will be created and added, so as a result
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +01001287 * of registering this remote processor, additional virtio drivers might be
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001288 * probed.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001289 */
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001290int rproc_add(struct rproc *rproc)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001291{
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001292 struct device *dev = &rproc->dev;
Fernando Guzman Lugo70b85ef2012-08-30 13:26:13 -05001293 int ret;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001294
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001295 ret = device_add(dev);
1296 if (ret < 0)
1297 return ret;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001298
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001299 dev_info(dev, "%s is available\n", rproc->name);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001300
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001301 /* create debugfs entries */
1302 rproc_create_debug_dir(rproc);
Dave Gerlachd2e12e62016-05-25 15:41:28 -05001303 ret = rproc_add_virtio_devices(rproc);
1304 if (ret < 0)
1305 return ret;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001306
Dave Gerlachd2e12e62016-05-25 15:41:28 -05001307 /* expose to rproc_get_by_phandle users */
1308 mutex_lock(&rproc_list_mutex);
1309 list_add(&rproc->node, &rproc_list);
1310 mutex_unlock(&rproc_list_mutex);
1311
1312 return 0;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001313}
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001314EXPORT_SYMBOL(rproc_add);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001315
1316/**
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001317 * rproc_type_release() - release a remote processor instance
1318 * @dev: the rproc's device
1319 *
1320 * This function should _never_ be called directly.
1321 *
1322 * It will be called by the driver core when no one holds a valid pointer
1323 * to @dev anymore.
1324 */
1325static void rproc_type_release(struct device *dev)
1326{
1327 struct rproc *rproc = container_of(dev, struct rproc, dev);
1328
Ohad Ben-Cohen7183a2a2012-05-30 22:02:24 +03001329 dev_info(&rproc->dev, "releasing %s\n", rproc->name);
1330
1331 rproc_delete_debug_dir(rproc);
1332
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001333 idr_destroy(&rproc->notifyids);
1334
1335 if (rproc->index >= 0)
1336 ida_simple_remove(&rproc_dev_index, rproc->index);
1337
Matt Redfearn0f57dc62016-10-17 16:48:58 +01001338 kfree(rproc->firmware);
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001339 kfree(rproc);
1340}
1341
1342static struct device_type rproc_type = {
1343 .name = "remoteproc",
1344 .release = rproc_type_release,
1345};
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001346
1347/**
1348 * rproc_alloc() - allocate a remote processor handle
1349 * @dev: the underlying device
1350 * @name: name of this remote processor
1351 * @ops: platform-specific handlers (mainly start/stop)
Robert Tivy8b4aec92013-03-28 18:41:44 -07001352 * @firmware: name of firmware file to load, can be NULL
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001353 * @len: length of private data needed by the rproc driver (in bytes)
1354 *
1355 * Allocates a new remote processor handle, but does not register
Robert Tivy8b4aec92013-03-28 18:41:44 -07001356 * it yet. if @firmware is NULL, a default name is used.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001357 *
1358 * This function should be used by rproc implementations during initialization
1359 * of the remote processor.
1360 *
1361 * After creating an rproc handle using this function, and when ready,
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001362 * implementations should then call rproc_add() to complete
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001363 * the registration of the remote processor.
1364 *
1365 * On success the new rproc is returned, and on failure, NULL.
1366 *
1367 * Note: _never_ directly deallocate @rproc, even if it was not registered
Bjorn Andersson433c0e02016-10-02 17:46:38 -07001368 * yet. Instead, when you need to unroll rproc_alloc(), use rproc_free().
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001369 */
1370struct rproc *rproc_alloc(struct device *dev, const char *name,
Anna, Suman730f84c2016-08-12 18:42:20 -05001371 const struct rproc_ops *ops,
1372 const char *firmware, int len)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001373{
1374 struct rproc *rproc;
Robert Tivy8b4aec92013-03-28 18:41:44 -07001375 char *p, *template = "rproc-%s-fw";
Matt Redfearn0f57dc62016-10-17 16:48:58 +01001376 int name_len;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001377
1378 if (!dev || !name || !ops)
1379 return NULL;
1380
Matt Redfearn0f57dc62016-10-17 16:48:58 +01001381 if (!firmware) {
Robert Tivy8b4aec92013-03-28 18:41:44 -07001382 /*
Robert Tivy8b4aec92013-03-28 18:41:44 -07001383 * If the caller didn't pass in a firmware name then
Matt Redfearn0f57dc62016-10-17 16:48:58 +01001384 * construct a default name.
Robert Tivy8b4aec92013-03-28 18:41:44 -07001385 */
1386 name_len = strlen(name) + strlen(template) - 2 + 1;
Matt Redfearn0f57dc62016-10-17 16:48:58 +01001387 p = kmalloc(name_len, GFP_KERNEL);
1388 if (!p)
1389 return NULL;
Robert Tivy8b4aec92013-03-28 18:41:44 -07001390 snprintf(p, name_len, template, name);
1391 } else {
Matt Redfearn0f57dc62016-10-17 16:48:58 +01001392 p = kstrdup(firmware, GFP_KERNEL);
1393 if (!p)
1394 return NULL;
1395 }
1396
1397 rproc = kzalloc(sizeof(struct rproc) + len, GFP_KERNEL);
1398 if (!rproc) {
1399 kfree(p);
1400 return NULL;
Robert Tivy8b4aec92013-03-28 18:41:44 -07001401 }
1402
1403 rproc->firmware = p;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001404 rproc->name = name;
1405 rproc->ops = ops;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001406 rproc->priv = &rproc[1];
Bjorn Anderssonddf71182016-08-11 14:52:50 -07001407 rproc->auto_boot = true;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001408
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001409 device_initialize(&rproc->dev);
1410 rproc->dev.parent = dev;
1411 rproc->dev.type = &rproc_type;
Matt Redfearn2aefbef2016-10-19 13:05:47 +01001412 rproc->dev.class = &rproc_class;
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001413
1414 /* Assign a unique device index and name */
1415 rproc->index = ida_simple_get(&rproc_dev_index, 0, 0, GFP_KERNEL);
1416 if (rproc->index < 0) {
1417 dev_err(dev, "ida_simple_get failed: %d\n", rproc->index);
1418 put_device(&rproc->dev);
1419 return NULL;
1420 }
1421
1422 dev_set_name(&rproc->dev, "remoteproc%d", rproc->index);
1423
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001424 atomic_set(&rproc->power, 0);
1425
Sjur Brændeland4afc89d2012-06-19 10:08:18 +03001426 /* Set ELF as the default fw_ops handler */
1427 rproc->fw_ops = &rproc_elf_fw_ops;
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001428
1429 mutex_init(&rproc->lock);
1430
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +01001431 idr_init(&rproc->notifyids);
1432
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001433 INIT_LIST_HEAD(&rproc->carveouts);
1434 INIT_LIST_HEAD(&rproc->mappings);
1435 INIT_LIST_HEAD(&rproc->traces);
Ohad Ben-Cohen7a186942012-02-13 22:30:39 +01001436 INIT_LIST_HEAD(&rproc->rvdevs);
Bjorn Andersson7bdc9652016-10-19 19:40:02 -07001437 INIT_LIST_HEAD(&rproc->subdevs);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001438
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -05001439 INIT_WORK(&rproc->crash_handler, rproc_crash_handler_work);
Fernando Guzman Lugo70b85ef2012-08-30 13:26:13 -05001440 init_completion(&rproc->crash_comp);
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -05001441
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001442 rproc->state = RPROC_OFFLINE;
1443
1444 return rproc;
1445}
1446EXPORT_SYMBOL(rproc_alloc);
1447
1448/**
Bjorn Andersson433c0e02016-10-02 17:46:38 -07001449 * rproc_free() - unroll rproc_alloc()
1450 * @rproc: the remote processor handle
1451 *
1452 * This function decrements the rproc dev refcount.
1453 *
1454 * If no one holds any reference to rproc anymore, then its refcount would
1455 * now drop to zero, and it would be freed.
1456 */
1457void rproc_free(struct rproc *rproc)
1458{
1459 put_device(&rproc->dev);
1460}
1461EXPORT_SYMBOL(rproc_free);
1462
1463/**
1464 * rproc_put() - release rproc reference
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001465 * @rproc: the remote processor handle
1466 *
Ohad Ben-Cohenc6b5a272012-07-02 11:41:16 +03001467 * This function decrements the rproc dev refcount.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001468 *
Ohad Ben-Cohenc6b5a272012-07-02 11:41:16 +03001469 * If no one holds any reference to rproc anymore, then its refcount would
1470 * now drop to zero, and it would be freed.
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001471 */
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001472void rproc_put(struct rproc *rproc)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001473{
Bjorn Anderssonfbb6aac2016-10-02 17:46:39 -07001474 module_put(rproc->dev.parent->driver->owner);
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001475 put_device(&rproc->dev);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001476}
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001477EXPORT_SYMBOL(rproc_put);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001478
1479/**
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001480 * rproc_del() - unregister a remote processor
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001481 * @rproc: rproc handle to unregister
1482 *
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001483 * This function should be called when the platform specific rproc
1484 * implementation decides to remove the rproc device. it should
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001485 * _only_ be called if a previous invocation of rproc_add()
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001486 * has completed successfully.
1487 *
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001488 * After rproc_del() returns, @rproc isn't freed yet, because
Ohad Ben-Cohenc6b5a272012-07-02 11:41:16 +03001489 * of the outstanding reference created by rproc_alloc. To decrement that
Bjorn Andersson433c0e02016-10-02 17:46:38 -07001490 * one last refcount, one still needs to call rproc_free().
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001491 *
1492 * Returns 0 on success and -EINVAL if @rproc isn't valid.
1493 */
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001494int rproc_del(struct rproc *rproc)
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001495{
1496 if (!rproc)
1497 return -EINVAL;
1498
1499 /* if rproc is just being registered, wait */
1500 wait_for_completion(&rproc->firmware_loading_complete);
1501
Bjorn Anderssonddf71182016-08-11 14:52:50 -07001502 /* if rproc is marked always-on, rproc_add() booted it */
1503 /* TODO: make sure this works with rproc->power > 1 */
1504 if (rproc->auto_boot)
1505 rproc_shutdown(rproc);
1506
Dave Gerlachfec47d82015-05-22 15:45:27 -05001507 /* the rproc is downref'ed as soon as it's removed from the klist */
1508 mutex_lock(&rproc_list_mutex);
1509 list_del(&rproc->node);
1510 mutex_unlock(&rproc_list_mutex);
1511
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001512 device_del(&rproc->dev);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001513
1514 return 0;
1515}
Ohad Ben-Cohen160e7c82012-07-04 16:25:06 +03001516EXPORT_SYMBOL(rproc_del);
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001517
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -05001518/**
Bjorn Andersson7bdc9652016-10-19 19:40:02 -07001519 * rproc_add_subdev() - add a subdevice to a remoteproc
1520 * @rproc: rproc handle to add the subdevice to
1521 * @subdev: subdev handle to register
1522 * @probe: function to call when the rproc boots
1523 * @remove: function to call when the rproc shuts down
1524 */
1525void rproc_add_subdev(struct rproc *rproc,
1526 struct rproc_subdev *subdev,
1527 int (*probe)(struct rproc_subdev *subdev),
1528 void (*remove)(struct rproc_subdev *subdev))
1529{
1530 subdev->probe = probe;
1531 subdev->remove = remove;
1532
1533 list_add_tail(&subdev->node, &rproc->subdevs);
1534}
1535EXPORT_SYMBOL(rproc_add_subdev);
1536
1537/**
1538 * rproc_remove_subdev() - remove a subdevice from a remoteproc
1539 * @rproc: rproc handle to remove the subdevice from
1540 * @subdev: subdev handle, previously registered with rproc_add_subdev()
1541 */
1542void rproc_remove_subdev(struct rproc *rproc, struct rproc_subdev *subdev)
1543{
1544 list_del(&subdev->node);
1545}
1546EXPORT_SYMBOL(rproc_remove_subdev);
1547
1548/**
Fernando Guzman Lugo8afd5192012-08-30 13:26:12 -05001549 * rproc_report_crash() - rproc crash reporter function
1550 * @rproc: remote processor
1551 * @type: crash type
1552 *
1553 * This function must be called every time a crash is detected by the low-level
1554 * drivers implementing a specific remoteproc. This should not be called from a
1555 * non-remoteproc driver.
1556 *
1557 * This function can be called from atomic/interrupt context.
1558 */
1559void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type)
1560{
1561 if (!rproc) {
1562 pr_err("NULL rproc pointer\n");
1563 return;
1564 }
1565
1566 dev_err(&rproc->dev, "crash detected in %s: type %s\n",
1567 rproc->name, rproc_crash_to_string(type));
1568
1569 /* create a new task to handle the error */
1570 schedule_work(&rproc->crash_handler);
1571}
1572EXPORT_SYMBOL(rproc_report_crash);
1573
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001574static int __init remoteproc_init(void)
1575{
Matt Redfearn2aefbef2016-10-19 13:05:47 +01001576 rproc_init_sysfs();
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001577 rproc_init_debugfs();
Ohad Ben-Cohenb5ab5e22012-05-30 22:01:25 +03001578
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001579 return 0;
1580}
1581module_init(remoteproc_init);
1582
1583static void __exit remoteproc_exit(void)
1584{
Suman Annaf42f79a2015-09-16 19:29:18 -05001585 ida_destroy(&rproc_dev_index);
1586
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001587 rproc_exit_debugfs();
Matt Redfearn2aefbef2016-10-19 13:05:47 +01001588 rproc_exit_sysfs();
Ohad Ben-Cohen400e64d2011-10-20 16:52:46 +02001589}
1590module_exit(remoteproc_exit);
1591
1592MODULE_LICENSE("GPL v2");
1593MODULE_DESCRIPTION("Generic Remote Processor Framework");