mbox series

[0/2] Rebranding dom0less to hyperlaunch part 1

Message ID 20230801161409.25905-1-dpsmith@apertussolutions.com (mailing list archive)
Headers show
Series Rebranding dom0less to hyperlaunch part 1 | expand

Message

Daniel P. Smith Aug. 1, 2023, 4:14 p.m. UTC
This is the first series of the proposal put forth on moving to have dom0less
folded under and thus rebranded as a part of hyperlaunch. As laid out in the
proposal, the series updates the hyperlaunch device tree documentation and
applies the general refactoring of FDT parsing to make core logic common.

Daniel P. Smith (2):
  docs: update hyperlaunch device tree
  fdt: make fdt handling reusable across arch

 MAINTAINERS                                   |  11 +
 .../designs/launch/hyperlaunch-devicetree.rst | 566 ++++++++++--------
 xen/arch/arm/bootfdt.c                        | 141 +----
 xen/common/Kconfig                            |   4 +
 xen/common/Makefile                           |   3 +-
 xen/common/fdt.c                              | 153 +++++
 xen/include/xen/device_tree.h                 |  50 +-
 xen/include/xen/fdt.h                         |  79 +++
 8 files changed, 551 insertions(+), 456 deletions(-)
 create mode 100644 xen/common/fdt.c
 create mode 100644 xen/include/xen/fdt.h