mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-11 09:55:24 +00:00
Replace the BSD-3-Clause boiler plate license text with an SPDX tag. Fixes: #189 Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
15 lines
317 B
C
15 lines
317 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PM_H
|
|
#define PM_H
|
|
|
|
void vm_setup_cpu_state(struct vm *vm);
|
|
int validate_pstate(struct vm *vm, uint64_t perf_ctl);
|
|
struct cpu_cx_data* get_target_cx(struct vm *vm, uint8_t cn);
|
|
|
|
#endif /* PM_H */
|