Skip to content

Commit 69d65f5

Browse files
committed
Merge feature/hyperv-arm64 (65dbae1)
* msft/feature/hyperv-arm64: Drivers: hv: Enable Hyper-V code to be built on ARM64 arm64: efi: Export screen_info Drivers: hv: vmbus: Add hooks for per-CPU IRQ arm64: hyperv: Initialize hypervisor on boot arm64: hyperv: Add kexec and panic handlers arm64: hyperv: Add interrupt handlers for VMbus and stimer arm64: hyperv: Add memory alloc/free functions for Hyper-V size pages arm64: hyperv: Add hypercall and register access functions arm64: hyperv: Add core Hyper-V include files
2 parents 7b22472 + 65dbae1 commit 69d65f5

File tree

12 files changed

+876
-1
lines changed

12 files changed

+876
-1
lines changed

MAINTAINERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8154,6 +8154,9 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
81548154
F: Documentation/ABI/stable/sysfs-bus-vmbus
81558155
F: Documentation/ABI/testing/debugfs-hyperv
81568156
F: Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8157+
F: arch/arm64/hyperv
8158+
F: arch/arm64/include/asm/hyperv-tlfs.h
8159+
F: arch/arm64/include/asm/mshyperv.h
81578160
F: arch/x86/hyperv
81588161
F: arch/x86/include/asm/hyperv-tlfs.h
81598162
F: arch/x86/include/asm/mshyperv.h

arch/arm64/Kbuild

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ obj-y += kernel/ mm/
33
obj-$(CONFIG_NET) += net/
44
obj-$(CONFIG_KVM) += kvm/
55
obj-$(CONFIG_XEN) += xen/
6+
obj-$(subst m,y,$(CONFIG_HYPERV)) += hyperv/
67
obj-$(CONFIG_CRYPTO) += crypto/

arch/arm64/hyperv/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# SPDX-License-Identifier: GPL-2.0
2+
obj-y := hv_core.o mshyperv.o

0 commit comments

Comments
 (0)