[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH v3 00/16] x86: multiboot2 protocol support
Hi, I am sending, long awaited, third version of multiboot2 protocol support for legacy BIOS and EFI platforms. It fixes all major issues discovered until now. There are still some minor problems which should be fixed in one way or another. I will address them in next releases. The final goal is xen.efi binary file which could be loaded by EFI loader, multiboot (v1) protocol (only on legacy BIOS platforms) and multiboot2 protocol. This way we will have: - smaller Xen code base, - one code base for xen.gz and xen.efi, - one build method for xen.gz and xen.efi; xen.efi will be extracted from xen(-syms) file using objcopy or special custom tool, - xen.efi build will not so strongly depend on a given GCC and binutils version. Here are short list of changes: - new patches: 01, 07, 09, - changed patches: 02, 03, 04, 06, 08, 10, 11, 13, 14, 15, 16, - RFC patches: 12, 13, 15; if it is needed we could discuss at least #12 and #15 at Xen Project Hackathon in Cambridge. This patch series was build with following tools: - gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21) and binutils 2.17-3+etch1, - gcc version 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC) and binutils 2.23.2-2.el6, - gcc version 4.7.2 (Debian 4.7.2-5) and binutils 2.22-8, - gcc version 5.1.1 20150618 (Red Hat 5.1.1-4) (GCC) and binutils 2.25-9.fc22. I hope that starting from now there will be faster turnaround of this patch series. If you are not interested in this patch series at all please drop me a line and I will remove you from distribution list. Daniel .gitignore | 5 +- xen/arch/x86/Makefile | 8 +- xen/arch/x86/Rules.mk | 4 + xen/arch/x86/boot/Makefile | 10 +- xen/arch/x86/boot/build32.lds | 50 +++++++++ xen/arch/x86/boot/build32.mk | 14 ++- xen/arch/x86/boot/cmdline.S | 367 -------------------------------------------------------------- xen/arch/x86/boot/cmdline.c | 357 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ xen/arch/x86/boot/edd.S | 3 - xen/arch/x86/boot/head.S | 481 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------- xen/arch/x86/boot/reloc.c | 246 +++++++++++++++++++++++++++++++++++------- xen/arch/x86/boot/trampoline.S | 18 +++- xen/arch/x86/boot/video.S | 6 -- xen/arch/x86/boot/wakeup.S | 6 +- xen/arch/x86/boot/x86_64.S | 44 +++----- xen/arch/x86/dmi_scan.c | 4 +- xen/arch/x86/domain_page.c | 2 +- xen/arch/x86/efi/Makefile | 11 +- xen/arch/x86/efi/efi-boot.h | 81 ++++++++++++-- xen/arch/x86/efi/stub.c | 16 ++- xen/arch/x86/mpparse.c | 4 +- xen/arch/x86/setup.c | 61 ++++++----- xen/arch/x86/shutdown.c | 2 +- xen/arch/x86/time.c | 2 +- xen/arch/x86/x86_64/asm-offsets.c | 10 ++ xen/arch/x86/xen.lds.S | 7 +- xen/common/efi/boot.c | 19 ++++ xen/common/efi/runtime.c | 23 ++-- xen/drivers/acpi/osl.c | 2 +- xen/include/asm-x86/config.h | 1 + xen/include/asm-x86/page.h | 2 +- xen/include/xen/efi.h | 13 ++- xen/include/xen/multiboot2.h | 182 +++++++++++++++++++++++++++++++ 33 files changed, 1491 insertions(+), 570 deletions(-) Daniel Kiper (16): x86/boot: do not create unwind tables x86: zero BSS using stosl instead of stosb x86/boot: call reloc() using cdecl calling convention x86/boot/reloc: create generic alloc and copy functions x86/boot: use %ecx instead of %eax x86/boot/reloc: Rename some variables and rearrange code a bit x86/boot: create *.lnk files with linker script x86: add multiboot2 protocol support efi: explicitly define efi struct in xen/arch/x86/efi/stub.c efi: create efi_enabled() efi: build xen.gz with EFI code x86/efi: create new early memory allocator x86: add multiboot2 protocol support for EFI platforms x86/boot: implement early command line parser in C x86: make Xen early boot code relocatable x86: add multiboot2 protocol support for relocatable images _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |