blob: 2594fbe7153017ad28bfa1e6398c572f9f753b4c [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 Patel5f8dad12020-09-30 09:06:52 +020046 bool status_error;
Bhavik Pateldae5be02020-06-18 15:25:15 +020047};
48
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020049struct ethosu_version_id
50{
51 // Ethos-U id
52 uint8_t version_status;
53 uint8_t version_minor;
54 uint8_t version_major;
55 uint8_t product_major;
56 uint8_t arch_patch_rev;
57 uint8_t arch_minor_rev;
58 uint8_t arch_major_rev;
59
60 // Driver Version
61 uint8_t driver_patch_rev;
62 uint8_t driver_minor_rev;
63 uint8_t driver_major_rev;
64};
65
66struct ethosu_version_config
67{
68 uint8_t macs_per_cc;
69 uint8_t cmd_stream_version;
70 uint8_t shram_size;
71};
72
73struct ethosu_version
74{
75 struct ethosu_version_id id;
76 struct ethosu_version_config cfg;
77};
78
79/******************************************************************************
80 * Prototypes
81 ******************************************************************************/
82
83/**
84 * Initialize the Ethos-U driver.
85 */
Kristofer Jonsson2b201c32020-09-02 16:42:43 +020086int ethosu_init_v2(const void *base_address, const void *fast_memory, const size_t fast_memory_size);
87
88#define ethosu_init(base_address) ethosu_init_v2(base_address, NULL, 0)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020089
90/**
91 * Get Ethos-U version.
92 */
93int ethosu_get_version(struct ethosu_version *version);
94
95/**
96 * Invoke Vela command stream.
97 */
Kristofer Jonsson2b201c32020-09-02 16:42:43 +020098int ethosu_invoke_v2(const void *custom_data_ptr,
99 const int custom_data_size,
100 const uint64_t *base_addr,
101 const size_t *base_addr_size,
102 const int num_base_addr);
103
104#define ethosu_invoke(custom_data_ptr, custom_data_size, base_addr, num_base_addr) \
105 ethosu_invoke_v2(custom_data_ptr, custom_data_size, base_addr, NULL, num_base_addr)
106
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200107/**
108 * Abort Ethos-U inference.
109 */
110void ethosu_abort(void);
111
Per Åstrand25d78c02020-04-21 14:19:44 +0200112/**
113 * Interrupt handler do be called on IRQ from Ethos-U
114 */
115void ethosu_irq_handler(void);
116
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200117#ifdef __cplusplus
118}
119#endif
Kristofer Jonsson3c439172020-08-05 09:38:40 +0200120
121#endif // ETHOSU_DRIVER_H