New upstream version 17.08
[deb_dpdk.git] / drivers / crypto / dpaa2_sec / hw / compat.h
1 /*-
2  * This file is provided under a dual BSD/GPLv2 license. When using or
3  * redistributing this file, you may do so under either license.
4  *
5  *   BSD LICENSE
6  *
7  * Copyright 2013-2016 Freescale Semiconductor Inc.
8  * Copyright 2016 NXP.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are met:
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above copyright
15  * notice, this list of conditions and the following disclaimer in the
16  * documentation and/or other materials provided with the distribution.
17  * * Neither the name of the above-listed copyright holders nor the
18  * names of any contributors may be used to endorse or promote products
19  * derived from this software without specific prior written permission.
20  *
21  *   GPL LICENSE SUMMARY
22  *
23  * ALTERNATIVELY, this software may be distributed under the terms of the
24  * GNU General Public License ("GPL") as published by the Free Software
25  * Foundation, either version 2 of that License or (at your option) any
26  * later version.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
32  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38  * POSSIBILITY OF SUCH DAMAGE.
39  */
40
41 #ifndef __RTA_COMPAT_H__
42 #define __RTA_COMPAT_H__
43
44 #include <stdint.h>
45 #include <errno.h>
46
47 #ifdef __GLIBC__
48 #include <string.h>
49 #include <stdlib.h>
50 #include <stdio.h>
51 #include <stdbool.h>
52
53 #include <rte_byteorder.h>
54 #include <rte_common.h>
55
56 #ifndef __BYTE_ORDER__
57 #error "Undefined endianness"
58 #endif
59
60 #else
61 #error Environment not supported!
62 #endif
63
64 #ifndef __always_inline
65 #define __always_inline __rte_always_inline
66 #endif
67
68 #ifndef __always_unused
69 #define __always_unused __attribute__((unused))
70 #endif
71
72 #ifndef __maybe_unused
73 #define __maybe_unused __attribute__((unused))
74 #endif
75
76 #if defined(__GLIBC__) && !defined(pr_debug)
77 #if !defined(SUPPRESS_PRINTS) && defined(RTA_DEBUG)
78 #define pr_debug(fmt, ...) \
79         RTE_LOG(DEBUG, PMD, "%s(): " fmt "\n", __func__, ##__VA_ARGS__)
80 #else
81 #define pr_debug(fmt, ...)     do { } while (0)
82 #endif
83 #endif /* pr_debug */
84
85 #if defined(__GLIBC__) && !defined(pr_err)
86 #if !defined(SUPPRESS_PRINTS)
87 #define pr_err(fmt, ...) \
88         RTE_LOG(ERR, PMD, "%s(): " fmt "\n", __func__, ##__VA_ARGS__)
89 #else
90 #define pr_err(fmt, ...)    do { } while (0)
91 #endif
92 #endif /* pr_err */
93
94 #if defined(__GLIBC__) && !defined(pr_warn)
95 #if !defined(SUPPRESS_PRINTS)
96 #define pr_warn(fmt, ...) \
97         RTE_LOG(WARNING, PMD, "%s(): " fmt "\n", __func__, ##__VA_ARGS__)
98 #else
99 #define pr_warn(fmt, ...)    do { } while (0)
100 #endif
101 #endif /* pr_warn */
102
103 /**
104  * ARRAY_SIZE - returns the number of elements in an array
105  * @x: array
106  */
107 #ifndef ARRAY_SIZE
108 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
109 #endif
110
111 #ifndef ALIGN
112 #define ALIGN(x, a) (((x) + ((__typeof__(x))(a) - 1)) & \
113                         ~((__typeof__(x))(a) - 1))
114 #endif
115
116 #ifndef BIT
117 #define BIT(nr)         (1UL << (nr))
118 #endif
119
120 #ifndef upper_32_bits
121 /**
122  * upper_32_bits - return bits 32-63 of a number
123  * @n: the number we're accessing
124  */
125 #define upper_32_bits(n) ((uint32_t)(((n) >> 16) >> 16))
126 #endif
127
128 #ifndef lower_32_bits
129 /**
130  * lower_32_bits - return bits 0-31 of a number
131  * @n: the number we're accessing
132  */
133 #define lower_32_bits(n) ((uint32_t)(n))
134 #endif
135
136 /* Use Linux naming convention */
137 #ifdef __GLIBC__
138         #define swab16(x) rte_bswap16(x)
139         #define swab32(x) rte_bswap32(x)
140         #define swab64(x) rte_bswap64(x)
141         /* Define cpu_to_be32 macro if not defined in the build environment */
142         #if !defined(cpu_to_be32)
143                 #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
144                         #define cpu_to_be32(x)  (x)
145                 #else
146                         #define cpu_to_be32(x)  swab32(x)
147                 #endif
148         #endif
149         /* Define cpu_to_le32 macro if not defined in the build environment */
150         #if !defined(cpu_to_le32)
151                 #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
152                         #define cpu_to_le32(x)  swab32(x)
153                 #else
154                         #define cpu_to_le32(x)  (x)
155                 #endif
156         #endif
157 #endif
158
159 #endif /* __RTA_COMPAT_H__ */