Re: [PATCH v3 0/5] arm64: Treat ESR_ELx as a 64-bit register

2022-04-29 Thread Catalin Marinas
On Mon, 25 Apr 2022 12:44:39 +0100, Alexandru Elisei wrote:
> The ESR_EL{1,2} registers were originally 32-bit, then were extended to
> 64-bit with the upper 32 bits RES0, and in ARM DDI 0487H.a the FEAT_LS64
> feature was added which now makes use of the upper bits. This series aims
> to teach Linux to treat it consistently as a 64-bit register with the goal
> of making it easier to add support in the future for features that use the
> upper 32 bits.
> 
> [...]

Applied to arm64 (for-next/esr-elx-64-bit), thanks!

[1/5] arm64: Make ESR_ELx_xVC_IMM_MASK compatible with assembly
  https://git.kernel.org/arm64/c/a99ef9cb4b79
[2/5] arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall
  https://git.kernel.org/arm64/c/3fed9e551417
[3/5] arm64: Treat ESR_ELx as a 64-bit register
  https://git.kernel.org/arm64/c/8d56e5c5a99c
[4/5] KVM: arm64: Treat ESR_EL2 as a 64-bit register
  https://git.kernel.org/arm64/c/0b12620fddb8
[5/5] KVM: arm64: uapi: Add kvm_debug_exit_arch.hsr_high
  https://git.kernel.org/arm64/c/18f3976fdb5d

-- 
Catalin

___
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm


Re: [PATCH v3 0/5] arm64: Treat ESR_ELx as a 64-bit register

2022-04-28 Thread Marc Zyngier
On Mon, 25 Apr 2022 12:44:39 +0100,
Alexandru Elisei  wrote:
> 
> The ESR_EL{1,2} registers were originally 32-bit, then were extended to
> 64-bit with the upper 32 bits RES0, and in ARM DDI 0487H.a the FEAT_LS64
> feature was added which now makes use of the upper bits. This series aims
> to teach Linux to treat it consistently as a 64-bit register with the goal
> of making it easier to add support in the future for features that use the
> upper 32 bits.
> 
> Patches #1 ("arm64: Make ESR_ELx_xVC_IMM_MASK compatible with assembly")
> and #2 ("arm64: compat: Do not treat syscall number as ESR_ELx for a bad
> syscall") are fixes for some minor issues which I found while working on
> changing ESR_ELx to 64-bit.
> 
> Patches #3 ("arm64: Treat ESR_ELx as a 64bit register") and #4 ("KVM:
> arm64: Treat ESR_EL2 as a 64-bit register") are where the ESR_ELx registers
> are changed to 64-bit. I chose to make the KVM changes a separate patch
> because KVM prefers to use u64 for the registers.
> 
> And in patch #5 ("KVM: arm64: uapi: Add kvm_debug_exit_arch.hsr_high") I
> add a new field to the user API struct kvm_debug_exit_arch that represents
> the higher 32 bits, and a flag to go with it (details in the patch).
> 
> Tested by running ltp for a few hours (minimal changes from the previous
> version) and kvm-unit-tests on a rockpro64.
> 
> Changes in v3:
> 
> * Rebased on top of v5.18-rc4
> * Clear kvm_run->flags in kvm_arch_vcpu_ioctl_run() in patch #5 ("KVM:
>   arm64: uapi: Add kvm_debug_exit_arch.hsr_high")
> * Documented KVM_DEBUG_ARCH_HSR_HIGH_VALID.
> 
> Changes in v2:
> 
> * Added the KVM_DEBUG_ARCH_HSR_HIGH_VALID kvm_run flag to patch #5 ("KVM:
>   arm64: uapi: Add kvm_debug_exit_arch.hsr_high"), and updated the commit
>   message to match (Marc)
> * Rebased on top of v5.18-rc3.
> 
> 
> Alexandru Elisei (5):
>   arm64: Make ESR_ELx_xVC_IMM_MASK compatible with assembly
>   arm64: compat: Do not treat syscall number as ESR_ELx for a bad
> syscall
>   arm64: Treat ESR_ELx as a 64-bit register
>   KVM: arm64: Treat ESR_EL2 as a 64-bit register
>   KVM: arm64: uapi: Add kvm_debug_exit_arch.hsr_high
> 
>  Documentation/virt/kvm/api.rst  |  2 +
>  arch/arm64/include/asm/debug-monitors.h |  4 +-
>  arch/arm64/include/asm/esr.h|  8 +--
>  arch/arm64/include/asm/exception.h  | 28 +-
>  arch/arm64/include/asm/kvm_emulate.h|  6 +--
>  arch/arm64/include/asm/kvm_host.h   |  2 +-
>  arch/arm64/include/asm/kvm_ras.h|  2 +-
>  arch/arm64/include/asm/system_misc.h|  4 +-
>  arch/arm64/include/asm/traps.h  | 12 ++---
>  arch/arm64/include/uapi/asm/kvm.h   |  2 +
>  arch/arm64/kernel/debug-monitors.c  | 12 ++---
>  arch/arm64/kernel/entry-common.c|  6 +--
>  arch/arm64/kernel/fpsimd.c  |  6 +--
>  arch/arm64/kernel/hw_breakpoint.c   |  4 +-
>  arch/arm64/kernel/kgdb.c|  6 +--
>  arch/arm64/kernel/probes/kprobes.c  |  4 +-
>  arch/arm64/kernel/probes/uprobes.c  |  4 +-
>  arch/arm64/kernel/sys_compat.c  |  2 +-
>  arch/arm64/kernel/traps.c   | 66 +++
>  arch/arm64/kvm/arm.c|  1 +
>  arch/arm64/kvm/handle_exit.c| 16 +++---
>  arch/arm64/kvm/hyp/include/hyp/switch.h |  2 +-
>  arch/arm64/kvm/hyp/nvhe/sys_regs.c  |  2 +-
>  arch/arm64/kvm/hyp/vgic-v3-sr.c |  4 +-
>  arch/arm64/kvm/inject_fault.c   |  4 +-
>  arch/arm64/kvm/sys_regs.c   |  4 +-
>  arch/arm64/mm/fault.c   | 70 -
>  27 files changed, 145 insertions(+), 138 deletions(-)

For the series:

Reviewed-by: Marc Zyngier 

Given the scale of the changes, I expect this go be routed via the
arm64 tree, but I can also take it if needed.

Thanks,

M.

-- 
Without deviation from the norm, progress is not possible.
___
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm


[PATCH v3 0/5] arm64: Treat ESR_ELx as a 64-bit register

2022-04-25 Thread Alexandru Elisei
The ESR_EL{1,2} registers were originally 32-bit, then were extended to
64-bit with the upper 32 bits RES0, and in ARM DDI 0487H.a the FEAT_LS64
feature was added which now makes use of the upper bits. This series aims
to teach Linux to treat it consistently as a 64-bit register with the goal
of making it easier to add support in the future for features that use the
upper 32 bits.

Patches #1 ("arm64: Make ESR_ELx_xVC_IMM_MASK compatible with assembly")
and #2 ("arm64: compat: Do not treat syscall number as ESR_ELx for a bad
syscall") are fixes for some minor issues which I found while working on
changing ESR_ELx to 64-bit.

Patches #3 ("arm64: Treat ESR_ELx as a 64bit register") and #4 ("KVM:
arm64: Treat ESR_EL2 as a 64-bit register") are where the ESR_ELx registers
are changed to 64-bit. I chose to make the KVM changes a separate patch
because KVM prefers to use u64 for the registers.

And in patch #5 ("KVM: arm64: uapi: Add kvm_debug_exit_arch.hsr_high") I
add a new field to the user API struct kvm_debug_exit_arch that represents
the higher 32 bits, and a flag to go with it (details in the patch).

Tested by running ltp for a few hours (minimal changes from the previous
version) and kvm-unit-tests on a rockpro64.

Changes in v3:

* Rebased on top of v5.18-rc4
* Clear kvm_run->flags in kvm_arch_vcpu_ioctl_run() in patch #5 ("KVM:
  arm64: uapi: Add kvm_debug_exit_arch.hsr_high")
* Documented KVM_DEBUG_ARCH_HSR_HIGH_VALID.

Changes in v2:

* Added the KVM_DEBUG_ARCH_HSR_HIGH_VALID kvm_run flag to patch #5 ("KVM:
  arm64: uapi: Add kvm_debug_exit_arch.hsr_high"), and updated the commit
  message to match (Marc)
* Rebased on top of v5.18-rc3.


Alexandru Elisei (5):
  arm64: Make ESR_ELx_xVC_IMM_MASK compatible with assembly
  arm64: compat: Do not treat syscall number as ESR_ELx for a bad
syscall
  arm64: Treat ESR_ELx as a 64-bit register
  KVM: arm64: Treat ESR_EL2 as a 64-bit register
  KVM: arm64: uapi: Add kvm_debug_exit_arch.hsr_high

 Documentation/virt/kvm/api.rst  |  2 +
 arch/arm64/include/asm/debug-monitors.h |  4 +-
 arch/arm64/include/asm/esr.h|  8 +--
 arch/arm64/include/asm/exception.h  | 28 +-
 arch/arm64/include/asm/kvm_emulate.h|  6 +--
 arch/arm64/include/asm/kvm_host.h   |  2 +-
 arch/arm64/include/asm/kvm_ras.h|  2 +-
 arch/arm64/include/asm/system_misc.h|  4 +-
 arch/arm64/include/asm/traps.h  | 12 ++---
 arch/arm64/include/uapi/asm/kvm.h   |  2 +
 arch/arm64/kernel/debug-monitors.c  | 12 ++---
 arch/arm64/kernel/entry-common.c|  6 +--
 arch/arm64/kernel/fpsimd.c  |  6 +--
 arch/arm64/kernel/hw_breakpoint.c   |  4 +-
 arch/arm64/kernel/kgdb.c|  6 +--
 arch/arm64/kernel/probes/kprobes.c  |  4 +-
 arch/arm64/kernel/probes/uprobes.c  |  4 +-
 arch/arm64/kernel/sys_compat.c  |  2 +-
 arch/arm64/kernel/traps.c   | 66 +++
 arch/arm64/kvm/arm.c|  1 +
 arch/arm64/kvm/handle_exit.c| 16 +++---
 arch/arm64/kvm/hyp/include/hyp/switch.h |  2 +-
 arch/arm64/kvm/hyp/nvhe/sys_regs.c  |  2 +-
 arch/arm64/kvm/hyp/vgic-v3-sr.c |  4 +-
 arch/arm64/kvm/inject_fault.c   |  4 +-
 arch/arm64/kvm/sys_regs.c   |  4 +-
 arch/arm64/mm/fault.c   | 70 -
 27 files changed, 145 insertions(+), 138 deletions(-)

-- 
2.36.0

___
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm