mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-11-30 19:49:40 +00:00
This patch adds support to sep/socwatch profiling
Adds 2 new files include/arch/x86/profiling.h and arch/x86/profiling.c
which contains most of the implementation for profiling,most of the functions
in profiling.c have dummy implementation and will be implemented in next patches
a. cpu.c, Initial profiling setup is done as part of bsp_boot_post
and cpu_secondary_post flow
b. vmcall.c, New ioctl is added for performing profiling related
operations in vmcall_vmexit_handler
ioctl - HC_PROFILING_OPS
function - hcall_profiling_ops()
c. common/hypercall.c, hcall_profiling_ops() implementation.
d. hv_main.c, In vcpu_thread calling profiling related functions
to save vm context
e. acrn_hv_defs.h, list all the profiling command types
Tracked-On: projectacrn#1409
Acked-by: Eddie Dong <eddie.dong@intel.com>
Signed-off-by: Chinthapally, Manisha <manisha.chinthapally@intel.com>
53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <hypervisor.h>
|
|
#include <schedule.h>
|
|
#include <hypercall.h>
|
|
#include <version.h>
|
|
#include <reloc.h>
|
|
|
|
#ifdef PROFILING_ON
|
|
/**
|
|
*@pre Pointer vm shall point to VM0
|
|
*/
|
|
int32_t hcall_profiling_ops(struct vm *vm, uint64_t cmd, uint64_t param)
|
|
{
|
|
int32_t ret;
|
|
switch (cmd) {
|
|
case PROFILING_MSR_OPS:
|
|
ret = profiling_msr_ops_all_cpus(vm, param);
|
|
break;
|
|
case PROFILING_GET_VMINFO:
|
|
ret = profiling_vm_list_info(vm, param);
|
|
break;
|
|
case PROFILING_GET_VERSION:
|
|
ret = profiling_get_version_info(vm, param);
|
|
break;
|
|
case PROFILING_GET_CONTROL_SWITCH:
|
|
ret = profiling_get_control(vm, param);
|
|
break;
|
|
case PROFILING_SET_CONTROL_SWITCH:
|
|
ret = profiling_set_control(vm, param);
|
|
break;
|
|
case PROFILING_CONFIG_PMI:
|
|
ret = profiling_configure_pmi(vm, param);
|
|
break;
|
|
case PROFILING_CONFIG_VMSWITCH:
|
|
ret = profiling_configure_vmsw(vm, param);
|
|
break;
|
|
case PROFILING_GET_PCPUID:
|
|
ret = profiling_get_pcpu_id(vm, param);
|
|
break;
|
|
default:
|
|
pr_err("%s: invalid profiling command %llu\n", __func__, cmd);
|
|
ret = -1;
|
|
break;
|
|
}
|
|
return ret;
|
|
}
|
|
#endif
|