My last email[0] still had "RFC" in the subject line, but no comments were 
received. So, in an attempt of stupi^W boldness, this is the same patch 
again, with RFC removed and ready for mainline, maybe?

Hello,

now that VirtualBox able to run as a host on arm64 (e.g. the Apple M3 
processors) I was wondering if there are any plans to port the vboxguest 
driver to that platform? I added ARM64 to the Kconfig files (see below) on 
vboxguest and vboxsf, and also for vboxvideo, and it compiled just like 
that and at least vboxsf appears to work just fine.

I don't know how to test vboxvideo yet (the module loads just fine), but 
if we at least enable to option in the Kconfig file at least people would 
be able to test it :-)

Thanks,
Christian.

[0] 
https://lore.kernel.org/lkml/f088e1da-8fae-2acb-6f7a-e414708d8...@nerdbynature.de/

Signed-off-by: Christian Kujau <li...@nerdbynature.de>

    vbox: Enable VBOXGUEST on ARM64

diff --git a/drivers/gpu/drm/vboxvideo/Kconfig 
b/drivers/gpu/drm/vboxvideo/Kconfig
index 180e30b82ab9..dfe92bf23bde 100644
--- a/drivers/gpu/drm/vboxvideo/Kconfig
+++ b/drivers/gpu/drm/vboxvideo/Kconfig
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0
 config DRM_VBOXVIDEO
        tristate "Virtual Box Graphics Card"
-       depends on DRM && X86 && PCI
+       depends on DRM && (ARM64 || X86) && PCI
        select DRM_CLIENT_SELECTION
        select DRM_KMS_HELPER
        select DRM_VRAM_HELPER
diff --git a/drivers/virt/vboxguest/Kconfig b/drivers/virt/vboxguest/Kconfig
index cc329887bfae..11b153e7454e 100644
--- a/drivers/virt/vboxguest/Kconfig
+++ b/drivers/virt/vboxguest/Kconfig
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: GPL-2.0-only
 config VBOXGUEST
        tristate "Virtual Box Guest integration support"
-       depends on X86 && PCI && INPUT
+       depends on (ARM64 || X86) && PCI && INPUT
        help
          This is a driver for the Virtual Box Guest PCI device used in
          Virtual Box virtual machines. Enabling this driver will add
diff --git a/fs/vboxsf/Kconfig b/fs/vboxsf/Kconfig
index b84586ae08b3..d4694026db8b 100644
--- a/fs/vboxsf/Kconfig
+++ b/fs/vboxsf/Kconfig
@@ -1,6 +1,6 @@
 config VBOXSF_FS
        tristate "VirtualBox guest shared folder (vboxsf) support"
-       depends on X86 && VBOXGUEST
+       depends on (ARM64 || X86) && VBOXGUEST
        select NLS
        help
          VirtualBox hosts can share folders with guests, this driver

-- 
BOFH excuse #326:

We need a licensed electrician to replace the light bulbs in the computer room.

Reply via email to