All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/16] Hyperlaunch device tree for dom0
@ 2025-04-08 16:07 Alejandro Vallejo
  2025-04-08 16:07 ` [PATCH v3 01/16] x86/boot: introduce boot domain Alejandro Vallejo
                   ` (16 more replies)
  0 siblings, 17 replies; 128+ messages in thread
From: Alejandro Vallejo @ 2025-04-08 16:07 UTC (permalink / raw)
  To: xen-devel
  Cc: Alejandro Vallejo, Jason Andryuk, Xenia Ragiadakou,
	Stefano Stabellini, Michal Orzel, Jan Beulich, Andrew Cooper,
	Roger Pau Monné, Anthony PERARD, Julien Grall,
	Daniel P. Smith, Bertrand Marquis

Hi,

This is an updated version of the hyperlaunch DTB series, with pending
feedback addressed. Some parts (notably the way modules are located) has
changed a little and is more generic with less duplication.

I've purposefully not added my S-by on anything I haven't touched
(besides rebasing) as most of the feedback had already been addressed by
Jason by the time I looked at it and it would be utterly nonsensical to
give myself authorship over it.

I'll be looking after the series moving forward.

v3 pipeline: https://gitlab.com/xen-project/people/agvallejo/xen/-/pipelines/1758167851

v2: https://lore.kernel.org/xen-devel/20241226165740.29812-1-dpsmith@apertussolutions.com/
v1: https://lore.kernel.org/xen-devel/20241123182044.30687-1-dpsmith@apertussolutions.com/

Cheers,
Alejandro

========= Original cover letter:

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.

=========

Alejandro Vallejo (1):
  x86/hyperlaunch: Add helpers to locate multiboot modules

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                     |   1 +
 xen/arch/x86/dom0_build.c                 |  19 +-
 xen/arch/x86/domain-builder/Kconfig       |  15 +
 xen/arch/x86/domain-builder/Makefile      |   2 +
 xen/arch/x86/domain-builder/core.c        | 112 ++++++
 xen/arch/x86/domain-builder/fdt.c         | 448 ++++++++++++++++++++++
 xen/arch/x86/domain-builder/fdt.h         |  53 +++
 xen/arch/x86/hvm/dom0_build.c             |  35 +-
 xen/arch/x86/include/asm/boot-domain.h    |  48 +++
 xen/arch/x86/include/asm/bootinfo.h       |  15 +-
 xen/arch/x86/include/asm/dom0_build.h     |   6 +-
 xen/arch/x86/include/asm/domain-builder.h |  12 +
 xen/arch/x86/include/asm/setup.h          |   4 +-
 xen/arch/x86/pv/dom0_build.c              |  28 +-
 xen/arch/x86/setup.c                      | 106 +++--
 xen/common/Kconfig                        |   4 +
 xen/common/Makefile                       |   2 +-
 xen/include/xen/libfdt/libfdt-xen.h       | 101 +++++
 19 files changed, 927 insertions(+), 86 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/boot-domain.h
 create mode 100644 xen/arch/x86/include/asm/domain-builder.h

-- 
2.43.0



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

end of thread, other threads:[~2025-04-17 11:51 UTC | newest]

Thread overview: 128+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-08 16:07 [PATCH v3 00/16] Hyperlaunch device tree for dom0 Alejandro Vallejo
2025-04-08 16:07 ` [PATCH v3 01/16] x86/boot: introduce boot domain Alejandro Vallejo
2025-04-09  6:24   ` Jan Beulich
2025-04-09 10:28     ` Alejandro Vallejo
2025-04-10 13:13       ` Daniel P. Smith
2025-04-10 20:56         ` Jason Andryuk
2025-04-10 13:09     ` Daniel P. Smith
2025-04-10 15:01       ` Jan Beulich
2025-04-10 20:56         ` Jason Andryuk
2025-04-16 13:02           ` Daniel P. Smith
2025-04-16 13:33             ` Jan Beulich
2025-04-16 14:00               ` Daniel P. Smith
2025-04-16 14:06                 ` Jan Beulich
2025-04-16 15:01                   ` Daniel P. Smith
2025-04-08 16:07 ` [PATCH v3 02/16] x86/boot: introduce domid field to struct boot_domain Alejandro Vallejo
2025-04-09  6:34   ` Jan Beulich
2025-04-09 10:33     ` Alejandro Vallejo
2025-04-10 16:18       ` Jason Andryuk
2025-04-08 16:07 ` [PATCH v3 03/16] x86/boot: add cmdline " Alejandro Vallejo
2025-04-09  6:48   ` Jan Beulich
2025-04-09 11:11     ` Alejandro Vallejo
2025-04-09 11:28       ` Alejandro Vallejo
2025-04-09 14:13         ` Jan Beulich
2025-04-09 14:00       ` Jan Beulich
2025-04-09 21:05   ` Denis Mukhin
2025-04-10 12:02     ` Alejandro Vallejo
2025-04-08 16:07 ` [PATCH v3 04/16] kconfig: introduce option to independently enable libfdt Alejandro Vallejo
2025-04-09 18:57   ` Denis Mukhin
2025-04-10 12:05     ` Alejandro Vallejo
2025-04-10  9:04   ` Jan Beulich
2025-04-10 12:04     ` Alejandro Vallejo
2025-04-08 16:07 ` [PATCH v3 05/16] kconfig: introduce domain builder config option Alejandro Vallejo
2025-04-10  9:08   ` Jan Beulich
2025-04-10 12:52     ` Alejandro Vallejo
2025-04-10 12:57       ` Jan Beulich
2025-04-08 16:07 ` [PATCH v3 06/16] x86/hyperlaunch: introduce the domain builder Alejandro Vallejo
2025-04-09 18:53   ` Denis Mukhin
2025-04-10  7:49     ` Jan Beulich
2025-04-10 13:01     ` Alejandro Vallejo
2025-04-10  9:39   ` Jan Beulich
2025-04-08 16:07 ` [PATCH v3 07/16] x86/hyperlaunch: initial support for hyperlaunch device tree Alejandro Vallejo
2025-04-10 10:10   ` Jan Beulich
2025-04-10 14:50     ` Alejandro Vallejo
2025-04-08 16:07 ` [PATCH v3 08/16] x86/hyperlaunch: Add helpers to locate multiboot modules Alejandro Vallejo
2025-04-10 10:42   ` Jan Beulich
2025-04-14 13:37     ` Alejandro Vallejo
2025-04-14 15:05       ` Jan Beulich
2025-04-14 18:01         ` Alejandro Vallejo
2025-04-15  6:05           ` Jan Beulich
2025-04-15 11:30             ` Alejandro Vallejo
2025-04-16 16:55             ` Nicola Vetrini
2025-04-17 11:50               ` Alejandro Vallejo
2025-04-14 19:09         ` Nicola Vetrini
2025-04-08 16:07 ` [PATCH v3 09/16] x86/hyperlaunch: locate dom0 kernel with hyperlaunch Alejandro Vallejo
2025-04-09 21:24   ` Denis Mukhin
2025-04-14 13:56     ` Alejandro Vallejo
2025-04-10 10:58   ` Jan Beulich
2025-04-14 13:58     ` Alejandro Vallejo
2025-04-08 16:07 ` [PATCH v3 10/16] x86/hyperlaunch: obtain cmdline from device tree Alejandro Vallejo
2025-04-09 22:04   ` Denis Mukhin
2025-04-14 14:54     ` Alejandro Vallejo
2025-04-10 11:12   ` Jan Beulich
2025-04-14 14:23     ` Alejandro Vallejo
2025-04-14 15:09       ` Jan Beulich
2025-04-08 16:07 ` [PATCH v3 11/16] x86/hyperlaunch: locate dom0 initrd with hyperlaunch Alejandro Vallejo
2025-04-09 22:07   ` Denis Mukhin
2025-04-14 15:03     ` Alejandro Vallejo
2025-04-10 11:34   ` Jan Beulich
2025-04-14 17:06     ` Alejandro Vallejo
2025-04-14 17:27       ` Alejandro Vallejo
2025-04-15  6:17         ` Jan Beulich
2025-04-15 11:59           ` Alejandro Vallejo
2025-04-15 14:11             ` Jan Beulich
2025-04-16 13:19             ` Daniel P. Smith
2025-04-15  6:12       ` Jan Beulich
2025-04-08 16:07 ` [PATCH v3 12/16] x86/hyperlaunch: add domain id parsing to domain config Alejandro Vallejo
2025-04-09 22:15   ` Denis Mukhin
2025-04-14 18:07     ` Alejandro Vallejo
2025-04-15  0:28       ` Stefano Stabellini
2025-04-15  6:21       ` Jan Beulich
2025-04-15 11:37         ` Alejandro Vallejo
2025-04-15 14:13           ` Jan Beulich
2025-04-10 11:49   ` Jan Beulich
2025-04-14 18:35     ` Alejandro Vallejo
2025-04-15  6:27       ` Jan Beulich
2025-04-15 12:05         ` Alejandro Vallejo
2025-04-15 14:16           ` Jan Beulich
2025-04-08 16:07 ` [PATCH v3 13/16] x86/hyperlaunch: specify dom0 mode with device tree Alejandro Vallejo
2025-04-09 22:24   ` Denis Mukhin
2025-04-10 11:55     ` Jan Beulich
2025-04-14 18:45     ` Alejandro Vallejo
2025-04-10 11:57   ` Jan Beulich
2025-04-16 13:32     ` Daniel P. Smith
2025-04-16 13:38       ` Jan Beulich
2025-04-16 14:09         ` Daniel P. Smith
2025-04-16 14:24           ` Jan Beulich
2025-04-08 16:07 ` [PATCH v3 14/16] x86/hyperlaunch: add memory parsing to domain config Alejandro Vallejo
2025-04-09 22:29   ` Denis Mukhin
2025-04-14 18:49     ` Alejandro Vallejo
2025-04-10 12:03   ` Jan Beulich
2025-04-14 18:59     ` Alejandro Vallejo
2025-04-16 13:37     ` Daniel P. Smith
2025-04-16 13:41       ` Jan Beulich
2025-04-16 14:12         ` Daniel P. Smith
2025-04-16 14:27           ` Jan Beulich
2025-04-08 16:07 ` [PATCH v3 15/16] x86/hyperlaunch: add max vcpu parsing of hyperlaunch device tree Alejandro Vallejo
2025-04-09 22:33   ` Denis Mukhin
2025-04-14 19:07     ` Alejandro Vallejo
2025-04-10 12:08   ` Jan Beulich
2025-04-14 19:12     ` Alejandro Vallejo
2025-04-16 13:42     ` Daniel P. Smith
2025-04-16 13:54       ` Alejandro Vallejo
2025-04-16 14:16         ` Daniel P. Smith
2025-04-16 13:54       ` Jan Beulich
2025-04-16 14:19         ` Daniel P. Smith
2025-04-16 14:31           ` Jan Beulich
2025-04-08 16:07 ` [PATCH v3 16/16] x86/hyperlaunch: add capabilities to boot domain Alejandro Vallejo
2025-04-09 22:39   ` Denis Mukhin
2025-04-14 19:17     ` Alejandro Vallejo
2025-04-10 12:18   ` Jan Beulich
2025-04-10 12:18   ` Jan Beulich
2025-04-14 19:31     ` Alejandro Vallejo
2025-04-15  6:38       ` Jan Beulich
2025-04-15 12:22         ` Alejandro Vallejo
2025-04-15 14:20           ` Jan Beulich
2025-04-09  6:29 ` [PATCH v3 00/16] Hyperlaunch device tree for dom0 Jan Beulich
2025-04-09 10:19   ` Alejandro Vallejo
2025-04-09 10:39     ` Alejandro Vallejo

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.