From: Daniel Kiper <daniel.kiper@oracle.com>
To: xen-devel@lists.xenproject.org
Cc: jgross@suse.com, sstabellini@kernel.org,
andrew.cooper3@citrix.com, cardoe@cardoe.com,
pgnet.dev@gmail.com, ning.sun@intel.com, julien.grall@arm.com,
david.vrabel@citrix.com, jbeulich@suse.com,
qiaowei.ren@intel.com, gang.wei@intel.com, fu.wei@linaro.org
Subject: [PATCH v8 00/13] x86: multiboot2 protocol support
Date: Thu, 29 Sep 2016 00:51:19 +0200 [thread overview]
Message-ID: <1475103092-27893-1-git-send-email-daniel.kiper@oracle.com> (raw)
Hi,
I am sending eight version of multiboot2 protocol support for
legacy BIOS and EFI platforms. This patch series release contains
fixes for all known issues.
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 is short list of changes since v7:
- changed patches: 01, 04, 06, 07, 09, 11, 12.
Julien Grall raised some concerns in regards to EFI boot allocator
implementation on ARM. After some discussion with him and Jan I did
a few changes requested by them. Hence, I am asking especially ARM
guys to review patch #06 and check that everything is OK.
I hope that (at least some) features provided by this patch series
will be included in Xen 4.8 release in one way or another.
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 | 3 +
xen/arch/x86/boot/Makefile | 12 +-
xen/arch/x86/boot/build32.mk | 2 +
xen/arch/x86/boot/cmdline.S | 367 --------------------------------------------------------
xen/arch/x86/boot/cmdline.c | 340 ++++++++++++++++++++++++++++++++++++++++++++++++++++
xen/arch/x86/boot/defs.h | 58 +++++++++
xen/arch/x86/boot/edd.S | 3 -
xen/arch/x86/boot/head.S | 538 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------
xen/arch/x86/boot/reloc.c | 151 +++++++++++++++++++++--
xen/arch/x86/boot/trampoline.S | 22 +++-
xen/arch/x86/boot/video.S | 7 --
xen/arch/x86/boot/wakeup.S | 4 +-
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 | 12 +-
xen/arch/x86/efi/efi-boot.h | 65 +++++++---
xen/arch/x86/efi/stub.c | 48 +++++++-
xen/arch/x86/mpparse.c | 4 +-
xen/arch/x86/setup.c | 36 +++---
xen/arch/x86/shutdown.c | 5 +-
xen/arch/x86/time.c | 2 +-
xen/arch/x86/x86_64/asm-offsets.c | 15 +++
xen/arch/x86/xen.lds.S | 10 +-
xen/common/efi/boot.c | 83 ++++++++++++-
xen/common/efi/runtime.c | 23 +++-
xen/common/version.c | 2 +-
xen/drivers/acpi/osl.c | 2 +-
xen/include/asm-x86/page.h | 2 +-
xen/include/xen/efi.h | 9 +-
xen/include/xen/multiboot2.h | 182 ++++++++++++++++++++++++++++
33 files changed, 1531 insertions(+), 539 deletions(-)
Daniel Kiper (13):
x86: add multiboot2 protocol support
efi: create efi_enabled()
x86: allow EFI reboot method neither on EFI platforms...
x86: properly calculate xen ELF end of image address
efi: build xen.gz with EFI code
efi: create new early memory allocator
x86: add multiboot2 protocol support for EFI platforms
x86/boot: implement early command line parser in C
x86: change default load address from 1 MiB to 2 MiB
x86/setup: use XEN_IMG_OFFSET instead of...
x86: make Xen early boot code relocatable
x86/boot: rename sym_phys() to sym_offs()
x86: add multiboot2 protocol support for relocatable images
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next reply other threads:[~2016-09-28 22:52 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-28 22:51 Daniel Kiper [this message]
2016-09-28 22:51 ` [PATCH v8 01/13] x86: add multiboot2 protocol support Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 02/13] efi: create efi_enabled() Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 03/13] x86: allow EFI reboot method neither on EFI platforms Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 04/13] x86: properly calculate xen ELF end of image address Daniel Kiper
2016-09-29 7:34 ` Jan Beulich
2016-09-29 7:51 ` Daniel Kiper
2016-09-29 8:01 ` Jan Beulich
2016-09-29 8:17 ` Daniel Kiper
2016-09-29 8:34 ` Jan Beulich
2016-09-28 22:51 ` [PATCH v8 05/13] efi: build xen.gz with EFI code Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 06/13] efi: create new early memory allocator Daniel Kiper
2016-09-29 7:40 ` Jan Beulich
2016-09-29 8:08 ` Daniel Kiper
2016-09-29 12:47 ` Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 07/13] x86: add multiboot2 protocol support for EFI platforms Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 08/13] x86/boot: implement early command line parser in C Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 09/13] x86: change default load address from 1 MiB to 2 MiB Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 10/13] x86/setup: use XEN_IMG_OFFSET instead of Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 11/13] x86: make Xen early boot code relocatable Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 12/13] x86/boot: rename sym_phys() to sym_offs() Daniel Kiper
2016-09-28 22:51 ` [PATCH v8 13/13] x86: add multiboot2 protocol support for relocatable images Daniel Kiper
2016-09-29 7:46 ` Jan Beulich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1475103092-27893-1-git-send-email-daniel.kiper@oracle.com \
--to=daniel.kiper@oracle.com \
--cc=andrew.cooper3@citrix.com \
--cc=cardoe@cardoe.com \
--cc=david.vrabel@citrix.com \
--cc=fu.wei@linaro.org \
--cc=gang.wei@intel.com \
--cc=jbeulich@suse.com \
--cc=jgross@suse.com \
--cc=julien.grall@arm.com \
--cc=ning.sun@intel.com \
--cc=pgnet.dev@gmail.com \
--cc=qiaowei.ren@intel.com \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).