Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
8b07eaa1
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看板
提交
8b07eaa1
编写于
1月 08, 2013
作者:
G
Gerd Hoffmann
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
q35: add ich9 intel hda controller
Signed-off-by:
N
Gerd Hoffmann
<
kraxel@redhat.com
>
上级
a6308bc2
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
34 addition
and
7 deletion
+34
-7
hw/intel-hda.c
hw/intel-hda.c
+34
-7
未找到文件。
hw/intel-hda.c
浏览文件 @
8b07eaa1
...
...
@@ -1232,7 +1232,7 @@ static Property intel_hda_properties[] = {
DEFINE_PROP_END_OF_LIST
(),
};
static
void
intel_hda_class_init
(
ObjectClass
*
klass
,
void
*
data
)
static
void
intel_hda_class_init
_common
(
ObjectClass
*
klass
)
{
DeviceClass
*
dc
=
DEVICE_CLASS
(
klass
);
PCIDeviceClass
*
k
=
PCI_DEVICE_CLASS
(
klass
);
...
...
@@ -1240,20 +1240,46 @@ static void intel_hda_class_init(ObjectClass *klass, void *data)
k
->
init
=
intel_hda_init
;
k
->
exit
=
intel_hda_exit
;
k
->
vendor_id
=
PCI_VENDOR_ID_INTEL
;
k
->
device_id
=
0x2668
;
k
->
revision
=
1
;
k
->
class_id
=
PCI_CLASS_MULTIMEDIA_HD_AUDIO
;
dc
->
desc
=
"Intel HD Audio Controller"
;
dc
->
reset
=
intel_hda_reset
;
dc
->
vmsd
=
&
vmstate_intel_hda
;
dc
->
props
=
intel_hda_properties
;
}
static
TypeInfo
intel_hda_info
=
{
static
void
intel_hda_class_init_ich6
(
ObjectClass
*
klass
,
void
*
data
)
{
DeviceClass
*
dc
=
DEVICE_CLASS
(
klass
);
PCIDeviceClass
*
k
=
PCI_DEVICE_CLASS
(
klass
);
intel_hda_class_init_common
(
klass
);
k
->
device_id
=
0x2668
;
k
->
revision
=
1
;
dc
->
desc
=
"Intel HD Audio Controller (ich6)"
;
}
static
void
intel_hda_class_init_ich9
(
ObjectClass
*
klass
,
void
*
data
)
{
DeviceClass
*
dc
=
DEVICE_CLASS
(
klass
);
PCIDeviceClass
*
k
=
PCI_DEVICE_CLASS
(
klass
);
intel_hda_class_init_common
(
klass
);
k
->
device_id
=
0x293e
;
k
->
revision
=
3
;
dc
->
desc
=
"Intel HD Audio Controller (ich9)"
;
}
static
TypeInfo
intel_hda_info_ich6
=
{
.
name
=
"intel-hda"
,
.
parent
=
TYPE_PCI_DEVICE
,
.
instance_size
=
sizeof
(
IntelHDAState
),
.
class_init
=
intel_hda_class_init
,
.
class_init
=
intel_hda_class_init_ich6
,
};
static
TypeInfo
intel_hda_info_ich9
=
{
.
name
=
"ich9-intel-hda"
,
.
parent
=
TYPE_PCI_DEVICE
,
.
instance_size
=
sizeof
(
IntelHDAState
),
.
class_init
=
intel_hda_class_init_ich9
,
};
static
void
hda_codec_device_class_init
(
ObjectClass
*
klass
,
void
*
data
)
...
...
@@ -1277,7 +1303,8 @@ static TypeInfo hda_codec_device_type_info = {
static
void
intel_hda_register_types
(
void
)
{
type_register_static
(
&
hda_codec_bus_info
);
type_register_static
(
&
intel_hda_info
);
type_register_static
(
&
intel_hda_info_ich6
);
type_register_static
(
&
intel_hda_info_ich9
);
type_register_static
(
&
hda_codec_device_type_info
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录