mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
hw/arm/smmuv3: Let AIDR advertise SMMUv3.0 support
Add the support for AIDR register. It currently advertises SMMU V3.0 spec. Signed-off-by: Eric Auger <eric.auger@redhat.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 20200728150815.11446-10-eric.auger@redhat.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
f0ec277cd4
commit
5888f0ad12
3 changed files with 5 additions and 0 deletions
|
@ -1251,6 +1251,9 @@ static MemTxResult smmu_readl(SMMUv3State *s, hwaddr offset,
|
|||
case A_IIDR:
|
||||
*data = s->iidr;
|
||||
return MEMTX_OK;
|
||||
case A_AIDR:
|
||||
*data = s->aidr;
|
||||
return MEMTX_OK;
|
||||
case A_CR0:
|
||||
*data = s->cr[0];
|
||||
return MEMTX_OK;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue