All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] Hyperlaunch device tree for dom0
@ 2024-11-23 18:20 Daniel P. Smith
  2024-11-23 18:20 ` [PATCH 01/15] x86/boot: introduce boot domain Daniel P. Smith
                   ` (15 more replies)
  0 siblings, 16 replies; 86+ messages in thread
From: Daniel P. Smith @ 2024-11-23 18:20 UTC (permalink / raw)
  To: xen-devel
  Cc: Daniel P. Smith, jason.andryuk, christopher.w.clark,
	stefano.stabellini

The Hyperlaunch device tree for dom0 series is the second split out for the
introduction of the Hyperlaunch domain builder logic. These changes focus on
introducing the ability to express a domain configuration that is then used to
populate the struct boot_domain structure for dom0. This ability to express a
domain configuration provides the next step towards a general domain builder.

The splitting of Hyperlaunch into a set of series are twofold, to reduce the
effort in reviewing a much larger series, and to reduce the effort in handling
the knock-on effects to the construction logic from requested review changes.

Much thanks to AMD for supporting this work.

Documentation on Hyperlaunch:
https://wiki.xenproject.org/wiki/Hyperlaunch

Original Hyperlaunch v1 patch series:
https://lists.xenproject.org/archives/html/xen-devel/2022-07/msg00345.html

V/r,
Daniel P. Smith

Daniel P. Smith (15):
  x86/boot: introduce boot domain
  x86/boot: introduce domid field to struct boot_domain
  x86/boot: add cmdline to struct boot_domain
  kconfig: introduce option to independently enable libfdt
  kconfig: introduce domain builder config option
  x86/hyperlaunch: introduce the domain builder
  x86/hyperlaunch: initial support for hyperlaunch device tree
  x86/hyperlaunch: locate dom0 kernel with hyperlaunch
  x86/hyperlaunch: obtain cmdline from device tree
  x86/hyperlaunch: locate dom0 initrd with hyperlaunch
  x86/hyperlaunch: add domain id parsing to domain config
  x86/hyperlaunch: specify dom0 mode with device tree
  x86/hyperlaunch: add memory parsing to domain config
  x86/hyperlaunch: add max vcpu parsing of hyperlaunch device tree
  x86/hyperlaunch: add capabilities to boot domain

 xen/arch/x86/Kconfig                     |   2 +
 xen/arch/x86/Makefile                    |   2 +
 xen/arch/x86/dom0_build.c                |  19 +-
 xen/arch/x86/domain_builder/Kconfig      |  15 +
 xen/arch/x86/domain_builder/Makefile     |   3 +
 xen/arch/x86/domain_builder/core.c       | 109 +++++++
 xen/arch/x86/domain_builder/fdt.c        | 395 +++++++++++++++++++++++
 xen/arch/x86/domain_builder/fdt.h        |  94 ++++++
 xen/arch/x86/hvm/dom0_build.c            |  23 +-
 xen/arch/x86/include/asm/bootdomain.h    |  53 +++
 xen/arch/x86/include/asm/bootinfo.h      |  15 +-
 xen/arch/x86/include/asm/dom0_build.h    |   6 +-
 xen/arch/x86/include/asm/domainbuilder.h |  12 +
 xen/arch/x86/include/asm/setup.h         |   4 +-
 xen/arch/x86/pv/dom0_build.c             |  28 +-
 xen/arch/x86/setup.c                     | 140 +++++---
 xen/common/Kconfig                       |   4 +
 xen/common/Makefile                      |   2 +-
 18 files changed, 836 insertions(+), 90 deletions(-)
 create mode 100644 xen/arch/x86/domain_builder/Kconfig
 create mode 100644 xen/arch/x86/domain_builder/Makefile
 create mode 100644 xen/arch/x86/domain_builder/core.c
 create mode 100644 xen/arch/x86/domain_builder/fdt.c
 create mode 100644 xen/arch/x86/domain_builder/fdt.h
 create mode 100644 xen/arch/x86/include/asm/bootdomain.h
 create mode 100644 xen/arch/x86/include/asm/domainbuilder.h

-- 
2.30.2



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

end of thread, other threads:[~2024-12-26 16:16 UTC | newest]

Thread overview: 86+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-23 18:20 [PATCH 00/15] Hyperlaunch device tree for dom0 Daniel P. Smith
2024-11-23 18:20 ` [PATCH 01/15] x86/boot: introduce boot domain Daniel P. Smith
2024-12-02  9:57   ` Jan Beulich
2024-12-04 19:16     ` Daniel P. Smith
2024-11-23 18:20 ` [PATCH 02/15] x86/boot: introduce domid field to struct boot_domain Daniel P. Smith
2024-11-23 18:20 ` [PATCH 03/15] x86/boot: add cmdline " Daniel P. Smith
2024-11-25 15:36   ` Jason Andryuk
2024-12-11  2:56     ` Daniel P. Smith
2024-12-02  9:49   ` Jan Beulich
2024-12-11  3:01     ` Daniel P. Smith
2024-11-23 18:20 ` [PATCH 04/15] kconfig: introduce option to independently enable libfdt Daniel P. Smith
2024-11-25 15:42   ` Jason Andryuk
2024-12-11  3:03     ` Daniel P. Smith
2024-11-26 10:03   ` Jan Beulich
2024-11-26 10:05     ` Jan Beulich
2024-12-11  3:05       ` Daniel P. Smith
2024-12-11  3:04     ` Daniel P. Smith
2024-11-23 18:20 ` [PATCH 05/15] kconfig: introduce domain builder config option Daniel P. Smith
2024-11-25 17:55   ` Jason Andryuk
2024-12-11  3:13     ` Daniel P. Smith
2024-11-26 10:09   ` Jan Beulich
2024-12-11  3:15     ` Daniel P. Smith
2024-11-23 18:20 ` [PATCH 06/15] x86/hyperlaunch: introduce the domain builder Daniel P. Smith
2024-11-25 17:52   ` Jason Andryuk
2024-11-25 20:23     ` Jason Andryuk
2024-12-02  9:55     ` Jan Beulich
2024-12-02 15:31       ` Jason Andryuk
2024-12-11 11:14     ` Daniel P. Smith
2024-12-02 10:10   ` Jan Beulich
2024-12-11 12:36     ` Daniel P. Smith
2024-12-12 11:06       ` Jan Beulich
2024-12-12 15:24         ` Daniel P. Smith
2024-11-23 18:20 ` [PATCH 07/15] x86/hyperlaunch: initial support for hyperlaunch device tree Daniel P. Smith
2024-11-25 20:11   ` Jason Andryuk
2024-12-11 12:49     ` Daniel P. Smith
2024-12-02 11:37   ` Jan Beulich
2024-12-11 12:55     ` Daniel P. Smith
2024-11-23 18:20 ` [PATCH 08/15] x86/hyperlaunch: locate dom0 kernel with hyperlaunch Daniel P. Smith
2024-11-25 22:54   ` Jason Andryuk
2024-12-11 14:19     ` Daniel P. Smith
2024-12-02 11:53   ` Jan Beulich
2024-12-11 15:41     ` Daniel P. Smith
2024-12-12 11:25       ` Jan Beulich
2024-11-23 18:20 ` [PATCH 09/15] x86/hyperlaunch: obtain cmdline from device tree Daniel P. Smith
2024-11-25 23:12   ` Jason Andryuk
2024-12-11 15:46     ` Daniel P. Smith
2024-11-23 18:20 ` [PATCH 10/15] x86/hyperlaunch: locate dom0 initrd with hyperlaunch Daniel P. Smith
2024-11-25 23:34   ` Jason Andryuk
2024-12-11 15:49     ` Daniel P. Smith
2024-11-23 18:20 ` [PATCH 11/15] x86/hyperlaunch: add domain id parsing to domain config Daniel P. Smith
2024-11-25 23:45   ` Jason Andryuk
2024-12-02 12:00     ` Jan Beulich
2024-12-11 16:07       ` Daniel P. Smith
2024-12-11 16:06     ` Daniel P. Smith
2024-12-02 12:02   ` Jan Beulich
2024-12-11 16:21     ` Daniel P. Smith
2024-12-19 16:40       ` Daniel P. Smith
2024-11-23 18:20 ` [PATCH 12/15] x86/hyperlaunch: specify dom0 mode with device tree Daniel P. Smith
2024-11-25 23:52   ` Jason Andryuk
2024-12-11 16:24     ` Daniel P. Smith
2024-12-02 12:05   ` Jan Beulich
2024-12-11 16:31     ` Daniel P. Smith
2024-12-02 12:06   ` Jan Beulich
2024-12-11 17:48     ` Daniel P. Smith
2024-12-12 11:31       ` Jan Beulich
2024-11-23 18:20 ` [PATCH 13/15] x86/hyperlaunch: add memory parsing to domain config Daniel P. Smith
2024-11-26  0:03   ` Jason Andryuk
2024-12-11 17:59     ` Daniel P. Smith
2024-12-26 16:16       ` Daniel P. Smith
2024-12-02 12:14   ` Jan Beulich
2024-12-11 18:02     ` Daniel P. Smith
2024-12-12 11:34       ` Jan Beulich
2024-11-23 18:20 ` [PATCH 14/15] x86/hyperlaunch: add max vcpu parsing of hyperlaunch device tree Daniel P. Smith
2024-11-26  0:05   ` Jason Andryuk
2024-12-11 18:05     ` Daniel P. Smith
2024-12-02 12:19   ` Jan Beulich
2024-12-11 19:49     ` Daniel P. Smith
2024-12-12 11:37       ` Jan Beulich
2024-11-23 18:20 ` [PATCH 15/15] x86/hyperlaunch: add capabilities to boot domain Daniel P. Smith
2024-11-26  0:09   ` Jason Andryuk
2024-12-11 19:51     ` Daniel P. Smith
2024-12-02 12:23   ` Jan Beulich
2024-12-11 19:56     ` Daniel P. Smith
2024-12-12 11:40       ` Jan Beulich
2024-11-26  0:11 ` [PATCH 00/15] Hyperlaunch device tree for dom0 Jason Andryuk
2024-12-11 19:57   ` Daniel P. Smith

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.