Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1554248

[PATCH 1/5] x86/CPU: Add native CPUID variants returning a single datum

From Borislav Petkov <bp@alien8.de>
Newsgroups linux.kernel
Subject [PATCH 1/5] x86/CPU: Add native CPUID variants returning a single datum
Date 2017-01-09 12:50 +0100
Message-ID <sXGCD-3EW-21@gated-at.bofh.it> (permalink)
References <sXGCC-3EW-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


From: Borislav Petkov <bp@suse.de>

... similarly to the cpuid_<reg>() variants.

Signed-off-by: Borislav Petkov <bp@suse.de>
---
 arch/x86/include/asm/processor.h | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h
index eaf100508c36..1be64da0384e 100644
--- a/arch/x86/include/asm/processor.h
+++ b/arch/x86/include/asm/processor.h
@@ -219,6 +219,24 @@ static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
 	    : "memory");
 }
 
+#define native_cpuid_reg(reg)					\
+static inline unsigned int native_cpuid_##reg(unsigned int op)	\
+{								\
+	unsigned int eax = op, ebx, ecx = 0, edx;		\
+								\
+	native_cpuid(&eax, &ebx, &ecx, &edx);			\
+								\
+	return reg;						\
+}
+
+/*
+ * Native CPUID functions returning a single datum.
+ */
+native_cpuid_reg(eax)
+native_cpuid_reg(ebx)
+native_cpuid_reg(ecx)
+native_cpuid_reg(edx)
+
 static inline void load_cr3(pgd_t *pgdir)
 {
 	write_cr3(__pa(pgdir));
-- 
2.11.0

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/5] x86/microcode: More urgent fixes Borislav Petkov <bp@alien8.de> - 2017-01-09 12:50 +0100
  [PATCH 1/5] x86/CPU: Add native CPUID variants returning a single datum Borislav Petkov <bp@alien8.de> - 2017-01-09 12:50 +0100
    [tip:x86/urgent] x86/CPU: Add native CPUID variants returning a  single datum tip-bot for Borislav Petkov <tipbot@zytor.com> - 2017-01-09 23:20 +0100
      Re: [tip:x86/urgent] x86/CPU: Add native CPUID variants returning a single datum hpa@zytor.com - 2017-01-10 01:30 +0100
        Re: [tip:x86/urgent] x86/CPU: Add native CPUID variants returning a  single datum Borislav Petkov <bp@suse.de> - 2017-01-10 10:20 +0100
          Re: [tip:x86/urgent] x86/CPU: Add native CPUID variants returning a single datum hpa@zytor.com - 2017-01-10 17:50 +0100
            Re: [tip:x86/urgent] x86/CPU: Add native CPUID variants returning a  single datum Borislav Petkov <bp@suse.de> - 2017-01-10 18:10 +0100

csiph-web