diff options
author | Christian Menard <Christian.Menard@tu-dresden.de> | 2017-02-09 19:14:58 -0500 |
---|---|---|
committer | Christian Menard <Christian.Menard@tu-dresden.de> | 2017-02-09 19:14:58 -0500 |
commit | 41a61589545c284d109019c3cb528762b8345aa0 (patch) | |
tree | 0f1cc5c5b4d471fbe32406dd4c7d1d9d3ba64d3b /src/mem/ExternalMaster.py | |
parent | 164d9bd73282907ded465b8b45503dc41c007ee8 (diff) | |
download | gem5-41a61589545c284d109019c3cb528762b8345aa0.tar.xz |
misc: add a MasterId to the ExternalPort
The Request constructor requires a MasterID. However, an external
transactor has no chance of getting a MasterID as it does not have a
pointer to the System. This patch adds a MasterID to ExternalMaster to
allow external modules to easily genrerate new Requests.
Signed-off-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src/mem/ExternalMaster.py')
-rw-r--r-- | src/mem/ExternalMaster.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mem/ExternalMaster.py b/src/mem/ExternalMaster.py index 492da1dd1..44b49971a 100644 --- a/src/mem/ExternalMaster.py +++ b/src/mem/ExternalMaster.py @@ -35,8 +35,10 @@ # # Authors: Andrew Bardsley # Curtis Dunham +# Christian Menard from m5.params import * +from m5.proxy import * from MemObject import MemObject class ExternalMaster(MemObject): @@ -50,3 +52,5 @@ class ExternalMaster(MemObject): port_data = Param.String('stub', 'A string to pass to the port' ' handler (in a format specific to the handler) to describe how' ' the port should be bound/bindable/discoverable') + + system = Param.System(Parent.any, 'System this external port belongs to') |