blob: 1a3c45a23c47988794d44508ea01514b67c5989f [file] [log] [blame]
Kristofer Jonsson116a6352020-08-20 17:25:23 +02001/*
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +01002 * Copyright (c) 2020,2022 Arm Limited.
Kristofer Jonsson116a6352020-08-20 17:25:23 +02003 *
4 * This program is free software and is provided to you under the terms of the
5 * GNU General Public License version 2 as published by the Free Software
6 * Foundation, and any use by you of this program is subject to the terms
7 * of such GNU licence.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, you can access it online at
16 * http://www.gnu.org/licenses/gpl-2.0.html.
17 *
18 * SPDX-License-Identifier: GPL-2.0-only
19 */
20
21/****************************************************************************
22 * Includes
23 ****************************************************************************/
24
25#include "ethosu_inference.h"
26
27#include "ethosu_buffer.h"
28#include "ethosu_core_interface.h"
29#include "ethosu_device.h"
30#include "ethosu_network.h"
Davide Grohmann7e8f5082022-03-23 12:48:45 +010031#include "ethosu_cancel_inference.h"
Kristofer Jonsson116a6352020-08-20 17:25:23 +020032
33#include <linux/anon_inodes.h>
34#include <linux/file.h>
35#include <linux/fs.h>
36#include <linux/poll.h>
37
38/****************************************************************************
39 * Variables
40 ****************************************************************************/
41
42static int ethosu_inference_release(struct inode *inode,
43 struct file *file);
44
45static unsigned int ethosu_inference_poll(struct file *file,
46 poll_table *wait);
47
48static long ethosu_inference_ioctl(struct file *file,
49 unsigned int cmd,
50 unsigned long arg);
51
52static const struct file_operations ethosu_inference_fops = {
53 .release = &ethosu_inference_release,
54 .poll = &ethosu_inference_poll,
55 .unlocked_ioctl = &ethosu_inference_ioctl,
56#ifdef CONFIG_COMPAT
57 .compat_ioctl = &ethosu_inference_ioctl,
58#endif
59};
60
61/****************************************************************************
62 * Functions
63 ****************************************************************************/
64
65static const char *status_to_string(const enum ethosu_uapi_status status)
66{
67 switch (status) {
68 case ETHOSU_UAPI_STATUS_OK: {
69 return "Ok";
70 }
71 case ETHOSU_UAPI_STATUS_ERROR: {
72 return "Error";
73 }
Davide Grohmann82d22582022-04-25 12:52:38 +020074 case ETHOSU_UAPI_STATUS_RUNNING: {
75 return "Running";
76 }
77 case ETHOSU_UAPI_STATUS_REJECTED: {
78 return "Rejected";
79 }
Davide Grohmann7e8f5082022-03-23 12:48:45 +010080 case ETHOSU_UAPI_STATUS_ABORTED: {
81 return "Aborted";
82 }
83 case ETHOSU_UAPI_STATUS_ABORTING: {
84 return "Aborting";
85 }
Kristofer Jonsson116a6352020-08-20 17:25:23 +020086 default: {
87 return "Unknown";
88 }
89 }
90}
91
92static int ethosu_inference_send(struct ethosu_inference *inf)
93{
94 int ret;
95
Kristofer Jonsson116a6352020-08-20 17:25:23 +020096 inf->status = ETHOSU_UAPI_STATUS_ERROR;
97
Davide Grohmann32660f92022-04-27 16:49:07 +020098 ret = ethosu_mailbox_inference(&inf->edev->mailbox, &inf->msg,
Kristofer Jonssonb74492c2020-09-10 13:26:01 +020099 inf->ifm_count, inf->ifm,
100 inf->ofm_count, inf->ofm,
Per Åstrandf7e407a2020-10-23 21:25:05 +0200101 inf->net->buf,
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100102 inf->net->index,
Per Åstrandf7e407a2020-10-23 21:25:05 +0200103 inf->pmu_event_config,
104 ETHOSU_PMU_EVENT_MAX,
105 inf->pmu_cycle_counter_enable);
Kristofer Jonsson2d69b8b2022-06-30 15:34:52 +0200106 if (ret) {
107 dev_warn(inf->edev->dev,
108 "Failed to send inference request. inf=0x%pK, ret=%d",
109 inf, ret);
110
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200111 return ret;
Kristofer Jonsson2d69b8b2022-06-30 15:34:52 +0200112 }
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200113
Davide Grohmann82d22582022-04-25 12:52:38 +0200114 inf->status = ETHOSU_UAPI_STATUS_RUNNING;
115
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200116 ethosu_inference_get(inf);
117
118 return 0;
119}
120
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100121static void ethosu_inference_fail(struct ethosu_mailbox_msg *msg)
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200122{
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100123 struct ethosu_inference *inf =
124 container_of(msg, typeof(*inf), msg);
125 int ret;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200126
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100127 if (inf->done)
128 return;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200129
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100130 /* Decrement reference count if inference was pending reponse */
131 ret = ethosu_inference_put(inf);
132 if (ret)
133 return;
134
135 /* Set status accordingly to the inference state */
136 inf->status = inf->status == ETHOSU_UAPI_STATUS_ABORTING ?
137 ETHOSU_UAPI_STATUS_ABORTED :
138 ETHOSU_UAPI_STATUS_ERROR;
139 /* Mark it done and wake up the waiting process */
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100140 inf->done = true;
141 wake_up_interruptible(&inf->waitq);
142}
143
144static int ethosu_inference_resend(struct ethosu_mailbox_msg *msg)
145{
146 struct ethosu_inference *inf =
147 container_of(msg, typeof(*inf), msg);
148 int ret;
149
150 /* Don't resend request if response has already been received */
151 if (inf->done)
152 return 0;
153
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100154 /* If marked as ABORTING simply fail it and return */
155 if (inf->status == ETHOSU_UAPI_STATUS_ABORTING) {
156 ethosu_inference_fail(msg);
157
158 return 0;
159 }
160
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100161 /* Decrement reference count for pending request */
162 ret = ethosu_inference_put(inf);
163 if (ret)
164 return 0;
165
166 /* Resend request */
167 ret = ethosu_inference_send(inf);
168 if (ret)
169 return ret;
170
171 return 0;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200172}
173
174static bool ethosu_inference_verify(struct file *file)
175{
176 return file->f_op == &ethosu_inference_fops;
177}
178
179static void ethosu_inference_kref_destroy(struct kref *kref)
180{
181 struct ethosu_inference *inf =
182 container_of(kref, struct ethosu_inference, kref);
183
184 dev_info(inf->edev->dev,
Kristofer Jonsson2d69b8b2022-06-30 15:34:52 +0200185 "Inference destroy. inf=0x%pK, status=%d, ifm_count=%u, ofm_count=%u",
186 inf, inf->status, inf->ifm_count, inf->ofm_count);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200187
Davide Grohmann32660f92022-04-27 16:49:07 +0200188 ethosu_mailbox_deregister(&inf->edev->mailbox, &inf->msg);
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200189
190 while (inf->ifm_count-- > 0)
191 ethosu_buffer_put(inf->ifm[inf->ifm_count]);
192
193 while (inf->ofm_count-- > 0)
194 ethosu_buffer_put(inf->ofm[inf->ofm_count]);
195
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200196 ethosu_network_put(inf->net);
197 devm_kfree(inf->edev->dev, inf);
198}
199
200static int ethosu_inference_release(struct inode *inode,
201 struct file *file)
202{
203 struct ethosu_inference *inf = file->private_data;
204
205 dev_info(inf->edev->dev,
Kristofer Jonsson2d69b8b2022-06-30 15:34:52 +0200206 "Inference release. file=0x%pK, inf=0x%pK",
207 file, inf);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200208
209 ethosu_inference_put(inf);
210
211 return 0;
212}
213
214static unsigned int ethosu_inference_poll(struct file *file,
215 poll_table *wait)
216{
217 struct ethosu_inference *inf = file->private_data;
218 int ret = 0;
219
220 poll_wait(file, &inf->waitq, wait);
221
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100222 if (inf->done)
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200223 ret |= POLLIN;
224
225 return ret;
226}
227
228static long ethosu_inference_ioctl(struct file *file,
229 unsigned int cmd,
230 unsigned long arg)
231{
232 struct ethosu_inference *inf = file->private_data;
Per Åstrandf7e407a2020-10-23 21:25:05 +0200233 void __user *udata = (void __user *)arg;
234 int ret;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200235
236 ret = mutex_lock_interruptible(&inf->edev->mutex);
237 if (ret)
238 return ret;
239
Kristofer Jonsson53fd03d2022-06-21 16:58:45 +0200240 dev_info(inf->edev->dev,
241 "Inference ioctl: file=0x%pK, inf=0x%pK, cmd=0x%x, arg=%lu",
242 file, inf, cmd, arg);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200243
244 switch (cmd) {
245 case ETHOSU_IOCTL_INFERENCE_STATUS: {
Per Åstrandf7e407a2020-10-23 21:25:05 +0200246 struct ethosu_uapi_result_status uapi;
247 int i;
248
249 uapi.status = inf->status;
250
251 for (i = 0; i < ETHOSU_PMU_EVENT_MAX; i++) {
252 uapi.pmu_config.events[i] =
253 inf->pmu_event_config[i];
254 uapi.pmu_count.events[i] =
255 inf->pmu_event_count[i];
256 }
257
258 uapi.pmu_config.cycle_count = inf->pmu_cycle_counter_enable;
259 uapi.pmu_count.cycle_count = inf->pmu_cycle_counter_count;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200260
261 dev_info(inf->edev->dev,
Kristofer Jonsson53fd03d2022-06-21 16:58:45 +0200262 "Inference ioctl: Inference status. status=%s (%d)\n",
Per Åstrandf7e407a2020-10-23 21:25:05 +0200263 status_to_string(uapi.status), uapi.status);
264
265 ret = copy_to_user(udata, &uapi, sizeof(uapi)) ? -EFAULT : 0;
266
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200267 break;
268 }
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100269 case ETHOSU_IOCTL_INFERENCE_CANCEL: {
270 struct ethosu_uapi_cancel_inference_status uapi;
271
Kristofer Jonsson53fd03d2022-06-21 16:58:45 +0200272 dev_info(inf->edev->dev,
273 "Inference ioctl: Cancel Inference. Handle=%p\n",
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100274 inf);
275
276 ret = ethosu_cancel_inference_request(inf, &uapi);
277 if (ret)
278 break;
279
280 ret = copy_to_user(udata, &uapi, sizeof(uapi)) ? -EFAULT : 0;
281
282 break;
283 }
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200284 default: {
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100285 dev_err(inf->edev->dev, "Invalid ioctl. cmd=%u, arg=%lu\n",
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200286 cmd, arg);
287 break;
288 }
289 }
290
291 mutex_unlock(&inf->edev->mutex);
292
293 return ret;
294}
295
296int ethosu_inference_create(struct ethosu_device *edev,
297 struct ethosu_network *net,
298 struct ethosu_uapi_inference_create *uapi)
299{
300 struct ethosu_inference *inf;
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200301 uint32_t i;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200302 int fd;
303 int ret = -ENOMEM;
304
Kristofer Jonsson2d69b8b2022-06-30 15:34:52 +0200305 if (uapi->ifm_count > ETHOSU_FD_MAX ||
306 uapi->ofm_count > ETHOSU_FD_MAX) {
307 dev_warn(edev->dev,
308 "Too many IFM and/or OFM buffers for inference. ifm_count=%u, ofm_count=%u",
309 uapi->ifm_count, uapi->ofm_count);
310
311 return -EFAULT;
312 }
313
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200314 inf = devm_kzalloc(edev->dev, sizeof(*inf), GFP_KERNEL);
315 if (!inf)
316 return -ENOMEM;
317
318 inf->edev = edev;
319 inf->net = net;
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100320 inf->done = false;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200321 inf->status = ETHOSU_UAPI_STATUS_ERROR;
322 kref_init(&inf->kref);
323 init_waitqueue_head(&inf->waitq);
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100324 inf->msg.fail = ethosu_inference_fail;
325 inf->msg.resend = ethosu_inference_resend;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200326
Davide Grohmann32660f92022-04-27 16:49:07 +0200327 /* Add inference to pending list */
328 ret = ethosu_mailbox_register(&edev->mailbox, &inf->msg);
329 if (ret < 0)
330 goto kfree;
331
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200332 /* Get pointer to IFM buffers */
333 for (i = 0; i < uapi->ifm_count; i++) {
334 inf->ifm[i] = ethosu_buffer_get_from_fd(uapi->ifm_fd[i]);
335 if (IS_ERR(inf->ifm[i])) {
336 ret = PTR_ERR(inf->ifm[i]);
337 goto put_ifm;
338 }
339
340 inf->ifm_count++;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200341 }
342
343 /* Get pointer to OFM buffer */
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200344 for (i = 0; i < uapi->ofm_count; i++) {
345 inf->ofm[i] = ethosu_buffer_get_from_fd(uapi->ofm_fd[i]);
346 if (IS_ERR(inf->ofm[i])) {
347 ret = PTR_ERR(inf->ofm[i]);
348 goto put_ofm;
349 }
350
351 inf->ofm_count++;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200352 }
353
Per Åstrandf7e407a2020-10-23 21:25:05 +0200354 /* Configure PMU and cycle counter */
355 dev_info(inf->edev->dev,
356 "Configuring events for PMU. events=[%u, %u, %u, %u]\n",
357 uapi->pmu_config.events[0], uapi->pmu_config.events[1],
358 uapi->pmu_config.events[2], uapi->pmu_config.events[3]);
359
360 /* Configure events and reset count for all events */
361 for (i = 0; i < ETHOSU_PMU_EVENT_MAX; i++) {
362 inf->pmu_event_config[i] = uapi->pmu_config.events[i];
363 inf->pmu_event_count[i] = 0;
364 }
365
366 if (uapi->pmu_config.cycle_count)
367 dev_info(inf->edev->dev, "Enabling cycle counter\n");
368
369 /* Configure cycle counter and reset any previous count */
370 inf->pmu_cycle_counter_enable = uapi->pmu_config.cycle_count;
371 inf->pmu_cycle_counter_count = 0;
372
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200373 /* Increment network reference count */
374 ethosu_network_get(net);
375
Kristofer Jonsson2d69b8b2022-06-30 15:34:52 +0200376 /* Send inference request to Arm Ethos-U subsystem */
377 ret = ethosu_inference_send(inf);
378 if (ret)
379 goto put_net;
380
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200381 /* Create file descriptor */
382 ret = fd = anon_inode_getfd("ethosu-inference", &ethosu_inference_fops,
383 inf, O_RDWR | O_CLOEXEC);
384 if (ret < 0)
385 goto put_net;
386
387 /* Store pointer to file structure */
388 inf->file = fget(ret);
389 fput(inf->file);
390
Kristofer Jonsson53fd03d2022-06-21 16:58:45 +0200391 dev_info(edev->dev,
392 "Inference create. file=0x%pK, fd=%d, inf=0x%p, net=0x%pK, msg.id=0x%x",
393 inf->file, fd, inf, inf->net, inf->msg.id);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200394
395 return fd;
396
397put_net:
398 ethosu_network_put(inf->net);
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200399
400put_ofm:
401 while (inf->ofm_count-- > 0)
402 ethosu_buffer_put(inf->ofm[inf->ofm_count]);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200403
404put_ifm:
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200405 while (inf->ifm_count-- > 0)
406 ethosu_buffer_put(inf->ifm[inf->ifm_count]);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200407
Davide Grohmann32660f92022-04-27 16:49:07 +0200408kfree:
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200409 devm_kfree(edev->dev, inf);
410
411 return ret;
412}
413
414struct ethosu_inference *ethosu_inference_get_from_fd(int fd)
415{
416 struct ethosu_inference *inf;
417 struct file *file;
418
419 file = fget(fd);
420 if (!file)
421 return ERR_PTR(-EINVAL);
422
423 if (!ethosu_inference_verify(file)) {
424 fput(file);
425
426 return ERR_PTR(-EINVAL);
427 }
428
429 inf = file->private_data;
430 ethosu_inference_get(inf);
431 fput(file);
432
433 return inf;
434}
435
436void ethosu_inference_get(struct ethosu_inference *inf)
437{
438 kref_get(&inf->kref);
439}
440
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100441int ethosu_inference_put(struct ethosu_inference *inf)
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200442{
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100443 return kref_put(&inf->kref, &ethosu_inference_kref_destroy);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200444}
445
446void ethosu_inference_rsp(struct ethosu_device *edev,
447 struct ethosu_core_inference_rsp *rsp)
448{
Davide Grohmann32660f92022-04-27 16:49:07 +0200449 int id = (int)rsp->user_arg;
450 struct ethosu_mailbox_msg *msg;
451 struct ethosu_inference *inf;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200452 int ret;
Per Åstrandf7e407a2020-10-23 21:25:05 +0200453 int i;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200454
Davide Grohmann32660f92022-04-27 16:49:07 +0200455 msg = ethosu_mailbox_find(&edev->mailbox, id);
456 if (IS_ERR(msg)) {
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200457 dev_warn(edev->dev,
Davide Grohmann32660f92022-04-27 16:49:07 +0200458 "Id for inference msg not found. Id=%d\n",
459 id);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200460
461 return;
462 }
463
Davide Grohmann32660f92022-04-27 16:49:07 +0200464 inf = container_of(msg, typeof(*inf), msg);
465
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200466 if (rsp->status == ETHOSU_CORE_STATUS_OK &&
467 inf->ofm_count <= ETHOSU_CORE_BUFFER_MAX) {
468 uint32_t i;
469
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200470 inf->status = ETHOSU_UAPI_STATUS_OK;
471
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200472 for (i = 0; i < inf->ofm_count; i++) {
473 struct ethosu_buffer *ofm = inf->ofm[i];
474
475 ret = ethosu_buffer_resize(
476 ofm, ofm->size + rsp->ofm_size[i],
477 ofm->offset);
478 if (ret)
479 inf->status = ETHOSU_UAPI_STATUS_ERROR;
480 }
Davide Grohmann82d22582022-04-25 12:52:38 +0200481 } else if (rsp->status == ETHOSU_CORE_STATUS_REJECTED) {
482 inf->status = ETHOSU_UAPI_STATUS_REJECTED;
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100483 } else if (rsp->status == ETHOSU_CORE_STATUS_ABORTED) {
484 inf->status = ETHOSU_UAPI_STATUS_ABORTED;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200485 } else {
486 inf->status = ETHOSU_UAPI_STATUS_ERROR;
487 }
488
Davide Grohmann82d22582022-04-25 12:52:38 +0200489 if (inf->status == ETHOSU_UAPI_STATUS_OK) {
490 for (i = 0; i < ETHOSU_CORE_PMU_MAX; i++) {
491 inf->pmu_event_config[i] = rsp->pmu_event_config[i];
492 inf->pmu_event_count[i] = rsp->pmu_event_count[i];
493 }
494
495 inf->pmu_cycle_counter_enable = rsp->pmu_cycle_counter_enable;
496 inf->pmu_cycle_counter_count = rsp->pmu_cycle_counter_count;
497
498 dev_info(edev->dev,
499 "PMU events. config=[%u, %u, %u, %u], count=[%u, %u, %u, %u]\n",
500 inf->pmu_event_config[0], inf->pmu_event_config[1],
501 inf->pmu_event_config[2], inf->pmu_event_config[3],
502 inf->pmu_event_count[0], inf->pmu_event_count[1],
503 inf->pmu_event_count[2], inf->pmu_event_count[3]);
504
505 dev_info(edev->dev,
506 "PMU cycle counter. enable=%u, count=%llu\n",
507 inf->pmu_cycle_counter_enable,
508 inf->pmu_cycle_counter_count);
Per Åstrandf7e407a2020-10-23 21:25:05 +0200509 }
510
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100511 inf->done = true;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200512 wake_up_interruptible(&inf->waitq);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200513 ethosu_inference_put(inf);
514}