system.cc revision 10553:c1ad57c53a36
1/*
2 * Copyright (c) 2011-2014 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) 2003-2006 The Regents of The University of Michigan
15 * Copyright (c) 2011 Regents of the University of California
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Steve Reinhardt
42 *          Lisa Hsu
43 *          Nathan Binkert
44 *          Ali Saidi
45 *          Rick Strong
46 */
47
48#include "arch/remote_gdb.hh"
49#include "arch/utility.hh"
50#include "base/loader/object_file.hh"
51#include "base/loader/symtab.hh"
52#include "base/str.hh"
53#include "base/trace.hh"
54#include "cpu/thread_context.hh"
55#include "debug/Loader.hh"
56#include "debug/WorkItems.hh"
57#include "mem/abstract_mem.hh"
58#include "mem/physical.hh"
59#include "params/System.hh"
60#include "sim/byteswap.hh"
61#include "sim/debug.hh"
62#include "sim/full_system.hh"
63#include "sim/system.hh"
64
65/**
66 * To avoid linking errors with LTO, only include the header if we
67 * actually have a definition.
68 */
69#if THE_ISA != NULL_ISA
70#include "kern/kernel_stats.hh"
71#endif
72
73using namespace std;
74using namespace TheISA;
75
76vector<System *> System::systemList;
77
78int System::numSystemsRunning = 0;
79
80System::System(Params *p)
81    : MemObject(p), _systemPort("system_port", this),
82      _numContexts(0),
83      pagePtr(0),
84      init_param(p->init_param),
85      physProxy(_systemPort, p->cache_line_size),
86      kernelSymtab(nullptr),
87      kernel(nullptr),
88      loadAddrMask(p->load_addr_mask),
89      loadAddrOffset(p->load_offset),
90      nextPID(0),
91      physmem(name() + ".physmem", p->memories),
92      memoryMode(p->mem_mode),
93      _cacheLineSize(p->cache_line_size),
94      workItemsBegin(0),
95      workItemsEnd(0),
96      numWorkIds(p->num_work_ids),
97      _params(p),
98      totalNumInsts(0),
99      instEventQueue("system instruction-based event queue")
100{
101    // add self to global system list
102    systemList.push_back(this);
103
104    if (FullSystem) {
105        kernelSymtab = new SymbolTable;
106        if (!debugSymbolTable)
107            debugSymbolTable = new SymbolTable;
108    }
109
110    // check if the cache line size is a value known to work
111    if (!(_cacheLineSize == 16 || _cacheLineSize == 32 ||
112          _cacheLineSize == 64 || _cacheLineSize == 128))
113        warn_once("Cache line size is neither 16, 32, 64 nor 128 bytes.\n");
114
115    // Get the generic system master IDs
116    MasterID tmp_id M5_VAR_USED;
117    tmp_id = getMasterId("writebacks");
118    assert(tmp_id == Request::wbMasterId);
119    tmp_id = getMasterId("functional");
120    assert(tmp_id == Request::funcMasterId);
121    tmp_id = getMasterId("interrupt");
122    assert(tmp_id == Request::intMasterId);
123
124    if (FullSystem) {
125        if (params()->kernel == "") {
126            inform("No kernel set for full system simulation. "
127                   "Assuming you know what you're doing\n");
128        } else {
129            // Get the kernel code
130            kernel = createObjectFile(params()->kernel);
131            inform("kernel located at: %s", params()->kernel);
132
133            if (kernel == NULL)
134                fatal("Could not load kernel file %s", params()->kernel);
135
136            // setup entry points
137            kernelStart = kernel->textBase();
138            kernelEnd = kernel->bssBase() + kernel->bssSize();
139            kernelEntry = kernel->entryPoint();
140
141            // load symbols
142            if (!kernel->loadGlobalSymbols(kernelSymtab))
143                fatal("could not load kernel symbols\n");
144
145            if (!kernel->loadLocalSymbols(kernelSymtab))
146                fatal("could not load kernel local symbols\n");
147
148            if (!kernel->loadGlobalSymbols(debugSymbolTable))
149                fatal("could not load kernel symbols\n");
150
151            if (!kernel->loadLocalSymbols(debugSymbolTable))
152                fatal("could not load kernel local symbols\n");
153
154            // Loading only needs to happen once and after memory system is
155            // connected so it will happen in initState()
156        }
157    }
158
159    // increment the number of running systms
160    numSystemsRunning++;
161
162    // Set back pointers to the system in all memories
163    for (int x = 0; x < params()->memories.size(); x++)
164        params()->memories[x]->system(this);
165}
166
167System::~System()
168{
169    delete kernelSymtab;
170    delete kernel;
171
172    for (uint32_t j = 0; j < numWorkIds; j++)
173        delete workItemStats[j];
174}
175
176void
177System::init()
178{
179    // check that the system port is connected
180    if (!_systemPort.isConnected())
181        panic("System port on %s is not connected.\n", name());
182}
183
184BaseMasterPort&
185System::getMasterPort(const std::string &if_name, PortID idx)
186{
187    // no need to distinguish at the moment (besides checking)
188    return _systemPort;
189}
190
191void
192System::setMemoryMode(Enums::MemoryMode mode)
193{
194    assert(getDrainState() == Drainable::Drained);
195    memoryMode = mode;
196}
197
198bool System::breakpoint()
199{
200    if (remoteGDB.size())
201        return remoteGDB[0]->breakpoint();
202    return false;
203}
204
205/**
206 * Setting rgdb_wait to a positive integer waits for a remote debugger to
207 * connect to that context ID before continuing.  This should really
208   be a parameter on the CPU object or something...
209 */
210int rgdb_wait = -1;
211
212int
213System::registerThreadContext(ThreadContext *tc, int assigned)
214{
215    int id;
216    if (assigned == -1) {
217        for (id = 0; id < threadContexts.size(); id++) {
218            if (!threadContexts[id])
219                break;
220        }
221
222        if (threadContexts.size() <= id)
223            threadContexts.resize(id + 1);
224    } else {
225        if (threadContexts.size() <= assigned)
226            threadContexts.resize(assigned + 1);
227        id = assigned;
228    }
229
230    if (threadContexts[id])
231        fatal("Cannot have two CPUs with the same id (%d)\n", id);
232
233    threadContexts[id] = tc;
234    _numContexts++;
235
236#if THE_ISA != NULL_ISA
237    int port = getRemoteGDBPort();
238    if (port) {
239        RemoteGDB *rgdb = new RemoteGDB(this, tc);
240        GDBListener *gdbl = new GDBListener(rgdb, port + id);
241        gdbl->listen();
242
243        if (rgdb_wait != -1 && rgdb_wait == id)
244            gdbl->accept();
245
246        if (remoteGDB.size() <= id) {
247            remoteGDB.resize(id + 1);
248        }
249
250        remoteGDB[id] = rgdb;
251    }
252#endif
253
254    activeCpus.push_back(false);
255
256    return id;
257}
258
259int
260System::numRunningContexts()
261{
262    int running = 0;
263    for (int i = 0; i < _numContexts; ++i) {
264        if (threadContexts[i]->status() != ThreadContext::Halted)
265            ++running;
266    }
267    return running;
268}
269
270void
271System::initState()
272{
273    if (FullSystem) {
274        for (int i = 0; i < threadContexts.size(); i++)
275            TheISA::startupCPU(threadContexts[i], i);
276        // Moved from the constructor to here since it relies on the
277        // address map being resolved in the interconnect
278        /**
279         * Load the kernel code into memory
280         */
281        if (params()->kernel != "")  {
282            if (params()->kernel_addr_check) {
283                // Validate kernel mapping before loading binary
284                if (!(isMemAddr((kernelStart & loadAddrMask) +
285                                loadAddrOffset) &&
286                      isMemAddr((kernelEnd & loadAddrMask) +
287                                loadAddrOffset))) {
288                    fatal("Kernel is mapped to invalid location (not memory). "
289                          "kernelStart 0x(%x) - kernelEnd 0x(%x) %#x:%#x\n",
290                          kernelStart,
291                          kernelEnd, (kernelStart & loadAddrMask) +
292                          loadAddrOffset,
293                          (kernelEnd & loadAddrMask) + loadAddrOffset);
294                }
295            }
296            // Load program sections into memory
297            kernel->loadSections(physProxy, loadAddrMask, loadAddrOffset);
298
299            DPRINTF(Loader, "Kernel start = %#x\n", kernelStart);
300            DPRINTF(Loader, "Kernel end   = %#x\n", kernelEnd);
301            DPRINTF(Loader, "Kernel entry = %#x\n", kernelEntry);
302            DPRINTF(Loader, "Kernel loaded...\n");
303        }
304    }
305
306    activeCpus.clear();
307}
308
309void
310System::replaceThreadContext(ThreadContext *tc, int context_id)
311{
312    if (context_id >= threadContexts.size()) {
313        panic("replaceThreadContext: bad id, %d >= %d\n",
314              context_id, threadContexts.size());
315    }
316
317    threadContexts[context_id] = tc;
318    if (context_id < remoteGDB.size())
319        remoteGDB[context_id]->replaceThreadContext(tc);
320}
321
322Addr
323System::allocPhysPages(int npages)
324{
325    Addr return_addr = pagePtr << PageShift;
326    pagePtr += npages;
327
328    Addr next_return_addr = pagePtr << PageShift;
329
330    AddrRange m5opRange(0xffff0000, 0xffffffff);
331    if (m5opRange.contains(next_return_addr)) {
332        warn("Reached m5ops MMIO region\n");
333        return_addr = 0xffffffff;
334        pagePtr = 0xffffffff >> PageShift;
335    }
336
337    if ((pagePtr << PageShift) > physmem.totalSize())
338        fatal("Out of memory, please increase size of physical memory.");
339    return return_addr;
340}
341
342Addr
343System::memSize() const
344{
345    return physmem.totalSize();
346}
347
348Addr
349System::freeMemSize() const
350{
351   return physmem.totalSize() - (pagePtr << PageShift);
352}
353
354bool
355System::isMemAddr(Addr addr) const
356{
357    return physmem.isMemAddr(addr);
358}
359
360unsigned int
361System::drain(DrainManager *dm)
362{
363    setDrainState(Drainable::Drained);
364    return 0;
365}
366
367void
368System::drainResume()
369{
370    Drainable::drainResume();
371    totalNumInsts = 0;
372}
373
374void
375System::serialize(ostream &os)
376{
377    if (FullSystem)
378        kernelSymtab->serialize("kernel_symtab", os);
379    SERIALIZE_SCALAR(pagePtr);
380    SERIALIZE_SCALAR(nextPID);
381    serializeSymtab(os);
382
383    // also serialize the memories in the system
384    nameOut(os, csprintf("%s.physmem", name()));
385    physmem.serialize(os);
386}
387
388
389void
390System::unserialize(Checkpoint *cp, const string &section)
391{
392    if (FullSystem)
393        kernelSymtab->unserialize("kernel_symtab", cp, section);
394    UNSERIALIZE_SCALAR(pagePtr);
395    UNSERIALIZE_SCALAR(nextPID);
396    unserializeSymtab(cp, section);
397
398    // also unserialize the memories in the system
399    physmem.unserialize(cp, csprintf("%s.physmem", name()));
400}
401
402void
403System::regStats()
404{
405    for (uint32_t j = 0; j < numWorkIds ; j++) {
406        workItemStats[j] = new Stats::Histogram();
407        stringstream namestr;
408        ccprintf(namestr, "work_item_type%d", j);
409        workItemStats[j]->init(20)
410                         .name(name() + "." + namestr.str())
411                         .desc("Run time stat for" + namestr.str())
412                         .prereq(*workItemStats[j]);
413    }
414}
415
416void
417System::workItemEnd(uint32_t tid, uint32_t workid)
418{
419    std::pair<uint32_t,uint32_t> p(tid, workid);
420    if (!lastWorkItemStarted.count(p))
421        return;
422
423    Tick samp = curTick() - lastWorkItemStarted[p];
424    DPRINTF(WorkItems, "Work item end: %d\t%d\t%lld\n", tid, workid, samp);
425
426    if (workid >= numWorkIds)
427        fatal("Got workid greater than specified in system configuration\n");
428
429    workItemStats[workid]->sample(samp);
430    lastWorkItemStarted.erase(p);
431}
432
433void
434System::printSystems()
435{
436    ios::fmtflags flags(cerr.flags());
437
438    vector<System *>::iterator i = systemList.begin();
439    vector<System *>::iterator end = systemList.end();
440    for (; i != end; ++i) {
441        System *sys = *i;
442        cerr << "System " << sys->name() << ": " << hex << sys << endl;
443    }
444
445    cerr.flags(flags);
446}
447
448void
449printSystems()
450{
451    System::printSystems();
452}
453
454MasterID
455System::getMasterId(std::string master_name)
456{
457    // strip off system name if the string starts with it
458    if (startswith(master_name, name()))
459        master_name = master_name.erase(0, name().size() + 1);
460
461    // CPUs in switch_cpus ask for ids again after switching
462    for (int i = 0; i < masterIds.size(); i++) {
463        if (masterIds[i] == master_name) {
464            return i;
465        }
466    }
467
468    // Verify that the statistics haven't been enabled yet
469    // Otherwise objects will have sized their stat buckets and
470    // they will be too small
471
472    if (Stats::enabled()) {
473        fatal("Can't request a masterId after regStats(). "
474                "You must do so in init().\n");
475    }
476
477    masterIds.push_back(master_name);
478
479    return masterIds.size() - 1;
480}
481
482std::string
483System::getMasterName(MasterID master_id)
484{
485    if (master_id >= masterIds.size())
486        fatal("Invalid master_id passed to getMasterName()\n");
487
488    return masterIds[master_id];
489}
490
491System *
492SystemParams::create()
493{
494    return new System(this);
495}
496