* INTC Contribution to the O-RAN F Release for O-DU Low
[o-du/phy.git] / fapi_5g / source / include / nr5g_fapi_common_types.h
1 /******************************************************************************
2 *
3 *   Copyright (c) 2021 Intel.
4 *
5 *   Licensed under the Apache License, Version 2.0 (the "License");
6 *   you may not use this file except in compliance with the License.
7 *   You may obtain a copy of the License at
8 *
9 *       http://www.apache.org/licenses/LICENSE-2.0
10 *
11 *   Unless required by applicable law or agreed to in writing, software
12 *   distributed under the License is distributed on an "AS IS" BASIS,
13 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 *   See the License for the specific language governing permissions and
15 *   limitations under the License.
16 *
17 *******************************************************************************/
18 #ifndef _NR5G_FAPI_COMMON_TYPES_H_
19 #define _NR5G_FAPI_COMMON_TYPES_H_
20
21 #ifndef TRUE
22 /** TRUE = 1 */
23 #define TRUE 1
24 #endif                          /* #ifndef TRUE */
25
26 #ifndef FALSE
27 /** FALSE = 0 */
28 #define FALSE 0
29 #endif                          /* #ifndef FALSE */
30
31 #ifndef SUCCESS
32 /** SUCCESS = 0 */
33 #define SUCCESS     0
34 #endif                          /* #ifndef SUCCESS */
35
36 #ifndef FAILURE
37 /** FAILURE = 1 */
38 #define FAILURE     1
39 #endif                          /* #ifndef FAILURE */
40
41 #define RUP512B(x) (((x)+511)&(~511))
42 #define RUP256B(x) (((x)+255)&(~255))
43 #define RUP128B(x) (((x)+127)&(~127))
44 #define RUP64B(x) (((x)+63)&(~63))
45 #define RUP32B(x) (((x)+31)&(~31))
46 #define RUP16B(x) (((x)+15)&(~15))
47 #define RUP8B(x)  (((x)+7)&(~7))
48 #define RUP4B(x)  (((x)+3)&(~3))
49 #define RUP2B(x)  (((x)+1)&(~1))
50
51 #define UNUSED(x) (void)(x)
52
53 #endif                          // _NR5G_FAPI_COMMON_TYPES_H_