blob: 48c68a1169936641f779b10c59f77f68cd0c3923 [file] [log] [blame]
Damjan Marion522e4862016-03-04 12:44:14 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef included_clib_cpu_h
17#define included_clib_cpu_h
18
Damjan Marion0a78fa12019-01-19 23:45:36 +010019#include <sys/syscall.h>
Damjan Marion1c80e832016-05-11 23:07:18 +020020#include <vppinfra/format.h>
21
22/*
23 * multiarchitecture support. Adding new entry will produce
24 * new graph node function variant optimized for specific cpu
25 * microarchitecture.
26 * Order is important for runtime selection, as 1st match wins...
27 */
28
29#if __x86_64__ && CLIB_DEBUG == 0
30#define foreach_march_variant(macro, x) \
31 macro(avx2, x, "arch=core-avx2")
32#else
33#define foreach_march_variant(macro, x)
34#endif
35
36
Damjan Marion5ad75f52018-11-29 14:40:30 +010037#if __GNUC__ > 4 && !__clang__ && CLIB_DEBUG == 0
Damjan Marion24223172018-05-28 16:22:14 +020038#define CLIB_CPU_OPTIMIZED __attribute__ ((optimize ("O3")))
Damjan Marion1c80e832016-05-11 23:07:18 +020039#else
40#define CLIB_CPU_OPTIMIZED
41#endif
42
43
44#define CLIB_MULTIARCH_ARCH_CHECK(arch, fn, tgt) \
45 if (clib_cpu_supports_ ## arch()) \
46 return & fn ## _ ##arch;
47
Damjan Marion652d2e12019-02-02 00:15:27 +010048/* FIXME to be removed */
49#define CLIB_MULTIARCH_SELECT_FN(fn,...)
Damjan Marion1c80e832016-05-11 23:07:18 +020050
Damjan Marion812b32d2018-05-28 21:26:47 +020051#ifdef CLIB_MARCH_VARIANT
Damjan Marion04f3db32017-11-10 21:55:45 +010052#define __CLIB_MULTIARCH_FN(a,b) a##_##b
53#define _CLIB_MULTIARCH_FN(a,b) __CLIB_MULTIARCH_FN(a,b)
Damjan Marion812b32d2018-05-28 21:26:47 +020054#define CLIB_MULTIARCH_FN(fn) _CLIB_MULTIARCH_FN(fn,CLIB_MARCH_VARIANT)
Damjan Marion04f3db32017-11-10 21:55:45 +010055#else
56#define CLIB_MULTIARCH_FN(fn) fn
57#endif
Damjan Marion1c80e832016-05-11 23:07:18 +020058
Damjan Marion812b32d2018-05-28 21:26:47 +020059#define CLIB_MARCH_SFX CLIB_MULTIARCH_FN
60
Damjan Marion910d3692019-01-21 11:48:34 +010061typedef struct _clib_march_fn_registration
62{
63 void *function;
64 int priority;
65 struct _clib_march_fn_registration *next;
66 char *name;
67} clib_march_fn_registration;
68
69static_always_inline void *
70clib_march_select_fn_ptr (clib_march_fn_registration * r)
71{
72 void *rv = 0;
73 int last_prio = -1;
74
75 while (r)
76 {
77 if (last_prio < r->priority)
78 {
79 last_prio = r->priority;
80 rv = r->function;
81 }
82 r = r->next;
83 }
84 return rv;
85}
86
87#define CLIB_MARCH_FN_POINTER(fn) \
88 clib_march_select_fn_ptr (fn##_march_fn_registrations);
89
90#define _CLIB_MARCH_FN_REGISTRATION(fn) \
91static clib_march_fn_registration \
92CLIB_MARCH_SFX(fn##_march_fn_registration) = \
93{ \
94 .name = CLIB_MARCH_VARIANT_STR \
95}; \
96\
97static void __clib_constructor \
98fn##_march_register () \
99{ \
100 clib_march_fn_registration *r; \
101 r = & CLIB_MARCH_SFX (fn##_march_fn_registration); \
102 r->priority = CLIB_MARCH_FN_PRIORITY(); \
103 r->next = fn##_march_fn_registrations; \
104 r->function = CLIB_MARCH_SFX (fn); \
105 fn##_march_fn_registrations = r; \
106}
107
108#ifdef CLIB_MARCH_VARIANT
109#define CLIB_MARCH_FN_REGISTRATION(fn) \
110extern clib_march_fn_registration *fn##_march_fn_registrations; \
111_CLIB_MARCH_FN_REGISTRATION(fn)
112#else
113#define CLIB_MARCH_FN_REGISTRATION(fn) \
114clib_march_fn_registration *fn##_march_fn_registrations = 0; \
115_CLIB_MARCH_FN_REGISTRATION(fn)
116#endif
Damjan Marion1c80e832016-05-11 23:07:18 +0200117#define foreach_x86_64_flags \
118_ (sse3, 1, ecx, 0) \
Damjan Mariondee9bea2019-05-24 13:05:08 +0200119_ (pclmulqdq, 1, ecx, 1) \
Damjan Marion1c80e832016-05-11 23:07:18 +0200120_ (ssse3, 1, ecx, 9) \
121_ (sse41, 1, ecx, 19) \
122_ (sse42, 1, ecx, 20) \
123_ (avx, 1, ecx, 28) \
Damjan Marion65ec33b2019-03-30 12:56:37 +0100124_ (rdrand, 1, ecx, 30) \
Damjan Marion1c80e832016-05-11 23:07:18 +0200125_ (avx2, 7, ebx, 5) \
Damjan Marion65ec33b2019-03-30 12:56:37 +0100126_ (rtm, 7, ebx, 11) \
127_ (pqm, 7, ebx, 12) \
128_ (pqe, 7, ebx, 15) \
Damjan Marion1c80e832016-05-11 23:07:18 +0200129_ (avx512f, 7, ebx, 16) \
Damjan Marion65ec33b2019-03-30 12:56:37 +0100130_ (rdseed, 7, ebx, 18) \
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100131_ (x86_aes, 1, ecx, 25) \
Damjan Marionc0e939b2016-11-12 11:50:01 +0100132_ (sha, 7, ebx, 29) \
Damjan Marion65ec33b2019-03-30 12:56:37 +0100133_ (vaes, 7, ecx, 9) \
134_ (vpclmulqdq, 7, ecx, 10) \
Damjan Marionc0e939b2016-11-12 11:50:01 +0100135_ (invariant_tsc, 0x80000007, edx, 8)
Damjan Marion1c80e832016-05-11 23:07:18 +0200136
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100137
138#define foreach_aarch64_flags \
139_ (fp, 0) \
140_ (asimd, 1) \
141_ (evtstrm, 2) \
142_ (aarch64_aes, 3) \
143_ (pmull, 4) \
144_ (sha1, 5) \
145_ (sha2, 6) \
146_ (crc32, 7) \
147_ (atomics, 8) \
148_ (fphp, 9) \
149_ (asimdhp, 10) \
150_ (cpuid, 11) \
151_ (asimdrdm, 12) \
152_ (jscvt, 13) \
153_ (fcma, 14) \
154_ (lrcpc, 15) \
155_ (dcpop, 16) \
156_ (sha3, 17) \
157_ (sm3, 18) \
158_ (sm4, 19) \
159_ (asimddp, 20) \
160_ (sha512, 21) \
161_ (sve, 22)
162
Damjan Marion0a78fa12019-01-19 23:45:36 +0100163static inline u32
Damjan Marionee721412019-01-27 17:54:11 +0100164clib_get_current_cpu_id ()
Damjan Marion0a78fa12019-01-19 23:45:36 +0100165{
166 unsigned cpu, node;
167 syscall (__NR_getcpu, &cpu, &node, 0);
168 return cpu;
169}
170
171static inline u32
172clib_get_current_numa_node ()
173{
174 unsigned cpu, node;
175 syscall (__NR_getcpu, &cpu, &node, 0);
176 return node;
177}
178
Christophe Fontaine33e81952016-12-19 14:41:52 +0100179#if defined(__x86_64__)
180#include "cpuid.h"
181
Damjan Marion1c80e832016-05-11 23:07:18 +0200182static inline int
Dave Barachc3799992016-08-15 11:12:27 -0400183clib_get_cpuid (const u32 lev, u32 * eax, u32 * ebx, u32 * ecx, u32 * edx)
Damjan Marion1c80e832016-05-11 23:07:18 +0200184{
185 if ((u32) __get_cpuid_max (0x80000000 & lev, 0) < lev)
186 return 0;
187 if (lev == 7)
Dave Barachc3799992016-08-15 11:12:27 -0400188 __cpuid_count (lev, 0, *eax, *ebx, *ecx, *edx);
Damjan Marion1c80e832016-05-11 23:07:18 +0200189 else
Dave Barachc3799992016-08-15 11:12:27 -0400190 __cpuid (lev, *eax, *ebx, *ecx, *edx);
Damjan Marion1c80e832016-05-11 23:07:18 +0200191 return 1;
192}
193
194
195#define _(flag, func, reg, bit) \
196static inline int \
197clib_cpu_supports_ ## flag() \
198{ \
199 u32 __attribute__((unused)) eax, ebx = 0, ecx = 0, edx = 0; \
200 clib_get_cpuid (func, &eax, &ebx, &ecx, &edx); \
201 \
202 return ((reg & (1 << bit)) != 0); \
203}
Dave Barachc3799992016-08-15 11:12:27 -0400204foreach_x86_64_flags
Damjan Marion1c80e832016-05-11 23:07:18 +0200205#undef _
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100206#else /* __x86_64__ */
Christophe Fontaine33e81952016-12-19 14:41:52 +0100207
208#define _(flag, func, reg, bit) \
209static inline int clib_cpu_supports_ ## flag() { return 0; }
210foreach_x86_64_flags
211#undef _
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100212#endif /* __x86_64__ */
213#if defined(__aarch64__)
214#include <sys/auxv.h>
215#define _(flag, bit) \
216static inline int \
217clib_cpu_supports_ ## flag() \
218{ \
219 unsigned long hwcap = getauxval(AT_HWCAP); \
220 return (hwcap & (1 << bit)); \
221}
222 foreach_aarch64_flags
223#undef _
224#else /* ! __x86_64__ && !__aarch64__ */
225#define _(flag, bit) \
226static inline int clib_cpu_supports_ ## flag() { return 0; }
227 foreach_aarch64_flags
228#undef _
229#endif /* __x86_64__, __aarch64__ */
230/*
231 * aes is the only feature with the same name in both flag lists
232 * handle this by prefixing it with the arch name, and handling it
233 * with the custom function below
234 */
235 static inline int
236clib_cpu_supports_aes ()
237{
Zhiyong Yang7f4fd222019-04-19 03:04:41 -0400238#if defined(__x86_64__)
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100239 return clib_cpu_supports_x86_aes ();
240#elif defined (__aarch64__)
241 return clib_cpu_supports_aarch64_aes ();
242#else
243 return 0;
Christophe Fontaine33e81952016-12-19 14:41:52 +0100244#endif
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100245}
246
Damjan Marion812b32d2018-05-28 21:26:47 +0200247static inline int
248clib_cpu_march_priority_avx512 ()
249{
250 if (clib_cpu_supports_avx512f ())
251 return 20;
252 return -1;
253}
254
255static inline int
256clib_cpu_march_priority_avx2 ()
257{
258 if (clib_cpu_supports_avx2 ())
Damjan Marion64593152019-03-12 19:59:22 +0100259 return 50;
Damjan Marion812b32d2018-05-28 21:26:47 +0200260 return -1;
261}
262
Lijian Zhang2e237212018-09-10 17:13:56 +0800263static inline u32
264clib_cpu_implementer ()
265{
266 char buf[128];
267 static u32 implementer = -1;
268
269 if (-1 != implementer)
270 return implementer;
271
272 FILE *fp = fopen ("/proc/cpuinfo", "r");
273 if (!fp)
274 return implementer;
275
276 while (!feof (fp))
277 {
278 if (!fgets (buf, sizeof (buf), fp))
279 break;
280 buf[127] = '\0';
281 if (strstr (buf, "CPU implementer"))
282 implementer = (u32) strtol (memchr (buf, ':', 128) + 2, NULL, 0);
283 if (-1 != implementer)
284 break;
285 }
286 fclose (fp);
287
288 return implementer;
289}
290
291static inline u32
292clib_cpu_part ()
293{
294 char buf[128];
295 static u32 part = -1;
296
297 if (-1 != part)
298 return part;
299
300 FILE *fp = fopen ("/proc/cpuinfo", "r");
301 if (!fp)
302 return part;
303
304 while (!feof (fp))
305 {
306 if (!fgets (buf, sizeof (buf), fp))
307 break;
308 buf[127] = '\0';
309 if (strstr (buf, "CPU part"))
310 part = (u32) strtol (memchr (buf, ':', 128) + 2, NULL, 0);
311 if (-1 != part)
312 break;
313 }
314 fclose (fp);
315
316 return part;
317}
318
319#define AARCH64_CPU_IMPLEMENTER_THUNERDERX2 0x43
320#define AARCH64_CPU_PART_THUNERDERX2 0x0af
321#define AARCH64_CPU_IMPLEMENTER_QDF24XX 0x51
322#define AARCH64_CPU_PART_QDF24XX 0xc00
323#define AARCH64_CPU_IMPLEMENTER_CORTEXA72 0x41
324#define AARCH64_CPU_PART_CORTEXA72 0xd08
325
326static inline int
327clib_cpu_march_priority_thunderx2t99 ()
328{
329 if ((AARCH64_CPU_IMPLEMENTER_THUNERDERX2 == clib_cpu_implementer ()) &&
330 (AARCH64_CPU_PART_THUNERDERX2 == clib_cpu_part ()))
331 return 20;
332 return -1;
333}
334
335static inline int
336clib_cpu_march_priority_qdf24xx ()
337{
338 if ((AARCH64_CPU_IMPLEMENTER_QDF24XX == clib_cpu_implementer ()) &&
339 (AARCH64_CPU_PART_QDF24XX == clib_cpu_part ()))
340 return 20;
341 return -1;
342}
343
344static inline int
345clib_cpu_march_priority_cortexa72 ()
346{
347 if ((AARCH64_CPU_IMPLEMENTER_CORTEXA72 == clib_cpu_implementer ()) &&
348 (AARCH64_CPU_PART_CORTEXA72 == clib_cpu_part ()))
349 return 10;
350 return -1;
351}
352
Damjan Marion812b32d2018-05-28 21:26:47 +0200353#ifdef CLIB_MARCH_VARIANT
354#define CLIB_MARCH_FN_PRIORITY() CLIB_MARCH_SFX(clib_cpu_march_priority)()
355#else
356#define CLIB_MARCH_FN_PRIORITY() 0
357#endif
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100358#endif /* included_clib_cpu_h */
359
Florin Coras983cc7d2018-09-18 23:11:55 -0700360#define CLIB_MARCH_FN_CONSTRUCTOR(fn) \
361static void __clib_constructor \
362CLIB_MARCH_SFX(fn ## _march_constructor) (void) \
363{ \
364 if (CLIB_MARCH_FN_PRIORITY() > fn ## _selected_priority) \
365 { \
366 fn ## _selected = & CLIB_MARCH_SFX (fn ## _ma); \
367 fn ## _selected_priority = CLIB_MARCH_FN_PRIORITY(); \
368 } \
369} \
370
371#ifndef CLIB_MARCH_VARIANT
372#define CLIB_MARCH_FN(fn, rtype, _args...) \
373 static rtype CLIB_CPU_OPTIMIZED CLIB_MARCH_SFX (fn ## _ma)(_args); \
374 rtype (*fn ## _selected) (_args) = & CLIB_MARCH_SFX (fn ## _ma); \
375 int fn ## _selected_priority = 0; \
376 static inline rtype CLIB_CPU_OPTIMIZED \
377 CLIB_MARCH_SFX (fn ## _ma)(_args)
378#else
379#define CLIB_MARCH_FN(fn, rtype, _args...) \
380 static rtype CLIB_CPU_OPTIMIZED CLIB_MARCH_SFX (fn ## _ma)(_args); \
Florin Coras5fc939e2019-03-20 08:11:14 -0700381 extern rtype (*fn ## _selected) (_args); \
Florin Coras983cc7d2018-09-18 23:11:55 -0700382 extern int fn ## _selected_priority; \
383 CLIB_MARCH_FN_CONSTRUCTOR (fn) \
384 static rtype CLIB_CPU_OPTIMIZED CLIB_MARCH_SFX (fn ## _ma)(_args)
385#endif
386
387#define CLIB_MARCH_FN_SELECT(fn) (* fn ## _selected)
388
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100389format_function_t format_cpu_uarch;
Damjan Marion522e4862016-03-04 12:44:14 +0100390format_function_t format_cpu_model_name;
Damjan Marion1c80e832016-05-11 23:07:18 +0200391format_function_t format_cpu_flags;
Damjan Marion522e4862016-03-04 12:44:14 +0100392
Dave Barachc3799992016-08-15 11:12:27 -0400393/*
394 * fd.io coding-style-patch-verification: ON
395 *
396 * Local Variables:
397 * eval: (c-set-style "gnu")
398 * End:
399 */