mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-04 06:26:54 +00:00
There are chances that names with leading underscore declared by developers are conflict with the ones reserved for the compiler. What this patch does: - rename these functions/variables/macros starting with underscore to avoid such unintentational mistakes. - remove gpr.h without any contents Tracked-On: #861 Signed-off-by: Shiqing Gao <shiqing.gao@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
27 lines
498 B
C
27 lines
498 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef UCODE_H
|
|
#define UCODE_H
|
|
|
|
struct ucode_header {
|
|
uint32_t header_ver;
|
|
uint32_t update_ver;
|
|
uint32_t date;
|
|
uint32_t proc_sig;
|
|
uint32_t checksum;
|
|
uint32_t loader_ver;
|
|
uint32_t proc_flags;
|
|
uint32_t data_size;
|
|
uint32_t total_size;
|
|
uint32_t reserved[3];
|
|
};
|
|
|
|
void acrn_update_ucode(struct vcpu *vcpu, uint64_t v);
|
|
uint64_t get_microcode_version(void);
|
|
|
|
#endif /* UCODE_H */
|