traffic_gen.cc revision 10713:eddb533708cb
1/*
2 * Copyright (c) 2012-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 * 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: Thomas Grass
38 *          Andreas Hansson
39 *          Sascha Bischoff
40 */
41
42#include <sstream>
43
44#include "base/intmath.hh"
45#include "base/random.hh"
46#include "cpu/testers/traffic_gen/traffic_gen.hh"
47#include "debug/Checkpoint.hh"
48#include "debug/TrafficGen.hh"
49#include "sim/stats.hh"
50#include "sim/system.hh"
51
52using namespace std;
53
54TrafficGen::TrafficGen(const TrafficGenParams* p)
55    : MemObject(p),
56      system(p->system),
57      masterID(system->getMasterId(name())),
58      configFile(p->config_file),
59      elasticReq(p->elastic_req),
60      nextTransitionTick(0),
61      nextPacketTick(0),
62      currState(0),
63      port(name() + ".port", *this),
64      retryPkt(NULL),
65      retryPktTick(0),
66      updateEvent(this),
67      drainManager(NULL)
68{
69}
70
71TrafficGen*
72TrafficGenParams::create()
73{
74    return new TrafficGen(this);
75}
76
77BaseMasterPort&
78TrafficGen::getMasterPort(const string& if_name, PortID idx)
79{
80    if (if_name == "port") {
81        return port;
82    } else {
83        return MemObject::getMasterPort(if_name, idx);
84    }
85}
86
87void
88TrafficGen::init()
89{
90    if (!port.isConnected())
91        fatal("The port of %s is not connected!\n", name());
92
93    // if the system is in timing mode active the request generator
94    if (system->isTimingMode()) {
95        DPRINTF(TrafficGen, "Timing mode, activating request generator\n");
96
97        parseConfig();
98
99        // enter initial state
100        enterState(currState);
101    } else {
102        DPRINTF(TrafficGen,
103                "Traffic generator is only active in timing mode\n");
104    }
105}
106
107void
108TrafficGen::initState()
109{
110    // when not restoring from a checkpoint, make sure we kick things off
111    if (system->isTimingMode()) {
112        // call nextPacketTick on the state to advance it
113        nextPacketTick = states[currState]->nextPacketTick(elasticReq, 0);
114        schedule(updateEvent, std::min(nextPacketTick, nextTransitionTick));
115    } else {
116        DPRINTF(TrafficGen,
117                "Traffic generator is only active in timing mode\n");
118    }
119}
120
121unsigned int
122TrafficGen::drain(DrainManager *dm)
123{
124    if (!updateEvent.scheduled()) {
125        // no event has been scheduled yet (e.g. switched from atomic mode)
126        return 0;
127    }
128
129    if (retryPkt == NULL) {
130        // shut things down
131        nextPacketTick = MaxTick;
132        nextTransitionTick = MaxTick;
133        deschedule(updateEvent);
134        return 0;
135    } else {
136        drainManager = dm;
137        return 1;
138    }
139}
140
141void
142TrafficGen::serialize(ostream &os)
143{
144    DPRINTF(Checkpoint, "Serializing TrafficGen\n");
145
146    // save ticks of the graph event if it is scheduled
147    Tick nextEvent = updateEvent.scheduled() ? updateEvent.when() : 0;
148
149    DPRINTF(TrafficGen, "Saving nextEvent=%llu\n", nextEvent);
150
151    SERIALIZE_SCALAR(nextEvent);
152
153    SERIALIZE_SCALAR(nextTransitionTick);
154
155    SERIALIZE_SCALAR(nextPacketTick);
156
157    SERIALIZE_SCALAR(currState);
158}
159
160void
161TrafficGen::unserialize(Checkpoint* cp, const string& section)
162{
163    // restore scheduled events
164    Tick nextEvent;
165    UNSERIALIZE_SCALAR(nextEvent);
166    if (nextEvent != 0) {
167        schedule(updateEvent, nextEvent);
168    }
169
170    UNSERIALIZE_SCALAR(nextTransitionTick);
171
172    UNSERIALIZE_SCALAR(nextPacketTick);
173
174    // @todo In the case of a stateful generator state such as the
175    // trace player we would also have to restore the position in the
176    // trace playback and the tick offset
177    UNSERIALIZE_SCALAR(currState);
178}
179
180void
181TrafficGen::update()
182{
183    // if we have reached the time for the next state transition, then
184    // perform the transition
185    if (curTick() >= nextTransitionTick) {
186        transition();
187    } else {
188        assert(curTick() >= nextPacketTick);
189        // get the next packet and try to send it
190        PacketPtr pkt = states[currState]->getNextPacket();
191
192        // suppress packets that are not destined for a memory, such as
193        // device accesses that could be part of a trace
194        if (system->isMemAddr(pkt->getAddr())) {
195            numPackets++;
196            if (!port.sendTimingReq(pkt)) {
197                retryPkt = pkt;
198                retryPktTick = curTick();
199            }
200        } else {
201            DPRINTF(TrafficGen, "Suppressed packet %s 0x%x\n",
202                    pkt->cmdString(), pkt->getAddr());
203        }
204    }
205
206    // if we are waiting for a retry, do not schedule any further
207    // events, in the case of a transition or a successful send, go
208    // ahead and determine when the next update should take place
209    if (retryPkt == NULL) {
210        // schedule next update event based on either the next execute
211        // tick or the next transition, which ever comes first
212        nextPacketTick = states[currState]->nextPacketTick(elasticReq, 0);
213        Tick nextEventTick = std::min(nextPacketTick, nextTransitionTick);
214        DPRINTF(TrafficGen, "Next event scheduled at %lld\n", nextEventTick);
215        schedule(updateEvent, nextEventTick);
216    }
217}
218
219void
220TrafficGen::parseConfig()
221{
222    // keep track of the transitions parsed to create the matrix when
223    // done
224    vector<Transition> transitions;
225
226    // open input file
227    ifstream infile;
228    infile.open(configFile.c_str(), ifstream::in);
229    if (!infile.is_open()) {
230        fatal("Traffic generator %s config file not found at %s\n",
231              name(), configFile);
232    }
233
234    bool init_state_set = false;
235
236    // read line by line and determine the action based on the first
237    // keyword
238    string keyword;
239    string line;
240
241    while (getline(infile, line).good()) {
242        // see if this line is a comment line, and if so skip it
243        if (line.find('#') != 1) {
244            // create an input stream for the tokenization
245            istringstream is(line);
246
247            // determine the keyword
248            is >> keyword;
249
250            if (keyword == "STATE") {
251                // parse the behaviour of this state
252                uint32_t id;
253                Tick duration;
254                string mode;
255
256                is >> id >> duration >> mode;
257
258                if (mode == "TRACE") {
259                    string traceFile;
260                    Addr addrOffset;
261
262                    is >> traceFile >> addrOffset;
263
264                    states[id] = new TraceGen(name(), masterID, duration,
265                                              traceFile, addrOffset);
266                    DPRINTF(TrafficGen, "State: %d TraceGen\n", id);
267                } else if (mode == "IDLE") {
268                    states[id] = new IdleGen(name(), masterID, duration);
269                    DPRINTF(TrafficGen, "State: %d IdleGen\n", id);
270                } else if (mode == "LINEAR" || mode == "RANDOM" ||
271                           mode == "DRAM"   || mode == "DRAM_ROTATE") {
272                    uint32_t read_percent;
273                    Addr start_addr;
274                    Addr end_addr;
275                    Addr blocksize;
276                    Tick min_period;
277                    Tick max_period;
278                    Addr data_limit;
279
280                    is >> read_percent >> start_addr >> end_addr >>
281                        blocksize >> min_period >> max_period >> data_limit;
282
283                    DPRINTF(TrafficGen, "%s, addr %x to %x, size %d,"
284                            " period %d to %d, %d%% reads\n",
285                            mode, start_addr, end_addr, blocksize, min_period,
286                            max_period, read_percent);
287
288
289                    if (blocksize > system->cacheLineSize())
290                        fatal("TrafficGen %s block size (%d) is larger than "
291                              "cache line size (%d)\n", name(),
292                              blocksize, system->cacheLineSize());
293
294                    if (read_percent > 100)
295                        fatal("%s cannot have more than 100% reads", name());
296
297                    if (min_period > max_period)
298                        fatal("%s cannot have min_period > max_period", name());
299
300                    if (mode == "LINEAR") {
301                        states[id] = new LinearGen(name(), masterID,
302                                                   duration, start_addr,
303                                                   end_addr, blocksize,
304                                                   min_period, max_period,
305                                                   read_percent, data_limit);
306                        DPRINTF(TrafficGen, "State: %d LinearGen\n", id);
307                    } else if (mode == "RANDOM") {
308                        states[id] = new RandomGen(name(), masterID,
309                                                   duration, start_addr,
310                                                   end_addr, blocksize,
311                                                   min_period, max_period,
312                                                   read_percent, data_limit);
313                        DPRINTF(TrafficGen, "State: %d RandomGen\n", id);
314                    } else if (mode == "DRAM" || mode == "DRAM_ROTATE") {
315                        // stride size (bytes) of the request for achieving
316                        // required hit length
317                        unsigned int stride_size;
318                        unsigned int page_size;
319                        unsigned int nbr_of_banks_DRAM;
320                        unsigned int nbr_of_banks_util;
321                        unsigned int addr_mapping;
322                        unsigned int nbr_of_ranks;
323
324                        is >> stride_size >> page_size >> nbr_of_banks_DRAM >>
325                            nbr_of_banks_util >> addr_mapping >>
326                            nbr_of_ranks;
327
328                        if (stride_size > page_size)
329                            warn("DRAM generator stride size (%d) is greater "
330                                 "than page size (%d)  of the memory\n",
331                                 blocksize, page_size);
332
333                        if (nbr_of_banks_util > nbr_of_banks_DRAM)
334                            fatal("Attempting to use more banks (%) than "
335                                  "what is available (%)\n",
336                                  nbr_of_banks_util, nbr_of_banks_DRAM);
337
338                        if (nbr_of_banks_util > nbr_of_banks_DRAM)
339                            fatal("Attempting to use more banks (%) than "
340                                  "what is available (%)\n",
341                                  nbr_of_banks_util, nbr_of_banks_DRAM);
342
343                        // count the number of sequential packets to
344                        // generate
345                        unsigned int num_seq_pkts = 1;
346
347                        if (stride_size > blocksize) {
348                            num_seq_pkts = divCeil(stride_size, blocksize);
349                            DPRINTF(TrafficGen, "stride size: %d "
350                                    "block size: %d, num_seq_pkts: %d\n",
351                                    stride_size, blocksize, num_seq_pkts);
352                        }
353
354                        if (mode == "DRAM") {
355                            states[id] = new DramGen(name(), masterID,
356                                                     duration, start_addr,
357                                                     end_addr, blocksize,
358                                                     min_period, max_period,
359                                                     read_percent, data_limit,
360                                                     num_seq_pkts, page_size,
361                                                     nbr_of_banks_DRAM,
362                                                     nbr_of_banks_util,
363                                                     addr_mapping,
364                                                     nbr_of_ranks);
365                            DPRINTF(TrafficGen, "State: %d DramGen\n", id);
366                        } else {
367                            // Will rotate to the next rank after rotating
368                            // through all banks, for each command type.
369                            // In the 50% read case, series will be issued
370                            // for both RD & WR before the rank in incremented
371                            unsigned int max_seq_count_per_rank =
372                                (read_percent == 50) ? nbr_of_banks_util * 2
373                                                     : nbr_of_banks_util;
374
375                            states[id] = new DramRotGen(name(), masterID,
376                                                     duration, start_addr,
377                                                     end_addr, blocksize,
378                                                     min_period, max_period,
379                                                     read_percent, data_limit,
380                                                     num_seq_pkts, page_size,
381                                                     nbr_of_banks_DRAM,
382                                                     nbr_of_banks_util,
383                                                     addr_mapping,
384                                                     nbr_of_ranks,
385                                                     max_seq_count_per_rank);
386                            DPRINTF(TrafficGen, "State: %d DramRotGen\n", id);
387                        }
388                    }
389                } else {
390                    fatal("%s: Unknown traffic generator mode: %s",
391                          name(), mode);
392                }
393            } else if (keyword == "TRANSITION") {
394                Transition transition;
395
396                is >> transition.from >> transition.to >> transition.p;
397
398                transitions.push_back(transition);
399
400                DPRINTF(TrafficGen, "Transition: %d -> %d\n", transition.from,
401                        transition.to);
402            } else if (keyword == "INIT") {
403                // set the initial state as the active state
404                is >> currState;
405
406                init_state_set = true;
407
408                DPRINTF(TrafficGen, "Initial state: %d\n", currState);
409            }
410        }
411    }
412
413    if (!init_state_set)
414        fatal("%s: initial state not specified (add 'INIT <id>' line "
415              "to the config file)\n", name());
416
417    // resize and populate state transition matrix
418    transitionMatrix.resize(states.size());
419    for (size_t i = 0; i < states.size(); i++) {
420        transitionMatrix[i].resize(states.size());
421    }
422
423    for (vector<Transition>::iterator t = transitions.begin();
424         t != transitions.end(); ++t) {
425        transitionMatrix[t->from][t->to] = t->p;
426    }
427
428    // ensure the egress edges do not have a probability larger than
429    // one
430    for (size_t i = 0; i < states.size(); i++) {
431        double sum = 0;
432        for (size_t j = 0; j < states.size(); j++) {
433            sum += transitionMatrix[i][j];
434        }
435
436        // avoid comparing floating point numbers
437        if (abs(sum - 1.0) > 0.001)
438            fatal("%s has transition probability != 1 for state %d\n",
439                  name(), i);
440    }
441
442    // close input file
443    infile.close();
444}
445
446void
447TrafficGen::transition()
448{
449    // exit the current state
450    states[currState]->exit();
451
452    // determine next state
453    double p = random_mt.random<double>();
454    assert(currState < transitionMatrix.size());
455    double cumulative = 0.0;
456    size_t i = 0;
457    do {
458        cumulative += transitionMatrix[currState][i];
459        ++i;
460    } while (cumulative < p && i < transitionMatrix[currState].size());
461
462    enterState(i - 1);
463}
464
465void
466TrafficGen::enterState(uint32_t newState)
467{
468    DPRINTF(TrafficGen, "Transition to state %d\n", newState);
469
470    currState = newState;
471    // we could have been delayed and not transitioned on the exact
472    // tick when we were supposed to (due to back pressure when
473    // sending a packet)
474    nextTransitionTick = curTick() + states[currState]->duration;
475    states[currState]->enter();
476}
477
478void
479TrafficGen::recvReqRetry()
480{
481    assert(retryPkt != NULL);
482
483    DPRINTF(TrafficGen, "Received retry\n");
484    numRetries++;
485    // attempt to send the packet, and if we are successful start up
486    // the machinery again
487    if (port.sendTimingReq(retryPkt)) {
488        retryPkt = NULL;
489        // remember how much delay was incurred due to back-pressure
490        // when sending the request, we also use this to derive
491        // the tick for the next packet
492        Tick delay = curTick() - retryPktTick;
493        retryPktTick = 0;
494        retryTicks += delay;
495
496        if (drainManager == NULL) {
497            // packet is sent, so find out when the next one is due
498            nextPacketTick = states[currState]->nextPacketTick(elasticReq,
499                                                               delay);
500            Tick nextEventTick = std::min(nextPacketTick, nextTransitionTick);
501            schedule(updateEvent, std::max(curTick(), nextEventTick));
502        } else {
503            // shut things down
504            nextPacketTick = MaxTick;
505            nextTransitionTick = MaxTick;
506            drainManager->signalDrainDone();
507            // Clear the drain event once we're done with it.
508            drainManager = NULL;
509        }
510    }
511}
512
513void
514TrafficGen::regStats()
515{
516    // Initialise all the stats
517    using namespace Stats;
518
519    numPackets
520        .name(name() + ".numPackets")
521        .desc("Number of packets generated");
522
523    numRetries
524        .name(name() + ".numRetries")
525        .desc("Number of retries");
526
527    retryTicks
528        .name(name() + ".retryTicks")
529        .desc("Time spent waiting due to back-pressure (ticks)");
530}
531
532bool
533TrafficGen::TrafficGenPort::recvTimingResp(PacketPtr pkt)
534{
535    delete pkt->req;
536    delete pkt;
537
538    return true;
539}
540