Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
dd703b99
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
dd703b99
编写于
2月 05, 2011
作者:
B
Blue Swirl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
hpet: make optional
Ignore failure with hpet device creation. Signed-off-by:
N
Blue Swirl
<
blauwirbel@gmail.com
>
上级
4912371f
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
11 addition
and
7 deletion
+11
-7
Makefile.objs
Makefile.objs
+1
-0
Makefile.target
Makefile.target
+1
-1
default-configs/i386-softmmu.mak
default-configs/i386-softmmu.mak
+1
-0
default-configs/x86_64-softmmu.mak
default-configs/x86_64-softmmu.mak
+1
-0
hw/hpet.c
hw/hpet.c
+0
-2
hw/pc.c
hw/pc.c
+7
-4
未找到文件。
Makefile.objs
浏览文件 @
dd703b99
...
...
@@ -195,6 +195,7 @@ hw-obj-$(CONFIG_FDC) += fdc.o
hw-obj-$(CONFIG_ACPI)
+=
acpi.o acpi_piix4.o
hw-obj-$(CONFIG_APM)
+=
pm_smbus.o apm.o
hw-obj-$(CONFIG_DMA)
+=
dma.o
hw-obj-$(CONFIG_HPET)
+=
hpet.o
# PPC devices
hw-obj-$(CONFIG_OPENPIC)
+=
openpic.o
...
...
Makefile.target
浏览文件 @
dd703b99
...
...
@@ -215,7 +215,7 @@ obj-$(CONFIG_KVM) += ivshmem.o
obj-i386-y
+=
vga.o
obj-i386-y
+=
mc146818rtc.o i8259.o pc.o
obj-i386-y
+=
cirrus_vga.o apic.o ioapic.o piix_pci.o
obj-i386-y
+=
vmport.o
hpet.o
applesmc.o
obj-i386-y
+=
vmport.o applesmc.o
obj-i386-y
+=
device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
obj-i386-y
+=
debugcon.o multiboot.o
obj-i386-y
+=
pc_piix.o
...
...
default-configs/i386-softmmu.mak
浏览文件 @
dd703b99
...
...
@@ -19,3 +19,4 @@ CONFIG_IDE_PIIX=y
CONFIG_NE2000_ISA
=
y
CONFIG_PIIX_PCI
=
y
CONFIG_SOUND
=
y
CONFIG_HPET
=
y
default-configs/x86_64-softmmu.mak
浏览文件 @
dd703b99
...
...
@@ -19,3 +19,4 @@ CONFIG_IDE_PIIX=y
CONFIG_NE2000_ISA
=
y
CONFIG_PIIX_PCI
=
y
CONFIG_SOUND
=
y
CONFIG_HPET
=
y
hw/hpet.c
浏览文件 @
dd703b99
...
...
@@ -74,8 +74,6 @@ typedef struct HPETState {
uint8_t
hpet_id
;
/* instance id */
}
HPETState
;
struct
hpet_fw_config
hpet_cfg
=
{.
count
=
UINT8_MAX
};
static
uint32_t
hpet_in_legacy_mode
(
HPETState
*
s
)
{
return
s
->
config
&
HPET_CFG_LEGACY
;
...
...
hw/pc.c
浏览文件 @
dd703b99
...
...
@@ -84,6 +84,7 @@ struct e820_table {
}
__attribute
((
__packed__
,
__aligned__
(
4
)));
static
struct
e820_table
e820_table
;
struct
hpet_fw_config
hpet_cfg
=
{.
count
=
UINT8_MAX
};
void
isa_irq_handler
(
void
*
opaque
,
int
n
,
int
level
)
{
...
...
@@ -1104,12 +1105,14 @@ void pc_basic_device_init(qemu_irq *isa_irq,
register_ioport_write
(
0xf0
,
1
,
1
,
ioportF0_write
,
NULL
);
if
(
!
no_hpet
)
{
DeviceState
*
hpet
=
sysbus_create_simple
(
"hpet"
,
HPET_BASE
,
NULL
);
DeviceState
*
hpet
=
sysbus_
try_
create_simple
(
"hpet"
,
HPET_BASE
,
NULL
);
for
(
i
=
0
;
i
<
24
;
i
++
)
{
sysbus_connect_irq
(
sysbus_from_qdev
(
hpet
),
i
,
isa_irq
[
i
]);
if
(
hpet
)
{
for
(
i
=
0
;
i
<
24
;
i
++
)
{
sysbus_connect_irq
(
sysbus_from_qdev
(
hpet
),
i
,
isa_irq
[
i
]);
}
rtc_irq
=
qdev_get_gpio_in
(
hpet
,
0
);
}
rtc_irq
=
qdev_get_gpio_in
(
hpet
,
0
);
}
*
rtc_state
=
rtc_init
(
2000
,
rtc_irq
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录