blob: 755a3d5a8ddeea53a7bc303d3a82422b1c92e333 [file] [log] [blame]
Mikael Olsson7c843dc2023-08-03 12:41:48 +02001/*
Mikael Olssond4ad9e52024-02-07 11:22:26 +01002 * SPDX-FileCopyrightText: Copyright 2023-2024 Arm Limited and/or its affiliates <open-source-office@arm.com>
3 * SPDX-License-Identifier: GPL-2.0-only
Mikael Olsson7c843dc2023-08-03 12:41:48 +02004 *
5 * This program is free software and is provided to you under the terms of the
6 * GNU General Public License version 2 as published by the Free Software
7 * Foundation, and any use by you of this program is subject to the terms
8 * of such GNU licence.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, you can access it online at
17 * http://www.gnu.org/licenses/gpl-2.0.html.
Mikael Olsson7c843dc2023-08-03 12:41:48 +020018 */
19
20#ifndef ETHOSU_VERSION_H
21#define ETHOSU_VERSION_H
22
23/****************************************************************************
24 * Includes
25 ****************************************************************************/
26
Mikael Olssond4ad9e52024-02-07 11:22:26 +010027#include <rpmsg/ethosu_rpmsg_mailbox.h>
Mikael Olsson7c843dc2023-08-03 12:41:48 +020028
29#include <linux/types.h>
30#include <linux/completion.h>
31
32/****************************************************************************
33 * Types
34 ****************************************************************************/
35
36struct ethosu_core_msg_version_rsp;
37
38/**
39 * struct ethosu_version - Protocol version internal struct
40 */
41struct ethosu_version {
42 struct device *dev;
43 struct completion done;
44 struct ethosu_mailbox_msg msg;
45 int errno;
46};
47
48/****************************************************************************
49 * Functions
50 ****************************************************************************/
51
52void ethosu_version_rsp(struct ethosu_mailbox *mailbox,
53 int msg_id,
54 struct ethosu_core_msg_version_rsp *rsp);
55
56int ethosu_version_check_request(struct device *dev,
57 struct ethosu_mailbox *mailbox);
58
59#endif /* ETHOSU_VERSION_H */