mbox series

[v2,0/2] Rebranding dom0less to hyperlaunch part 1

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

Message

Daniel P. Smith Aug. 3, 2023, 10:44 a.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.

Changes in v2
 - removed original function declarations from arch/arm/include/asm/setup.h
 - corrected the new F: entries in the FDT section of MAINTAINERS
 - alphabetized the F: entries in the FDT section of MAINTAINERS

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

 MAINTAINERS                                   |  17 +-
 .../designs/launch/hyperlaunch-devicetree.rst | 566 ++++++++++--------
 xen/arch/arm/bootfdt.c                        | 141 +----
 xen/arch/arm/domain_build.c                   |   1 +
 xen/arch/arm/include/asm/setup.h              |   6 -
 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 +++
 10 files changed, 555 insertions(+), 465 deletions(-)
 create mode 100644 xen/common/fdt.c
 create mode 100644 xen/include/xen/fdt.h