2006-02-03 20:54:37 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2001-2005 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Ron Dreslinski
|
2006-07-21 01:03:47 +02:00
|
|
|
* Ali Saidi
|
2006-02-03 20:54:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <zlib.h>
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
|
2006-10-20 08:38:45 +02:00
|
|
|
#include "arch/isa_traits.hh"
|
2006-02-03 20:54:37 +01:00
|
|
|
#include "base/misc.hh"
|
|
|
|
#include "config/full_system.hh"
|
2006-12-27 20:32:26 +01:00
|
|
|
#include "mem/packet_access.hh"
|
2006-02-15 20:21:09 +01:00
|
|
|
#include "mem/physical.hh"
|
2006-02-03 20:54:37 +01:00
|
|
|
#include "sim/builder.hh"
|
2006-02-23 19:51:54 +01:00
|
|
|
#include "sim/eventq.hh"
|
2006-10-20 08:38:45 +02:00
|
|
|
#include "sim/host.hh"
|
2006-02-15 20:21:09 +01:00
|
|
|
|
2006-02-03 20:54:37 +01:00
|
|
|
using namespace std;
|
2006-03-10 01:21:35 +01:00
|
|
|
using namespace TheISA;
|
2006-02-03 20:54:37 +01:00
|
|
|
|
2006-08-17 01:01:11 +02:00
|
|
|
PhysicalMemory::PhysicalMemory(Params *p)
|
2007-05-19 06:24:34 +02:00
|
|
|
: MemObject(p->name), pmemAddr(NULL), lat(p->latency), _params(p)
|
2006-02-03 20:54:37 +01:00
|
|
|
{
|
2006-08-17 01:01:11 +02:00
|
|
|
if (params()->addrRange.size() % TheISA::PageBytes != 0)
|
2006-02-03 20:54:37 +01:00
|
|
|
panic("Memory Size not divisible by page size\n");
|
|
|
|
|
|
|
|
int map_flags = MAP_ANON | MAP_PRIVATE;
|
2006-08-17 01:01:11 +02:00
|
|
|
pmemAddr = (uint8_t *)mmap(NULL, params()->addrRange.size(), PROT_READ | PROT_WRITE,
|
2007-01-27 00:48:51 +01:00
|
|
|
map_flags, -1, 0);
|
2006-02-03 20:54:37 +01:00
|
|
|
|
2006-08-17 01:01:11 +02:00
|
|
|
if (pmemAddr == (void *)MAP_FAILED) {
|
2006-02-03 20:54:37 +01:00
|
|
|
perror("mmap");
|
|
|
|
fatal("Could not mmap!\n");
|
|
|
|
}
|
|
|
|
|
2006-11-23 05:09:27 +01:00
|
|
|
//If requested, initialize all the memory to 0
|
|
|
|
if(params()->zero)
|
|
|
|
memset(pmemAddr, 0, params()->addrRange.size());
|
|
|
|
|
2006-08-17 01:01:11 +02:00
|
|
|
pagePtr = 0;
|
2006-02-03 20:54:37 +01:00
|
|
|
}
|
|
|
|
|
2006-04-10 20:40:22 +02:00
|
|
|
void
|
|
|
|
PhysicalMemory::init()
|
|
|
|
{
|
2007-05-19 06:24:34 +02:00
|
|
|
for (PortIterator pi = ports.begin(); pi != ports.end(); ++pi) {
|
|
|
|
if (*pi)
|
|
|
|
(*pi)->sendStatusChange(Port::RangeChange);
|
|
|
|
}
|
2006-04-10 20:40:22 +02:00
|
|
|
}
|
|
|
|
|
2006-02-03 20:54:37 +01:00
|
|
|
PhysicalMemory::~PhysicalMemory()
|
|
|
|
{
|
2006-08-17 01:01:11 +02:00
|
|
|
if (pmemAddr)
|
2007-01-27 00:48:51 +01:00
|
|
|
munmap((char*)pmemAddr, params()->addrRange.size());
|
2006-02-23 23:02:34 +01:00
|
|
|
//Remove memPorts?
|
2006-02-03 20:54:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Addr
|
|
|
|
PhysicalMemory::new_page()
|
|
|
|
{
|
2006-08-17 01:01:11 +02:00
|
|
|
Addr return_addr = pagePtr << LogVMPageSize;
|
2007-02-12 19:06:30 +01:00
|
|
|
return_addr += start();
|
2006-02-03 20:54:37 +01:00
|
|
|
|
2006-08-17 01:01:11 +02:00
|
|
|
++pagePtr;
|
2006-02-03 20:54:37 +01:00
|
|
|
return return_addr;
|
|
|
|
}
|
|
|
|
|
2006-02-21 19:39:01 +01:00
|
|
|
int
|
|
|
|
PhysicalMemory::deviceBlockSize()
|
|
|
|
{
|
2006-02-22 02:04:23 +01:00
|
|
|
//Can accept anysize request
|
|
|
|
return 0;
|
2006-02-21 19:39:01 +01:00
|
|
|
}
|
|
|
|
|
2006-08-17 01:01:11 +02:00
|
|
|
Tick
|
2006-10-20 09:10:12 +02:00
|
|
|
PhysicalMemory::calculateLatency(PacketPtr pkt)
|
2006-08-17 01:01:11 +02:00
|
|
|
{
|
|
|
|
return lat;
|
|
|
|
}
|
2006-02-22 23:29:04 +01:00
|
|
|
|
2006-10-08 19:53:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Add load-locked to tracking list. Should only be called if the
|
|
|
|
// operation is a load and the LOCKED flag is set.
|
|
|
|
void
|
|
|
|
PhysicalMemory::trackLoadLocked(Request *req)
|
|
|
|
{
|
|
|
|
Addr paddr = LockedAddr::mask(req->getPaddr());
|
|
|
|
|
|
|
|
// first we check if we already have a locked addr for this
|
|
|
|
// xc. Since each xc only gets one, we just update the
|
|
|
|
// existing record with the new address.
|
|
|
|
list<LockedAddr>::iterator i;
|
|
|
|
|
|
|
|
for (i = lockedAddrList.begin(); i != lockedAddrList.end(); ++i) {
|
|
|
|
if (i->matchesContext(req)) {
|
|
|
|
DPRINTF(LLSC, "Modifying lock record: cpu %d thread %d addr %#x\n",
|
|
|
|
req->getCpuNum(), req->getThreadNum(), paddr);
|
|
|
|
i->addr = paddr;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no record for this xc: need to allocate a new one
|
|
|
|
DPRINTF(LLSC, "Adding lock record: cpu %d thread %d addr %#x\n",
|
|
|
|
req->getCpuNum(), req->getThreadNum(), paddr);
|
|
|
|
lockedAddrList.push_front(LockedAddr(req));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Called on *writes* only... both regular stores and
|
|
|
|
// store-conditional operations. Check for conventional stores which
|
|
|
|
// conflict with locked addresses, and for success/failure of store
|
|
|
|
// conditionals.
|
|
|
|
bool
|
|
|
|
PhysicalMemory::checkLockedAddrList(Request *req)
|
|
|
|
{
|
|
|
|
Addr paddr = LockedAddr::mask(req->getPaddr());
|
|
|
|
bool isLocked = req->isLocked();
|
|
|
|
|
|
|
|
// Initialize return value. Non-conditional stores always
|
|
|
|
// succeed. Assume conditional stores will fail until proven
|
|
|
|
// otherwise.
|
|
|
|
bool success = !isLocked;
|
|
|
|
|
|
|
|
// Iterate over list. Note that there could be multiple matching
|
|
|
|
// records, as more than one context could have done a load locked
|
|
|
|
// to this location.
|
|
|
|
list<LockedAddr>::iterator i = lockedAddrList.begin();
|
|
|
|
|
|
|
|
while (i != lockedAddrList.end()) {
|
|
|
|
|
|
|
|
if (i->addr == paddr) {
|
|
|
|
// we have a matching address
|
|
|
|
|
|
|
|
if (isLocked && i->matchesContext(req)) {
|
|
|
|
// it's a store conditional, and as far as the memory
|
|
|
|
// system can tell, the requesting context's lock is
|
|
|
|
// still valid.
|
|
|
|
DPRINTF(LLSC, "StCond success: cpu %d thread %d addr %#x\n",
|
|
|
|
req->getCpuNum(), req->getThreadNum(), paddr);
|
|
|
|
success = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get rid of our record of this lock and advance to next
|
|
|
|
DPRINTF(LLSC, "Erasing lock record: cpu %d thread %d addr %#x\n",
|
|
|
|
i->cpuNum, i->threadNum, paddr);
|
|
|
|
i = lockedAddrList.erase(i);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// no match: advance to next record
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isLocked) {
|
2007-02-12 19:06:30 +01:00
|
|
|
req->setExtraData(success ? 1 : 0);
|
2006-10-08 19:53:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2006-08-17 05:39:31 +02:00
|
|
|
void
|
2006-10-20 09:10:12 +02:00
|
|
|
PhysicalMemory::doFunctionalAccess(PacketPtr pkt)
|
2006-02-22 23:29:04 +01:00
|
|
|
{
|
2007-02-12 19:06:30 +01:00
|
|
|
assert(pkt->getAddr() >= start() &&
|
|
|
|
pkt->getAddr() + pkt->getSize() <= start() + size());
|
2006-02-22 23:43:08 +01:00
|
|
|
|
2006-10-09 01:05:48 +02:00
|
|
|
if (pkt->isRead()) {
|
2006-10-08 19:53:24 +02:00
|
|
|
if (pkt->req->isLocked()) {
|
|
|
|
trackLoadLocked(pkt->req);
|
|
|
|
}
|
2007-02-12 19:06:30 +01:00
|
|
|
memcpy(pkt->getPtr<uint8_t>(), pmemAddr + pkt->getAddr() - start(),
|
2006-05-26 20:17:33 +02:00
|
|
|
pkt->getSize());
|
2006-12-27 20:32:26 +01:00
|
|
|
#if TRACING_ON
|
|
|
|
switch (pkt->getSize()) {
|
|
|
|
case sizeof(uint64_t):
|
|
|
|
DPRINTF(MemoryAccess, "Read of size %i on address 0x%x data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint64_t>());
|
|
|
|
break;
|
|
|
|
case sizeof(uint32_t):
|
|
|
|
DPRINTF(MemoryAccess, "Read of size %i on address 0x%x data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint32_t>());
|
|
|
|
break;
|
|
|
|
case sizeof(uint16_t):
|
|
|
|
DPRINTF(MemoryAccess, "Read of size %i on address 0x%x data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint16_t>());
|
|
|
|
break;
|
|
|
|
case sizeof(uint8_t):
|
|
|
|
DPRINTF(MemoryAccess, "Read of size %i on address 0x%x data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint8_t>());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
DPRINTF(MemoryAccess, "Read of size %i on address 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr());
|
|
|
|
}
|
|
|
|
#endif
|
2006-10-09 01:05:48 +02:00
|
|
|
}
|
|
|
|
else if (pkt->isWrite()) {
|
2006-10-08 19:53:24 +02:00
|
|
|
if (writeOK(pkt->req)) {
|
2007-02-12 19:06:30 +01:00
|
|
|
memcpy(pmemAddr + pkt->getAddr() - start(), pkt->getPtr<uint8_t>(),
|
|
|
|
pkt->getSize());
|
2006-12-27 20:32:26 +01:00
|
|
|
#if TRACING_ON
|
|
|
|
switch (pkt->getSize()) {
|
|
|
|
case sizeof(uint64_t):
|
|
|
|
DPRINTF(MemoryAccess, "Write of size %i on address 0x%x data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint64_t>());
|
|
|
|
break;
|
|
|
|
case sizeof(uint32_t):
|
|
|
|
DPRINTF(MemoryAccess, "Write of size %i on address 0x%x data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint32_t>());
|
|
|
|
break;
|
|
|
|
case sizeof(uint16_t):
|
|
|
|
DPRINTF(MemoryAccess, "Write of size %i on address 0x%x data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint16_t>());
|
|
|
|
break;
|
|
|
|
case sizeof(uint8_t):
|
|
|
|
DPRINTF(MemoryAccess, "Write of size %i on address 0x%x data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint8_t>());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
DPRINTF(MemoryAccess, "Write of size %i on address 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr());
|
|
|
|
}
|
|
|
|
#endif
|
2006-05-19 04:54:19 +02:00
|
|
|
}
|
2007-02-12 19:06:30 +01:00
|
|
|
} else if (pkt->isInvalidate()) {
|
2006-10-09 01:05:48 +02:00
|
|
|
//upgrade or invalidate
|
|
|
|
pkt->flags |= SATISFIED;
|
2007-02-12 19:06:30 +01:00
|
|
|
} else if (pkt->isReadWrite()) {
|
|
|
|
IntReg overwrite_val;
|
|
|
|
bool overwrite_mem;
|
|
|
|
uint64_t condition_val64;
|
|
|
|
uint32_t condition_val32;
|
|
|
|
|
|
|
|
assert(sizeof(IntReg) >= pkt->getSize());
|
|
|
|
|
|
|
|
overwrite_mem = true;
|
|
|
|
// keep a copy of our possible write value, and copy what is at the
|
|
|
|
// memory address into the packet
|
2007-02-13 00:40:08 +01:00
|
|
|
std::memcpy(&overwrite_val, pkt->getPtr<uint8_t>(), pkt->getSize());
|
|
|
|
std::memcpy(pkt->getPtr<uint8_t>(), pmemAddr + pkt->getAddr() - start(),
|
2007-02-12 19:06:30 +01:00
|
|
|
pkt->getSize());
|
|
|
|
|
|
|
|
if (pkt->req->isCondSwap()) {
|
|
|
|
if (pkt->getSize() == sizeof(uint64_t)) {
|
2007-02-13 00:40:08 +01:00
|
|
|
condition_val64 = pkt->req->getExtraData();
|
|
|
|
overwrite_mem = !std::memcmp(&condition_val64, pmemAddr +
|
|
|
|
pkt->getAddr() - start(), sizeof(uint64_t));
|
2007-02-12 19:06:30 +01:00
|
|
|
} else if (pkt->getSize() == sizeof(uint32_t)) {
|
2007-02-13 00:40:08 +01:00
|
|
|
condition_val32 = (uint32_t)pkt->req->getExtraData();
|
|
|
|
overwrite_mem = !std::memcmp(&condition_val32, pmemAddr +
|
|
|
|
pkt->getAddr() - start(), sizeof(uint32_t));
|
2007-02-12 19:06:30 +01:00
|
|
|
} else
|
|
|
|
panic("Invalid size for conditional read/write\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (overwrite_mem)
|
2007-02-13 00:40:08 +01:00
|
|
|
std::memcpy(pmemAddr + pkt->getAddr() - start(),
|
2007-02-12 19:06:30 +01:00
|
|
|
&overwrite_val, pkt->getSize());
|
|
|
|
|
|
|
|
#if TRACING_ON
|
|
|
|
switch (pkt->getSize()) {
|
|
|
|
case sizeof(uint64_t):
|
|
|
|
DPRINTF(MemoryAccess, "Read/Write of size %i on address 0x%x old data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint64_t>());
|
|
|
|
DPRINTF(MemoryAccess, "New Data 0x%x %s conditional (0x%x) and %s \n",
|
|
|
|
overwrite_mem, pkt->req->isCondSwap() ? "was" : "wasn't",
|
|
|
|
condition_val64, overwrite_mem ? "happened" : "didn't happen");
|
|
|
|
break;
|
|
|
|
case sizeof(uint32_t):
|
|
|
|
DPRINTF(MemoryAccess, "Read/Write of size %i on address 0x%x old data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint32_t>());
|
|
|
|
DPRINTF(MemoryAccess, "New Data 0x%x %s conditional (0x%x) and %s \n",
|
|
|
|
overwrite_mem, pkt->req->isCondSwap() ? "was" : "wasn't",
|
|
|
|
condition_val32, overwrite_mem ? "happened" : "didn't happen");
|
|
|
|
break;
|
|
|
|
case sizeof(uint16_t):
|
|
|
|
DPRINTF(MemoryAccess, "Read/Write of size %i on address 0x%x old data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint16_t>());
|
|
|
|
DPRINTF(MemoryAccess, "New Data 0x%x wasn't conditional and happned\n",
|
|
|
|
overwrite_mem);
|
|
|
|
break;
|
|
|
|
case sizeof(uint8_t):
|
|
|
|
DPRINTF(MemoryAccess, "Read/Write of size %i on address 0x%x old data 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr(),pkt->get<uint8_t>());
|
|
|
|
DPRINTF(MemoryAccess, "New Data 0x%x wasn't conditional and happned\n",
|
|
|
|
overwrite_mem);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
DPRINTF(MemoryAccess, "Read/Write of size %i on address 0x%x\n",
|
|
|
|
pkt->getSize(), pkt->getAddr());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} else {
|
2006-02-22 23:29:04 +01:00
|
|
|
panic("unimplemented");
|
|
|
|
}
|
2006-03-02 16:31:48 +01:00
|
|
|
|
2006-05-26 20:17:33 +02:00
|
|
|
pkt->result = Packet::Success;
|
2006-02-22 23:29:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Port *
|
2006-06-14 05:19:28 +02:00
|
|
|
PhysicalMemory::getPort(const std::string &if_name, int idx)
|
2006-02-22 23:29:04 +01:00
|
|
|
{
|
2007-05-19 06:24:34 +02:00
|
|
|
if (if_name != "port") {
|
2006-03-12 23:21:59 +01:00
|
|
|
panic("PhysicalMemory::getPort: unknown port %s requested", if_name);
|
|
|
|
}
|
2007-05-19 06:24:34 +02:00
|
|
|
|
|
|
|
if (idx >= ports.size()) {
|
|
|
|
ports.resize(idx+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ports[idx] != NULL) {
|
|
|
|
panic("PhysicalMemory::getPort: port %d already assigned", idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
MemoryPort *port =
|
|
|
|
new MemoryPort(csprintf("%s-port%d", name(), idx), this);
|
|
|
|
|
|
|
|
ports[idx] = port;
|
|
|
|
return port;
|
2006-02-22 23:29:04 +01:00
|
|
|
}
|
|
|
|
|
2007-05-19 06:24:34 +02:00
|
|
|
|
2006-02-22 23:29:04 +01:00
|
|
|
void
|
|
|
|
PhysicalMemory::recvStatusChange(Port::Status status)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-05-26 19:48:35 +02:00
|
|
|
PhysicalMemory::MemoryPort::MemoryPort(const std::string &_name,
|
|
|
|
PhysicalMemory *_memory)
|
2006-07-21 01:03:47 +02:00
|
|
|
: SimpleTimingPort(_name), memory(_memory)
|
2006-02-22 23:29:04 +01:00
|
|
|
{ }
|
|
|
|
|
|
|
|
void
|
|
|
|
PhysicalMemory::MemoryPort::recvStatusChange(Port::Status status)
|
|
|
|
{
|
|
|
|
memory->recvStatusChange(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-04-06 20:57:51 +02:00
|
|
|
PhysicalMemory::MemoryPort::getDeviceAddressRanges(AddrRangeList &resp,
|
|
|
|
AddrRangeList &snoop)
|
2006-02-22 23:29:04 +01:00
|
|
|
{
|
2006-04-06 20:57:51 +02:00
|
|
|
memory->getAddressRanges(resp, snoop);
|
2006-03-26 00:31:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-04-06 20:57:51 +02:00
|
|
|
PhysicalMemory::getAddressRanges(AddrRangeList &resp, AddrRangeList &snoop)
|
2006-03-26 00:31:20 +01:00
|
|
|
{
|
2006-04-06 20:57:51 +02:00
|
|
|
snoop.clear();
|
|
|
|
resp.clear();
|
2007-02-12 19:06:30 +01:00
|
|
|
resp.push_back(RangeSize(start(),
|
2006-08-31 01:24:26 +02:00
|
|
|
params()->addrRange.size()));
|
2006-02-22 23:29:04 +01:00
|
|
|
}
|
|
|
|
|
2006-02-23 19:51:54 +01:00
|
|
|
int
|
|
|
|
PhysicalMemory::MemoryPort::deviceBlockSize()
|
|
|
|
{
|
|
|
|
return memory->deviceBlockSize();
|
|
|
|
}
|
2006-02-22 23:29:04 +01:00
|
|
|
|
|
|
|
Tick
|
2006-10-20 09:10:12 +02:00
|
|
|
PhysicalMemory::MemoryPort::recvAtomic(PacketPtr pkt)
|
2006-02-22 23:29:04 +01:00
|
|
|
{
|
2006-08-17 05:39:31 +02:00
|
|
|
memory->doFunctionalAccess(pkt);
|
|
|
|
return memory->calculateLatency(pkt);
|
2006-02-22 23:29:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-10-20 09:10:12 +02:00
|
|
|
PhysicalMemory::MemoryPort::recvFunctional(PacketPtr pkt)
|
2006-02-22 23:29:04 +01:00
|
|
|
{
|
2006-11-12 15:30:12 +01:00
|
|
|
//Since we are overriding the function, make sure to have the impl of the
|
|
|
|
//check or functional accesses here.
|
|
|
|
std::list<std::pair<Tick,PacketPtr> >::iterator i = transmitList.begin();
|
|
|
|
std::list<std::pair<Tick,PacketPtr> >::iterator end = transmitList.end();
|
|
|
|
bool notDone = true;
|
|
|
|
|
|
|
|
while (i != end && notDone) {
|
|
|
|
PacketPtr target = i->second;
|
|
|
|
// If the target contains data, and it overlaps the
|
|
|
|
// probed request, need to update data
|
|
|
|
if (target->intersect(pkt))
|
|
|
|
notDone = fixPacket(pkt, target);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2006-08-31 01:24:26 +02:00
|
|
|
// Default implementation of SimpleTimingPort::recvFunctional()
|
|
|
|
// calls recvAtomic() and throws away the latency; we can save a
|
|
|
|
// little here by just not calculating the latency.
|
2006-02-22 23:29:04 +01:00
|
|
|
memory->doFunctionalAccess(pkt);
|
|
|
|
}
|
|
|
|
|
2006-07-21 01:03:47 +02:00
|
|
|
unsigned int
|
|
|
|
PhysicalMemory::drain(Event *de)
|
|
|
|
{
|
2007-05-19 06:24:34 +02:00
|
|
|
int count = 0;
|
|
|
|
for (PortIterator pi = ports.begin(); pi != ports.end(); ++pi) {
|
|
|
|
count += (*pi)->drain(de);
|
|
|
|
}
|
|
|
|
|
2006-07-21 01:03:47 +02:00
|
|
|
if (count)
|
|
|
|
changeState(Draining);
|
|
|
|
else
|
|
|
|
changeState(Drained);
|
|
|
|
return count;
|
|
|
|
}
|
2006-02-22 23:29:04 +01:00
|
|
|
|
2006-02-03 20:54:37 +01:00
|
|
|
void
|
|
|
|
PhysicalMemory::serialize(ostream &os)
|
|
|
|
{
|
|
|
|
gzFile compressedMem;
|
|
|
|
string filename = name() + ".physmem";
|
|
|
|
|
|
|
|
SERIALIZE_SCALAR(filename);
|
|
|
|
|
|
|
|
// write memory file
|
|
|
|
string thefile = Checkpoint::dir() + "/" + filename.c_str();
|
|
|
|
int fd = creat(thefile.c_str(), 0664);
|
|
|
|
if (fd < 0) {
|
|
|
|
perror("creat");
|
|
|
|
fatal("Can't open physical memory checkpoint file '%s'\n", filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
compressedMem = gzdopen(fd, "wb");
|
|
|
|
if (compressedMem == NULL)
|
|
|
|
fatal("Insufficient memory to allocate compression state for %s\n",
|
|
|
|
filename);
|
|
|
|
|
2006-08-17 01:01:11 +02:00
|
|
|
if (gzwrite(compressedMem, pmemAddr, params()->addrRange.size()) != params()->addrRange.size()) {
|
2006-02-03 20:54:37 +01:00
|
|
|
fatal("Write failed on physical memory checkpoint file '%s'\n",
|
|
|
|
filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gzclose(compressedMem))
|
|
|
|
fatal("Close failed on physical memory checkpoint file '%s'\n",
|
|
|
|
filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PhysicalMemory::unserialize(Checkpoint *cp, const string §ion)
|
|
|
|
{
|
|
|
|
gzFile compressedMem;
|
|
|
|
long *tempPage;
|
|
|
|
long *pmem_current;
|
|
|
|
uint64_t curSize;
|
|
|
|
uint32_t bytesRead;
|
|
|
|
const int chunkSize = 16384;
|
|
|
|
|
|
|
|
|
|
|
|
string filename;
|
|
|
|
|
|
|
|
UNSERIALIZE_SCALAR(filename);
|
|
|
|
|
|
|
|
filename = cp->cptDir + "/" + filename;
|
|
|
|
|
|
|
|
// mmap memoryfile
|
|
|
|
int fd = open(filename.c_str(), O_RDONLY);
|
|
|
|
if (fd < 0) {
|
|
|
|
perror("open");
|
|
|
|
fatal("Can't open physical memory checkpoint file '%s'", filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
compressedMem = gzdopen(fd, "rb");
|
|
|
|
if (compressedMem == NULL)
|
|
|
|
fatal("Insufficient memory to allocate compression state for %s\n",
|
|
|
|
filename);
|
|
|
|
|
2006-08-17 01:01:11 +02:00
|
|
|
// unmap file that was mmaped in the constructor
|
|
|
|
// This is done here to make sure that gzip and open don't muck with our
|
|
|
|
// nice large space of memory before we reallocate it
|
2007-01-27 00:48:51 +01:00
|
|
|
munmap((char*)pmemAddr, params()->addrRange.size());
|
2006-02-03 20:54:37 +01:00
|
|
|
|
2006-08-17 01:01:11 +02:00
|
|
|
pmemAddr = (uint8_t *)mmap(NULL, params()->addrRange.size(), PROT_READ | PROT_WRITE,
|
2006-02-03 20:54:37 +01:00
|
|
|
MAP_ANON | MAP_PRIVATE, -1, 0);
|
|
|
|
|
2006-08-17 01:01:11 +02:00
|
|
|
if (pmemAddr == (void *)MAP_FAILED) {
|
2006-02-03 20:54:37 +01:00
|
|
|
perror("mmap");
|
|
|
|
fatal("Could not mmap physical memory!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
curSize = 0;
|
|
|
|
tempPage = (long*)malloc(chunkSize);
|
|
|
|
if (tempPage == NULL)
|
|
|
|
fatal("Unable to malloc memory to read file %s\n", filename);
|
|
|
|
|
|
|
|
/* Only copy bytes that are non-zero, so we don't give the VM system hell */
|
2006-08-17 01:01:11 +02:00
|
|
|
while (curSize < params()->addrRange.size()) {
|
2006-02-03 20:54:37 +01:00
|
|
|
bytesRead = gzread(compressedMem, tempPage, chunkSize);
|
2006-08-17 01:01:11 +02:00
|
|
|
if (bytesRead != chunkSize && bytesRead != params()->addrRange.size() - curSize)
|
2006-02-03 20:54:37 +01:00
|
|
|
fatal("Read failed on physical memory checkpoint file '%s'"
|
|
|
|
" got %d bytes, expected %d or %d bytes\n",
|
2006-08-17 01:01:11 +02:00
|
|
|
filename, bytesRead, chunkSize, params()->addrRange.size()-curSize);
|
2006-02-03 20:54:37 +01:00
|
|
|
|
|
|
|
assert(bytesRead % sizeof(long) == 0);
|
|
|
|
|
|
|
|
for (int x = 0; x < bytesRead/sizeof(long); x++)
|
|
|
|
{
|
|
|
|
if (*(tempPage+x) != 0) {
|
2006-08-17 01:01:11 +02:00
|
|
|
pmem_current = (long*)(pmemAddr + curSize + x * sizeof(long));
|
2006-02-03 20:54:37 +01:00
|
|
|
*pmem_current = *(tempPage+x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
curSize += bytesRead;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(tempPage);
|
|
|
|
|
|
|
|
if (gzclose(compressedMem))
|
|
|
|
fatal("Close failed on physical memory checkpoint file '%s'\n",
|
|
|
|
filename);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-02-22 23:29:04 +01:00
|
|
|
|
2006-02-03 20:54:37 +01:00
|
|
|
BEGIN_DECLARE_SIM_OBJECT_PARAMS(PhysicalMemory)
|
|
|
|
|
|
|
|
Param<string> file;
|
|
|
|
Param<Range<Addr> > range;
|
2006-04-20 23:14:30 +02:00
|
|
|
Param<Tick> latency;
|
2006-11-23 05:09:27 +01:00
|
|
|
Param<bool> zero;
|
2006-02-03 20:54:37 +01:00
|
|
|
|
|
|
|
END_DECLARE_SIM_OBJECT_PARAMS(PhysicalMemory)
|
|
|
|
|
|
|
|
BEGIN_INIT_SIM_OBJECT_PARAMS(PhysicalMemory)
|
|
|
|
|
|
|
|
INIT_PARAM_DFLT(file, "memory mapped file", ""),
|
2006-04-20 23:14:30 +02:00
|
|
|
INIT_PARAM(range, "Device Address Range"),
|
2006-11-23 05:09:27 +01:00
|
|
|
INIT_PARAM(latency, "Memory access latency"),
|
|
|
|
INIT_PARAM(zero, "Zero initialize memory")
|
2006-02-03 20:54:37 +01:00
|
|
|
|
|
|
|
END_INIT_SIM_OBJECT_PARAMS(PhysicalMemory)
|
|
|
|
|
|
|
|
CREATE_SIM_OBJECT(PhysicalMemory)
|
|
|
|
{
|
2006-08-17 01:01:11 +02:00
|
|
|
PhysicalMemory::Params *p = new PhysicalMemory::Params;
|
|
|
|
p->name = getInstanceName();
|
|
|
|
p->addrRange = range;
|
|
|
|
p->latency = latency;
|
2006-11-23 05:09:27 +01:00
|
|
|
p->zero = zero;
|
2006-08-17 01:01:11 +02:00
|
|
|
return new PhysicalMemory(p);
|
2006-02-03 20:54:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
REGISTER_SIM_OBJECT("PhysicalMemory", PhysicalMemory)
|