diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/dev/arm/gic_v3_distributor.cc | 2 | ||||
-rw-r--r-- | src/dev/arm/gic_v3_distributor.hh | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/dev/arm/gic_v3_distributor.cc b/src/dev/arm/gic_v3_distributor.cc index f261b295b..a048d18f1 100644 --- a/src/dev/arm/gic_v3_distributor.cc +++ b/src/dev/arm/gic_v3_distributor.cc @@ -472,7 +472,7 @@ Gicv3Distributor::read(Addr addr, size_t size, bool is_secure_access) { int max_spi_int_id = itLines - 1; int it_lines_number = ceil((max_spi_int_id + 1) / 32.0) - 1; - return (1 << 26) | (1 << 25) | (1 << 24) | (0xf << 19) | + return (1 << 26) | (1 << 25) | (1 << 24) | (IDBITS << 19) | (1 << 17) | (gic->getSystem()->haveSecurity() << 10) | (it_lines_number << 0); } diff --git a/src/dev/arm/gic_v3_distributor.hh b/src/dev/arm/gic_v3_distributor.hh index 86e53a3b6..c2314389b 100644 --- a/src/dev/arm/gic_v3_distributor.hh +++ b/src/dev/arm/gic_v3_distributor.hh @@ -140,6 +140,7 @@ class Gicv3Distributor : public Serializable public: static const uint32_t ADDR_RANGE_SIZE = 0x10000; + static const uint32_t IDBITS = 0xf; protected: |