event/dlb2: add inline functions
authorTimothy McDaniel <timothy.mcdaniel@intel.com>
Sun, 1 Nov 2020 23:37:45 +0000 (17:37 -0600)
committerJerin Jacob <jerinj@marvell.com>
Mon, 2 Nov 2020 06:12:40 +0000 (07:12 +0100)
Add miscellaneous inline functions that may be called
from multiple files.  These functions include inline
assembly of new x86 instructions, such as movdir64b,
since they are not available as builtin functions in
the minimum supported GCC version.

Signed-off-by: Timothy McDaniel <timothy.mcdaniel@intel.com>
Reviewed-by: Gage Eads <gage.eads@intel.com>
drivers/event/dlb2/dlb2_inline_fns.h [new file with mode: 0644]

diff --git a/drivers/event/dlb2/dlb2_inline_fns.h b/drivers/event/dlb2/dlb2_inline_fns.h
new file mode 100644 (file)
index 0000000..ac8d01a
--- /dev/null
@@ -0,0 +1,33 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2016-2020 Intel Corporation
+ */
+
+#ifndef _DLB2_INLINE_FNS_H_
+#define _DLB2_INLINE_FNS_H_
+
+/* Inline functions required in more than one source file. */
+
+static inline struct dlb2_eventdev *
+dlb2_pmd_priv(const struct rte_eventdev *eventdev)
+{
+       return eventdev->data->dev_private;
+}
+
+static inline void
+dlb2_movntdq_single(void *pp_addr, void *qe4)
+{
+       long long *_qe  = (long long *)qe4;
+       __m128i src_data0 = (__m128i){_qe[0], _qe[1]};
+
+       _mm_stream_si128(pp_addr, src_data0);
+}
+
+static inline void
+dlb2_movdir64b(void *dest, void *src)
+{
+       asm volatile(".byte 0x66, 0x0f, 0x38, 0xf8, 0x02"
+               :
+       : "a" (dest), "d" (src));
+}
+
+#endif /* _DLB2_INLINE_FNS_H_ */