Add microarch details to 'show cpu'. 47/16647/2
authorPaul Vinciguerra <pvinci@vinciconsulting.com>
Sun, 30 Dec 2018 19:07:36 +0000 (11:07 -0800)
committerDave Barach <openvpp@barachs.net>
Wed, 2 Jan 2019 12:23:59 +0000 (12:23 +0000)
Change-Id: I31a3ff9e8f70468196c091027592a3aed2d09ac3
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
src/vlib/cli.c
src/vppinfra/cpu.c

index d7b2a46..4c33914 100644 (file)
@@ -852,7 +852,7 @@ show_cpu (vlib_main_t * vm, unformat_input_t * input,
 {
 #define _(a,b,c) vlib_cli_output (vm, "%-25s " b, a ":", c);
   _("Model name", "%U", format_cpu_model_name);
-  _("Microarchitecture", "%U", format_cpu_uarch);
+  _("Microarch model (family)", "%U", format_cpu_uarch);
   _("Flags", "%U", format_cpu_flags);
   _("Base frequency", "%.2f GHz",
     ((f64) vm->clib_time.clocks_per_second) * 1e-9);
index ef08dc7..1b3ac31 100644 (file)
@@ -74,15 +74,17 @@ format_cpu_uarch (u8 * s, va_list * args)
 {
 #if __x86_64__
   u32 __attribute__ ((unused)) eax, ebx, ecx, edx;
-  u8 model, family;
+  u8 model, family, stepping;
 
   if (__get_cpuid (1, &eax, &ebx, &ecx, &edx) == 0)
     return format (s, "unknown (missing cpuid)");
 
   model = ((eax >> 4) & 0x0f) | ((eax >> 12) & 0xf0);
   family = (eax >> 8) & 0x0f;
+  stepping = eax & 0x0f;
 
-#define _(f,m,a,c) if ((model == m) && (family == f)) return format(s, "%s (%s)", a, c);
+#define _(f,m,a,c) if ((model == m) && (family == f)) return \
+format(s, "[0x%x] %s ([0x%02x] %s) stepping 0x%x", f, a, m, c, stepping);
   foreach_x86_cpu_uarch
 #undef _
     return format (s, "unknown (family 0x%02x model 0x%02x)", family, model);