summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/lib/cpu_common.c
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2015-06-18 01:23:48 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2015-07-13 21:04:36 +0200
commit9693885ad88d21ead7bd9ebc32f3e4901841b18b (patch)
treece6fed36947956e17303cf7cbe9cfd2004022b10 /src/arch/x86/lib/cpu_common.c
parent492a07593b3d74d4b10fce95e5229cbd4535b1cb (diff)
downloadcoreboot-9693885ad88d21ead7bd9ebc32f3e4901841b18b.tar.gz
coreboot-9693885ad88d21ead7bd9ebc32f3e4901841b18b.tar.bz2
coreboot-9693885ad88d21ead7bd9ebc32f3e4901841b18b.zip
x86: Port x86 over to compile cleanly with x86-64
Change-Id: I26f1bbf027435be593f11bce4780111dcaf7cb86 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Signed-off-by: Scott Duplichan <scott@notabs.org> Reviewed-on: http://review.coreboot.org/10586 Tested-by: build bot (Jenkins) Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/arch/x86/lib/cpu_common.c')
-rw-r--r--src/arch/x86/lib/cpu_common.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/arch/x86/lib/cpu_common.c b/src/arch/x86/lib/cpu_common.c
index 6c5561df98e3..af0ab2ae9866 100644
--- a/src/arch/x86/lib/cpu_common.c
+++ b/src/arch/x86/lib/cpu_common.c
@@ -10,6 +10,7 @@
#include <device/device.h>
#include <smp/spinlock.h>
+#ifndef __x86_64__
/* Standard macro to see if a specific flag is changeable */
static inline int flag_is_changeable_p(uint32_t flag)
{
@@ -37,6 +38,14 @@ int cpu_have_cpuid(void)
return flag_is_changeable_p(X86_EFLAGS_ID);
}
+#else
+
+int cpu_have_cpuid(void)
+{
+ return 1;
+}
+#endif
+
int cpu_cpuid_extended_level(void)
{
return cpuid_eax(0x80000000);