Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
1d007cd5
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
1d007cd5
编写于
2月 26, 2008
作者:
I
Ingo Molnar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
x86: clean up cpu capabilities accesses, cyrix.c
Signed-off-by:
N
Ingo Molnar
<
mingo@elte.hu
>
上级
4cbe668a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
6 deletion
+6
-6
arch/x86/kernel/cpu/cyrix.c
arch/x86/kernel/cpu/cyrix.c
+6
-6
未找到文件。
arch/x86/kernel/cpu/cyrix.c
浏览文件 @
1d007cd5
...
@@ -190,12 +190,12 @@ static void __cpuinit init_cyrix(struct cpuinfo_x86 *c)
...
@@ -190,12 +190,12 @@ static void __cpuinit init_cyrix(struct cpuinfo_x86 *c)
* Bit 31 in normal CPUID used for nonstandard 3DNow ID;
* Bit 31 in normal CPUID used for nonstandard 3DNow ID;
* 3DNow is IDd by bit 31 in extended CPUID (1*32+31) anyway
* 3DNow is IDd by bit 31 in extended CPUID (1*32+31) anyway
*/
*/
clear_
bit
(
0
*
32
+
31
,
c
->
x86_capability
);
clear_
cpu_cap
(
c
,
0
*
32
+
31
);
/* Cyrix used bit 24 in extended (AMD) CPUID for Cyrix MMX extensions */
/* Cyrix used bit 24 in extended (AMD) CPUID for Cyrix MMX extensions */
if
(
test_
bit
(
1
*
32
+
24
,
c
->
x86_capability
))
{
if
(
test_
cpu_cap
(
c
,
1
*
32
+
24
))
{
clear_
bit
(
1
*
32
+
24
,
c
->
x86_capability
);
clear_
cpu_cap
(
c
,
1
*
32
+
24
);
set_
bit
(
X86_FEATURE_CXMMX
,
c
->
x86_capability
);
set_
cpu_cap
(
c
,
X86_FEATURE_CXMMX
);
}
}
do_cyrix_devid
(
&
dir0
,
&
dir1
);
do_cyrix_devid
(
&
dir0
,
&
dir1
);
...
@@ -242,7 +242,7 @@ static void __cpuinit init_cyrix(struct cpuinfo_x86 *c)
...
@@ -242,7 +242,7 @@ static void __cpuinit init_cyrix(struct cpuinfo_x86 *c)
}
else
/* 686 */
}
else
/* 686 */
p
=
Cx86_cb
+
1
;
p
=
Cx86_cb
+
1
;
/* Emulate MTRRs using Cyrix's ARRs. */
/* Emulate MTRRs using Cyrix's ARRs. */
set_
bit
(
X86_FEATURE_CYRIX_ARR
,
c
->
x86_capability
);
set_
cpu_cap
(
c
,
X86_FEATURE_CYRIX_ARR
);
/* 6x86's contain this bug */
/* 6x86's contain this bug */
c
->
coma_bug
=
1
;
c
->
coma_bug
=
1
;
break
;
break
;
...
@@ -319,7 +319,7 @@ static void __cpuinit init_cyrix(struct cpuinfo_x86 *c)
...
@@ -319,7 +319,7 @@ static void __cpuinit init_cyrix(struct cpuinfo_x86 *c)
if
(((
dir1
&
0x0f
)
>
4
)
||
((
dir1
&
0xf0
)
==
0x20
))
if
(((
dir1
&
0x0f
)
>
4
)
||
((
dir1
&
0xf0
)
==
0x20
))
(
c
->
x86_model
)
++
;
(
c
->
x86_model
)
++
;
/* Emulate MTRRs using Cyrix's ARRs. */
/* Emulate MTRRs using Cyrix's ARRs. */
set_
bit
(
X86_FEATURE_CYRIX_ARR
,
c
->
x86_capability
);
set_
cpu_cap
(
c
,
X86_FEATURE_CYRIX_ARR
);
break
;
break
;
case
0xf
:
/* Cyrix 486 without DEVID registers */
case
0xf
:
/* Cyrix 486 without DEVID registers */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录