diff options
Diffstat (limited to 'src/mem/XBar.py')
-rw-r--r-- | src/mem/XBar.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mem/XBar.py b/src/mem/XBar.py index 976a290eb..dab961fed 100644 --- a/src/mem/XBar.py +++ b/src/mem/XBar.py @@ -1,4 +1,4 @@ -# Copyright (c) 2012, 2015, 2017 ARM Limited +# Copyright (c) 2012, 2015, 2017, 2019 ARM Limited # All rights reserved. # # The license below extends only to copyright in the software and shall @@ -101,6 +101,12 @@ class CoherentXBar(BaseXBar): # An optional snoop filter snoop_filter = Param.SnoopFilter(NULL, "Selected snoop filter") + # Maximum number of outstanding snoop requests for sanity checks + max_outstanding_snoops = Param.Int(512, "Max. outstanding snoops allowed") + + # Maximum routing table size for sanity checks + max_routing_table_size = Param.Int(512, "Max. routing table size") + # Determine how this crossbar handles packets where caches have # already committed to responding, by establishing if the crossbar # is the point of coherency or not. |