mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

When FEAT_SEL2 was implemented the SEL2 timers were missed. This
shows up when building the latest Hafnium with SPMC_AT_EL=2. The
actual implementation utilises the same logic as the rest of the
timers so all we need to do is:
- define the timers and their access functions
- conditionally add the correct system registers
- create a new accessfn as the rules are subtly different to the
existing secure timer
Fixes: e9152ee91c
(target/arm: add ARMv8.4-SEL2 system registers)
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20250204125009.2281315-7-peter.maydell@linaro.org
Cc: qemu-stable@nongnu.org
Cc: Andrei Homescu <ahomescu@google.com>
Cc: Arve Hjønnevåg <arve@google.com>
Cc: Rémi Denis-Courmont <remi.denis.courmont@huawei.com>
[PMM: CP_ACCESS_TRAP_UNCATEGORIZED -> CP_ACCESS_UNDEFINED;
offset logic now in gt_{indirect,direct}_access_timer_offset() ]
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
/*
|
|
* Common definitions for Arm Base System Architecture (BSA) platforms.
|
|
*
|
|
* Copyright (c) 2015 Linaro Limited
|
|
* Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2 or later, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef QEMU_ARM_BSA_H
|
|
#define QEMU_ARM_BSA_H
|
|
|
|
/* These are architectural INTID values */
|
|
#define ARCH_TIMER_S_EL2_VIRT_IRQ 19
|
|
#define ARCH_TIMER_S_EL2_IRQ 20
|
|
#define VIRTUAL_PMU_IRQ 23
|
|
#define ARCH_GIC_MAINT_IRQ 25
|
|
#define ARCH_TIMER_NS_EL2_IRQ 26
|
|
#define ARCH_TIMER_VIRT_IRQ 27
|
|
#define ARCH_TIMER_NS_EL2_VIRT_IRQ 28
|
|
#define ARCH_TIMER_S_EL1_IRQ 29
|
|
#define ARCH_TIMER_NS_EL1_IRQ 30
|
|
|
|
#define INTID_TO_PPI(irq) ((irq) - 16)
|
|
|
|
#endif /* QEMU_ARM_BSA_H */
|