From: james.morse@arm.com (James Morse)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 01/25] arm64: hyp-stub: Implement HVC_RESET_VECTORS stub hypercall
Date: Tue, 21 Mar 2017 17:41:54 +0000 [thread overview]
Message-ID: <58D165E2.7050501@arm.com> (raw)
In-Reply-To: <0cce34c1-cb6f-0ba3-ac98-c0a0e986dc86@arm.com>
On 21/03/17 17:37, Marc Zyngier wrote:
> On 21/03/17 17:25, James Morse wrote:
>> On 21/03/17 17:04, Catalin Marinas wrote:
>>> On Mon, Mar 06, 2017 at 02:24:34PM +0000, Marc Zyngier wrote:
>>>> Let's define a new stub hypercall that resets the HYP configuration
>>>> to its default: hyp-stub vectors, and MMU disabled.
>>>>
>>>> Of course, for the hyp-stub itself, this is a trivial no-op.
>>>> Hypervisors will have a bit more work to do.
>>>>
>>>> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
>>>> ---
>>>> arch/arm64/include/asm/virt.h | 9 +++++++++
>>>> arch/arm64/kernel/hyp-stub.S | 13 ++++++++++++-
>>>> 2 files changed, 21 insertions(+), 1 deletion(-)
>>> [...]
>>>> +ENTRY(__hyp_reset_vectors)
>>>> + str lr, [sp, #-16]!
>>>> + mov x0, #HVC_RESET_VECTORS
>>>> + hvc #0
>>>> + ldr lr, [sp], #16
>>>> + ret
>>>> +ENDPROC(__hyp_reset_vectors)
>>>
>>> Why do we need to specifically preserve lr across the hvc call? Is it
>>> corrupted by the EL2 code (if yes, are other caller-saved registers that
>>> need preserving)? I don't see something similar in the arch/arm code.
>>
>> Kexec on arm64 needed a register to clobber in the hyp-stub's el1_sync code. We
>> wanted to preserve all the registers so soft_restart() could look more like a
>> function call.
>
> I don't think we need this anymore. Once we enter __cpu_soft_restart(),
> there is no turning back. Or am I missing something else?
My recollection of the history may be wrong: but we needed to mess with esr_el2
before we know its a soft_restart() call, at which point we didn't want to
clobber the registers. This was the strange use of x18 in kexec.
James
next prev parent reply other threads:[~2017-03-21 17:41 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-06 14:24 [PATCH v3 00/25] arm/arm64: KVM: Rework the hyp-stub API Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 01/25] arm64: hyp-stub: Implement HVC_RESET_VECTORS stub hypercall Marc Zyngier
2017-03-13 17:53 ` James Morse
2017-03-21 17:04 ` Catalin Marinas
2017-03-21 17:25 ` James Morse
2017-03-21 17:37 ` Marc Zyngier
2017-03-21 17:41 ` James Morse [this message]
2017-03-21 18:36 ` Marc Zyngier
2017-03-21 17:26 ` Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 02/25] arm64: KVM: " Marc Zyngier
2017-03-13 17:53 ` James Morse
2017-03-13 18:03 ` Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 03/25] arm64: KVM: Implement HVC_GET_VECTORS in the init code Marc Zyngier
2017-03-13 17:54 ` James Morse
2017-03-06 14:24 ` [PATCH v3 04/25] arm64: KVM: Allow the main HYP code to use the init hyp stub implementation Marc Zyngier
2017-03-13 17:59 ` James Morse
2017-03-06 14:24 ` [PATCH v3 05/25] arm64: KVM: Convert __cpu_reset_hyp_mode to using __hyp_reset_vectors Marc Zyngier
2017-03-13 17:59 ` James Morse
2017-03-06 14:24 ` [PATCH v3 06/25] arm64: KVM: Implement HVC_SOFT_RESTART in the init code Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 07/25] ARM: hyp-stub: improve ABI Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 08/25] ARM: soft-reboot into same mode that we entered the kernel Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 09/25] ARM: KVM: Convert KVM to use HVC_GET_VECTORS Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 10/25] ARM: Update cpu_v7_reset documentation Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 11/25] ARM: hyp-stub: Use r1 for the soft-restart address Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 12/25] ARM: Expose the VA/IDMAP offset Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 13/25] ARM: hyp-stub: Implement HVC_RESET_VECTORS stub hypercall Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 14/25] ARM: KVM: " Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 15/25] ARM: KVM: Implement HVC_GET_VECTORS in the init code Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 16/25] ARM: KVM: Allow the main HYP code to use the init hyp stub implementation Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 17/25] ARM: KVM: Convert __cpu_reset_hyp_mode to using __hyp_reset_vectors Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 18/25] ARM: KVM: Implement HVC_SOFT_RESTART in the init code Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 19/25] arm/arm64: KVM: Use __hyp_reset_vectors() directly Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 20/25] arm/arm64: KVM: Remove kvm_get_idmap_start Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 21/25] arm/arm64: KVM: Use HVC_RESET_VECTORS to reinit HYP mode Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 22/25] ARM: decompressor: Remove __hyp_get_vectors usage Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 23/25] ARM: hyp-stub/KVM: Kill __hyp_get_vectors Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 24/25] arm64: " Marc Zyngier
2017-03-06 14:24 ` [PATCH v3 25/25] arm/arm64: Add hyp-stub API documentation Marc Zyngier
2017-03-14 13:38 ` [PATCH v3 00/25] arm/arm64: KVM: Rework the hyp-stub API Keerthy
2017-03-14 13:55 ` Marc Zyngier
2017-03-14 14:25 ` Nishanth Menon
2017-03-15 2:25 ` Keerthy
2017-03-14 16:05 ` Russell King - ARM Linux
2017-03-14 16:09 ` Marc Zyngier
2017-03-17 11:43 ` Russell King - ARM Linux
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=58D165E2.7050501@arm.com \
--to=james.morse@arm.com \
--cc=linux-arm-kernel@lists.infradead.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).