mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-12 12:30:08 +00:00
hv/acrn-config/efi-stuf: assign hvlog and ramoops buffer address < 256MB
If HV relocation is enabled, either ACRN efi-stub or GRUB relocates hypervisor image above HPA 256MB, thus we put hvlog and ramoops buffer under 256MB to avoid conflict with hypervisor owned address. This patch hardcodes these addresses: 0xa00000 - 0xdfffff: 4MiB for ramoops buffer 0xe00000 - 0xffffff: 2MiB for hvlog buffer However, user can customize them to other addresses as long as it's under 256MB, available in host e820, and SOS bootarg "nokaslr" is not specified. If HV relocation is disabled, need to make sure that these buffer addresses are not between HV_RAM_START and HV_RAM_START + HV_RAM_SIZE. Tracked-On: #4760 Signed-off-by: Zide Chen <zide.chen@intel.com> Reviewed-by: Jason Chen CJ <jason.cj.chen@intel.com>
This commit is contained in:
@@ -21,10 +21,9 @@
|
||||
#define SOS_COM2_IRQ 10U
|
||||
|
||||
#ifndef CONFIG_RELEASE
|
||||
#define BOOTARG_DEBUG "hvlog=2M@0x6de00000 " \
|
||||
"memmap=0x200000$0x6de00000 " \
|
||||
"memmap=0x400000$0x6da00000 " \
|
||||
"ramoops.mem_address=0x6da00000 " \
|
||||
#define BOOTARG_DEBUG "hvlog=2M@0xe00000 " \
|
||||
"memmap=0x600000$0xa00000 " \
|
||||
"ramoops.mem_address=0xa00000 " \
|
||||
"ramoops.mem_size=0x400000 " \
|
||||
"ramoops.console_size=0x200000 " \
|
||||
"reboot_panic=p,w "
|
||||
|
@@ -21,10 +21,9 @@
|
||||
#define SOS_COM2_IRQ 3U
|
||||
|
||||
#ifndef CONFIG_RELEASE
|
||||
#define BOOTARG_DEBUG "hvlog=2M@0x5de00000 " \
|
||||
"memmap=0x200000$0x5de00000 " \
|
||||
"memmap=0x400000$0x5da00000 " \
|
||||
"ramoops.mem_address=0x5da00000 " \
|
||||
#define BOOTARG_DEBUG "hvlog=2M@0xe00000 " \
|
||||
"memmap=0x600000$0xa00000 " \
|
||||
"ramoops.mem_address=0xa00000 " \
|
||||
"ramoops.mem_size=0x400000 " \
|
||||
"ramoops.console_size=0x200000 " \
|
||||
"reboot_panic=p,w "
|
||||
|
@@ -20,8 +20,7 @@
|
||||
#define SOS_COM2_IRQ 3U
|
||||
|
||||
#ifndef CONFIG_RELEASE
|
||||
#define SOS_BOOTARGS_DIFF "hvlog=2M@0x1FE00000 " \
|
||||
"memmap=0x200000$0x1fe00000 "
|
||||
#define SOS_BOOTARGS_DIFF "hvlog=2M@0xE00000 memmap=0x200000$0xE00000 "
|
||||
#else
|
||||
#define SOS_BOOTARGS_DIFF ""
|
||||
#endif
|
||||
|
@@ -21,8 +21,7 @@
|
||||
#define SOS_COM2_IRQ 3U
|
||||
|
||||
#ifndef CONFIG_RELEASE
|
||||
#define SOS_BOOTARGS_DIFF "hvlog=2M@0x1FE00000 " \
|
||||
"memmap=0x200000$0x1fe00000 "
|
||||
#define SOS_BOOTARGS_DIFF "hvlog=2M@0xE00000 memmap=0x200000$0xE00000 "
|
||||
#else
|
||||
#define SOS_BOOTARGS_DIFF ""
|
||||
#endif
|
||||
|
@@ -20,8 +20,7 @@
|
||||
#define SOS_COM2_IRQ 3U
|
||||
|
||||
#ifndef CONFIG_RELEASE
|
||||
#define SOS_BOOTARGS_DIFF "hvlog=2M@0x1FE00000 " \
|
||||
"memmap=0x200000$0x1fe00000 "
|
||||
#define SOS_BOOTARGS_DIFF "hvlog=2M@0xE00000 memmap=0x200000$0xE00000 "
|
||||
#else
|
||||
#define SOS_BOOTARGS_DIFF ""
|
||||
#endif
|
||||
|
@@ -21,8 +21,7 @@
|
||||
#define SOS_COM2_IRQ 3U
|
||||
|
||||
#ifndef CONFIG_RELEASE
|
||||
#define SOS_BOOTARGS_DIFF "hvlog=2M@0x1FE00000 " \
|
||||
"memmap=0x200000$0x1fe00000 "
|
||||
#define SOS_BOOTARGS_DIFF "hvlog=2M@0xE00000 memmap=0x200000$0xE00000 "
|
||||
#else
|
||||
#define SOS_BOOTARGS_DIFF ""
|
||||
#endif
|
||||
|
@@ -22,8 +22,7 @@
|
||||
#define SOS_COM2_IRQ 3U
|
||||
|
||||
#ifndef CONFIG_RELEASE
|
||||
#define SOS_BOOTARGS_DIFF "hvlog=2M@0x1FE00000 " \
|
||||
"memmap=0x200000$0x1fe00000 "
|
||||
#define SOS_BOOTARGS_DIFF "hvlog=2M@0xE00000 memmap=0x200000$0xE00000 "
|
||||
#else
|
||||
#define SOS_BOOTARGS_DIFF ""
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user