summaryrefslogtreecommitdiff
path: root/src/mem/SConscript
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2019-08-15 16:41:51 -0700
committerGabe Black <gabeblack@google.com>2019-08-23 09:04:13 +0000
commitd97e4e1dd01a943a2c40ead90099d3e085059715 (patch)
tree4851265b9045c05f5307ec807f632169ddd4f6e0 /src/mem/SConscript
parent34b22c298c3fa742cb60b613f651874a869b93a0 (diff)
downloadgem5-d97e4e1dd01a943a2c40ead90099d3e085059715.tar.xz
mem: Split the various protocols out of the gem5 master/slave ports.
This makes the protocols easier to see in their entirity, and makes it easier to add a new type of port which only supports the functional protocol. Change-Id: If5d639bef45062f0a23af2ac46f50933e6a8f144 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20228 Maintainer: Gabe Black <gabeblack@google.com> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/mem/SConscript')
-rw-r--r--src/mem/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mem/SConscript b/src/mem/SConscript
index 95d8654b1..9ebb07436 100644
--- a/src/mem/SConscript
+++ b/src/mem/SConscript
@@ -60,12 +60,14 @@ SimObject('MemDelay.py')
Source('abstract_mem.cc')
Source('addr_mapper.cc')
+Source('atomic_protocol.cc')
Source('bridge.cc')
Source('coherent_xbar.cc')
Source('drampower.cc')
Source('dram_ctrl.cc')
Source('external_master.cc')
Source('external_slave.cc')
+Source('functional_protocol.cc')
Source('mem_object.cc')
Source('mport.cc')
Source('noncoherent_xbar.cc')
@@ -75,6 +77,7 @@ Source('packet_queue.cc')
Source('port_proxy.cc')
Source('physical.cc')
Source('secure_port_proxy.cc')
+Source('timing_protocol.cc')
Source('simple_mem.cc')
Source('snoop_filter.cc')
Source('stack_dist_calc.cc')