@@ -24,6 +24,7 @@ odpapiplatincludedir= $(includedir)/odp/api/plat
odpapiplatinclude_HEADERS = \
include/odp/api/plat/atomic_inlines.h \
include/odp/api/plat/byteorder_inlines.h \
+ include/odp/api/plat/byteorder_inlines_api.h \
include/odp/api/plat/packet_flag_inlines.h \
include/odp/api/plat/packet_flag_inlines_api.h \
include/odp/api/plat/packet_inline_types.h \
@@ -77,6 +77,7 @@ typedef uint32_t __odp_bitwise odp_u32sum_t;
#define _ODP_INLINE static inline
#include <odp/api/plat/byteorder_inlines.h>
+#include <odp/api/plat/byteorder_inlines_api.h>
/**
* @}
@@ -43,7 +43,7 @@ extern "C" {
#define __odp_builtin_bswap16(u16) __builtin_bswap16(u16)
#endif
-_ODP_INLINE uint16_t odp_be_to_cpu_16(odp_u16be_t be16)
+static inline uint16_t _odp_be_to_cpu_16(odp_u16be_t be16)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return __odp_builtin_bswap16((__odp_force uint16_t)be16);
@@ -52,7 +52,7 @@ _ODP_INLINE uint16_t odp_be_to_cpu_16(odp_u16be_t be16)
#endif
}
-_ODP_INLINE uint32_t odp_be_to_cpu_32(odp_u32be_t be32)
+static inline uint32_t _odp_be_to_cpu_32(odp_u32be_t be32)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return __builtin_bswap32((__odp_force uint32_t)be32);
@@ -61,7 +61,7 @@ _ODP_INLINE uint32_t odp_be_to_cpu_32(odp_u32be_t be32)
#endif
}
-_ODP_INLINE uint64_t odp_be_to_cpu_64(odp_u64be_t be64)
+static inline uint64_t _odp_be_to_cpu_64(odp_u64be_t be64)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return __builtin_bswap64((__odp_force uint64_t)be64);
@@ -70,7 +70,7 @@ _ODP_INLINE uint64_t odp_be_to_cpu_64(odp_u64be_t be64)
#endif
}
-_ODP_INLINE odp_u16be_t odp_cpu_to_be_16(uint16_t cpu16)
+static inline odp_u16be_t _odp_cpu_to_be_16(uint16_t cpu16)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return (__odp_force odp_u16be_t)__odp_builtin_bswap16(cpu16);
@@ -79,7 +79,7 @@ _ODP_INLINE odp_u16be_t odp_cpu_to_be_16(uint16_t cpu16)
#endif
}
-_ODP_INLINE odp_u32be_t odp_cpu_to_be_32(uint32_t cpu32)
+static inline odp_u32be_t _odp_cpu_to_be_32(uint32_t cpu32)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return (__odp_force odp_u32be_t)__builtin_bswap32(cpu32);
@@ -88,7 +88,7 @@ _ODP_INLINE odp_u32be_t odp_cpu_to_be_32(uint32_t cpu32)
#endif
}
-_ODP_INLINE odp_u64be_t odp_cpu_to_be_64(uint64_t cpu64)
+static inline odp_u64be_t _odp_cpu_to_be_64(uint64_t cpu64)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return (__odp_force odp_u64be_t)__builtin_bswap64(cpu64);
@@ -97,7 +97,7 @@ _ODP_INLINE odp_u64be_t odp_cpu_to_be_64(uint64_t cpu64)
#endif
}
-_ODP_INLINE uint16_t odp_le_to_cpu_16(odp_u16le_t le16)
+static inline uint16_t _odp_le_to_cpu_16(odp_u16le_t le16)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return (__odp_force uint16_t)le16;
@@ -106,7 +106,7 @@ _ODP_INLINE uint16_t odp_le_to_cpu_16(odp_u16le_t le16)
#endif
}
-_ODP_INLINE uint32_t odp_le_to_cpu_32(odp_u32le_t le32)
+static inline uint32_t _odp_le_to_cpu_32(odp_u32le_t le32)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return (__odp_force uint32_t)le32;
@@ -115,7 +115,7 @@ _ODP_INLINE uint32_t odp_le_to_cpu_32(odp_u32le_t le32)
#endif
}
-_ODP_INLINE uint64_t odp_le_to_cpu_64(odp_u64le_t le64)
+static inline uint64_t _odp_le_to_cpu_64(odp_u64le_t le64)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return (__odp_force uint64_t)le64;
@@ -124,7 +124,7 @@ _ODP_INLINE uint64_t odp_le_to_cpu_64(odp_u64le_t le64)
#endif
}
-_ODP_INLINE odp_u16le_t odp_cpu_to_le_16(uint16_t cpu16)
+static inline odp_u16le_t _odp_cpu_to_le_16(uint16_t cpu16)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return (__odp_force odp_u16le_t)cpu16;
@@ -133,7 +133,7 @@ _ODP_INLINE odp_u16le_t odp_cpu_to_le_16(uint16_t cpu16)
#endif
}
-_ODP_INLINE odp_u32le_t odp_cpu_to_le_32(uint32_t cpu32)
+static inline odp_u32le_t _odp_cpu_to_le_32(uint32_t cpu32)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return (__odp_force odp_u32le_t)cpu32;
@@ -142,7 +142,7 @@ _ODP_INLINE odp_u32le_t odp_cpu_to_le_32(uint32_t cpu32)
#endif
}
-_ODP_INLINE odp_u64le_t odp_cpu_to_le_64(uint64_t cpu64)
+static inline odp_u64le_t _odp_cpu_to_le_64(uint64_t cpu64)
{
#if ODP_BYTE_ORDER == ODP_LITTLE_ENDIAN
return (__odp_force odp_u64le_t)cpu64;
new file mode 100644
@@ -0,0 +1,88 @@
+/* Copyright (c) 2018, Linaro Limited
+ * All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+/**
+ * @file
+ *
+ * ODP byteorder
+ */
+
+#ifndef ODP_PLAT_BYTEORDER_INLINES_API_H_
+#define ODP_PLAT_BYTEORDER_INLINES_API_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+_ODP_INLINE uint16_t odp_be_to_cpu_16(odp_u16be_t be16)
+{
+ return _odp_be_to_cpu_16(be16);
+}
+
+_ODP_INLINE uint32_t odp_be_to_cpu_32(odp_u32be_t be32)
+{
+ return _odp_be_to_cpu_32(be32);
+}
+
+_ODP_INLINE uint64_t odp_be_to_cpu_64(odp_u64be_t be64)
+{
+ return _odp_be_to_cpu_64(be64);
+}
+
+_ODP_INLINE odp_u16be_t odp_cpu_to_be_16(uint16_t cpu16)
+{
+ return _odp_cpu_to_be_16(cpu16);
+}
+
+_ODP_INLINE odp_u32be_t odp_cpu_to_be_32(uint32_t cpu32)
+{
+ return _odp_cpu_to_be_32(cpu32);
+}
+
+_ODP_INLINE odp_u64be_t odp_cpu_to_be_64(uint64_t cpu64)
+{
+ return _odp_cpu_to_be_64(cpu64);
+}
+
+_ODP_INLINE uint16_t odp_le_to_cpu_16(odp_u16le_t le16)
+{
+ return _odp_le_to_cpu_16(le16);
+}
+
+_ODP_INLINE uint32_t odp_le_to_cpu_32(odp_u32le_t le32)
+{
+ return _odp_le_to_cpu_32(le32);
+}
+
+_ODP_INLINE uint64_t odp_le_to_cpu_64(odp_u64le_t le64)
+{
+ return _odp_le_to_cpu_64(le64);
+}
+
+_ODP_INLINE odp_u16le_t odp_cpu_to_le_16(uint16_t cpu16)
+{
+ return _odp_cpu_to_le_16(cpu16);
+}
+
+_ODP_INLINE odp_u32le_t odp_cpu_to_le_32(uint32_t cpu32)
+{
+ return _odp_cpu_to_le_32(cpu32);
+}
+
+_ODP_INLINE odp_u64le_t odp_cpu_to_le_64(uint64_t cpu64)
+{
+ return _odp_cpu_to_le_64(cpu64);
+}
+
+/**
+ * @}
+ */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
@@ -11,3 +11,4 @@
/* Include non-inlined versions of API functions */
#define _ODP_INLINE
#include <odp/api/plat/byteorder_inlines.h>
+#include <odp/api/plat/byteorder_inlines_api.h>