mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-12 18:34:24 +00:00
Remove redundancy code since they are not used now. -- remove 'max_ram_blk_base' & 'max_ram_blk_size' in struct e820_mem_params -- remove 'gpa_lowtop' in struct vm_hw_info -- remove MACRO 'UOS_DEFAULT_START_ADDR' Tracked-On: #1842 Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
35 lines
710 B
C
35 lines
710 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/************************************************************************
|
|
*
|
|
* FILE NAME
|
|
*
|
|
* bsp_extern.h
|
|
*
|
|
* DESCRIPTION
|
|
*
|
|
* This file defines the generic BSP interface
|
|
*
|
|
************************************************************************/
|
|
#ifndef BSP_EXTERN_H
|
|
#define BSP_EXTERN_H
|
|
|
|
#include "default_acpi_info.h"
|
|
#include "platform_acpi_info.h"
|
|
|
|
/* BSP Interfaces */
|
|
void init_bsp(void);
|
|
uint64_t bsp_get_ap_trampoline(void);
|
|
void *bsp_get_rsdp(void);
|
|
void bsp_init_irq(void);
|
|
|
|
#ifndef CONFIG_CONSTANT_ACPI
|
|
void acpi_fixup(void);
|
|
#endif
|
|
|
|
#endif /* BSP_EXTERN_H */
|