From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: "BALATON Zoltan" <balaton@eik.bme.hu>,
"Cédric Le Goater" <clg@redhat.com>
Cc: qemu-devel@nongnu.org,
Alex Williamson <alex.williamson@redhat.com>,
Harsh Prateek Bora <harshpb@linux.ibm.com>,
Tony Krowiak <akrowiak@linux.ibm.com>,
Eric Farman <farman@linux.ibm.com>,
Eric Auger <eric.auger@redhat.com>
Subject: Re: [PATCH 1/2] vfio: Make vfio-pci available on 64-bit host platforms only
Date: Mon, 3 Mar 2025 15:30:27 +0100 [thread overview]
Message-ID: <aa01f3dd-e3ac-4ee5-87b4-8133103bd000@linaro.org> (raw)
In-Reply-To: <bb7c2adf-f146-50c7-7716-c1ee7b606b01@eik.bme.hu>
On 26/2/25 18:57, BALATON Zoltan wrote:
> On Wed, 26 Feb 2025, Cédric Le Goater wrote:
>> On 2/26/25 15:12, BALATON Zoltan wrote:
>>> On Wed, 26 Feb 2025, Cédric Le Goater wrote:
>>>> VFIO PCI never worked on PPC32 nor ARM, S390x is 64-bit, it might have
>>>> worked on i386 long ago but we have no plans to further support VFIO
>>>> on any 32-bit host platforms. Restrict to 64-bit host platforms.
>>>>
>>>> Cc: Harsh Prateek Bora <harshpb@linux.ibm.com>
>>>> Cc: Tony Krowiak <akrowiak@linux.ibm.com>
>>>> Cc: Eric Farman <farman@linux.ibm.com>
>>>> Cc: Eric Auger <eric.auger@redhat.com>
>>>> Signed-off-by: Cédric Le Goater <clg@redhat.com>
>>>> ---
>>>> hw/vfio/Kconfig | 2 +-
>>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>>
>>>> diff --git a/hw/vfio/Kconfig b/hw/vfio/Kconfig
>>>> index
>>>> 7cdba0560aa821c88d3420b36f86020575834202..6ed825429a9151fcdff33e95d1a310210689b258 100644
>>>> --- a/hw/vfio/Kconfig
>>>> +++ b/hw/vfio/Kconfig
>>>> @@ -7,7 +7,7 @@ config VFIO_PCI
>>>> default y
>>>> select VFIO
>>>> select EDID
>>>> - depends on LINUX && PCI
>>>> + depends on LINUX && PCI && (AARCH64 || PPC64 || X86_64 || S390X)
>>>
>>> Are these defined for the host or target?
>>
>> host.
>
> Where are these defined? I thought compiling qemu-system-ppc on x64_64
> or aarch64 would have PPC defined not X86_64 or AARCH64 but I could well
> be missing something.
>
>>> I see PPC is defined in target/ppc/Kconfig so I think these mark the
>>> target not the host. Vfio-pci works with qemu-system-ppc
>>
>> Ah ! I am surprised. Which host and QEMU machine please ?
>
> I've seen people do this on x86_64 host
Since this patch does:
LINUX && PCI && (... X86_64 ...)
these users won't see any change.
> with pegasos2, amigaone and
> mac99 running 32 bit guests (AmigaOS and MacOS). Some people running
> older 32 bit Windows versions on pc machine might also use this.
>
>>> and we are trying to use it for GPU pass through for 32 bit PPC
>>> guests. Please keep that enabled.
>>
>> As per commit 6d701c9bac1d3571e9ad511e01b27df7237f0b13 "meson: Deprecate
>> 32-bit host support", support will be fully removed in 2 releases and
>> it doesn't need to be addressed by VFIO.
>
> That's about removing support for compiling QEMU on 32 bit host OSes not
> using 32 bit guests with qemu-system-ppc and qemu-system-i386 isn't it?
>
> Regards,
> BALATON Zoltan
next prev parent reply other threads:[~2025-03-03 14:31 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-26 8:47 [PATCH 0/2] vfio: Restrict to 64-bit host platforms Cédric Le Goater
2025-02-26 8:47 ` [PATCH 1/2] vfio: Make vfio-pci available on 64-bit host platforms only Cédric Le Goater
2025-02-26 14:12 ` BALATON Zoltan
2025-02-26 16:26 ` Cédric Le Goater
2025-02-26 17:57 ` BALATON Zoltan
2025-03-03 14:30 ` Philippe Mathieu-Daudé [this message]
2025-03-03 14:45 ` BALATON Zoltan
2025-03-03 14:46 ` Paolo Bonzini
2025-03-03 15:05 ` Cédric Le Goater
2025-03-03 15:26 ` BALATON Zoltan
2025-03-03 15:48 ` Cédric Le Goater
2025-03-03 16:04 ` Cédric Le Goater
2025-03-03 16:57 ` Peter Maydell
2025-03-03 17:32 ` Philippe Mathieu-Daudé
2025-03-05 6:38 ` Thomas Huth
2025-03-05 13:21 ` BALATON Zoltan
2025-03-03 17:34 ` Cédric Le Goater
2025-03-03 16:50 ` Paolo Bonzini
2025-03-03 17:32 ` Cédric Le Goater
2025-03-03 18:11 ` Cédric Le Goater
2025-03-03 14:43 ` Paolo Bonzini
2025-03-03 14:53 ` Philippe Mathieu-Daudé
2025-03-03 16:51 ` Daniel P. Berrangé
2025-03-03 15:07 ` Cédric Le Goater
2025-02-26 8:47 ` [PATCH 2/2] vfio: Make vfio-platform available on Aarch64 " Cédric Le Goater
2025-02-27 8:32 ` Eric Auger
2025-02-27 17:27 ` Alex Williamson
2025-03-03 14:32 ` Philippe Mathieu-Daudé
2025-03-03 18:07 ` Eric Auger
2025-02-26 14:01 ` [PATCH 0/2] vfio: Restrict to 64-bit host platforms Daniel P. Berrangé
2025-02-26 15:49 ` Cédric Le Goater
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aa01f3dd-e3ac-4ee5-87b4-8133103bd000@linaro.org \
--to=philmd@linaro.org \
--cc=akrowiak@linux.ibm.com \
--cc=alex.williamson@redhat.com \
--cc=balaton@eik.bme.hu \
--cc=clg@redhat.com \
--cc=eric.auger@redhat.com \
--cc=farman@linux.ibm.com \
--cc=harshpb@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).