2018-03-06 21:22:30 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
|
|
*
|
2018-05-26 01:49:13 +08:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2018-03-06 21:22:30 +08:00
|
|
|
*/
|
|
|
|
|
2018-09-29 15:46:27 +08:00
|
|
|
#ifndef UCODE_H
|
|
|
|
#define UCODE_H
|
2018-03-06 21:22:30 +08:00
|
|
|
|
|
|
|
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];
|
|
|
|
};
|
|
|
|
|
2018-11-05 13:25:25 +08:00
|
|
|
void acrn_update_ucode(struct acrn_vcpu *vcpu, uint64_t v);
|
2018-03-06 21:22:30 +08:00
|
|
|
uint64_t get_microcode_version(void);
|
|
|
|
|
2018-09-29 15:46:27 +08:00
|
|
|
#endif /* UCODE_H */
|