[PATCH v3 0/5] target/arm: Implement cortex-a710

Richard Henderson posted 5 patches 8 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230831232441.66020-1-richard.henderson@linaro.org
Maintainers: Peter Maydell <peter.maydell@linaro.org>
docs/system/arm/emulation.rst  |   1 +
docs/system/arm/virt.rst       |   1 +
target/arm/cpu.h               |   5 +
target/arm/helper.h            |   2 +
hw/arm/virt.c                  |   1 +
target/arm/cpu.c               |   4 +
target/arm/helper.c            |  64 ++++++----
target/arm/tcg/cpu64.c         | 213 +++++++++++++++++++++++++++++++++
target/arm/tcg/op_helper.c     |  33 +++++
target/arm/tcg/translate-a64.c |  21 +++-
target/arm/tcg/translate.c     |  33 +++++
11 files changed, 353 insertions(+), 25 deletions(-)
[PATCH v3 0/5] target/arm: Implement cortex-a710
Posted by Richard Henderson 8 months ago
Changes for v3:
  * 9 patches upstreamed
  * Implement RMR_ELx generically, as a stub.
  * Implement TIDCP and the closely related v8.8 FEAT_TIDCP1.


r~


Richard Henderson (5):
  target/arm: Implement RMR_ELx
  target/arm: Implement cortex-a710
  target/arm: Implement HCR_EL2.TIDCP
  target/arm: Implement FEAT_TIDCP1
  target/arm: Enable SCTLR_EL1.TIDCP for user-only

 docs/system/arm/emulation.rst  |   1 +
 docs/system/arm/virt.rst       |   1 +
 target/arm/cpu.h               |   5 +
 target/arm/helper.h            |   2 +
 hw/arm/virt.c                  |   1 +
 target/arm/cpu.c               |   4 +
 target/arm/helper.c            |  64 ++++++----
 target/arm/tcg/cpu64.c         | 213 +++++++++++++++++++++++++++++++++
 target/arm/tcg/op_helper.c     |  33 +++++
 target/arm/tcg/translate-a64.c |  21 +++-
 target/arm/tcg/translate.c     |  33 +++++
 11 files changed, 353 insertions(+), 25 deletions(-)

-- 
2.34.1
Re: [PATCH v3 0/5] target/arm: Implement cortex-a710
Posted by Peter Maydell 7 months, 3 weeks ago
On Fri, 1 Sept 2023 at 00:25, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> Changes for v3:
>   * 9 patches upstreamed
>   * Implement RMR_ELx generically, as a stub.
>   * Implement TIDCP and the closely related v8.8 FEAT_TIDCP1.
>
>
> r~
>
>
> Richard Henderson (5):
>   target/arm: Implement RMR_ELx
>   target/arm: Implement cortex-a710
>   target/arm: Implement HCR_EL2.TIDCP
>   target/arm: Implement FEAT_TIDCP1
>   target/arm: Enable SCTLR_EL1.TIDCP for user-only
>



Applied to target-arm.next, thanks.

-- PMM