blob: a3982dd963f6b72a6e9be13420ad0a215f6310bf [file] [log] [blame]
Davide Grohmann7e8f5082022-03-23 12:48:45 +01001/*
Kristofer Jonssond779a082023-01-04 17:09:47 +01002 * Copyright 2022-2023 Arm Limited and/or its affiliates
Davide Grohmann7e8f5082022-03-23 12:48:45 +01003 *
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#ifndef ETHOSU_CANCEL_INFERENCE_H
22#define ETHOSU_CANCEL_INFERENCE_H
23
24/****************************************************************************
25 * Includes
26 ****************************************************************************/
27
28#include "ethosu_mailbox.h"
29#include "uapi/ethosu.h"
30
Davide Grohmann7e8f5082022-03-23 12:48:45 +010031#include <linux/types.h>
32#include <linux/completion.h>
33
34/****************************************************************************
35 * Types
36 ****************************************************************************/
37
Kristofer Jonssond779a082023-01-04 17:09:47 +010038struct ethosu_core_msg_cancel_inference_rsp;
Davide Grohmann7e8f5082022-03-23 12:48:45 +010039struct ethosu_inference;
Kristofer Jonssond779a082023-01-04 17:09:47 +010040struct ethosu_uapi_cancel_inference_status;
Davide Grohmann7e8f5082022-03-23 12:48:45 +010041
42struct ethosu_cancel_inference {
Kristofer Jonssonec477042023-01-20 13:38:13 +010043 struct device *dev;
Davide Grohmann7e8f5082022-03-23 12:48:45 +010044 struct ethosu_inference *inf;
45 struct ethosu_uapi_cancel_inference_status *uapi;
Davide Grohmann7e8f5082022-03-23 12:48:45 +010046 struct completion done;
47 struct ethosu_mailbox_msg msg;
48 int errno;
49};
50
51/****************************************************************************
52 * Functions
53 ****************************************************************************/
54
55/**
56 * ethosu_cancel_inference_request() - Send cancel inference request
57 *
58 * Return: 0 on success, error code otherwise.
59 */
Kristofer Jonssonec477042023-01-20 13:38:13 +010060int ethosu_cancel_inference_request(struct device *dev,
61 struct ethosu_mailbox *mailbox,
62 struct ethosu_inference *inf,
Davide Grohmann7e8f5082022-03-23 12:48:45 +010063 struct ethosu_uapi_cancel_inference_status *uapi);
64
65/**
66 * ethosu_cancel_inference_rsp() - Handle cancel inference response
67 */
Kristofer Jonssonec477042023-01-20 13:38:13 +010068void ethosu_cancel_inference_rsp(struct ethosu_mailbox *mailbox,
Kristofer Jonssond779a082023-01-04 17:09:47 +010069 int msg_id,
70 struct ethosu_core_msg_cancel_inference_rsp *rsp);
Davide Grohmann7e8f5082022-03-23 12:48:45 +010071
72#endif /* ETHOSU_CANCEL_INFERENCE_H */