qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] arm: Don't remove EL3 exposure for SMC conduit


From: Alexander Graf
Subject: Re: [PATCH] arm: Don't remove EL3 exposure for SMC conduit
Date: Mon, 15 Nov 2021 13:54:11 +0100
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0) Gecko/20100101 Thunderbird/91.3.0


On 15.11.21 13:08, Alex Bennée wrote:
Alexander Graf <agraf@csgraf.de> writes:

On 15.11.21 11:46, Peter Maydell wrote:
On Sun, 14 Nov 2021 at 17:41, Alexander Graf <agraf@csgraf.de> wrote:

Am 14.11.2021 um 18:20 schrieb Peter Maydell <peter.maydell@linaro.org>:
This is tricky, because we use the cpu->isar values to determine whether
we should be emulating things. So this change means we now create an
inconsistent CPU which in some ways claims to have EL3 (the ISAR ID
bits say so) and in some ways does not (the ARM_FEATURE_EL3 flag is
unset), and depending on which of the two "do we have EL3?" methods
any bit of the TCG code is using will give different results...
Do you think it would be sufficient to go through all readers of
the isar bits and guard them behind an ARM_FEATURE_EL3 check in
addition? I'll be happy to do so then! :)
That would be a big reverse-course on a design choice we made that
the preference is to look at the ID registers and phase out the
use of ARM_FEATURE bits where possible.

I'm open to alternatives. As it stands, we're lying to the guest
because we tell it "SMC is not available" but ask it to call SMC for
PSCI, which is bad too.
Is testing the ISAR bits actually telling a guest that SMC exists or
just the CPU is capable of handling it? I guess -kernel only is a weird


The way I understand it, it tells you whether SMC is a #UD or not. Whether that SMC call goes into happy PSCI land or into nirvana is a different question - but there's nothing you can do from EL<3 to figure that out I believe?


case because otherwise if EL3 is available some sort of firmware has to
have gotten the CPU into a state a kernel can boot. It doesn't imply
that firmware knows how to do a PSCI call though - surely there is some
firmware configuration/probing mechanism you need to rely on for that?


Oh, absolutely! As an OS, you should look up in ACPI or DT whether to do an SMC call for PSCI operations or not.

The problem here is that we tell the OS in ACPI to do an SMC call, yet we tell it in AA64PFR0 that SMC is not implemented and thus would trigger a #UD.


Alex




reply via email to

[Prev in Thread] Current Thread [Next in Thread]