blob: 433ad0683085bb7049ecfebd1db9376bb005b862 [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/******************************************************************************
Kristofer Jonsson4dc73dc2020-10-16 12:33:47 +020080 * Variables
81 ******************************************************************************/
82
83extern struct ethosu_driver ethosu_drv;
84
85/******************************************************************************
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020086 * Prototypes
87 ******************************************************************************/
88
89/**
90 * Initialize the Ethos-U driver.
91 */
Kristofer Jonsson2b201c32020-09-02 16:42:43 +020092int ethosu_init_v2(const void *base_address, const void *fast_memory, const size_t fast_memory_size);
93
94#define ethosu_init(base_address) ethosu_init_v2(base_address, NULL, 0)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020095
96/**
97 * Get Ethos-U version.
98 */
99int ethosu_get_version(struct ethosu_version *version);
100
101/**
102 * Invoke Vela command stream.
103 */
Kristofer Jonsson2b201c32020-09-02 16:42:43 +0200104int ethosu_invoke_v2(const void *custom_data_ptr,
105 const int custom_data_size,
106 const uint64_t *base_addr,
107 const size_t *base_addr_size,
108 const int num_base_addr);
109
110#define ethosu_invoke(custom_data_ptr, custom_data_size, base_addr, num_base_addr) \
111 ethosu_invoke_v2(custom_data_ptr, custom_data_size, base_addr, NULL, num_base_addr)
112
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200113/**
114 * Abort Ethos-U inference.
115 */
116void ethosu_abort(void);
117
Per Åstrand25d78c02020-04-21 14:19:44 +0200118/**
119 * Interrupt handler do be called on IRQ from Ethos-U
120 */
121void ethosu_irq_handler(void);
122
Kristofer Jonsson49bdee82020-04-06 13:21:21 +0200123#ifdef __cplusplus
124}
125#endif
Kristofer Jonsson3c439172020-08-05 09:38:40 +0200126
127#endif // ETHOSU_DRIVER_H