Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
f26d9db2
K
Kernel
项目概览
openeuler
/
Kernel
接近 2 年 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f26d9db2
编写于
2月 11, 2019
作者:
I
Ingo Molnar
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'x86/cpu' into perf/core, to pick up dependent commit
Signed-off-by:
N
Ingo Molnar
<
mingo@kernel.org
>
上级
6854daa0
0f42b790
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
62 addition
and
5 deletion
+62
-5
arch/x86/include/asm/cpu_device_id.h
arch/x86/include/asm/cpu_device_id.h
+28
-0
arch/x86/kernel/cpu/amd.c
arch/x86/kernel/cpu/amd.c
+3
-5
arch/x86/kernel/cpu/match.c
arch/x86/kernel/cpu/match.c
+31
-0
未找到文件。
arch/x86/include/asm/cpu_device_id.h
浏览文件 @
f26d9db2
...
...
@@ -11,4 +11,32 @@
extern
const
struct
x86_cpu_id
*
x86_match_cpu
(
const
struct
x86_cpu_id
*
match
);
/*
* Match specific microcode revisions.
*
* vendor/family/model/stepping must be all set.
*
* Only checks against the boot CPU. When mixed-stepping configs are
* valid for a CPU model, add a quirk for every valid stepping and
* do the fine-tuning in the quirk handler.
*/
struct
x86_cpu_desc
{
__u8
x86_family
;
__u8
x86_vendor
;
__u8
x86_model
;
__u8
x86_stepping
;
__u32
x86_microcode_rev
;
};
#define INTEL_CPU_DESC(mod, step, rev) { \
.x86_family = 6, \
.x86_vendor = X86_VENDOR_INTEL, \
.x86_model = mod, \
.x86_stepping = step, \
.x86_microcode_rev = rev, \
}
extern
bool
x86_cpu_has_min_microcode_rev
(
const
struct
x86_cpu_desc
*
table
);
#endif
arch/x86/kernel/cpu/amd.c
浏览文件 @
f26d9db2
...
...
@@ -819,11 +819,9 @@ static void init_amd_bd(struct cpuinfo_x86 *c)
static
void
init_amd_zn
(
struct
cpuinfo_x86
*
c
)
{
set_cpu_cap
(
c
,
X86_FEATURE_ZEN
);
/*
* Fix erratum 1076: CPB feature bit not being set in CPUID. It affects
* all up to and including B1.
*/
if
(
c
->
x86_model
<=
1
&&
c
->
x86_stepping
<=
1
)
/* Fix erratum 1076: CPB feature bit not being set in CPUID. */
if
(
!
cpu_has
(
c
,
X86_FEATURE_CPB
))
set_cpu_cap
(
c
,
X86_FEATURE_CPB
);
}
...
...
arch/x86/kernel/cpu/match.c
浏览文件 @
f26d9db2
...
...
@@ -48,3 +48,34 @@ const struct x86_cpu_id *x86_match_cpu(const struct x86_cpu_id *match)
return
NULL
;
}
EXPORT_SYMBOL
(
x86_match_cpu
);
static
const
struct
x86_cpu_desc
*
x86_match_cpu_with_stepping
(
const
struct
x86_cpu_desc
*
match
)
{
struct
cpuinfo_x86
*
c
=
&
boot_cpu_data
;
const
struct
x86_cpu_desc
*
m
;
for
(
m
=
match
;
m
->
x86_family
|
m
->
x86_model
;
m
++
)
{
if
(
c
->
x86_vendor
!=
m
->
x86_vendor
)
continue
;
if
(
c
->
x86
!=
m
->
x86_family
)
continue
;
if
(
c
->
x86_model
!=
m
->
x86_model
)
continue
;
if
(
c
->
x86_stepping
!=
m
->
x86_stepping
)
continue
;
return
m
;
}
return
NULL
;
}
bool
x86_cpu_has_min_microcode_rev
(
const
struct
x86_cpu_desc
*
table
)
{
const
struct
x86_cpu_desc
*
res
=
x86_match_cpu_with_stepping
(
table
);
if
(
!
res
||
res
->
x86_microcode_rev
>
boot_cpu_data
.
microcode
)
return
false
;
return
true
;
}
EXPORT_SYMBOL_GPL
(
x86_cpu_has_min_microcode_rev
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录