projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6bcb675
)
x86: ivybridge: Show microcode version for each core
author
Simon Glass
<sjg@chromium.org>
Sat, 12 Mar 2016 05:07:10 +0000
(22:07 -0700)
committer
Bin Meng
<bmeng.cn@gmail.com>
Thu, 17 Mar 2016 02:27:25 +0000
(10:27 +0800)
Enable the microcode feature so that the microcode version is shown with the
'cpu detail' command.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
arch/x86/cpu/ivybridge/model_206ax.c
patch
|
blob
|
history
diff --git
a/arch/x86/cpu/ivybridge/model_206ax.c
b/arch/x86/cpu/ivybridge/model_206ax.c
index 950132a00153290bab414fb09d877abdd407669a..cef425669c9c1a7fafcae51ef9942ca7a3dc65cb 100644
(file)
--- a/
arch/x86/cpu/ivybridge/model_206ax.c
+++ b/
arch/x86/cpu/ivybridge/model_206ax.c
@@
-458,7
+458,8
@@
static int model_206ax_get_info(struct udevice *dev, struct cpu_info *info)
msr = msr_read(MSR_IA32_PERF_CTL);
info->cpu_freq = ((msr.lo >> 8) & 0xff) * SANDYBRIDGE_BCLK * 1000000;
- info->features = 1 << CPU_FEAT_L1_CACHE | 1 << CPU_FEAT_MMU;
+ info->features = 1 << CPU_FEAT_L1_CACHE | 1 << CPU_FEAT_MMU |
+ 1 << CPU_FEAT_UCODE;
return 0;
}