blob: 90cc6da22dc343874943eb892d637afe1b9cb304 [file] [log] [blame]
Kristofer Jonsson49bdee82020-04-06 13:21:21 +02001/*
Kristofer Jonsson1c893b52021-05-26 12:06:14 +02002 * Copyright (c) 2019-2021 Arm Limited. All rights reserved.
Kristofer Jonsson49bdee82020-04-06 13:21:21 +02003 *
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_COMMON_H
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020020#define ETHOSU_COMMON_H
21
Kristofer Jonsson3c439172020-08-05 09:38:40 +020022/******************************************************************************
23 * Includes
24 ******************************************************************************/
25
Kristofer Jonsson3c439172020-08-05 09:38:40 +020026/******************************************************************************
27 * Defines
28 ******************************************************************************/
29
Jonny Svärda830f172021-06-07 16:57:00 +020030#define UNUSED(x) ((void)x)
31
32#define MASK_0_31_BITS (0xFFFFFFFF)
33#define MASK_32_47_BITS (0xFFFF00000000)
34
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020035#endif // ETHOSU_COMMON_H