Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
X
xv6-public
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
问题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
银宸时代
OS Lab Group
奖励实验
xv6-public
提交
4f06ae0d
提交
4f06ae0d
11月 28, 2007
创建
作者:
rsc
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
More complete lapic startup (thanks Silas)
上级
a6c4711a
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
26 行增加
和
8 行删除
+26
-8
lapic.c
lapic.c
+26
-8
没有找到文件。
lapic.c
浏览文件 @
4f06ae0d
...
...
@@ -102,7 +102,8 @@ cpu(void)
if
(
read_eflags
()
&
FL_IF
){
static
int
n
;
if
(
n
++
==
0
)
cprintf
(
"cpu called from %x with interrupts enabled
\n
"
,
((
uint
*
)
read_ebp
())[
1
]);
cprintf
(
"cpu called from %x with interrupts enabled
\n
"
,
((
uint
*
)
read_ebp
())[
1
]);
}
if
(
lapic
)
...
...
@@ -129,25 +130,42 @@ microdelay(int us)
for
(
j
=
0
;
j
<
10000
;
j
++
);
}
#define IO_RTC 0x70
// Start additional processor running bootstrap code at addr.
// See Appendix B of MultiProcessor Specification.
void
lapic_startap
(
uchar
apicid
,
uint
addr
)
{
int
i
;
volatile
int
j
=
0
;
// Send INIT interrupt to reset other CPU.
ushort
*
wrv
;
// "The BSP must initialize CMOS shutdown code to 0AH
// and the warm reset vector (DWORD based at 40:67) to point at
// the AP startup code prior to the [universal startup algorithm]."
outb
(
IO_RTC
,
0xF
);
// offset 0xF is shutdown code
outb
(
IO_RTC
+
1
,
0x0A
);
wrv
=
(
ushort
*
)(
0x40
<<
4
|
0x67
);
// Warm reset vector
wrv
[
0
]
=
0
;
wrv
[
1
]
=
addr
>>
4
;
// "Universal startup algorithm."
// Send INIT (level-triggered) interrupt to reset other CPU.
lapicw
(
ICRHI
,
apicid
<<
24
);
lapicw
(
ICRLO
,
INIT
|
LEVEL
|
ASSERT
);
microdelay
(
200
);
lapicw
(
ICRLO
,
INIT
|
LEVEL
);
microdelay
(
10
);
microdelay
(
10
0
);
// should be 10ms, but too slow in Bochs!
// Send startup IPI (twice!) to enter bootstrap code.
// Regular hardware wants it twice, but Bochs complains.
// Too bad for Bochs.
// Regular hardware is supposed to only accept a STARTUP
// when it is in the halted state due to an INIT. So the second
// should be ignored, but it is part of the official Intel algorithm.
// Bochs complains about the second one. Too bad for Bochs.
for
(
i
=
0
;
i
<
2
;
i
++
){
lapicw
(
ICRHI
,
apicid
<<
24
);
lapicw
(
ICRLO
,
STARTUP
|
(
addr
>>
12
));
for
(
j
=
0
;
j
<
10000
;
j
++
);
// 200us
microdelay
(
200
);
}
}
编写
预览
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论