hc
2024-03-22 619f0f87159c5dbd2755b1b0a0eb35784be84e7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2019 Western Digital Corporation or its affiliates.
 *
 * Authors:
 *   Anup Patel <anup.patel@wdc.com>
 */
 
#ifndef __SBI_TYPES_H__
#define __SBI_TYPES_H__
 
#ifndef OPENSBI_EXTERNAL_SBI_TYPES
 
/* clang-format off */
 
typedef char            s8;
typedef unsigned char        u8;
typedef unsigned char        uint8_t;
 
typedef short            s16;
typedef unsigned short        u16;
typedef short            int16_t;
typedef unsigned short        uint16_t;
 
typedef int            s32;
typedef unsigned int        u32;
typedef int            int32_t;
typedef unsigned int        uint32_t;
 
#if __riscv_xlen == 64
typedef long            s64;
typedef unsigned long        u64;
typedef long            int64_t;
typedef unsigned long        uint64_t;
#define PRILX            "016lx"
#elif __riscv_xlen == 32
typedef long long        s64;
typedef unsigned long long    u64;
typedef long long        int64_t;
typedef unsigned long long    uint64_t;
#define PRILX            "08lx"
#else
#error "Unexpected __riscv_xlen"
#endif
 
typedef int            bool;
typedef unsigned long        ulong;
typedef unsigned long        uintptr_t;
typedef unsigned long        size_t;
typedef long            ssize_t;
typedef unsigned long        virtual_addr_t;
typedef unsigned long        virtual_size_t;
typedef unsigned long        physical_addr_t;
typedef unsigned long        physical_size_t;
 
#define TRUE            1
#define FALSE            0
#define true            TRUE
#define false            FALSE
 
#define NULL            ((void *)0)
 
#define __packed        __attribute__((packed))
#define __noreturn        __attribute__((noreturn))
 
#define likely(x) __builtin_expect((x), 1)
#define unlikely(x) __builtin_expect((x), 0)
 
#undef offsetof
#ifdef __compiler_offsetof
#define offsetof(TYPE, MEMBER) __compiler_offsetof(TYPE,MEMBER)
#else
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
#endif
 
#define container_of(ptr, type, member) ({            \
   const typeof(((type *)0)->member) * __mptr = (ptr);    \
   (type *)((char *)__mptr - offsetof(type, member)); })
 
#define array_size(x)     (sizeof(x) / sizeof((x)[0]))
 
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define CLAMP(a, lo, hi) MIN(MAX(a, lo), hi)
 
#define STR(x) XSTR(x)
#define XSTR(x) #x
 
#define ROUNDUP(a, b) ((((a)-1) / (b) + 1) * (b))
#define ROUNDDOWN(a, b) ((a) / (b) * (b))
 
/* clang-format on */
 
#else
/*
 * OPENSBI_EXTERNAL_SBI_TYPES could be defined in CFLAGS for using the
 * external definitions of data types and common macros.
 * OPENSBI_EXTERNAL_SBI_TYPES is the file name to external header file,
 * the external build system should address the additional include
 * directory ccordingly.
 */
 
#define XSTR(x) #x
#define STR(x) XSTR(x)
#include STR(OPENSBI_EXTERNAL_SBI_TYPES)
#endif
 
#endif