blob: 55cabc3fabf273ce54d140f6da0d8e1e21c0c90f [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 Jonsson116a6352020-08-20 17:25:23 +0200106 if (ret)
107 return ret;
108
Davide Grohmann82d22582022-04-25 12:52:38 +0200109 inf->status = ETHOSU_UAPI_STATUS_RUNNING;
110
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200111 ethosu_inference_get(inf);
112
113 return 0;
114}
115
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100116static void ethosu_inference_fail(struct ethosu_mailbox_msg *msg)
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200117{
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100118 struct ethosu_inference *inf =
119 container_of(msg, typeof(*inf), msg);
120 int ret;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200121
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100122 if (inf->done)
123 return;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200124
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100125 /* Decrement reference count if inference was pending reponse */
126 ret = ethosu_inference_put(inf);
127 if (ret)
128 return;
129
130 /* Set status accordingly to the inference state */
131 inf->status = inf->status == ETHOSU_UAPI_STATUS_ABORTING ?
132 ETHOSU_UAPI_STATUS_ABORTED :
133 ETHOSU_UAPI_STATUS_ERROR;
134 /* Mark it done and wake up the waiting process */
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100135 inf->done = true;
136 wake_up_interruptible(&inf->waitq);
137}
138
139static int ethosu_inference_resend(struct ethosu_mailbox_msg *msg)
140{
141 struct ethosu_inference *inf =
142 container_of(msg, typeof(*inf), msg);
143 int ret;
144
145 /* Don't resend request if response has already been received */
146 if (inf->done)
147 return 0;
148
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100149 /* If marked as ABORTING simply fail it and return */
150 if (inf->status == ETHOSU_UAPI_STATUS_ABORTING) {
151 ethosu_inference_fail(msg);
152
153 return 0;
154 }
155
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100156 /* Decrement reference count for pending request */
157 ret = ethosu_inference_put(inf);
158 if (ret)
159 return 0;
160
161 /* Resend request */
162 ret = ethosu_inference_send(inf);
163 if (ret)
164 return ret;
165
166 return 0;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200167}
168
169static bool ethosu_inference_verify(struct file *file)
170{
171 return file->f_op == &ethosu_inference_fops;
172}
173
174static void ethosu_inference_kref_destroy(struct kref *kref)
175{
176 struct ethosu_inference *inf =
177 container_of(kref, struct ethosu_inference, kref);
178
179 dev_info(inf->edev->dev,
180 "Inference destroy. handle=0x%pK, status=%d\n",
181 inf, inf->status);
182
Davide Grohmann32660f92022-04-27 16:49:07 +0200183 ethosu_mailbox_deregister(&inf->edev->mailbox, &inf->msg);
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200184
185 while (inf->ifm_count-- > 0)
186 ethosu_buffer_put(inf->ifm[inf->ifm_count]);
187
188 while (inf->ofm_count-- > 0)
189 ethosu_buffer_put(inf->ofm[inf->ofm_count]);
190
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200191 ethosu_network_put(inf->net);
192 devm_kfree(inf->edev->dev, inf);
193}
194
195static int ethosu_inference_release(struct inode *inode,
196 struct file *file)
197{
198 struct ethosu_inference *inf = file->private_data;
199
200 dev_info(inf->edev->dev,
201 "Inference release. handle=0x%pK, status=%d\n",
202 inf, inf->status);
203
204 ethosu_inference_put(inf);
205
206 return 0;
207}
208
209static unsigned int ethosu_inference_poll(struct file *file,
210 poll_table *wait)
211{
212 struct ethosu_inference *inf = file->private_data;
213 int ret = 0;
214
215 poll_wait(file, &inf->waitq, wait);
216
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100217 if (inf->done)
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200218 ret |= POLLIN;
219
220 return ret;
221}
222
223static long ethosu_inference_ioctl(struct file *file,
224 unsigned int cmd,
225 unsigned long arg)
226{
227 struct ethosu_inference *inf = file->private_data;
Per Åstrandf7e407a2020-10-23 21:25:05 +0200228 void __user *udata = (void __user *)arg;
229 int ret;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200230
231 ret = mutex_lock_interruptible(&inf->edev->mutex);
232 if (ret)
233 return ret;
234
235 dev_info(inf->edev->dev, "Ioctl: cmd=%u, arg=%lu\n", cmd, arg);
236
237 switch (cmd) {
238 case ETHOSU_IOCTL_INFERENCE_STATUS: {
Per Åstrandf7e407a2020-10-23 21:25:05 +0200239 struct ethosu_uapi_result_status uapi;
240 int i;
241
242 uapi.status = inf->status;
243
244 for (i = 0; i < ETHOSU_PMU_EVENT_MAX; i++) {
245 uapi.pmu_config.events[i] =
246 inf->pmu_event_config[i];
247 uapi.pmu_count.events[i] =
248 inf->pmu_event_count[i];
249 }
250
251 uapi.pmu_config.cycle_count = inf->pmu_cycle_counter_enable;
252 uapi.pmu_count.cycle_count = inf->pmu_cycle_counter_count;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200253
254 dev_info(inf->edev->dev,
255 "Ioctl: Inference status. status=%s (%d)\n",
Per Åstrandf7e407a2020-10-23 21:25:05 +0200256 status_to_string(uapi.status), uapi.status);
257
258 ret = copy_to_user(udata, &uapi, sizeof(uapi)) ? -EFAULT : 0;
259
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200260 break;
261 }
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100262 case ETHOSU_IOCTL_INFERENCE_CANCEL: {
263 struct ethosu_uapi_cancel_inference_status uapi;
264
265 dev_info(inf->edev->dev, "Ioctl: Cancel Inference. Handle=%p\n",
266 inf);
267
268 ret = ethosu_cancel_inference_request(inf, &uapi);
269 if (ret)
270 break;
271
272 ret = copy_to_user(udata, &uapi, sizeof(uapi)) ? -EFAULT : 0;
273
274 break;
275 }
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200276 default: {
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100277 dev_err(inf->edev->dev, "Invalid ioctl. cmd=%u, arg=%lu\n",
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200278 cmd, arg);
279 break;
280 }
281 }
282
283 mutex_unlock(&inf->edev->mutex);
284
285 return ret;
286}
287
288int ethosu_inference_create(struct ethosu_device *edev,
289 struct ethosu_network *net,
290 struct ethosu_uapi_inference_create *uapi)
291{
292 struct ethosu_inference *inf;
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200293 uint32_t i;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200294 int fd;
295 int ret = -ENOMEM;
296
297 inf = devm_kzalloc(edev->dev, sizeof(*inf), GFP_KERNEL);
298 if (!inf)
299 return -ENOMEM;
300
301 inf->edev = edev;
302 inf->net = net;
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100303 inf->done = false;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200304 inf->status = ETHOSU_UAPI_STATUS_ERROR;
305 kref_init(&inf->kref);
306 init_waitqueue_head(&inf->waitq);
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100307 inf->msg.fail = ethosu_inference_fail;
308 inf->msg.resend = ethosu_inference_resend;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200309
Davide Grohmann32660f92022-04-27 16:49:07 +0200310 /* Add inference to pending list */
311 ret = ethosu_mailbox_register(&edev->mailbox, &inf->msg);
312 if (ret < 0)
313 goto kfree;
314
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200315 /* Get pointer to IFM buffers */
316 for (i = 0; i < uapi->ifm_count; i++) {
317 inf->ifm[i] = ethosu_buffer_get_from_fd(uapi->ifm_fd[i]);
318 if (IS_ERR(inf->ifm[i])) {
319 ret = PTR_ERR(inf->ifm[i]);
320 goto put_ifm;
321 }
322
323 inf->ifm_count++;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200324 }
325
326 /* Get pointer to OFM buffer */
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200327 for (i = 0; i < uapi->ofm_count; i++) {
328 inf->ofm[i] = ethosu_buffer_get_from_fd(uapi->ofm_fd[i]);
329 if (IS_ERR(inf->ofm[i])) {
330 ret = PTR_ERR(inf->ofm[i]);
331 goto put_ofm;
332 }
333
334 inf->ofm_count++;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200335 }
336
Per Åstrandf7e407a2020-10-23 21:25:05 +0200337 /* Configure PMU and cycle counter */
338 dev_info(inf->edev->dev,
339 "Configuring events for PMU. events=[%u, %u, %u, %u]\n",
340 uapi->pmu_config.events[0], uapi->pmu_config.events[1],
341 uapi->pmu_config.events[2], uapi->pmu_config.events[3]);
342
343 /* Configure events and reset count for all events */
344 for (i = 0; i < ETHOSU_PMU_EVENT_MAX; i++) {
345 inf->pmu_event_config[i] = uapi->pmu_config.events[i];
346 inf->pmu_event_count[i] = 0;
347 }
348
349 if (uapi->pmu_config.cycle_count)
350 dev_info(inf->edev->dev, "Enabling cycle counter\n");
351
352 /* Configure cycle counter and reset any previous count */
353 inf->pmu_cycle_counter_enable = uapi->pmu_config.cycle_count;
354 inf->pmu_cycle_counter_count = 0;
355
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200356 /* Increment network reference count */
357 ethosu_network_get(net);
358
359 /* Create file descriptor */
360 ret = fd = anon_inode_getfd("ethosu-inference", &ethosu_inference_fops,
361 inf, O_RDWR | O_CLOEXEC);
362 if (ret < 0)
363 goto put_net;
364
365 /* Store pointer to file structure */
366 inf->file = fget(ret);
367 fput(inf->file);
368
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200369 /* Send inference request to Arm Ethos-U subsystem */
Davide Grohmann32660f92022-04-27 16:49:07 +0200370 ret = ethosu_inference_send(inf);
371 if (ret)
372 goto put_net;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200373
Davide Grohmann32660f92022-04-27 16:49:07 +0200374 dev_info(edev->dev, "Inference create. Id=%d, handle=0x%p, fd=%d",
375 inf->msg.id, inf, fd);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200376
377 return fd;
378
379put_net:
380 ethosu_network_put(inf->net);
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200381
382put_ofm:
383 while (inf->ofm_count-- > 0)
384 ethosu_buffer_put(inf->ofm[inf->ofm_count]);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200385
386put_ifm:
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200387 while (inf->ifm_count-- > 0)
388 ethosu_buffer_put(inf->ifm[inf->ifm_count]);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200389
Davide Grohmann32660f92022-04-27 16:49:07 +0200390kfree:
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200391 devm_kfree(edev->dev, inf);
392
393 return ret;
394}
395
396struct ethosu_inference *ethosu_inference_get_from_fd(int fd)
397{
398 struct ethosu_inference *inf;
399 struct file *file;
400
401 file = fget(fd);
402 if (!file)
403 return ERR_PTR(-EINVAL);
404
405 if (!ethosu_inference_verify(file)) {
406 fput(file);
407
408 return ERR_PTR(-EINVAL);
409 }
410
411 inf = file->private_data;
412 ethosu_inference_get(inf);
413 fput(file);
414
415 return inf;
416}
417
418void ethosu_inference_get(struct ethosu_inference *inf)
419{
420 kref_get(&inf->kref);
421}
422
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100423int ethosu_inference_put(struct ethosu_inference *inf)
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200424{
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100425 return kref_put(&inf->kref, &ethosu_inference_kref_destroy);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200426}
427
428void ethosu_inference_rsp(struct ethosu_device *edev,
429 struct ethosu_core_inference_rsp *rsp)
430{
Davide Grohmann32660f92022-04-27 16:49:07 +0200431 int id = (int)rsp->user_arg;
432 struct ethosu_mailbox_msg *msg;
433 struct ethosu_inference *inf;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200434 int ret;
Per Åstrandf7e407a2020-10-23 21:25:05 +0200435 int i;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200436
Davide Grohmann32660f92022-04-27 16:49:07 +0200437 msg = ethosu_mailbox_find(&edev->mailbox, id);
438 if (IS_ERR(msg)) {
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200439 dev_warn(edev->dev,
Davide Grohmann32660f92022-04-27 16:49:07 +0200440 "Id for inference msg not found. Id=%d\n",
441 id);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200442
443 return;
444 }
445
Davide Grohmann32660f92022-04-27 16:49:07 +0200446 inf = container_of(msg, typeof(*inf), msg);
447
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200448 if (rsp->status == ETHOSU_CORE_STATUS_OK &&
449 inf->ofm_count <= ETHOSU_CORE_BUFFER_MAX) {
450 uint32_t i;
451
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200452 inf->status = ETHOSU_UAPI_STATUS_OK;
453
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200454 for (i = 0; i < inf->ofm_count; i++) {
455 struct ethosu_buffer *ofm = inf->ofm[i];
456
457 ret = ethosu_buffer_resize(
458 ofm, ofm->size + rsp->ofm_size[i],
459 ofm->offset);
460 if (ret)
461 inf->status = ETHOSU_UAPI_STATUS_ERROR;
462 }
Davide Grohmann82d22582022-04-25 12:52:38 +0200463 } else if (rsp->status == ETHOSU_CORE_STATUS_REJECTED) {
464 inf->status = ETHOSU_UAPI_STATUS_REJECTED;
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100465 } else if (rsp->status == ETHOSU_CORE_STATUS_ABORTED) {
466 inf->status = ETHOSU_UAPI_STATUS_ABORTED;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200467 } else {
468 inf->status = ETHOSU_UAPI_STATUS_ERROR;
469 }
470
Davide Grohmann82d22582022-04-25 12:52:38 +0200471 if (inf->status == ETHOSU_UAPI_STATUS_OK) {
472 for (i = 0; i < ETHOSU_CORE_PMU_MAX; i++) {
473 inf->pmu_event_config[i] = rsp->pmu_event_config[i];
474 inf->pmu_event_count[i] = rsp->pmu_event_count[i];
475 }
476
477 inf->pmu_cycle_counter_enable = rsp->pmu_cycle_counter_enable;
478 inf->pmu_cycle_counter_count = rsp->pmu_cycle_counter_count;
479
480 dev_info(edev->dev,
481 "PMU events. config=[%u, %u, %u, %u], count=[%u, %u, %u, %u]\n",
482 inf->pmu_event_config[0], inf->pmu_event_config[1],
483 inf->pmu_event_config[2], inf->pmu_event_config[3],
484 inf->pmu_event_count[0], inf->pmu_event_count[1],
485 inf->pmu_event_count[2], inf->pmu_event_count[3]);
486
487 dev_info(edev->dev,
488 "PMU cycle counter. enable=%u, count=%llu\n",
489 inf->pmu_cycle_counter_enable,
490 inf->pmu_cycle_counter_count);
Per Åstrandf7e407a2020-10-23 21:25:05 +0200491 }
492
Kristofer Jonsson442fefb2022-03-17 17:15:52 +0100493 inf->done = true;
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200494 wake_up_interruptible(&inf->waitq);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200495 ethosu_inference_put(inf);
496}