[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 00/18] xen: add pvh guest support
From: |
Juergen Gross |
Subject: |
[PATCH v2 00/18] xen: add pvh guest support |
Date: |
Tue, 9 Oct 2018 13:02:59 +0200 |
This patch series adds support for booting Linux as PVH guest.
Similar to i386/xen and x86_64/xen platforms the new i386/xenpvh
platform grub is booted as a standalone image directly by Xen.
For booting Linux kernel it is using the standard linux kernel
loader. The only modification of the linux loader is to pass the
ACPI RSDP address via boot parameters to the kernel, as that table
might not be located at the usual physical address just below 1MB.
As the related Linux kernel patches are not yet accepted please
wait for this to happen before applying the series. This Linux kernel
series is available under:
https://lists.xen.org/archives/html/xen-devel/2018-10/msg00776.html
Changes in V2:
- extend linux boot protocol version 2.14 to report back the protocol
version supported by grub2 (needed as there are grub2 downstream
variants in some distros which clobber data after the setup_header)
- split former patch 4 into 10 patches
- fix memmap handling for >4GB of memory
- added new patch from Hans (thanks for that one)
- addressed most of Daniel's comments (see individual patches)
Hans van Kranenburg (1):
grub-module-verifier: Ignore all_video for xenpvh
Juergen Gross (17):
xen: add some xen headers
loader/linux: support passing rsdp address via boot params
xen: carve out grant tab initialization into dedicated function
xen: prepare common code for Xen PVH support
xen: add some dummy headers for PVH mode
xen: rearrange xen/init.c to prepare it for Xen PVH mode
xen: add PVH specific defines to offset.h
xen: add basic hooks for PVH in current code
xen: add PVH boot entry code
xen: setup hypercall page for PVH
xen: get memory map from hypervisor for PVH
xen: setup Xen specific data for PVH
xen: init memory regions for PVH
xenpvh: add build runes for grub-core
xenpvh: support building a standalone image
xenpvh: support grub-install for xenpvh
xenpvh: add support to configure
configure.ac | 3 +
gentpl.py | 4 +-
grub-core/Makefile.am | 12 +
grub-core/Makefile.core.def | 35 ++
grub-core/kern/i386/tsc.c | 2 +-
grub-core/kern/i386/xen/pvh.c | 346 ++++++++++++++++++
grub-core/kern/i386/xen/startup_pvh.S | 79 ++++
grub-core/kern/xen/init.c | 101 ++++--
grub-core/loader/i386/linux.c | 9 +
include/grub/i386/linux.h | 5 +-
include/grub/i386/pc/int.h | 3 +
include/grub/i386/tsc.h | 2 +-
include/grub/i386/xen/hypercall.h | 5 +-
include/grub/i386/xenpvh/boot.h | 1 +
include/grub/i386/xenpvh/console.h | 1 +
include/grub/i386/xenpvh/int.h | 1 +
include/grub/i386/xenpvh/kernel.h | 30 ++
include/grub/i386/xenpvh/memory.h | 1 +
include/grub/i386/xenpvh/time.h | 1 +
include/grub/kernel.h | 4 +-
include/grub/offsets.h | 21 +-
include/grub/util/install.h | 1 +
include/grub/util/mkimage.h | 3 +-
include/grub/xen.h | 6 +
include/xen/hvm/hvm_op.h | 296 +++++++++++++++
include/xen/hvm/params.h | 284 +++++++++++++++
include/xen/hvm/start_info.h | 98 +++++
include/xen/memory.h | 665 ++++++++++++++++++++++++++++++++++
include/xen/physdev.h | 387 ++++++++++++++++++++
include/xen/trace.h | 339 +++++++++++++++++
include/xen/xen.h | 104 ++++--
util/grub-install-common.c | 1 +
util/grub-install.c | 7 +
util/grub-mkimage32.c | 4 +-
util/grub-mkimage64.c | 4 +-
util/grub-mkimagexx.c | 58 ++-
util/grub-module-verifier.c | 1 +
util/mkimage.c | 23 +-
38 files changed, 2846 insertions(+), 101 deletions(-)
create mode 100644 grub-core/kern/i386/xen/pvh.c
create mode 100644 grub-core/kern/i386/xen/startup_pvh.S
create mode 100644 include/grub/i386/xenpvh/boot.h
create mode 100644 include/grub/i386/xenpvh/console.h
create mode 100644 include/grub/i386/xenpvh/int.h
create mode 100644 include/grub/i386/xenpvh/kernel.h
create mode 100644 include/grub/i386/xenpvh/memory.h
create mode 100644 include/grub/i386/xenpvh/time.h
create mode 100644 include/xen/hvm/hvm_op.h
create mode 100644 include/xen/hvm/params.h
create mode 100644 include/xen/hvm/start_info.h
create mode 100644 include/xen/memory.h
create mode 100644 include/xen/physdev.h
create mode 100644 include/xen/trace.h
--
2.16.4