All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v12 00/10] x86: multiboot2 protocol support
@ 2017-01-20  1:34 Daniel Kiper
  2017-01-20  1:34 ` [PATCH v12 01/10] x86/boot: implement early command line parser in C Daniel Kiper
                   ` (11 more replies)
  0 siblings, 12 replies; 51+ messages in thread
From: Daniel Kiper @ 2017-01-20  1:34 UTC (permalink / raw)
  To: xen-devel
  Cc: jgross, sstabellini, konrad.wilk, andrew.cooper3, cardoe,
	pgnet.dev, ning.sun, julien.grall, jbeulich, qiaowei.ren,
	gang.wei, fu.wei

Hi,

I am sending twelfth version of multiboot2 protocol support for
legacy BIOS and EFI platforms. This patch series release contains
fixes for all known/confirmed 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 v11:
  - changed patches: 02, 05, 08, 10.

Patch "x86/boot: implement early command line parser in C" was moved
to the beginning of this patch series. It was requested by Jan.

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             |    6 +-
 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          |  543 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------
 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/efi/Makefile         |   12 +-
 xen/arch/x86/efi/efi-boot.h       |   72 ++++++++---
 xen/arch/x86/efi/stub.c           |   38 ++++++
 xen/arch/x86/setup.c              |   24 ++--
 xen/arch/x86/x86_64/asm-offsets.c |   15 +++
 xen/arch/x86/xen.lds.S            |   13 +-
 xen/common/efi/boot.c             |   64 ++++++++++
 xen/common/efi/runtime.c          |    9 ++
 xen/include/asm-x86/config.h      |    5 +
 xen/include/asm-x86/page.h        |    2 +-
 xen/include/xen/config.h          |    1 +
 xen/include/xen/multiboot2.h      |  182 ++++++++++++++++++++++++++++
 27 files changed, 1491 insertions(+), 513 deletions(-)

Daniel Kiper (10):
      x86/boot: implement early command line parser in C
      x86: add multiboot2 protocol support
      efi: build xen.gz with EFI code
      efi: create new early memory allocator
      x86: add multiboot2 protocol support for EFI platforms
      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

^ permalink raw reply	[flat|nested] 51+ messages in thread

end of thread, other threads:[~2017-01-23 18:17 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-20  1:34 [PATCH v12 00/10] x86: multiboot2 protocol support Daniel Kiper
2017-01-20  1:34 ` [PATCH v12 01/10] x86/boot: implement early command line parser in C Daniel Kiper
2017-01-20 16:37   ` Doug Goldstein
2017-01-20 16:41     ` Doug Goldstein
2017-01-20  1:34 ` [PATCH v12 02/10] x86: add multiboot2 protocol support Daniel Kiper
2017-01-20 16:52   ` Andrew Cooper
2017-01-20 17:24     ` Daniel Kiper
2017-01-20 18:07       ` Andrew Cooper
2017-01-20 19:01   ` Doug Goldstein
2017-01-20  1:34 ` [PATCH v12 03/10] efi: build xen.gz with EFI code Daniel Kiper
2017-01-20  1:34 ` [PATCH v12 04/10] efi: create new early memory allocator Daniel Kiper
2017-01-20  1:34 ` [PATCH v12 05/10] x86: add multiboot2 protocol support for EFI platforms Daniel Kiper
2017-01-20  4:37   ` Doug Goldstein
2017-01-20  9:46   ` Jan Beulich
2017-01-20 11:43     ` Daniel Kiper
2017-01-20 12:40       ` Jan Beulich
2017-01-20 13:46         ` Daniel Kiper
2017-01-20 14:10           ` Jan Beulich
2017-01-20 14:43             ` Daniel Kiper
2017-01-20 15:23               ` Jan Beulich
2017-01-20 19:04   ` Doug Goldstein
2017-01-20 19:05     ` Andrew Cooper
2017-01-20 19:34   ` Doug Goldstein
2017-01-20 21:42     ` Daniel Kiper
2017-01-20  1:34 ` [PATCH v12 06/10] x86: change default load address from 1 MiB to 2 MiB Daniel Kiper
2017-01-20  4:06   ` Doug Goldstein
2017-01-20  8:49     ` Jan Beulich
2017-01-20 10:29       ` Daniel Kiper
2017-01-20  1:34 ` [PATCH v12 07/10] x86/setup: use XEN_IMG_OFFSET instead of Daniel Kiper
2017-01-20  4:07   ` Doug Goldstein
2017-01-20  1:34 ` [PATCH v12 08/10] x86: make Xen early boot code relocatable Daniel Kiper
2017-01-20  1:34 ` [PATCH v12 09/10] x86/boot: rename sym_phys() to sym_offs() Daniel Kiper
2017-01-20  4:08   ` Doug Goldstein
2017-01-20  1:34 ` [PATCH v12 10/10] x86: add multiboot2 protocol support for relocatable images Daniel Kiper
2017-01-20  4:08   ` Doug Goldstein
2017-01-20 16:22 ` [PATCH v12 00/10] x86: multiboot2 protocol support Doug Goldstein
2017-01-20 17:21   ` Daniel Kiper
2017-01-20 18:53     ` Doug Goldstein
2017-01-20 19:28     ` Doug Goldstein
2017-01-20 19:42 ` Doug Goldstein
2017-01-20 19:52   ` Doug Goldstein
2017-01-20 20:01   ` Konrad Rzeszutek Wilk
2017-01-20 21:54   ` Daniel Kiper
2017-01-23 13:08     ` Daniel Kiper
2017-01-23 14:28       ` Konrad Rzeszutek Wilk
2017-01-23 16:03         ` Doug Goldstein
2017-01-23 18:12           ` Daniel Kiper
2017-01-23 15:35       ` Doug Goldstein
2017-01-23 15:45         ` Daniel Kiper
2017-01-23 16:07           ` Doug Goldstein
2017-01-23 18:16             ` Daniel Kiper

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.