summaryrefslogtreecommitdiff
path: root/arch/x86/cpu/cpu.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-03-12 05:06:52 (GMT)
committerBin Meng <bmeng.cn@gmail.com>2016-03-17 02:27:24 (GMT)
commit342727ace6fd3dd5c96bb9342eabe96614ed208a (patch)
tree6d82aab5f0ea75271d458080075881d31efd6e70 /arch/x86/cpu/cpu.c
parente4d6ab0c2cb8456f80d0ee4e123a34029d5a5c41 (diff)
downloadu-boot-fsl-qoriq-342727ace6fd3dd5c96bb9342eabe96614ed208a.tar.xz
x86: cpu: Add functions to return the family and stepping
These two identifiers can be useful for drivers which need to adjust their behaviour depending on the CPU family or stepping (revision). Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/cpu.c')
-rw-r--r--arch/x86/cpu/cpu.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86/cpu/cpu.c b/arch/x86/cpu/cpu.c
index 8800e09..afc3ecd 100644
--- a/arch/x86/cpu/cpu.c
+++ b/arch/x86/cpu/cpu.c
@@ -333,6 +333,16 @@ static inline void get_fms(struct cpuinfo_x86 *c, uint32_t tfms)
c->x86_model += ((tfms >> 16) & 0xF) << 4;
}
+u32 cpu_get_family_model(void)
+{
+ return gd->arch.x86_device & 0x0fff0ff0;
+}
+
+u32 cpu_get_stepping(void)
+{
+ return gd->arch.x86_mask;
+}
+
int x86_cpu_init_f(void)
{
const u32 em_rst = ~X86_CR0_EM;