11fdaa8e372ffeaf1e00e1994bc75a88f04f6130
[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 (c) 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 #include <rte_byteorder.h>
53
54 #ifndef __BYTE_ORDER__
55 #error "Undefined endianness"
56 #endif
57
58 #else
59 #error Environment not supported!
60 #endif
61
62 #ifndef __always_inline
63 #define __always_inline (inline __attribute__((always_inline)))
64 #endif
65
66 #ifndef __always_unused
67 #define __always_unused __attribute__((unused))
68 #endif
69
70 #ifndef __maybe_unused
71 #define __maybe_unused __attribute__((unused))
72 #endif
73
74 #if defined(__GLIBC__) && !defined(pr_debug)
75 #if !defined(SUPPRESS_PRINTS) && defined(RTA_DEBUG)
76 #define pr_debug(fmt, ...) \
77         RTE_LOG(DEBUG, PMD, "%s(): " fmt "\n", __func__, ##__VA_ARGS__)
78 #else
79 #define pr_debug(fmt, ...)     do { } while (0)
80 #endif
81 #endif /* pr_debug */
82
83 #if defined(__GLIBC__) && !defined(pr_err)
84 #if !defined(SUPPRESS_PRINTS)
85 #define pr_err(fmt, ...) \
86         RTE_LOG(ERR, PMD, "%s(): " fmt "\n", __func__, ##__VA_ARGS__)
87 #else
88 #define pr_err(fmt, ...)    do { } while (0)
89 #endif
90 #endif /* pr_err */
91
92 #if defined(__GLIBC__) && !defined(pr_warn)
93 #if !defined(SUPPRESS_PRINTS)
94 #define pr_warn(fmt, ...) \
95         RTE_LOG(WARNING, PMD, "%s(): " fmt "\n", __func__, ##__VA_ARGS__)
96 #else
97 #define pr_warn(fmt, ...)    do { } while (0)
98 #endif
99 #endif /* pr_warn */
100
101 /**
102  * ARRAY_SIZE - returns the number of elements in an array
103  * @x: array
104  */
105 #ifndef ARRAY_SIZE
106 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
107 #endif
108
109 #ifndef ALIGN
110 #define ALIGN(x, a) (((x) + ((__typeof__(x))(a) - 1)) & \
111                         ~((__typeof__(x))(a) - 1))
112 #endif
113
114 #ifndef BIT
115 #define BIT(nr)         (1UL << (nr))
116 #endif
117
118 #ifndef upper_32_bits
119 /**
120  * upper_32_bits - return bits 32-63 of a number
121  * @n: the number we're accessing
122  */
123 #define upper_32_bits(n) ((uint32_t)(((n) >> 16) >> 16))
124 #endif
125
126 #ifndef lower_32_bits
127 /**
128  * lower_32_bits - return bits 0-31 of a number
129  * @n: the number we're accessing
130  */
131 #define lower_32_bits(n) ((uint32_t)(n))
132 #endif
133
134 /* Use Linux naming convention */
135 #ifdef __GLIBC__
136         #define swab16(x) rte_bswap16(x)
137         #define swab32(x) rte_bswap32(x)
138         #define swab64(x) rte_bswap64(x)
139         /* Define cpu_to_be32 macro if not defined in the build environment */
140         #if !defined(cpu_to_be32)
141                 #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
142                         #define cpu_to_be32(x)  (x)
143                 #else
144                         #define cpu_to_be32(x)  swab32(x)
145                 #endif
146         #endif
147         /* Define cpu_to_le32 macro if not defined in the build environment */
148         #if !defined(cpu_to_le32)
149                 #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
150                         #define cpu_to_le32(x)  swab32(x)
151                 #else
152                         #define cpu_to_le32(x)  (x)
153                 #endif
154         #endif
155 #endif
156
157 #endif /* __RTA_COMPAT_H__ */