mem: Enforce strict use of busFirst- and busLastWordTime
[gem5.git] / src / mem / noncoherent_bus.cc
1 /*
2 * Copyright (c) 2011-2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2006 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Ali Saidi
41 * Andreas Hansson
42 * William Wang
43 */
44
45 /**
46 * @file
47 * Definition of a bus object.
48 */
49
50 #include "base/misc.hh"
51 #include "base/trace.hh"
52 #include "debug/Bus.hh"
53 #include "debug/BusAddrRanges.hh"
54 #include "debug/NoncoherentBus.hh"
55 #include "mem/noncoherent_bus.hh"
56
57 NoncoherentBus::NoncoherentBus(const NoncoherentBusParams *p)
58 : BaseBus(p), reqLayer(*this, ".reqLayer"),
59 respLayer(*this, ".respLayer")
60 {
61 // create the ports based on the size of the master and slave
62 // vector ports, and the presence of the default port, the ports
63 // are enumerated starting from zero
64 for (int i = 0; i < p->port_master_connection_count; ++i) {
65 std::string portName = csprintf("%s.master[%d]", name(), i);
66 MasterPort* bp = new NoncoherentBusMasterPort(portName, *this, i);
67 masterPorts.push_back(bp);
68 }
69
70 // see if we have a default slave device connected and if so add
71 // our corresponding master port
72 if (p->port_default_connection_count) {
73 defaultPortID = masterPorts.size();
74 std::string portName = name() + ".default";
75 MasterPort* bp = new NoncoherentBusMasterPort(portName, *this,
76 defaultPortID);
77 masterPorts.push_back(bp);
78 }
79
80 // create the slave ports, once again starting at zero
81 for (int i = 0; i < p->port_slave_connection_count; ++i) {
82 std::string portName = csprintf("%s.slave[%d]", name(), i);
83 SlavePort* bp = new NoncoherentBusSlavePort(portName, *this, i);
84 slavePorts.push_back(bp);
85 }
86
87 clearPortCache();
88 }
89
90 bool
91 NoncoherentBus::recvTimingReq(PacketPtr pkt, PortID slave_port_id)
92 {
93 // determine the source port based on the id
94 SlavePort *src_port = slavePorts[slave_port_id];
95
96 // we should never see express snoops on a non-coherent bus
97 assert(!pkt->isExpressSnoop());
98
99 // test if the bus should be considered occupied for the current
100 // port
101 if (!reqLayer.tryTiming(src_port)) {
102 DPRINTF(NoncoherentBus, "recvTimingReq: src %s %s 0x%x BUSY\n",
103 src_port->name(), pkt->cmdString(), pkt->getAddr());
104 return false;
105 }
106
107 DPRINTF(NoncoherentBus, "recvTimingReq: src %s %s 0x%x\n",
108 src_port->name(), pkt->cmdString(), pkt->getAddr());
109
110 // set the source port for routing of the response
111 pkt->setSrc(slave_port_id);
112
113 calcPacketTiming(pkt);
114 Tick packetFinishTime = pkt->busLastWordDelay + curTick();
115
116 // since it is a normal request, determine the destination
117 // based on the address and attempt to send the packet
118 bool success = masterPorts[findPort(pkt->getAddr())]->sendTimingReq(pkt);
119
120 if (!success) {
121 // inhibited packets should never be forced to retry
122 assert(!pkt->memInhibitAsserted());
123
124 DPRINTF(NoncoherentBus, "recvTimingReq: src %s %s 0x%x RETRY\n",
125 src_port->name(), pkt->cmdString(), pkt->getAddr());
126
127 // undo the calculation so we can check for 0 again
128 pkt->busFirstWordDelay = pkt->busLastWordDelay = 0;
129
130 // occupy until the header is sent
131 reqLayer.failedTiming(src_port, clockEdge(Cycles(headerCycles)));
132
133 return false;
134 }
135
136 reqLayer.succeededTiming(packetFinishTime);
137
138 return true;
139 }
140
141 bool
142 NoncoherentBus::recvTimingResp(PacketPtr pkt, PortID master_port_id)
143 {
144 // determine the source port based on the id
145 MasterPort *src_port = masterPorts[master_port_id];
146
147 // test if the bus should be considered occupied for the current
148 // port
149 if (!respLayer.tryTiming(src_port)) {
150 DPRINTF(NoncoherentBus, "recvTimingResp: src %s %s 0x%x BUSY\n",
151 src_port->name(), pkt->cmdString(), pkt->getAddr());
152 return false;
153 }
154
155 DPRINTF(NoncoherentBus, "recvTimingResp: src %s %s 0x%x\n",
156 src_port->name(), pkt->cmdString(), pkt->getAddr());
157
158 calcPacketTiming(pkt);
159 Tick packetFinishTime = pkt->busLastWordDelay + curTick();
160
161 // send the packet to the destination through one of our slave
162 // ports, as determined by the destination field
163 bool success M5_VAR_USED = slavePorts[pkt->getDest()]->sendTimingResp(pkt);
164
165 // currently it is illegal to block responses... can lead to
166 // deadlock
167 assert(success);
168
169 respLayer.succeededTiming(packetFinishTime);
170
171 return true;
172 }
173
174 void
175 NoncoherentBus::recvRetry()
176 {
177 // responses never block on forwarding them, so the retry will
178 // always be coming from a port to which we tried to forward a
179 // request
180 reqLayer.recvRetry();
181 }
182
183 Tick
184 NoncoherentBus::recvAtomic(PacketPtr pkt, PortID slave_port_id)
185 {
186 DPRINTF(NoncoherentBus, "recvAtomic: packet src %s addr 0x%x cmd %s\n",
187 slavePorts[slave_port_id]->name(), pkt->getAddr(),
188 pkt->cmdString());
189
190 // determine the destination port
191 PortID dest_id = findPort(pkt->getAddr());
192
193 // forward the request to the appropriate destination
194 Tick response_latency = masterPorts[dest_id]->sendAtomic(pkt);
195
196 // @todo: Not setting first-word time
197 pkt->busLastWordDelay = response_latency;
198 return response_latency;
199 }
200
201 void
202 NoncoherentBus::recvFunctional(PacketPtr pkt, PortID slave_port_id)
203 {
204 if (!pkt->isPrint()) {
205 // don't do DPRINTFs on PrintReq as it clutters up the output
206 DPRINTF(NoncoherentBus,
207 "recvFunctional: packet src %s addr 0x%x cmd %s\n",
208 slavePorts[slave_port_id]->name(), pkt->getAddr(),
209 pkt->cmdString());
210 }
211
212 // determine the destination port
213 PortID dest_id = findPort(pkt->getAddr());
214
215 // forward the request to the appropriate destination
216 masterPorts[dest_id]->sendFunctional(pkt);
217 }
218
219 unsigned int
220 NoncoherentBus::drain(DrainManager *dm)
221 {
222 // sum up the individual layers
223 return reqLayer.drain(dm) + respLayer.drain(dm);
224 }
225
226 NoncoherentBus*
227 NoncoherentBusParams::create()
228 {
229 return new NoncoherentBus(this);
230 }