summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
diff options
context:
space:
mode:
authorAlistair Francis <alistair.francis@wdc.com>2018-07-09 17:04:33 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-07-15 16:16:16 +0100
commita9b91031ec7d4dfd2e2dc1ab7d9f1a207526538b (patch)
treef97d584f555d0327bab559f74629e6ee61df4ccd /meta/recipes-support
parent7aff75bcc3cf63e9fe49d6749feb1454f6a3eb06 (diff)
downloadpoky-a9b91031ec7d4dfd2e2dc1ab7d9f1a207526538b.tar.gz
liburcu: Add RISC-V support
(From OE-Core rev: eade50afbc267f2e4c6065745cd786e48332086b) Signed-off-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r--meta/recipes-support/liburcu/files/Add-support-for-the-RISC-V-architecture.patch157
-rw-r--r--meta/recipes-support/liburcu/liburcu_0.10.1.bb1
2 files changed, 158 insertions, 0 deletions
diff --git a/meta/recipes-support/liburcu/files/Add-support-for-the-RISC-V-architecture.patch b/meta/recipes-support/liburcu/files/Add-support-for-the-RISC-V-architecture.patch
new file mode 100644
index 0000000000..b026782bd5
--- /dev/null
+++ b/meta/recipes-support/liburcu/files/Add-support-for-the-RISC-V-architecture.patch
@@ -0,0 +1,157 @@
1From fdfad81006c2c964781b616f0a75578507be809c Mon Sep 17 00:00:00 2001
2From: Michael Jeanson <mjeanson@efficios.com>
3Date: Wed, 21 Mar 2018 17:38:41 -0400
4Subject: [PATCH] Add support for the RISC-V architecture
5
6Tested in QEMU 2.12.0-rc0, requires --disable-compiler-tls to go
7through the benchmarks reliably.
8
9Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
10Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11Upstream-Status: Backport
12---
13 configure.ac | 1 +
14 include/Makefile.am | 2 ++
15 include/urcu/arch/riscv.h | 49 ++++++++++++++++++++++++++++++++++++++++++++
16 include/urcu/uatomic/riscv.h | 44 +++++++++++++++++++++++++++++++++++++++
17 4 files changed, 96 insertions(+)
18 create mode 100644 include/urcu/arch/riscv.h
19 create mode 100644 include/urcu/uatomic/riscv.h
20
21diff --git a/configure.ac b/configure.ac
22index d0b4a9ac..9145081a 100644
23--- a/configure.ac
24+++ b/configure.ac
25@@ -151,6 +151,7 @@ AS_CASE([$host_cpu],
26 [tile*], [ARCHTYPE="tile"],
27 [hppa*], [ARCHTYPE="hppa"],
28 [m68k], [ARCHTYPE="m68k"],
29+ [riscv*], [ARCHTYPE="riscv"],
30 [ARCHTYPE="unknown"]
31 )
32
33diff --git a/include/Makefile.am b/include/Makefile.am
34index dcdf304b..36667b43 100644
35--- a/include/Makefile.am
36+++ b/include/Makefile.am
37@@ -27,6 +27,7 @@ EXTRA_DIST = urcu/arch/aarch64.h \
38 urcu/arch/mips.h \
39 urcu/arch/nios2.h \
40 urcu/arch/ppc.h \
41+ urcu/arch/riscv.h \
42 urcu/arch/s390.h \
43 urcu/arch/sparc64.h \
44 urcu/arch/tile.h \
45@@ -43,6 +44,7 @@ EXTRA_DIST = urcu/arch/aarch64.h \
46 urcu/uatomic/mips.h \
47 urcu/uatomic/nios2.h \
48 urcu/uatomic/ppc.h \
49+ urcu/uatomic/riscv.h \
50 urcu/uatomic/s390.h \
51 urcu/uatomic/sparc64.h \
52 urcu/uatomic/tile.h \
53diff --git a/include/urcu/arch/riscv.h b/include/urcu/arch/riscv.h
54new file mode 100644
55index 00000000..1fd7d62b
56--- /dev/null
57+++ b/include/urcu/arch/riscv.h
58@@ -0,0 +1,49 @@
59+#ifndef _URCU_ARCH_RISCV_H
60+#define _URCU_ARCH_RISCV_H
61+
62+/*
63+ * arch/riscv.h: definitions for the RISC-V architecture
64+ *
65+ * Copyright (c) 2018 Michael Jeanson <mjeanson@efficios.com>
66+ *
67+ * This library is free software; you can redistribute it and/or
68+ * modify it under the terms of the GNU Lesser General Public
69+ * License as published by the Free Software Foundation; either
70+ * version 2.1 of the License, or (at your option) any later version.
71+ *
72+ * This library is distributed in the hope that it will be useful,
73+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
74+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
75+ * Lesser General Public License for more details.
76+ *
77+ * You should have received a copy of the GNU Lesser General Public
78+ * License along with this library; if not, write to the Free Software
79+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
80+ */
81+
82+#include <urcu/compiler.h>
83+#include <urcu/config.h>
84+#include <urcu/syscall-compat.h>
85+
86+#ifdef __cplusplus
87+extern "C" {
88+#endif
89+
90+#include <stdlib.h>
91+#include <sys/time.h>
92+
93+/*
94+ * On Linux, define the membarrier system call number if not yet available in
95+ * the system headers.
96+ */
97+#if (defined(__linux__) && !defined(__NR_membarrier))
98+#define __NR_membarrier 283
99+#endif
100+
101+#ifdef __cplusplus
102+}
103+#endif
104+
105+#include <urcu/arch/generic.h>
106+
107+#endif /* _URCU_ARCH_RISCV_H */
108diff --git a/include/urcu/uatomic/riscv.h b/include/urcu/uatomic/riscv.h
109new file mode 100644
110index 00000000..a6700e17
111--- /dev/null
112+++ b/include/urcu/uatomic/riscv.h
113@@ -0,0 +1,44 @@
114+/*
115+ * Atomic exchange operations for the RISC-V architecture. Let GCC do it.
116+ *
117+ * Copyright (c) 2018 Michael Jeanson <mjeanson@efficios.com>
118+ *
119+ * Permission is hereby granted, free of charge, to any person obtaining a copy
120+ * of this software and associated documentation files (the "Software"), to
121+ * deal in the Software without restriction, including without limitation the
122+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
123+ * sell copies of the Software, and to permit persons to whom the Software is
124+ * furnished to do so, subject to the following conditions:
125+ *
126+ * The above copyright notice and this permission notice shall be included in
127+ * all copies or substantial portions of the Software.
128+ *
129+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
130+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
131+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
132+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
133+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
134+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
135+ * IN THE SOFTWARE.
136+ */
137+
138+#ifndef _URCU_ARCH_UATOMIC_RISCV_H
139+#define _URCU_ARCH_UATOMIC_RISCV_H
140+
141+#include <urcu/compiler.h>
142+#include <urcu/system.h>
143+
144+#ifdef __cplusplus
145+extern "C" {
146+#endif
147+
148+#define UATOMIC_HAS_ATOMIC_BYTE
149+#define UATOMIC_HAS_ATOMIC_SHORT
150+
151+#ifdef __cplusplus
152+}
153+#endif
154+
155+#include <urcu/uatomic/generic.h>
156+
157+#endif /* _URCU_ARCH_UATOMIC_RISCV_H */
diff --git a/meta/recipes-support/liburcu/liburcu_0.10.1.bb b/meta/recipes-support/liburcu/liburcu_0.10.1.bb
index 9d5b28b33d..5eb91e144b 100644
--- a/meta/recipes-support/liburcu/liburcu_0.10.1.bb
+++ b/meta/recipes-support/liburcu/liburcu_0.10.1.bb
@@ -8,6 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=e548d28737289d75a8f1e01ba2fd7825 \
8 file://include/urcu/uatomic/x86.h;beginline=4;endline=21;md5=58e50bbd8a2f073bb5500e6554af0d0b" 8 file://include/urcu/uatomic/x86.h;beginline=4;endline=21;md5=58e50bbd8a2f073bb5500e6554af0d0b"
9 9
10SRC_URI = "http://lttng.org/files/urcu/userspace-rcu-${PV}.tar.bz2 \ 10SRC_URI = "http://lttng.org/files/urcu/userspace-rcu-${PV}.tar.bz2 \
11 file://Add-support-for-the-RISC-V-architecture.patch \
11 " 12 "
12 13
13SRC_URI[md5sum] = "281a2f92fdc39c40ad6b76f6631fdbd7" 14SRC_URI[md5sum] = "281a2f92fdc39c40ad6b76f6631fdbd7"