Home
last modified time | relevance | path

Searched refs:boot_param (Results 1 – 3 of 3) sorted by relevance

/hypervisor/common/
A Dtrusty_hypercall.c62 struct trusty_boot_param boot_param; in hcall_initialize_trusty() local
64 if (copy_from_gpa(vcpu->vm, &boot_param, param1, sizeof(boot_param)) == 0) { in hcall_initialize_trusty()
65 if (initialize_trusty(vcpu, &boot_param)) { in hcall_initialize_trusty()
/hypervisor/arch/x86/guest/
A Dtrusty.c343 bool initialize_trusty(struct acrn_vcpu *vcpu, struct trusty_boot_param *boot_param) in initialize_trusty() argument
351 switch (boot_param->version) { in initialize_trusty()
353 trusty_entry_gpa = ((uint64_t)boot_param->entry_point) | in initialize_trusty()
354 (((uint64_t)boot_param->entry_point_high) << 32U); in initialize_trusty()
355 trusty_base_gpa = ((uint64_t)boot_param->base_addr) | in initialize_trusty()
356 (((uint64_t)boot_param->base_addr_high) << 32U); in initialize_trusty()
357 rpmb_key = boot_param->rpmb_key; in initialize_trusty()
360 trusty_entry_gpa = (uint64_t)boot_param->entry_point; in initialize_trusty()
361 trusty_base_gpa = (uint64_t)boot_param->base_addr; in initialize_trusty()
364 pr_err("%s: Version(%u) not supported!\n", __func__, boot_param->version); in initialize_trusty()
[all …]
/hypervisor/include/arch/x86/asm/guest/
A Dtrusty.h125 bool initialize_trusty(struct acrn_vcpu *vcpu, struct trusty_boot_param *boot_param);

Completed in 5 milliseconds