abstract_mem.cc revision 5714
12SN/A/*
21762SN/A * Copyright (c) 2001-2005 The Regents of The University of Michigan
32SN/A * All rights reserved.
42SN/A *
52SN/A * Redistribution and use in source and binary forms, with or without
62SN/A * modification, are permitted provided that the following conditions are
72SN/A * met: redistributions of source code must retain the above copyright
82SN/A * notice, this list of conditions and the following disclaimer;
92SN/A * redistributions in binary form must reproduce the above copyright
102SN/A * notice, this list of conditions and the following disclaimer in the
112SN/A * documentation and/or other materials provided with the distribution;
122SN/A * neither the name of the copyright holders nor the names of its
132SN/A * contributors may be used to endorse or promote products derived from
142SN/A * this software without specific prior written permission.
152SN/A *
162SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665SN/A *
282665SN/A * Authors: Ron Dreslinski
292SN/A *          Ali Saidi
302SN/A */
312SN/A
322SN/A#include <sys/types.h>
332SN/A#include <sys/mman.h>
342SN/A#include <errno.h>
3511263Sandreas.sandberg@arm.com#include <fcntl.h>
3611263Sandreas.sandberg@arm.com#include <unistd.h>
372SN/A#include <zlib.h>
382SN/A
392SN/A#include <iostream>
402SN/A#include <string>
414981SN/A
4211263Sandreas.sandberg@arm.com#include "arch/isa_traits.hh"
4311263Sandreas.sandberg@arm.com#include "base/misc.hh"
4411263Sandreas.sandberg@arm.com#include "base/random.hh"
4512054Sgabeblack@google.com#include "config/full_system.hh"
4656SN/A#include "mem/packet_access.hh"
4756SN/A#include "mem/physical.hh"
482SN/A#include "sim/eventq.hh"
491872SN/A#include "sim/host.hh"
5012055Sgabeblack@google.com
5112055Sgabeblack@google.comusing namespace std;
5212055Sgabeblack@google.comusing namespace TheISA;
5312055Sgabeblack@google.com
5412055Sgabeblack@google.comPhysicalMemory::PhysicalMemory(const Params *p)
5512055Sgabeblack@google.com    : MemObject(p), pmemAddr(NULL), pagePtr(0),
5612055Sgabeblack@google.com      lat(p->latency), lat_var(p->latency_var),
5712055Sgabeblack@google.com      cachedSize(params()->range.size()), cachedStart(params()->range.start)
5812055Sgabeblack@google.com{
5912055Sgabeblack@google.com    if (params()->range.size() % TheISA::PageBytes != 0)
6012055Sgabeblack@google.com        panic("Memory Size not divisible by page size\n");
6112055Sgabeblack@google.com
6212055Sgabeblack@google.com    if (params()->null)
6312055Sgabeblack@google.com        return;
6412055Sgabeblack@google.com
6512055Sgabeblack@google.com    int map_flags = MAP_ANON | MAP_PRIVATE;
6612055Sgabeblack@google.com    pmemAddr = (uint8_t *)mmap(NULL, params()->range.size(),
6712055Sgabeblack@google.com                               PROT_READ | PROT_WRITE, map_flags, -1, 0);
6812055Sgabeblack@google.com
6912055Sgabeblack@google.com    if (pmemAddr == (void *)MAP_FAILED) {
7012055Sgabeblack@google.com        perror("mmap");
7112055Sgabeblack@google.com        fatal("Could not mmap!\n");
7212055Sgabeblack@google.com    }
7312055Sgabeblack@google.com
7412055Sgabeblack@google.com    //If requested, initialize all the memory to 0
7512055Sgabeblack@google.com    if (p->zero)
7612055Sgabeblack@google.com        memset(pmemAddr, 0, p->range.size());
7712055Sgabeblack@google.com}
7812055Sgabeblack@google.com
7912055Sgabeblack@google.comvoid
8012055Sgabeblack@google.comPhysicalMemory::init()
8112055Sgabeblack@google.com{
8212055Sgabeblack@google.com    if (ports.size() == 0) {
8312055Sgabeblack@google.com        fatal("PhysicalMemory object %s is unconnected!", name());
8412055Sgabeblack@google.com    }
8512055Sgabeblack@google.com
8612055Sgabeblack@google.com    for (PortIterator pi = ports.begin(); pi != ports.end(); ++pi) {
8712055Sgabeblack@google.com        if (*pi)
8812055Sgabeblack@google.com            (*pi)->sendStatusChange(Port::RangeChange);
8912055Sgabeblack@google.com    }
9012055Sgabeblack@google.com}
9112055Sgabeblack@google.com
9212055Sgabeblack@google.comPhysicalMemory::~PhysicalMemory()
9312055Sgabeblack@google.com{
9412055Sgabeblack@google.com    if (pmemAddr)
9512055Sgabeblack@google.com        munmap((char*)pmemAddr, params()->range.size());
9612055Sgabeblack@google.com    //Remove memPorts?
9712055Sgabeblack@google.com}
9812055Sgabeblack@google.com
9912055Sgabeblack@google.comAddr
10012055Sgabeblack@google.comPhysicalMemory::new_page()
10112055Sgabeblack@google.com{
10212055Sgabeblack@google.com    Addr return_addr = pagePtr << LogVMPageSize;
10312055Sgabeblack@google.com    return_addr += start();
10412055Sgabeblack@google.com
10512055Sgabeblack@google.com    ++pagePtr;
10612055Sgabeblack@google.com    return return_addr;
10712055Sgabeblack@google.com}
10812055Sgabeblack@google.com
10912055Sgabeblack@google.comint
11012055Sgabeblack@google.comPhysicalMemory::deviceBlockSize()
11112055Sgabeblack@google.com{
11212055Sgabeblack@google.com    //Can accept anysize request
11312055Sgabeblack@google.com    return 0;
11412055Sgabeblack@google.com}
11512055Sgabeblack@google.com
11612055Sgabeblack@google.comTick
11712055Sgabeblack@google.comPhysicalMemory::calculateLatency(PacketPtr pkt)
11812055Sgabeblack@google.com{
11912055Sgabeblack@google.com    Tick latency = lat;
12012055Sgabeblack@google.com    if (lat_var != 0)
12112055Sgabeblack@google.com        latency += random_mt.random<Tick>(0, lat_var);
12212055Sgabeblack@google.com    return latency;
12312055Sgabeblack@google.com}
12412055Sgabeblack@google.com
12512055Sgabeblack@google.com
12612055Sgabeblack@google.com
12712055Sgabeblack@google.com// Add load-locked to tracking list.  Should only be called if the
12812055Sgabeblack@google.com// operation is a load and the LOCKED flag is set.
12912055Sgabeblack@google.comvoid
13012055Sgabeblack@google.comPhysicalMemory::trackLoadLocked(PacketPtr pkt)
13112055Sgabeblack@google.com{
13212055Sgabeblack@google.com    Request *req = pkt->req;
13312055Sgabeblack@google.com    Addr paddr = LockedAddr::mask(req->getPaddr());
13412055Sgabeblack@google.com
13512055Sgabeblack@google.com    // first we check if we already have a locked addr for this
13612055Sgabeblack@google.com    // xc.  Since each xc only gets one, we just update the
1371872SN/A    // existing record with the new address.
1381872SN/A    list<LockedAddr>::iterator i;
1392SN/A
14012054Sgabeblack@google.com    for (i = lockedAddrList.begin(); i != lockedAddrList.end(); ++i) {
14112054Sgabeblack@google.com        if (i->matchesContext(req)) {
14212054Sgabeblack@google.com            DPRINTF(LLSC, "Modifying lock record: context %d addr %#x\n",
14312054Sgabeblack@google.com                    req->contextId(), paddr);
1442SN/A            i->addr = paddr;
14512055Sgabeblack@google.com            return;
1462SN/A        }
1472SN/A    }
14812054Sgabeblack@google.com
14912054Sgabeblack@google.com    // no record for this xc: need to allocate a new one
15012055Sgabeblack@google.com    DPRINTF(LLSC, "Adding lock record: context %d addr %#x\n",
1512SN/A            req->contextId(), paddr);
1524981SN/A    lockedAddrList.push_front(LockedAddr(req));
1534981SN/A}
1544981SN/A
1554981SN/A
1564981SN/A// Called on *writes* only... both regular stores and
1574981SN/A// store-conditional operations.  Check for conventional stores which
15811168SN/A// conflict with locked addresses, and for success/failure of store
15911168SN/A// conditionals.
16012055Sgabeblack@google.combool
16112055Sgabeblack@google.comPhysicalMemory::checkLockedAddrList(PacketPtr pkt)
16212055Sgabeblack@google.com{
16312055Sgabeblack@google.com    Request *req = pkt->req;
16412055Sgabeblack@google.com    Addr paddr = LockedAddr::mask(req->getPaddr());
16512055Sgabeblack@google.com    bool isLocked = pkt->isLocked();
16612055Sgabeblack@google.com
16712055Sgabeblack@google.com    // Initialize return value.  Non-conditional stores always
16812055Sgabeblack@google.com    // succeed.  Assume conditional stores will fail until proven
16912055Sgabeblack@google.com    // otherwise.
17012055Sgabeblack@google.com    bool success = !isLocked;
17112055Sgabeblack@google.com
17212055Sgabeblack@google.com    // Iterate over list.  Note that there could be multiple matching
17312055Sgabeblack@google.com    // records, as more than one context could have done a load locked
17412055Sgabeblack@google.com    // to this location.
17512055Sgabeblack@google.com    list<LockedAddr>::iterator i = lockedAddrList.begin();
1762SN/A
1772SN/A    while (i != lockedAddrList.end()) {
1784981SN/A
17911263Sandreas.sandberg@arm.com        if (i->addr == paddr) {
180            // we have a matching address
181
182            if (isLocked && i->matchesContext(req)) {
183                // it's a store conditional, and as far as the memory
184                // system can tell, the requesting context's lock is
185                // still valid.
186                DPRINTF(LLSC, "StCond success: context %d addr %#x\n",
187                        req->contextId(), paddr);
188                success = true;
189            }
190
191            // Get rid of our record of this lock and advance to next
192            DPRINTF(LLSC, "Erasing lock record: context %d addr %#x\n",
193                    i->contextId, paddr);
194            i = lockedAddrList.erase(i);
195        }
196        else {
197            // no match: advance to next record
198            ++i;
199        }
200    }
201
202    if (isLocked) {
203        req->setExtraData(success ? 1 : 0);
204    }
205
206    return success;
207}
208
209
210#if TRACING_ON
211
212#define CASE(A, T)                                                      \
213  case sizeof(T):                                                       \
214    DPRINTF(MemoryAccess, A " of size %i on address 0x%x data 0x%x\n",  \
215            pkt->getSize(), pkt->getAddr(), pkt->get<T>());             \
216  break
217
218
219#define TRACE_PACKET(A)                                                 \
220    do {                                                                \
221        switch (pkt->getSize()) {                                       \
222          CASE(A, uint64_t);                                            \
223          CASE(A, uint32_t);                                            \
224          CASE(A, uint16_t);                                            \
225          CASE(A, uint8_t);                                             \
226          default:                                                      \
227            DPRINTF(MemoryAccess, A " of size %i on address 0x%x\n",    \
228                    pkt->getSize(), pkt->getAddr());                    \
229        }                                                               \
230    } while (0)
231
232#else
233
234#define TRACE_PACKET(A)
235
236#endif
237
238Tick
239PhysicalMemory::doAtomicAccess(PacketPtr pkt)
240{
241    assert(pkt->getAddr() >= start() &&
242           pkt->getAddr() + pkt->getSize() <= start() + size());
243
244    if (pkt->memInhibitAsserted()) {
245        DPRINTF(MemoryAccess, "mem inhibited on 0x%x: not responding\n",
246                pkt->getAddr());
247        return 0;
248    }
249
250    uint8_t *hostAddr = pmemAddr + pkt->getAddr() - start();
251
252    if (pkt->cmd == MemCmd::SwapReq) {
253        IntReg overwrite_val;
254        bool overwrite_mem;
255        uint64_t condition_val64;
256        uint32_t condition_val32;
257
258        if (!pmemAddr)
259            panic("Swap only works if there is real memory (i.e. null=False)");
260        assert(sizeof(IntReg) >= pkt->getSize());
261
262        overwrite_mem = true;
263        // keep a copy of our possible write value, and copy what is at the
264        // memory address into the packet
265        std::memcpy(&overwrite_val, pkt->getPtr<uint8_t>(), pkt->getSize());
266        std::memcpy(pkt->getPtr<uint8_t>(), hostAddr, pkt->getSize());
267
268        if (pkt->req->isCondSwap()) {
269            if (pkt->getSize() == sizeof(uint64_t)) {
270                condition_val64 = pkt->req->getExtraData();
271                overwrite_mem = !std::memcmp(&condition_val64, hostAddr,
272                                             sizeof(uint64_t));
273            } else if (pkt->getSize() == sizeof(uint32_t)) {
274                condition_val32 = (uint32_t)pkt->req->getExtraData();
275                overwrite_mem = !std::memcmp(&condition_val32, hostAddr,
276                                             sizeof(uint32_t));
277            } else
278                panic("Invalid size for conditional read/write\n");
279        }
280
281        if (overwrite_mem)
282            std::memcpy(hostAddr, &overwrite_val, pkt->getSize());
283
284        TRACE_PACKET("Read/Write");
285    } else if (pkt->isRead()) {
286        assert(!pkt->isWrite());
287        if (pkt->isLocked()) {
288            trackLoadLocked(pkt);
289        }
290        if (pmemAddr)
291            memcpy(pkt->getPtr<uint8_t>(), hostAddr, pkt->getSize());
292        TRACE_PACKET("Read");
293    } else if (pkt->isWrite()) {
294        if (writeOK(pkt)) {
295            if (pmemAddr)
296                memcpy(hostAddr, pkt->getPtr<uint8_t>(), pkt->getSize());
297            TRACE_PACKET("Write");
298        }
299    } else if (pkt->isInvalidate()) {
300        //upgrade or invalidate
301        if (pkt->needsResponse()) {
302            pkt->makeAtomicResponse();
303        }
304    } else {
305        panic("unimplemented");
306    }
307
308    if (pkt->needsResponse()) {
309        pkt->makeAtomicResponse();
310    }
311    return calculateLatency(pkt);
312}
313
314
315void
316PhysicalMemory::doFunctionalAccess(PacketPtr pkt)
317{
318    assert(pkt->getAddr() >= start() &&
319           pkt->getAddr() + pkt->getSize() <= start() + size());
320
321
322    uint8_t *hostAddr = pmemAddr + pkt->getAddr() - start();
323
324    if (pkt->isRead()) {
325        if (pmemAddr)
326            memcpy(pkt->getPtr<uint8_t>(), hostAddr, pkt->getSize());
327        TRACE_PACKET("Read");
328        pkt->makeAtomicResponse();
329    } else if (pkt->isWrite()) {
330        if (pmemAddr)
331            memcpy(hostAddr, pkt->getPtr<uint8_t>(), pkt->getSize());
332        TRACE_PACKET("Write");
333        pkt->makeAtomicResponse();
334    } else if (pkt->isPrint()) {
335        Packet::PrintReqState *prs =
336            dynamic_cast<Packet::PrintReqState*>(pkt->senderState);
337        // Need to call printLabels() explicitly since we're not going
338        // through printObj().
339        prs->printLabels();
340        // Right now we just print the single byte at the specified address.
341        ccprintf(prs->os, "%s%#x\n", prs->curPrefix(), *hostAddr);
342    } else {
343        panic("PhysicalMemory: unimplemented functional command %s",
344              pkt->cmdString());
345    }
346}
347
348
349Port *
350PhysicalMemory::getPort(const std::string &if_name, int idx)
351{
352    // Accept request for "functional" port for backwards compatibility
353    // with places where this function is called from C++.  I'd prefer
354    // to move all these into Python someday.
355    if (if_name == "functional") {
356        return new MemoryPort(csprintf("%s-functional", name()), this);
357    }
358
359    if (if_name != "port") {
360        panic("PhysicalMemory::getPort: unknown port %s requested", if_name);
361    }
362
363    if (idx >= ports.size()) {
364        ports.resize(idx+1);
365    }
366
367    if (ports[idx] != NULL) {
368        panic("PhysicalMemory::getPort: port %d already assigned", idx);
369    }
370
371    MemoryPort *port =
372        new MemoryPort(csprintf("%s-port%d", name(), idx), this);
373
374    ports[idx] = port;
375    return port;
376}
377
378
379void
380PhysicalMemory::recvStatusChange(Port::Status status)
381{
382}
383
384PhysicalMemory::MemoryPort::MemoryPort(const std::string &_name,
385                                       PhysicalMemory *_memory)
386    : SimpleTimingPort(_name, _memory), memory(_memory)
387{ }
388
389void
390PhysicalMemory::MemoryPort::recvStatusChange(Port::Status status)
391{
392    memory->recvStatusChange(status);
393}
394
395void
396PhysicalMemory::MemoryPort::getDeviceAddressRanges(AddrRangeList &resp,
397                                                   bool &snoop)
398{
399    memory->getAddressRanges(resp, snoop);
400}
401
402void
403PhysicalMemory::getAddressRanges(AddrRangeList &resp, bool &snoop)
404{
405    snoop = false;
406    resp.clear();
407    resp.push_back(RangeSize(start(), params()->range.size()));
408}
409
410int
411PhysicalMemory::MemoryPort::deviceBlockSize()
412{
413    return memory->deviceBlockSize();
414}
415
416Tick
417PhysicalMemory::MemoryPort::recvAtomic(PacketPtr pkt)
418{
419    return memory->doAtomicAccess(pkt);
420}
421
422void
423PhysicalMemory::MemoryPort::recvFunctional(PacketPtr pkt)
424{
425    pkt->pushLabel(memory->name());
426
427    if (!checkFunctional(pkt)) {
428        // Default implementation of SimpleTimingPort::recvFunctional()
429        // calls recvAtomic() and throws away the latency; we can save a
430        // little here by just not calculating the latency.
431        memory->doFunctionalAccess(pkt);
432    }
433
434    pkt->popLabel();
435}
436
437unsigned int
438PhysicalMemory::drain(Event *de)
439{
440    int count = 0;
441    for (PortIterator pi = ports.begin(); pi != ports.end(); ++pi) {
442        count += (*pi)->drain(de);
443    }
444
445    if (count)
446        changeState(Draining);
447    else
448        changeState(Drained);
449    return count;
450}
451
452void
453PhysicalMemory::serialize(ostream &os)
454{
455    if (!pmemAddr)
456        return;
457
458    gzFile compressedMem;
459    string filename = name() + ".physmem";
460
461    SERIALIZE_SCALAR(filename);
462
463    // write memory file
464    string thefile = Checkpoint::dir() + "/" + filename.c_str();
465    int fd = creat(thefile.c_str(), 0664);
466    if (fd < 0) {
467        perror("creat");
468        fatal("Can't open physical memory checkpoint file '%s'\n", filename);
469    }
470
471    compressedMem = gzdopen(fd, "wb");
472    if (compressedMem == NULL)
473        fatal("Insufficient memory to allocate compression state for %s\n",
474                filename);
475
476    if (gzwrite(compressedMem, pmemAddr, params()->range.size()) !=
477        params()->range.size()) {
478        fatal("Write failed on physical memory checkpoint file '%s'\n",
479              filename);
480    }
481
482    if (gzclose(compressedMem))
483        fatal("Close failed on physical memory checkpoint file '%s'\n",
484              filename);
485}
486
487void
488PhysicalMemory::unserialize(Checkpoint *cp, const string &section)
489{
490    if (!pmemAddr)
491        return;
492
493    gzFile compressedMem;
494    long *tempPage;
495    long *pmem_current;
496    uint64_t curSize;
497    uint32_t bytesRead;
498    const int chunkSize = 16384;
499
500    string filename;
501
502    UNSERIALIZE_SCALAR(filename);
503
504    filename = cp->cptDir + "/" + filename;
505
506    // mmap memoryfile
507    int fd = open(filename.c_str(), O_RDONLY);
508    if (fd < 0) {
509        perror("open");
510        fatal("Can't open physical memory checkpoint file '%s'", filename);
511    }
512
513    compressedMem = gzdopen(fd, "rb");
514    if (compressedMem == NULL)
515        fatal("Insufficient memory to allocate compression state for %s\n",
516                filename);
517
518    // unmap file that was mmaped in the constructor
519    // This is done here to make sure that gzip and open don't muck with our
520    // nice large space of memory before we reallocate it
521    munmap((char*)pmemAddr, params()->range.size());
522
523    pmemAddr = (uint8_t *)mmap(NULL, params()->range.size(),
524        PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0);
525
526    if (pmemAddr == (void *)MAP_FAILED) {
527        perror("mmap");
528        fatal("Could not mmap physical memory!\n");
529    }
530
531    curSize = 0;
532    tempPage = (long*)malloc(chunkSize);
533    if (tempPage == NULL)
534        fatal("Unable to malloc memory to read file %s\n", filename);
535
536    /* Only copy bytes that are non-zero, so we don't give the VM system hell */
537    while (curSize < params()->range.size()) {
538        bytesRead = gzread(compressedMem, tempPage, chunkSize);
539        if (bytesRead != chunkSize &&
540            bytesRead != params()->range.size() - curSize)
541            fatal("Read failed on physical memory checkpoint file '%s'"
542                  " got %d bytes, expected %d or %d bytes\n",
543                  filename, bytesRead, chunkSize,
544                  params()->range.size() - curSize);
545
546        assert(bytesRead % sizeof(long) == 0);
547
548        for (int x = 0; x < bytesRead/sizeof(long); x++)
549        {
550             if (*(tempPage+x) != 0) {
551                 pmem_current = (long*)(pmemAddr + curSize + x * sizeof(long));
552                 *pmem_current = *(tempPage+x);
553             }
554        }
555        curSize += bytesRead;
556    }
557
558    free(tempPage);
559
560    if (gzclose(compressedMem))
561        fatal("Close failed on physical memory checkpoint file '%s'\n",
562              filename);
563
564}
565
566PhysicalMemory *
567PhysicalMemoryParams::create()
568{
569    return new PhysicalMemory(this);
570}
571