blob: d6e9c6d28464f49647057d1fa1a32fa9cc25b434 [file] [log] [blame]
Kristofer Jonsson49bdee82020-04-06 13:21:21 +02001/*
2 * Copyright (c) 2019-2020 Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 *
6 * Licensed under the Apache License, Version 2.0 (the License); you may
7 * not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
14 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
Kristofer Jonsson3c439172020-08-05 09:38:40 +020019#ifndef ETHOSU_DRIVER_H
20#define ETHOSU_DRIVER_H
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020021
22/******************************************************************************
23 * Includes
24 ******************************************************************************/
25
Bhavik Pateldae5be02020-06-18 15:25:15 +020026#include "ethosu_device.h"
27
28#include <stdbool.h>
Kristofer Jonsson2b201c32020-09-02 16:42:43 +020029#include <stddef.h>
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020030#include <stdint.h>
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/******************************************************************************
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020037 * Types
38 ******************************************************************************/
39
Bhavik Pateldae5be02020-06-18 15:25:15 +020040struct ethosu_driver
41{
42 struct ethosu_device dev;
43 bool abort_inference;
Kristofer Jonsson2b201c32020-09-02 16:42:43 +020044 uint64_t fast_memory;
45 size_t fast_memory_size;
Bhavik Pateldae5be02020-06-18 15:25:15 +020046};
47
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020048struct ethosu_version_id
49{
50 // Ethos-U id
51 uint8_t version_status;
52 uint8_t version_minor;
53 uint8_t version_major;
54 uint8_t product_major;
55 uint8_t arch_patch_rev;
56 uint8_t arch_minor_rev;
57 uint8_t arch_major_rev;
58
59 // Driver Version
60 uint8_t driver_patch_rev;
61 uint8_t driver_minor_rev;
62 uint8_t driver_major_rev;
63};
64
65struct ethosu_version_config
66{
67 uint8_t macs_per_cc;
68 uint8_t cmd_stream_version;
69 uint8_t shram_size;
70};
71
72struct ethosu_version
73{
74 struct ethosu_version_id id;
75 struct ethosu_version_config cfg;
76};
77
78/******************************************************************************
79 * Prototypes
80 ******************************************************************************/
81
82/**
83 * Initialize the Ethos-U driver.
84 */
Kristofer Jonsson2b201c32020-09-02 16:42:43 +020085int ethosu_init_v2(const void *base_address, const void *fast_memory, const size_t fast_memory_size);
86
87#define ethosu_init(base_address) ethosu_init_v2(base_address, NULL, 0)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020088
89/**
90 * Get Ethos-U version.
91 */
92int ethosu_get_version(struct ethosu_version *version);
93
94/**
95 * Invoke Vela command stream.
96 */
Kristofer Jonsson2b201c32020-09-02 16:42:43 +020097int ethosu_invoke_v2(const void *custom_data_ptr,
98 const int custom_data_size,
99 const uint64_t *base_addr,
100 const size_t *base_addr_size,
101 const int num_base_addr);
102
103#define ethosu_invoke(custom_data_ptr, custom_data_size, base_addr, num_base_addr) \
104 ethosu_invoke_v2(custom_data_ptr, custom_data_size, base_addr, NULL, num_base_addr)
105
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200106/**
107 * Abort Ethos-U inference.
108 */
109void ethosu_abort(void);
110
Per Åstrand25d78c02020-04-21 14:19:44 +0200111/**
112 * Interrupt handler do be called on IRQ from Ethos-U
113 */
114void ethosu_irq_handler(void);
115
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200116#ifdef __cplusplus
117}
118#endif
Kristofer Jonsson3c439172020-08-05 09:38:40 +0200119
120#endif // ETHOSU_DRIVER_H