xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 00/24] Prepare UEFI and ACPI tables for Dom0 on ARM64
@ 2016-02-28 11:18 Shannon Zhao
  2016-02-28 11:18 ` [PATCH v4 01/24] arm/acpi: Define a enum for reserved tables Shannon Zhao
                   ` (23 more replies)
  0 siblings, 24 replies; 73+ messages in thread
From: Shannon Zhao @ 2016-02-28 11:18 UTC (permalink / raw)
  To: xen-devel
  Cc: peter.huangpeng, zhaoshenglong, stefano.stabellini, ian.campbell,
	shannon.zhao

From: Shannon Zhao <shannon.zhao@linaro.org>

These patches are Part 4 (and last part) of the previous patch set I
sent which adds ACPI support for arm64 on Xen[1]. Split them as an
individual set for convenient reviewing.

These patches create UEFI and ACPI tables which are mapped to Dom0's
space and add other preparations for Dom0 to use ACPI. Then at last
enable ACPI support on ARM64.

See individual patch for changes.

Thanks,
Shannon
[1] http://lists.xenproject.org/archives/html/xen-devel/2015-11/msg01831.html

Naresh Bhat (1):
  xen/arm64: Add ACPI support

Parth Dixit (2):
  arm/acpi: Read acpi memory info from uefi
  arm/p2m: Add helper functions to map memory regions

Shannon Zhao (21):
  arm/acpi: Define a enum for reserved tables
  arm/acpi: Add placeholder for efi and acpi load address
  arm/acpi: Estimate memory required for acpi/efi tables
  arm/acpi: Add a helper function to get the acpi table offset
  arm/acpi: Prepare FADT table for Dom0
  arm/gic: Add a new callback for creating MADT table for Dom0
  arm/acpi: Prepare MADT table for Dom0
  arm/acpi: Prepare STAO table for Dom0
  arm/acpi: Prepare XSDT table for Dom0
  arm/acpi: Prepare RSDP table for Dom0
  arm/acpi: Map all other tables for Dom0
  arm/acpi: Prepare EFI system table for Dom0
  arm/acpi: Prepare EFI memory descriptor for Dom0
  arm/acpi: Map the new created EFI and ACPI tables to Dom0
  arm/acpi: Create min DT stub for Dom0
  arm/acpi: Permit access all Xen unused SPIs for Dom0
  arm/acpi: Configure SPI interrupt type and route to Dom0 dynamically
  arm/acpi: Permit MMIO access of Xen unused devices for Dom0
  hvm/params: Add a new dilivery type for event-channel in
    HVM_PARAM_CALLBACK_IRQ
  xen/acpi: Fix event-channel interrupt when booting with ACPI
  xen/arm: Add a hypercall for device mmio mapping

 docs/misc/arm/device-tree/xen.txt |  58 ++++
 xen/arch/arm/Kconfig              |   1 +
 xen/arch/arm/acpi/lib.c           |  14 +
 xen/arch/arm/domain.c             |   4 +
 xen/arch/arm/domain_build.c       | 583 +++++++++++++++++++++++++++++++++++++-
 xen/arch/arm/efi/efi-boot.h       |  23 ++
 xen/arch/arm/gic-v2.c             |  34 +++
 xen/arch/arm/gic-v3.c             |  47 +++
 xen/arch/arm/gic.c                |   5 +
 xen/arch/arm/mm.c                 |   4 +
 xen/arch/arm/p2m.c                |  49 ++++
 xen/arch/arm/vgic.c               |  32 +++
 xen/common/efi/boot.c             | 149 ++++++++++
 xen/common/efi/runtime.c          |   8 +-
 xen/common/memory.c               |  14 +
 xen/include/asm-arm/acpi.h        |  14 +
 xen/include/asm-arm/config.h      |   5 +
 xen/include/asm-arm/domain.h      |   5 +
 xen/include/asm-arm/gic.h         |   3 +
 xen/include/asm-arm/p2m.h         |  15 +
 xen/include/asm-arm/setup.h       |  12 +
 xen/include/public/hvm/params.h   |   9 +
 xen/include/public/memory.h       |   1 +
 23 files changed, 1086 insertions(+), 3 deletions(-)
 create mode 100644 docs/misc/arm/device-tree/xen.txt

-- 
2.0.4



_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

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

end of thread, other threads:[~2016-03-04 10:46 UTC | newest]

Thread overview: 73+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-28 11:18 [PATCH v4 00/24] Prepare UEFI and ACPI tables for Dom0 on ARM64 Shannon Zhao
2016-02-28 11:18 ` [PATCH v4 01/24] arm/acpi: Define a enum for reserved tables Shannon Zhao
2016-02-29 14:02   ` Stefano Stabellini
2016-02-29 15:16   ` Jan Beulich
2016-02-28 11:18 ` [PATCH v4 02/24] arm/acpi: Add placeholder for efi and acpi load address Shannon Zhao
2016-02-29 14:01   ` Stefano Stabellini
2016-02-28 11:18 ` [PATCH v4 03/24] arm/acpi: Read acpi memory info from uefi Shannon Zhao
2016-02-29 14:57   ` Jan Beulich
2016-02-29 15:07     ` Stefano Stabellini
2016-02-29 15:20       ` Jan Beulich
2016-02-28 11:19 ` [PATCH v4 04/24] arm/acpi: Estimate memory required for acpi/efi tables Shannon Zhao
2016-02-29 11:11   ` Jan Beulich
2016-02-29 12:13   ` Stefano Stabellini
2016-03-01  2:09     ` Shannon Zhao
2016-03-01 14:41       ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 05/24] arm/acpi: Add a helper function to get the acpi table offset Shannon Zhao
2016-02-29 12:17   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 06/24] arm/acpi: Prepare FADT table for Dom0 Shannon Zhao
2016-02-29 12:22   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 07/24] arm/gic: Add a new callback for creating MADT " Shannon Zhao
2016-02-29 12:50   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 08/24] arm/acpi: Prepare " Shannon Zhao
2016-02-29 12:52   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 09/24] arm/acpi: Prepare STAO " Shannon Zhao
2016-02-29 14:07   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 10/24] arm/acpi: Prepare XSDT " Shannon Zhao
2016-02-28 11:19 ` [PATCH v4 11/24] arm/acpi: Prepare RSDP " Shannon Zhao
2016-02-28 11:19 ` [PATCH v4 12/24] arm/p2m: Add helper functions to map memory regions Shannon Zhao
2016-02-29 14:11   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 13/24] arm/acpi: Map all other tables for Dom0 Shannon Zhao
2016-02-29 14:15   ` Stefano Stabellini
2016-02-29 19:06     ` Shannon Zhao
2016-03-01 15:28       ` Stefano Stabellini
2016-03-01 17:01         ` Stefano Stabellini
2016-03-02 12:43           ` Shannon Zhao
2016-03-02 15:00             ` Stefano Stabellini
2016-03-02 16:00               ` Jan Beulich
2016-02-28 11:19 ` [PATCH v4 14/24] arm/acpi: Prepare EFI system table " Shannon Zhao
2016-02-29 11:19   ` Jan Beulich
2016-02-29 14:25     ` Stefano Stabellini
2016-02-29 14:36       ` Jan Beulich
2016-02-29 14:39         ` Stefano Stabellini
2016-03-01  2:35         ` Shannon Zhao
2016-03-01  9:27           ` Jan Beulich
2016-03-01 12:49             ` Stefano Stabellini
2016-03-04  3:55               ` Shannon Zhao
2016-03-04 10:46                 ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 15/24] arm/acpi: Prepare EFI memory descriptor " Shannon Zhao
2016-02-29 14:37   ` Stefano Stabellini
2016-03-01  3:00     ` Shannon Zhao
2016-03-01 14:57       ` Stefano Stabellini
2016-03-01 15:07         ` Jan Beulich
2016-02-28 11:19 ` [PATCH v4 16/24] arm/acpi: Map the new created EFI and ACPI tables to Dom0 Shannon Zhao
2016-02-29 14:42   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 17/24] arm/acpi: Create min DT stub for Dom0 Shannon Zhao
2016-02-29 15:05   ` Stefano Stabellini
2016-03-03 12:31     ` Shannon Zhao
2016-02-28 11:19 ` [PATCH v4 18/24] arm/acpi: Permit access all Xen unused SPIs " Shannon Zhao
2016-02-29 15:13   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 19/24] arm/acpi: Configure SPI interrupt type and route to Dom0 dynamically Shannon Zhao
2016-02-29 16:58   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 20/24] arm/acpi: Permit MMIO access of Xen unused devices for Dom0 Shannon Zhao
2016-02-29 17:02   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 21/24] hvm/params: Add a new dilivery type for event-channel in HVM_PARAM_CALLBACK_IRQ Shannon Zhao
2016-02-29 11:23   ` Jan Beulich
2016-02-29 17:04   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 22/24] xen/acpi: Fix event-channel interrupt when booting with ACPI Shannon Zhao
2016-02-29 17:08   ` Stefano Stabellini
2016-02-28 11:19 ` [PATCH v4 23/24] xen/arm: Add a hypercall for device mmio mapping Shannon Zhao
2016-02-29 11:32   ` Jan Beulich
2016-02-28 11:19 ` [PATCH v4 24/24] xen/arm64: Add ACPI support Shannon Zhao
2016-02-29 11:34   ` Jan Beulich
2016-02-29 17:15   ` Stefano Stabellini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).