dramsim2.cc revision 10913
14479Sbinkertn@umich.edu/*
24479Sbinkertn@umich.edu * Copyright (c) 2013 ARM Limited
34479Sbinkertn@umich.edu * All rights reserved
44479Sbinkertn@umich.edu *
54479Sbinkertn@umich.edu * 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 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions are
16 * met: redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer;
18 * redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution;
21 * neither the name of the copyright holders nor the names of its
22 * contributors may be used to endorse or promote products derived from
23 * this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Andreas Hansson
38 */
39
40#include "DRAMSim2/Callback.h"
41#include "base/callback.hh"
42#include "base/trace.hh"
43#include "debug/DRAMSim2.hh"
44#include "debug/Drain.hh"
45#include "mem/dramsim2.hh"
46#include "sim/system.hh"
47
48DRAMSim2::DRAMSim2(const Params* p) :
49    AbstractMemory(p),
50    port(name() + ".port", *this),
51    wrapper(p->deviceConfigFile, p->systemConfigFile, p->filePath,
52            p->traceFile, p->range.size() / 1024 / 1024, p->enableDebug),
53    retryReq(false), retryResp(false), startTick(0),
54    nbrOutstandingReads(0), nbrOutstandingWrites(0),
55    sendResponseEvent(this), tickEvent(this)
56{
57    DPRINTF(DRAMSim2,
58            "Instantiated DRAMSim2 with clock %d ns and queue size %d\n",
59            wrapper.clockPeriod(), wrapper.queueSize());
60
61    DRAMSim::TransactionCompleteCB* read_cb =
62        new DRAMSim::Callback<DRAMSim2, void, unsigned, uint64_t, uint64_t>(
63            this, &DRAMSim2::readComplete);
64    DRAMSim::TransactionCompleteCB* write_cb =
65        new DRAMSim::Callback<DRAMSim2, void, unsigned, uint64_t, uint64_t>(
66            this, &DRAMSim2::writeComplete);
67    wrapper.setCallbacks(read_cb, write_cb);
68
69    // Register a callback to compensate for the destructor not
70    // being called. The callback prints the DRAMSim2 stats.
71    Callback* cb = new MakeCallback<DRAMSim2Wrapper,
72        &DRAMSim2Wrapper::printStats>(wrapper);
73    registerExitCallback(cb);
74}
75
76void
77DRAMSim2::init()
78{
79    AbstractMemory::init();
80
81    if (!port.isConnected()) {
82        fatal("DRAMSim2 %s is unconnected!\n", name());
83    } else {
84        port.sendRangeChange();
85    }
86
87    if (system()->cacheLineSize() != wrapper.burstSize())
88        fatal("DRAMSim2 burst size %d does not match cache line size %d\n",
89              wrapper.burstSize(), system()->cacheLineSize());
90}
91
92void
93DRAMSim2::startup()
94{
95    startTick = curTick();
96
97    // kick off the clock ticks
98    schedule(tickEvent, clockEdge());
99}
100
101void
102DRAMSim2::sendResponse()
103{
104    assert(!retryResp);
105    assert(!responseQueue.empty());
106
107    DPRINTF(DRAMSim2, "Attempting to send response\n");
108
109    bool success = port.sendTimingResp(responseQueue.front());
110    if (success) {
111        responseQueue.pop_front();
112
113        DPRINTF(DRAMSim2, "Have %d read, %d write, %d responses outstanding\n",
114                nbrOutstandingReads, nbrOutstandingWrites,
115                responseQueue.size());
116
117        if (!responseQueue.empty() && !sendResponseEvent.scheduled())
118            schedule(sendResponseEvent, curTick());
119
120        if (nbrOutstanding() == 0)
121            signalDrainDone();
122    } else {
123        retryResp = true;
124
125        DPRINTF(DRAMSim2, "Waiting for response retry\n");
126
127        assert(!sendResponseEvent.scheduled());
128    }
129}
130
131unsigned int
132DRAMSim2::nbrOutstanding() const
133{
134    return nbrOutstandingReads + nbrOutstandingWrites + responseQueue.size();
135}
136
137void
138DRAMSim2::tick()
139{
140    wrapper.tick();
141
142    // is the connected port waiting for a retry, if so check the
143    // state and send a retry if conditions have changed
144    if (retryReq && nbrOutstanding() < wrapper.queueSize()) {
145        retryReq = false;
146        port.sendRetryReq();
147    }
148
149    schedule(tickEvent, curTick() + wrapper.clockPeriod() * SimClock::Int::ns);
150}
151
152Tick
153DRAMSim2::recvAtomic(PacketPtr pkt)
154{
155    access(pkt);
156
157    // 50 ns is just an arbitrary value at this point
158    return pkt->memInhibitAsserted() ? 0 : 50000;
159}
160
161void
162DRAMSim2::recvFunctional(PacketPtr pkt)
163{
164    pkt->pushLabel(name());
165
166    functionalAccess(pkt);
167
168    // potentially update the packets in our response queue as well
169    for (auto i = responseQueue.begin(); i != responseQueue.end(); ++i)
170        pkt->checkFunctional(*i);
171
172    pkt->popLabel();
173}
174
175bool
176DRAMSim2::recvTimingReq(PacketPtr pkt)
177{
178    // we should never see a new request while in retry
179    assert(!retryReq);
180
181    // @todo temporary hack to deal with memory corruption issues until
182    // 4-phase transactions are complete
183    for (int x = 0; x < pendingDelete.size(); x++)
184        delete pendingDelete[x];
185    pendingDelete.clear();
186
187    if (pkt->memInhibitAsserted()) {
188        // snooper will supply based on copy of packet
189        // still target's responsibility to delete packet
190        pendingDelete.push_back(pkt);
191        return true;
192    }
193
194    // if we cannot accept we need to send a retry once progress can
195    // be made
196    bool can_accept = nbrOutstanding() < wrapper.queueSize();
197
198    // keep track of the transaction
199    if (pkt->isRead()) {
200        if (can_accept) {
201            outstandingReads[pkt->getAddr()].push(pkt);
202
203            // we count a transaction as outstanding until it has left the
204            // queue in the controller, and the response has been sent
205            // back, note that this will differ for reads and writes
206            ++nbrOutstandingReads;
207        }
208    } else if (pkt->isWrite()) {
209        if (can_accept) {
210            outstandingWrites[pkt->getAddr()].push(pkt);
211
212            ++nbrOutstandingWrites;
213
214            // perform the access for writes
215            accessAndRespond(pkt);
216        }
217    } else {
218        // keep it simple and just respond if necessary
219        accessAndRespond(pkt);
220        return true;
221    }
222
223    if (can_accept) {
224        // we should never have a situation when we think there is space,
225        // and there isn't
226        assert(wrapper.canAccept());
227
228        DPRINTF(DRAMSim2, "Enqueueing address %lld\n", pkt->getAddr());
229
230        // @todo what about the granularity here, implicit assumption that
231        // a transaction matches the burst size of the memory (which we
232        // cannot determine without parsing the ini file ourselves)
233        wrapper.enqueue(pkt->isWrite(), pkt->getAddr());
234
235        return true;
236    } else {
237        retryReq = true;
238        return false;
239    }
240}
241
242void
243DRAMSim2::recvRespRetry()
244{
245    DPRINTF(DRAMSim2, "Retrying\n");
246
247    assert(retryResp);
248    retryResp = false;
249    sendResponse();
250}
251
252void
253DRAMSim2::accessAndRespond(PacketPtr pkt)
254{
255    DPRINTF(DRAMSim2, "Access for address %lld\n", pkt->getAddr());
256
257    bool needsResponse = pkt->needsResponse();
258
259    // do the actual memory access which also turns the packet into a
260    // response
261    access(pkt);
262
263    // turn packet around to go back to requester if response expected
264    if (needsResponse) {
265        // access already turned the packet into a response
266        assert(pkt->isResponse());
267        // Here we pay for xbar additional delay and to process the payload
268        // of the packet.
269        Tick time = curTick() + pkt->headerDelay + pkt->payloadDelay;
270        // Reset the timings of the packet
271        pkt->headerDelay = pkt->payloadDelay = 0;
272
273        DPRINTF(DRAMSim2, "Queuing response for address %lld\n",
274                pkt->getAddr());
275
276        // queue it to be sent back
277        responseQueue.push_back(pkt);
278
279        // if we are not already waiting for a retry, or are scheduled
280        // to send a response, schedule an event
281        if (!retryResp && !sendResponseEvent.scheduled())
282            schedule(sendResponseEvent, time);
283    } else {
284        // @todo the packet is going to be deleted, and the DRAMPacket
285        // is still having a pointer to it
286        pendingDelete.push_back(pkt);
287    }
288}
289
290void DRAMSim2::readComplete(unsigned id, uint64_t addr, uint64_t cycle)
291{
292    assert(cycle == divCeil(curTick() - startTick,
293                            wrapper.clockPeriod() * SimClock::Int::ns));
294
295    DPRINTF(DRAMSim2, "Read to address %lld complete\n", addr);
296
297    // get the outstanding reads for the address in question
298    auto p = outstandingReads.find(addr);
299    assert(p != outstandingReads.end());
300
301    // first in first out, which is not necessarily true, but it is
302    // the best we can do at this point
303    PacketPtr pkt = p->second.front();
304    p->second.pop();
305
306    if (p->second.empty())
307        outstandingReads.erase(p);
308
309    // no need to check for drain here as the next call will add a
310    // response to the response queue straight away
311    assert(nbrOutstandingReads != 0);
312    --nbrOutstandingReads;
313
314    // perform the actual memory access
315    accessAndRespond(pkt);
316}
317
318void DRAMSim2::writeComplete(unsigned id, uint64_t addr, uint64_t cycle)
319{
320    assert(cycle == divCeil(curTick() - startTick,
321                            wrapper.clockPeriod() * SimClock::Int::ns));
322
323    DPRINTF(DRAMSim2, "Write to address %lld complete\n", addr);
324
325    // get the outstanding reads for the address in question
326    auto p = outstandingWrites.find(addr);
327    assert(p != outstandingWrites.end());
328
329    // we have already responded, and this is only to keep track of
330    // what is outstanding
331    p->second.pop();
332    if (p->second.empty())
333        outstandingWrites.erase(p);
334
335    assert(nbrOutstandingWrites != 0);
336    --nbrOutstandingWrites;
337
338    if (nbrOutstanding() == 0)
339        signalDrainDone();
340}
341
342BaseSlavePort&
343DRAMSim2::getSlavePort(const std::string &if_name, PortID idx)
344{
345    if (if_name != "port") {
346        return MemObject::getSlavePort(if_name, idx);
347    } else {
348        return port;
349    }
350}
351
352unsigned int
353DRAMSim2::drain()
354{
355    // check our outstanding reads and writes and if any they need to
356    // drain
357    return nbrOutstanding() != 0 ? DrainState::Draining : DrainState::Drained;
358}
359
360DRAMSim2::MemoryPort::MemoryPort(const std::string& _name,
361                                 DRAMSim2& _memory)
362    : SlavePort(_name, &_memory), memory(_memory)
363{ }
364
365AddrRangeList
366DRAMSim2::MemoryPort::getAddrRanges() const
367{
368    AddrRangeList ranges;
369    ranges.push_back(memory.getAddrRange());
370    return ranges;
371}
372
373Tick
374DRAMSim2::MemoryPort::recvAtomic(PacketPtr pkt)
375{
376    return memory.recvAtomic(pkt);
377}
378
379void
380DRAMSim2::MemoryPort::recvFunctional(PacketPtr pkt)
381{
382    memory.recvFunctional(pkt);
383}
384
385bool
386DRAMSim2::MemoryPort::recvTimingReq(PacketPtr pkt)
387{
388    // pass it to the memory controller
389    return memory.recvTimingReq(pkt);
390}
391
392void
393DRAMSim2::MemoryPort::recvRespRetry()
394{
395    memory.recvRespRetry();
396}
397
398DRAMSim2*
399DRAMSim2Params::create()
400{
401    return new DRAMSim2(this);
402}
403