Deleted Added
sdiff udiff text old ( 9549:95a536fae9ac ) new ( 9823:c8dd3368c6ba )
full compact
1/*
2 * Copyright (c) 2010-2012 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

--- 33 unchanged lines hidden (view full) ---

44
45#include "base/random.hh"
46#include "mem/simple_mem.hh"
47
48using namespace std;
49
50SimpleMemory::SimpleMemory(const SimpleMemoryParams* p) :
51 AbstractMemory(p),
52 port(name() + ".port", *this), lat(p->latency),
53 lat_var(p->latency_var), bandwidth(p->bandwidth),
54 isBusy(false), retryReq(false), releaseEvent(this)
55{
56}
57
58void
59SimpleMemory::init()
60{
61 // allow unconnected memories as this is used in several ruby
62 // systems at the moment
63 if (port.isConnected()) {
64 port.sendRangeChange();
65 }
66}
67
68Tick
69SimpleMemory::calculateLatency(PacketPtr pkt)
70{
71 if (pkt->memInhibitAsserted()) {
72 return 0;
73 } else {
74 Tick latency = lat;
75 if (lat_var != 0)
76 latency += random_mt.random<Tick>(0, lat_var);
77 return latency;
78 }
79}
80
81Tick
82SimpleMemory::doAtomicAccess(PacketPtr pkt)
83{
84 access(pkt);
85 return calculateLatency(pkt);
86}
87
88void
89SimpleMemory::doFunctionalAccess(PacketPtr pkt)
90{
91 functionalAccess(pkt);
92}
93
94bool
95SimpleMemory::recvTimingReq(PacketPtr pkt)
96{
97 /// @todo temporary hack to deal with memory corruption issues until
98 /// 4-phase transactions are complete
99 for (int x = 0; x < pendingDelete.size(); x++)

--- 44 unchanged lines hidden (view full) ---

144 schedule(releaseEvent, curTick() + duration);
145 isBusy = true;
146 }
147 }
148
149 // go ahead and deal with the packet and put the response in the
150 // queue if there is one
151 bool needsResponse = pkt->needsResponse();
152 Tick latency = doAtomicAccess(pkt);
153 // turn packet around to go back to requester if response expected
154 if (needsResponse) {
155 // doAtomicAccess() should already have turned packet into
156 // atomic response
157 assert(pkt->isResponse());
158 port.schedTimingResp(pkt, curTick() + latency);
159 } else {
160 pendingDelete.push_back(pkt);
161 }
162
163 return true;
164}
165
166void
167SimpleMemory::release()
168{
169 assert(isBusy);
170 isBusy = false;
171 if (retryReq) {
172 retryReq = false;
173 port.sendRetry();
174 }
175}
176
177BaseSlavePort &
178SimpleMemory::getSlavePort(const std::string &if_name, PortID idx)
179{
180 if (if_name != "port") {
181 return MemObject::getSlavePort(if_name, idx);
182 } else {
183 return port;
184 }
185}
186
187unsigned int
188SimpleMemory::drain(DrainManager *dm)
189{
190 int count = port.drain(dm);
191
192 if (count)
193 setDrainState(Drainable::Draining);
194 else
195 setDrainState(Drainable::Drained);
196 return count;
197}
198
199SimpleMemory::MemoryPort::MemoryPort(const std::string& _name,
200 SimpleMemory& _memory)
201 : QueuedSlavePort(_name, &_memory, queueImpl),
202 queueImpl(_memory, *this), memory(_memory)
203{ }
204
205AddrRangeList
206SimpleMemory::MemoryPort::getAddrRanges() const
207{
208 AddrRangeList ranges;
209 ranges.push_back(memory.getAddrRange());
210 return ranges;
211}
212
213Tick
214SimpleMemory::MemoryPort::recvAtomic(PacketPtr pkt)
215{
216 return memory.doAtomicAccess(pkt);
217}
218
219void
220SimpleMemory::MemoryPort::recvFunctional(PacketPtr pkt)
221{
222 pkt->pushLabel(memory.name());
223
224 if (!queue.checkFunctional(pkt)) {
225 // Default implementation of SimpleTimingPort::recvFunctional()
226 // calls recvAtomic() and throws away the latency; we can save a
227 // little here by just not calculating the latency.
228 memory.doFunctionalAccess(pkt);
229 }
230
231 pkt->popLabel();
232}
233
234bool
235SimpleMemory::MemoryPort::recvTimingReq(PacketPtr pkt)
236{
237 return memory.recvTimingReq(pkt);
238}
239
240SimpleMemory*
241SimpleMemoryParams::create()
242{
243 return new SimpleMemory(this);
244}