simple_mem.hh revision 2391
1/* 2 * Copyright (c) 2001-2005 The Regents of The University of Michigan 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; 9 * redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution; 12 * neither the name of the copyright holders nor the names of its 13 * contributors may be used to endorse or promote products derived from 14 * this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29/* @file 30 */ 31 32#ifndef __PHYSICAL_MEMORY_HH__ 33#define __PHYSICAL_MEMORY_HH__ 34 35#include "base/range.hh" 36#include "mem/memory.hh" 37 38// 39// Functional model for a contiguous block of physical memory. (i.e. RAM) 40// 41class PhysicalMemory : public Memory 42{ 43 private: 44 // prevent copying of a MainMemory object 45 PhysicalMemory(const PhysicalMemory &specmem); 46 const PhysicalMemory &operator=(const PhysicalMemory &specmem); 47 48 protected: 49 Addr base_addr; 50 Addr pmem_size; 51 uint8_t *pmem_addr; 52 int page_ptr; 53 54 public: 55 Addr new_page(); 56 uint64_t size() { return pmem_size; } 57 58 public: 59 PhysicalMemory(const std::string &n); 60 virtual ~PhysicalMemory(); 61 62 protected: 63 // error handling for prot_* functions 64 void prot_access_error(Addr addr, int size, const std::string &func); 65 66 public: 67 68 // Read/Write arbitrary amounts of data to simulated memory space 69 virtual void prot_read(Addr addr, uint8_t *p, int size); 70 virtual void prot_write(Addr addr, const uint8_t *p, int size); 71 virtual void prot_memset(Addr addr, uint8_t val, int size); 72 73 // fast back-door memory access for vtophys(), remote gdb, etc. 74 uint64_t phys_read_qword(Addr addr) const; 75 76 public: 77 virtual void serialize(std::ostream &os); 78 virtual void unserialize(Checkpoint *cp, const std::string §ion); 79}; 80 81PhysicalMemory::phys_read_qword(Addr addr) const 82{ 83 if (addr + sizeof(uint64_t) > pmem_size) 84 return 0; 85 86 return *(uint64_t *)(pmem_addr + addr); 87} 88 89 90#endif //__PHYSICAL_MEMORY_HH__ 91