Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
da91747c
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
da91747c
编写于
12月 28, 2013
作者:
M
Marc Zyngier
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'kvm-arm64/for-3.14' into kvm-arm64/next
上级
60dd133a
e5cf9dcd
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
41 addition
and
18 deletion
+41
-18
arch/arm64/include/asm/kvm_host.h
arch/arm64/include/asm/kvm_host.h
+6
-1
arch/arm64/include/uapi/asm/kvm.h
arch/arm64/include/uapi/asm/kvm.h
+2
-1
arch/arm64/kvm/Kconfig
arch/arm64/kvm/Kconfig
+11
-0
arch/arm64/kvm/guest.c
arch/arm64/kvm/guest.c
+19
-13
arch/arm64/kvm/handle_exit.c
arch/arm64/kvm/handle_exit.c
+0
-3
arch/arm64/kvm/sys_regs_generic_v8.c
arch/arm64/kvm/sys_regs_generic_v8.c
+3
-0
未找到文件。
arch/arm64/include/asm/kvm_host.h
浏览文件 @
da91747c
...
...
@@ -26,7 +26,12 @@
#include <asm/kvm_asm.h>
#include <asm/kvm_mmio.h>
#define KVM_MAX_VCPUS 4
#if defined(CONFIG_KVM_ARM_MAX_VCPUS)
#define KVM_MAX_VCPUS CONFIG_KVM_ARM_MAX_VCPUS
#else
#define KVM_MAX_VCPUS 0
#endif
#define KVM_USER_MEM_SLOTS 32
#define KVM_PRIVATE_MEM_SLOTS 4
#define KVM_COALESCED_MMIO_PAGE_OFFSET 1
...
...
arch/arm64/include/uapi/asm/kvm.h
浏览文件 @
da91747c
...
...
@@ -55,8 +55,9 @@ struct kvm_regs {
#define KVM_ARM_TARGET_AEM_V8 0
#define KVM_ARM_TARGET_FOUNDATION_V8 1
#define KVM_ARM_TARGET_CORTEX_A57 2
#define KVM_ARM_TARGET_XGENE_POTENZA 3
#define KVM_ARM_NUM_TARGETS
3
#define KVM_ARM_NUM_TARGETS
4
/* KVM_ARM_SET_DEVICE_ADDR ioctl id encoding */
#define KVM_ARM_DEVICE_TYPE_SHIFT 0
...
...
arch/arm64/kvm/Kconfig
浏览文件 @
da91747c
...
...
@@ -36,6 +36,17 @@ config KVM_ARM_HOST
---help---
Provides host support for ARM processors.
config KVM_ARM_MAX_VCPUS
int "Number maximum supported virtual CPUs per VM"
depends on KVM_ARM_HOST
default 4
help
Static number of max supported virtual CPUs per VM.
If you choose a high number, the vcpu structures will be quite
large, so only choose a reasonable number that you expect to
actually use.
config KVM_ARM_VGIC
bool
depends on KVM_ARM_HOST && OF
...
...
arch/arm64/kvm/guest.c
浏览文件 @
da91747c
...
...
@@ -207,20 +207,26 @@ int __attribute_const__ kvm_target_cpu(void)
unsigned
long
implementor
=
read_cpuid_implementor
();
unsigned
long
part_number
=
read_cpuid_part_number
();
if
(
implementor
!=
ARM_CPU_IMP_ARM
)
return
-
EINVAL
;
switch
(
implementor
)
{
case
ARM_CPU_IMP_ARM
:
switch
(
part_number
)
{
case
ARM_CPU_PART_AEM_V8
:
return
KVM_ARM_TARGET_AEM_V8
;
case
ARM_CPU_PART_FOUNDATION
:
return
KVM_ARM_TARGET_FOUNDATION_V8
;
case
ARM_CPU_PART_CORTEX_A57
:
return
KVM_ARM_TARGET_CORTEX_A57
;
};
break
;
case
ARM_CPU_IMP_APM
:
switch
(
part_number
)
{
case
APM_CPU_PART_POTENZA
:
return
KVM_ARM_TARGET_XGENE_POTENZA
;
};
break
;
};
switch
(
part_number
)
{
case
ARM_CPU_PART_AEM_V8
:
return
KVM_ARM_TARGET_AEM_V8
;
case
ARM_CPU_PART_FOUNDATION
:
return
KVM_ARM_TARGET_FOUNDATION_V8
;
case
ARM_CPU_PART_CORTEX_A57
:
/* Currently handled by the generic backend */
return
KVM_ARM_TARGET_CORTEX_A57
;
default:
return
-
EINVAL
;
}
return
-
EINVAL
;
}
int
kvm_vcpu_set_target
(
struct
kvm_vcpu
*
vcpu
,
...
...
arch/arm64/kvm/handle_exit.c
浏览文件 @
da91747c
...
...
@@ -39,9 +39,6 @@ static int handle_hvc(struct kvm_vcpu *vcpu, struct kvm_run *run)
static
int
handle_smc
(
struct
kvm_vcpu
*
vcpu
,
struct
kvm_run
*
run
)
{
if
(
kvm_psci_call
(
vcpu
))
return
1
;
kvm_inject_undefined
(
vcpu
);
return
1
;
}
...
...
arch/arm64/kvm/sys_regs_generic_v8.c
浏览文件 @
da91747c
...
...
@@ -90,6 +90,9 @@ static int __init sys_reg_genericv8_init(void)
&
genericv8_target_table
);
kvm_register_target_sys_reg_table
(
KVM_ARM_TARGET_CORTEX_A57
,
&
genericv8_target_table
);
kvm_register_target_sys_reg_table
(
KVM_ARM_TARGET_XGENE_POTENZA
,
&
genericv8_target_table
);
return
0
;
}
late_initcall
(
sys_reg_genericv8_init
);
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录