diff options
author | Giacomo Travaglini <giacomo.travaglini@arm.com> | 2019-08-15 10:20:44 +0100 |
---|---|---|
committer | Giacomo Travaglini <giacomo.travaglini@arm.com> | 2019-08-26 09:29:53 +0000 |
commit | b90fcd7357dfc065908e60def2b9c18c1a091627 (patch) | |
tree | 66805a898b300a3dabf84d13bb5bb9d49016cd1e /src/dev/arm/gic_v3_its.cc | |
parent | 579c2cd54b1b29e8283f789a5bb221edb53e6f83 (diff) | |
download | gem5-b90fcd7357dfc065908e60def2b9c18c1a091627.tar.xz |
dev-arm: Fix GITS_BASER initialization/access
The patch is fixing/improving GITS_BASER registers initialization.
* Not using reserved table types anymore (GITS_BASER.TYPE)
* Using write mask for handling WI bits
Change-Id: Ibe24667fdf22b42b86496167c19fc00bbb0ba191
Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20328
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Diffstat (limited to 'src/dev/arm/gic_v3_its.cc')
-rw-r--r-- | src/dev/arm/gic_v3_its.cc | 37 |
1 files changed, 25 insertions, 12 deletions
diff --git a/src/dev/arm/gic_v3_its.cc b/src/dev/arm/gic_v3_its.cc index ddf06f4cc..692bbd071 100644 --- a/src/dev/arm/gic_v3_its.cc +++ b/src/dev/arm/gic_v3_its.cc @@ -780,18 +780,22 @@ Gicv3Its::Gicv3Its(const Gicv3ItsParams *params) gitsTyper(params->gits_typer), gitsCbaser(0), gitsCreadr(0), gitsCwriter(0), gitsIidr(0), + tableBases(NUM_BASER_REGS, 0), masterId(params->system->getMasterId(this)), gic(nullptr), commandEvent([this] { checkCommandQueue(); }, name()), pendingCommands(false), pendingTranslations(0) { - for (auto idx = 0; idx < NUM_BASER_REGS; idx++) { - BASER gits_baser = 0; - gits_baser.type = idx; - gits_baser.entrySize = sizeof(uint64_t) - 1; - tableBases.push_back(gits_baser); - } + BASER device_baser = 0; + device_baser.type = DEVICE_TABLE; + device_baser.entrySize = sizeof(uint64_t) - 1; + tableBases[0] = device_baser; + + BASER icollect_baser = 0; + icollect_baser.type = COLLECTION_TABLE; + icollect_baser.entrySize = sizeof(uint64_t) - 1; + tableBases[1] = icollect_baser; } void @@ -958,12 +962,12 @@ Gicv3Its::write(PacketPtr pkt) auto relative_addr = addr - GITS_BASER.start(); auto baser_index = relative_addr / sizeof(uint64_t); - BASER val = pkt->getLE<uint64_t>(); - - panic_if(val.indirect, - "We currently don't support two level ITS tables"); + const uint64_t table_base = tableBases[baser_index]; + const uint64_t w_mask = tableBases[baser_index].type ? + BASER_WMASK : BASER_WMASK_UNIMPL; + const uint64_t val = pkt->getLE<uint64_t>() & w_mask; - tableBases[baser_index] = val; + tableBases[baser_index] = table_base | val; break; } else { panic("Unrecognized register access\n"); @@ -1224,7 +1228,16 @@ Gicv3Its::getRedistributor(uint64_t rd_base) Addr Gicv3Its::pageAddress(Gicv3Its::ItsTables table) { - const BASER base = tableBases[table]; + auto base_it = std::find_if( + tableBases.begin(), tableBases.end(), + [table] (const BASER &b) { return b.type == table; } + ); + + panic_if(base_it == tableBases.end(), + "ITS Table not recognised\n"); + + const BASER base = *base_it; + // real address depends on page size switch (base.pageSize) { case SIZE_4K: |