blob: c1f2e9e82486f31ed33b901ddf23e3fdbb0b1847 [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
Damjan Mariona31698b2021-03-10 14:35:28 +010022#if defined(__x86_64__)
23#define foreach_march_variant \
24 _ (hsw, "Intel Haswell") \
25 _ (trm, "Intel Tremont") \
26 _ (skx, "Intel Skylake (server) / Cascade Lake") \
27 _ (icl, "Intel Ice Lake")
28#elif defined(__aarch64__)
29#define foreach_march_variant \
30 _ (octeontx2, "Marvell Octeon TX2") \
31 _ (thunderx2t99, "Marvell ThunderX2 T99") \
32 _ (qdf24xx, "Qualcomm CentriqTM 2400") \
33 _ (cortexa72, "ARM Cortex-A72") \
34 _ (neoversen1, "ARM Neoverse N1")
Damjan Marion1c80e832016-05-11 23:07:18 +020035#else
Damjan Mariona31698b2021-03-10 14:35:28 +010036#define foreach_march_variant
Damjan Marion1c80e832016-05-11 23:07:18 +020037#endif
38
Damjan Mariona31698b2021-03-10 14:35:28 +010039typedef enum
40{
41 CLIB_MARCH_VARIANT_TYPE = 0,
42#define _(s, n) CLIB_MARCH_VARIANT_TYPE_##s,
43 foreach_march_variant
44#undef _
45 CLIB_MARCH_TYPE_N_VARIANTS
46} clib_march_variant_type_t;
Damjan Marion1c80e832016-05-11 23:07:18 +020047
Damjan Marion812b32d2018-05-28 21:26:47 +020048#ifdef CLIB_MARCH_VARIANT
Damjan Marion04f3db32017-11-10 21:55:45 +010049#define __CLIB_MULTIARCH_FN(a,b) a##_##b
50#define _CLIB_MULTIARCH_FN(a,b) __CLIB_MULTIARCH_FN(a,b)
Damjan Marion812b32d2018-05-28 21:26:47 +020051#define CLIB_MULTIARCH_FN(fn) _CLIB_MULTIARCH_FN(fn,CLIB_MARCH_VARIANT)
Damjan Marion04f3db32017-11-10 21:55:45 +010052#else
53#define CLIB_MULTIARCH_FN(fn) fn
54#endif
Damjan Marion1c80e832016-05-11 23:07:18 +020055
Damjan Marion812b32d2018-05-28 21:26:47 +020056#define CLIB_MARCH_SFX CLIB_MULTIARCH_FN
57
Damjan Marion910d3692019-01-21 11:48:34 +010058typedef struct _clib_march_fn_registration
59{
60 void *function;
61 int priority;
62 struct _clib_march_fn_registration *next;
63 char *name;
64} clib_march_fn_registration;
65
66static_always_inline void *
67clib_march_select_fn_ptr (clib_march_fn_registration * r)
68{
69 void *rv = 0;
70 int last_prio = -1;
71
72 while (r)
73 {
74 if (last_prio < r->priority)
75 {
76 last_prio = r->priority;
77 rv = r->function;
78 }
79 r = r->next;
80 }
81 return rv;
82}
83
Damjan Marion11e0d752021-05-05 20:06:39 +020084#define CLIB_MARCH_FN_POINTER(fn) \
85 (__typeof__ (fn) *) clib_march_select_fn_ptr (fn##_march_fn_registrations);
Damjan Marion910d3692019-01-21 11:48:34 +010086
87#define _CLIB_MARCH_FN_REGISTRATION(fn) \
88static clib_march_fn_registration \
89CLIB_MARCH_SFX(fn##_march_fn_registration) = \
90{ \
91 .name = CLIB_MARCH_VARIANT_STR \
92}; \
93\
94static void __clib_constructor \
95fn##_march_register () \
96{ \
97 clib_march_fn_registration *r; \
98 r = & CLIB_MARCH_SFX (fn##_march_fn_registration); \
99 r->priority = CLIB_MARCH_FN_PRIORITY(); \
100 r->next = fn##_march_fn_registrations; \
101 r->function = CLIB_MARCH_SFX (fn); \
102 fn##_march_fn_registrations = r; \
103}
104
105#ifdef CLIB_MARCH_VARIANT
106#define CLIB_MARCH_FN_REGISTRATION(fn) \
107extern clib_march_fn_registration *fn##_march_fn_registrations; \
108_CLIB_MARCH_FN_REGISTRATION(fn)
109#else
110#define CLIB_MARCH_FN_REGISTRATION(fn) \
111clib_march_fn_registration *fn##_march_fn_registrations = 0; \
112_CLIB_MARCH_FN_REGISTRATION(fn)
113#endif
Radu Nicolaue1480a22021-01-14 10:25:02 +0000114#define foreach_x86_64_flags \
115 _ (sse3, 1, ecx, 0) \
116 _ (pclmulqdq, 1, ecx, 1) \
117 _ (ssse3, 1, ecx, 9) \
118 _ (sse41, 1, ecx, 19) \
119 _ (sse42, 1, ecx, 20) \
120 _ (avx, 1, ecx, 28) \
121 _ (rdrand, 1, ecx, 30) \
122 _ (avx2, 7, ebx, 5) \
123 _ (rtm, 7, ebx, 11) \
124 _ (pqm, 7, ebx, 12) \
125 _ (pqe, 7, ebx, 15) \
126 _ (avx512f, 7, ebx, 16) \
127 _ (rdseed, 7, ebx, 18) \
128 _ (x86_aes, 1, ecx, 25) \
129 _ (sha, 7, ebx, 29) \
130 _ (vaes, 7, ecx, 9) \
131 _ (vpclmulqdq, 7, ecx, 10) \
132 _ (avx512_vnni, 7, ecx, 11) \
133 _ (avx512_bitalg, 7, ecx, 12) \
134 _ (avx512_vpopcntdq, 7, ecx, 14) \
135 _ (movdiri, 7, ecx, 27) \
136 _ (movdir64b, 7, ecx, 28) \
137 _ (invariant_tsc, 0x80000007, edx, 8)
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100138
139#define foreach_aarch64_flags \
140_ (fp, 0) \
141_ (asimd, 1) \
142_ (evtstrm, 2) \
143_ (aarch64_aes, 3) \
144_ (pmull, 4) \
145_ (sha1, 5) \
146_ (sha2, 6) \
147_ (crc32, 7) \
148_ (atomics, 8) \
149_ (fphp, 9) \
150_ (asimdhp, 10) \
151_ (cpuid, 11) \
152_ (asimdrdm, 12) \
153_ (jscvt, 13) \
154_ (fcma, 14) \
155_ (lrcpc, 15) \
156_ (dcpop, 16) \
157_ (sha3, 17) \
158_ (sm3, 18) \
159_ (sm4, 19) \
160_ (asimddp, 20) \
161_ (sha512, 21) \
162_ (sve, 22)
163
Damjan Marionf8cb7012020-10-09 17:16:55 +0200164u32 clib_get_current_cpu_id ();
165u32 clib_get_current_numa_node ();
Damjan Marion0a78fa12019-01-19 23:45:36 +0100166
Christophe Fontaine33e81952016-12-19 14:41:52 +0100167#if defined(__x86_64__)
168#include "cpuid.h"
169
Damjan Marion1c80e832016-05-11 23:07:18 +0200170static inline int
Dave Barachc3799992016-08-15 11:12:27 -0400171clib_get_cpuid (const u32 lev, u32 * eax, u32 * ebx, u32 * ecx, u32 * edx)
Damjan Marion1c80e832016-05-11 23:07:18 +0200172{
173 if ((u32) __get_cpuid_max (0x80000000 & lev, 0) < lev)
174 return 0;
175 if (lev == 7)
Dave Barachc3799992016-08-15 11:12:27 -0400176 __cpuid_count (lev, 0, *eax, *ebx, *ecx, *edx);
Damjan Marion1c80e832016-05-11 23:07:18 +0200177 else
Dave Barachc3799992016-08-15 11:12:27 -0400178 __cpuid (lev, *eax, *ebx, *ecx, *edx);
Damjan Marion1c80e832016-05-11 23:07:18 +0200179 return 1;
180}
181
mdr788e1384f2021-03-19 19:03:54 +0000182typedef int (*clib_cpu_supports_func_t) ();
Damjan Marion1c80e832016-05-11 23:07:18 +0200183
184#define _(flag, func, reg, bit) \
185static inline int \
186clib_cpu_supports_ ## flag() \
187{ \
188 u32 __attribute__((unused)) eax, ebx = 0, ecx = 0, edx = 0; \
189 clib_get_cpuid (func, &eax, &ebx, &ecx, &edx); \
190 \
191 return ((reg & (1 << bit)) != 0); \
192}
Dave Barachc3799992016-08-15 11:12:27 -0400193foreach_x86_64_flags
Damjan Marion1c80e832016-05-11 23:07:18 +0200194#undef _
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100195#else /* __x86_64__ */
Christophe Fontaine33e81952016-12-19 14:41:52 +0100196
197#define _(flag, func, reg, bit) \
198static inline int clib_cpu_supports_ ## flag() { return 0; }
199foreach_x86_64_flags
200#undef _
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100201#endif /* __x86_64__ */
202#if defined(__aarch64__)
203#include <sys/auxv.h>
204#define _(flag, bit) \
205static inline int \
206clib_cpu_supports_ ## flag() \
207{ \
208 unsigned long hwcap = getauxval(AT_HWCAP); \
209 return (hwcap & (1 << bit)); \
210}
211 foreach_aarch64_flags
212#undef _
213#else /* ! __x86_64__ && !__aarch64__ */
214#define _(flag, bit) \
215static inline int clib_cpu_supports_ ## flag() { return 0; }
216 foreach_aarch64_flags
217#undef _
218#endif /* __x86_64__, __aarch64__ */
219/*
220 * aes is the only feature with the same name in both flag lists
221 * handle this by prefixing it with the arch name, and handling it
222 * with the custom function below
223 */
224 static inline int
225clib_cpu_supports_aes ()
226{
Zhiyong Yang7f4fd222019-04-19 03:04:41 -0400227#if defined(__x86_64__)
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100228 return clib_cpu_supports_x86_aes ();
229#elif defined (__aarch64__)
230 return clib_cpu_supports_aarch64_aes ();
231#else
232 return 0;
Christophe Fontaine33e81952016-12-19 14:41:52 +0100233#endif
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100234}
235
Damjan Marion812b32d2018-05-28 21:26:47 +0200236static inline int
Damjan Marion162330f2020-04-29 21:28:15 +0200237clib_cpu_march_priority_icl ()
Damjan Marion812b32d2018-05-28 21:26:47 +0200238{
Damjan Marion162330f2020-04-29 21:28:15 +0200239 if (clib_cpu_supports_avx512_bitalg ())
240 return 200;
Damjan Marion812b32d2018-05-28 21:26:47 +0200241 return -1;
242}
243
244static inline int
Damjan Marion162330f2020-04-29 21:28:15 +0200245clib_cpu_march_priority_skx ()
246{
247 if (clib_cpu_supports_avx512f ())
248 return 100;
249 return -1;
250}
251
252static inline int
Radu Nicolaue1480a22021-01-14 10:25:02 +0000253clib_cpu_march_priority_trm ()
254{
255 if (clib_cpu_supports_movdiri ())
256 return 60;
257 return -1;
258}
259
260static inline int
Damjan Marion162330f2020-04-29 21:28:15 +0200261clib_cpu_march_priority_hsw ()
Damjan Marion812b32d2018-05-28 21:26:47 +0200262{
263 if (clib_cpu_supports_avx2 ())
Damjan Marion64593152019-03-12 19:59:22 +0100264 return 50;
Damjan Marion812b32d2018-05-28 21:26:47 +0200265 return -1;
266}
267
Lijian Zhang2e237212018-09-10 17:13:56 +0800268static inline u32
269clib_cpu_implementer ()
270{
271 char buf[128];
272 static u32 implementer = -1;
273
274 if (-1 != implementer)
275 return implementer;
276
277 FILE *fp = fopen ("/proc/cpuinfo", "r");
278 if (!fp)
279 return implementer;
280
281 while (!feof (fp))
282 {
283 if (!fgets (buf, sizeof (buf), fp))
284 break;
285 buf[127] = '\0';
286 if (strstr (buf, "CPU implementer"))
287 implementer = (u32) strtol (memchr (buf, ':', 128) + 2, NULL, 0);
288 if (-1 != implementer)
289 break;
290 }
291 fclose (fp);
292
293 return implementer;
294}
295
296static inline u32
297clib_cpu_part ()
298{
299 char buf[128];
300 static u32 part = -1;
301
302 if (-1 != part)
303 return part;
304
305 FILE *fp = fopen ("/proc/cpuinfo", "r");
306 if (!fp)
307 return part;
308
309 while (!feof (fp))
310 {
311 if (!fgets (buf, sizeof (buf), fp))
312 break;
313 buf[127] = '\0';
314 if (strstr (buf, "CPU part"))
315 part = (u32) strtol (memchr (buf, ':', 128) + 2, NULL, 0);
316 if (-1 != part)
317 break;
318 }
319 fclose (fp);
320
321 return part;
322}
323
Nitin Saxenae2f52362020-08-25 19:58:37 +0530324#define AARCH64_CPU_IMPLEMENTER_CAVIUM 0x43
325#define AARCH64_CPU_PART_THUNDERX2 0x0af
326#define AARCH64_CPU_PART_OCTEONTX2T96 0x0b2
327#define AARCH64_CPU_PART_OCTEONTX2T98 0x0b1
Lijian Zhang2e237212018-09-10 17:13:56 +0800328#define AARCH64_CPU_IMPLEMENTER_QDF24XX 0x51
329#define AARCH64_CPU_PART_QDF24XX 0xc00
330#define AARCH64_CPU_IMPLEMENTER_CORTEXA72 0x41
331#define AARCH64_CPU_PART_CORTEXA72 0xd08
Lijian.Zhang690ce862020-02-18 19:58:19 +0800332#define AARCH64_CPU_IMPLEMENTER_NEOVERSEN1 0x41
333#define AARCH64_CPU_PART_NEOVERSEN1 0xd0c
Lijian Zhang2e237212018-09-10 17:13:56 +0800334
335static inline int
Nitin Saxenae2f52362020-08-25 19:58:37 +0530336clib_cpu_march_priority_octeontx2 ()
337{
338 if ((AARCH64_CPU_IMPLEMENTER_CAVIUM == clib_cpu_implementer ()) &&
339 ((AARCH64_CPU_PART_OCTEONTX2T96 == clib_cpu_part ())
340 || AARCH64_CPU_PART_OCTEONTX2T98 == clib_cpu_part ()))
341 return 20;
342 return -1;
343}
344
345static inline int
Lijian Zhang2e237212018-09-10 17:13:56 +0800346clib_cpu_march_priority_thunderx2t99 ()
347{
Nitin Saxenae2f52362020-08-25 19:58:37 +0530348 if ((AARCH64_CPU_IMPLEMENTER_CAVIUM == clib_cpu_implementer ()) &&
349 (AARCH64_CPU_PART_THUNDERX2 == clib_cpu_part ()))
Lijian Zhang2e237212018-09-10 17:13:56 +0800350 return 20;
351 return -1;
352}
353
354static inline int
355clib_cpu_march_priority_qdf24xx ()
356{
357 if ((AARCH64_CPU_IMPLEMENTER_QDF24XX == clib_cpu_implementer ()) &&
358 (AARCH64_CPU_PART_QDF24XX == clib_cpu_part ()))
359 return 20;
360 return -1;
361}
362
363static inline int
364clib_cpu_march_priority_cortexa72 ()
365{
366 if ((AARCH64_CPU_IMPLEMENTER_CORTEXA72 == clib_cpu_implementer ()) &&
367 (AARCH64_CPU_PART_CORTEXA72 == clib_cpu_part ()))
368 return 10;
369 return -1;
370}
371
Lijian.Zhang690ce862020-02-18 19:58:19 +0800372static inline int
373clib_cpu_march_priority_neoversen1 ()
374{
375 if ((AARCH64_CPU_IMPLEMENTER_NEOVERSEN1 == clib_cpu_implementer ()) &&
376 (AARCH64_CPU_PART_NEOVERSEN1 == clib_cpu_part ()))
377 return 10;
378 return -1;
379}
380
Damjan Marion812b32d2018-05-28 21:26:47 +0200381#ifdef CLIB_MARCH_VARIANT
382#define CLIB_MARCH_FN_PRIORITY() CLIB_MARCH_SFX(clib_cpu_march_priority)()
383#else
384#define CLIB_MARCH_FN_PRIORITY() 0
385#endif
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100386#endif /* included_clib_cpu_h */
387
Florin Coras983cc7d2018-09-18 23:11:55 -0700388#define CLIB_MARCH_FN_CONSTRUCTOR(fn) \
389static void __clib_constructor \
390CLIB_MARCH_SFX(fn ## _march_constructor) (void) \
391{ \
392 if (CLIB_MARCH_FN_PRIORITY() > fn ## _selected_priority) \
393 { \
394 fn ## _selected = & CLIB_MARCH_SFX (fn ## _ma); \
395 fn ## _selected_priority = CLIB_MARCH_FN_PRIORITY(); \
396 } \
397} \
398
399#ifndef CLIB_MARCH_VARIANT
Damjan Marion1bb67ab2021-04-30 11:11:08 +0200400#define CLIB_MARCH_FN(fn, rtype, _args...) \
401 static rtype CLIB_MARCH_SFX (fn##_ma) (_args); \
402 rtype (*fn##_selected) (_args) = &CLIB_MARCH_SFX (fn##_ma); \
403 int fn##_selected_priority = 0; \
404 static inline rtype CLIB_MARCH_SFX (fn##_ma) (_args)
Florin Coras983cc7d2018-09-18 23:11:55 -0700405#else
Damjan Marion1bb67ab2021-04-30 11:11:08 +0200406#define CLIB_MARCH_FN(fn, rtype, _args...) \
407 static rtype CLIB_MARCH_SFX (fn##_ma) (_args); \
408 extern rtype (*fn##_selected) (_args); \
409 extern int fn##_selected_priority; \
410 CLIB_MARCH_FN_CONSTRUCTOR (fn) \
411 static rtype CLIB_MARCH_SFX (fn##_ma) (_args)
Florin Coras983cc7d2018-09-18 23:11:55 -0700412#endif
413
414#define CLIB_MARCH_FN_SELECT(fn) (* fn ## _selected)
415
Gabriel Ganne73cb0062017-12-05 14:26:33 +0100416format_function_t format_cpu_uarch;
Damjan Marion522e4862016-03-04 12:44:14 +0100417format_function_t format_cpu_model_name;
Damjan Marion1c80e832016-05-11 23:07:18 +0200418format_function_t format_cpu_flags;
Damjan Marione3e35552021-05-06 17:34:49 +0200419format_function_t format_march_variant;
Damjan Marion522e4862016-03-04 12:44:14 +0100420
Dave Barachc3799992016-08-15 11:12:27 -0400421/*
422 * fd.io coding-style-patch-verification: ON
423 *
424 * Local Variables:
425 * eval: (c-set-style "gnu")
426 * End:
427 */