blob: edf922b30d71fa6c245fece4ec7b28692d789928 [file] [log] [blame]
Kristofer Jonsson116a6352020-08-20 17:25:23 +02001/*
Kristofer Jonssonb42bc0b2023-01-04 17:09:28 +01002 * Copyright 2020-2023 Arm Limited and/or its affiliates
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#ifndef ETHOSU_MAILBOX_H
22#define ETHOSU_MAILBOX_H
23
24/****************************************************************************
25 * Includes
26 ****************************************************************************/
Kristofer Jonssond779a082023-01-04 17:09:47 +010027#include "ethosu_core_rpmsg.h"
Kristofer Jonsson116a6352020-08-20 17:25:23 +020028
29#include <linux/types.h>
30#include <linux/mailbox_client.h>
31#include <linux/workqueue.h>
Davide Grohmann32660f92022-04-27 16:49:07 +020032#include <linux/idr.h>
Kristofer Jonsson116a6352020-08-20 17:25:23 +020033
34/****************************************************************************
35 * Types
36 ****************************************************************************/
37
38struct device;
39struct ethosu_buffer;
40struct ethosu_device;
41struct ethosu_core_msg;
42struct ethosu_core_queue;
43struct resource;
44
45typedef void (*ethosu_mailbox_cb)(void *user_arg);
46
47struct ethosu_mailbox {
Kristofer Jonssond779a082023-01-04 17:09:47 +010048 struct device *dev;
49 struct rpmsg_endpoint *ept;
50 struct idr msg_idr;
Kristofer Jonsson442fefb2022-03-17 17:15:52 +010051};
52
53struct ethosu_mailbox_msg {
Davide Grohmann32660f92022-04-27 16:49:07 +020054 int id;
55 void (*fail)(struct ethosu_mailbox_msg *msg);
Kristofer Jonsson116a6352020-08-20 17:25:23 +020056};
57
58/****************************************************************************
59 * Functions
60 ****************************************************************************/
61
62/**
63 * ethosu_mailbox_init() - Initialize mailbox
64 *
65 * Return: 0 on success, else error code.
66 */
67int ethosu_mailbox_init(struct ethosu_mailbox *mbox,
68 struct device *dev,
Kristofer Jonssond779a082023-01-04 17:09:47 +010069 struct rpmsg_endpoint *ept);
Kristofer Jonsson116a6352020-08-20 17:25:23 +020070
71/**
72 * ethosu_mailbox_deinit() - Deinitialize mailbox
73 */
74void ethosu_mailbox_deinit(struct ethosu_mailbox *mbox);
75
76/**
Davide Grohmann32660f92022-04-27 16:49:07 +020077 * ethosu_mailbox_register() - Register the ethosu_mailbox_msg in ethosu_mailbox
Kristofer Jonsson442fefb2022-03-17 17:15:52 +010078 *
79 * Return: 0 on success, else error code.
80 */
Davide Grohmann32660f92022-04-27 16:49:07 +020081int ethosu_mailbox_register(struct ethosu_mailbox *mbox,
82 struct ethosu_mailbox_msg *msg);
83
84/**
85 * ethosu_mailbox_free_id() - Free the id of the ethosu_mailbox_msg
86 */
87void ethosu_mailbox_deregister(struct ethosu_mailbox *mbox,
88 struct ethosu_mailbox_msg *msg);
89
90/**
91 * ethosu_mailbox_find() - Find mailbox message
92 *
93 * Return: a valid pointer on success, otherwise an error ptr.
94 */
95struct ethosu_mailbox_msg *ethosu_mailbox_find(struct ethosu_mailbox *mbox,
96 int msg_id);
Kristofer Jonsson442fefb2022-03-17 17:15:52 +010097
98/**
99 * ethosu_mailbox_fail() - Fail mailbox messages
100 *
101 * Call fail() callback on all messages in pending list.
102 */
103void ethosu_mailbox_fail(struct ethosu_mailbox *mbox);
104
105/**
Jonny Svärd7c24c772021-01-14 19:53:17 +0100106 * ethosu_mailbox_reset() - Reset to end of queue
107 */
108void ethosu_mailbox_reset(struct ethosu_mailbox *mbox);
109
110/**
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200111 * ethosu_mailbox_ping() - Send ping message
112 *
113 * Return: 0 on success, else error code.
114 */
115int ethosu_mailbox_ping(struct ethosu_mailbox *mbox);
116
117/**
Jonny Svärd7c24c772021-01-14 19:53:17 +0100118 * ethosu_mailbox_pong() - Send pong response
119 *
120 * Return: 0 on success, else error code.
121 */
122int ethosu_mailbox_pong(struct ethosu_mailbox *mbox);
123
124/**
125 * ethosu_mailbox_version_response - Send version request
126 *
127 * Return: 0 on succes, else error code
128 */
129int ethosu_mailbox_version_request(struct ethosu_mailbox *mbox);
130
131/**
Davide Grohmann35ce6c82021-06-01 15:03:51 +0200132 * ethosu_mailbox_capabilities_request() - Send capabilities request
133 *
134 * Return: 0 on success, else error code.
135 */
136int ethosu_mailbox_capabilities_request(struct ethosu_mailbox *mbox,
Davide Grohmann32660f92022-04-27 16:49:07 +0200137 struct ethosu_mailbox_msg *msg);
Davide Grohmann35ce6c82021-06-01 15:03:51 +0200138
139/**
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200140 * ethosu_mailbox_inference() - Send inference
141 *
142 * Return: 0 on success, else error code.
143 */
144int ethosu_mailbox_inference(struct ethosu_mailbox *mbox,
Davide Grohmann32660f92022-04-27 16:49:07 +0200145 struct ethosu_mailbox_msg *msg,
Kristofer Jonssonb74492c2020-09-10 13:26:01 +0200146 uint32_t ifm_count,
147 struct ethosu_buffer **ifm,
148 uint32_t ofm_count,
149 struct ethosu_buffer **ofm,
Per Åstrandf7e407a2020-10-23 21:25:05 +0200150 struct ethosu_buffer *network,
Kristofer Jonsson35de9e62022-03-08 13:25:45 +0100151 uint32_t network_index,
Per Åstrandf7e407a2020-10-23 21:25:05 +0200152 uint8_t *pmu_event_config,
153 uint8_t pmu_event_config_count,
154 uint8_t pmu_cycle_counter_enable);
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200155
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +0100156/**
157 * ethosu_mailbox_network_info_request() - Send network info request
158 *
159 * Return: 0 on success, else error code.
160 */
161int ethosu_mailbox_network_info_request(struct ethosu_mailbox *mbox,
Davide Grohmann32660f92022-04-27 16:49:07 +0200162 struct ethosu_mailbox_msg *msg,
Kristofer Jonsson3c6a2602022-03-10 11:17:29 +0100163 struct ethosu_buffer *network,
164 uint32_t network_index);
165
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100166/**
167 * ethosu_mailbox_cancel_inference() - Send inference cancellation
168 *
169 * Return: 0 on success, else error code.
170 */
171int ethosu_mailbox_cancel_inference(struct ethosu_mailbox *mbox,
Davide Grohmann32660f92022-04-27 16:49:07 +0200172 struct ethosu_mailbox_msg *msg,
173 int inference_handle);
Davide Grohmann7e8f5082022-03-23 12:48:45 +0100174
Kristofer Jonsson116a6352020-08-20 17:25:23 +0200175#endif /* ETHOSU_MAILBOX_H */