simple_mem.hh revision 6107
14202Sbinkertn@umich.edu/*
24202Sbinkertn@umich.edu * Copyright (c) 2001-2005 The Regents of The University of Michigan
34202Sbinkertn@umich.edu * All rights reserved.
44202Sbinkertn@umich.edu *
54202Sbinkertn@umich.edu * Redistribution and use in source and binary forms, with or without
64202Sbinkertn@umich.edu * modification, are permitted provided that the following conditions are
74202Sbinkertn@umich.edu * met: redistributions of source code must retain the above copyright
84202Sbinkertn@umich.edu * notice, this list of conditions and the following disclaimer;
94202Sbinkertn@umich.edu * redistributions in binary form must reproduce the above copyright
104202Sbinkertn@umich.edu * notice, this list of conditions and the following disclaimer in the
114202Sbinkertn@umich.edu * documentation and/or other materials provided with the distribution;
124202Sbinkertn@umich.edu * neither the name of the copyright holders nor the names of its
134202Sbinkertn@umich.edu * contributors may be used to endorse or promote products derived from
144202Sbinkertn@umich.edu * this software without specific prior written permission.
154202Sbinkertn@umich.edu *
164202Sbinkertn@umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
174202Sbinkertn@umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
184202Sbinkertn@umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
194202Sbinkertn@umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
204202Sbinkertn@umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
214202Sbinkertn@umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
224202Sbinkertn@umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
234202Sbinkertn@umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
244202Sbinkertn@umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
254202Sbinkertn@umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
264202Sbinkertn@umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
274202Sbinkertn@umich.edu *
284202Sbinkertn@umich.edu * Authors: Ron Dreslinski
294202Sbinkertn@umich.edu */
304202Sbinkertn@umich.edu
314202Sbinkertn@umich.edu/* @file
324202Sbinkertn@umich.edu */
334486Sbinkertn@umich.edu
344486Sbinkertn@umich.edu#ifndef __PHYSICAL_MEMORY_HH__
356165Ssanchezd@stanford.edu#define __PHYSICAL_MEMORY_HH__
364486Sbinkertn@umich.edu
376168Snate@binkert.org#include <map>
386168Snate@binkert.org#include <string>
396168Snate@binkert.org
404486Sbinkertn@umich.edu#include "base/range.hh"
414202Sbinkertn@umich.edu#include "mem/mem_object.hh"
424202Sbinkertn@umich.edu#include "mem/packet.hh"
434202Sbinkertn@umich.edu#include "mem/tport.hh"
444202Sbinkertn@umich.edu#include "params/PhysicalMemory.hh"
454202Sbinkertn@umich.edu#include "sim/eventq.hh"
464202Sbinkertn@umich.edu
474202Sbinkertn@umich.edu//
484202Sbinkertn@umich.edu// Functional model for a contiguous block of physical memory. (i.e. RAM)
495650Sgblack@eecs.umich.edu//
506168Snate@binkert.orgclass PhysicalMemory : public MemObject
516168Snate@binkert.org{
526168Snate@binkert.org  protected:
534202Sbinkertn@umich.edu
544202Sbinkertn@umich.edu    class MemoryPort : public SimpleTimingPort
554202Sbinkertn@umich.edu    {
564202Sbinkertn@umich.edu        PhysicalMemory *memory;
574202Sbinkertn@umich.edu
584202Sbinkertn@umich.edu      public:
595192Ssaidi@eecs.umich.edu
605192Ssaidi@eecs.umich.edu        MemoryPort(const std::string &_name, PhysicalMemory *_memory);
615192Ssaidi@eecs.umich.edu
625192Ssaidi@eecs.umich.edu      protected:
635192Ssaidi@eecs.umich.edu
645192Ssaidi@eecs.umich.edu        virtual Tick recvAtomic(PacketPtr pkt);
655192Ssaidi@eecs.umich.edu
66        virtual void recvFunctional(PacketPtr pkt);
67
68        virtual void recvStatusChange(Status status);
69
70        virtual void getDeviceAddressRanges(AddrRangeList &resp,
71                                            bool &snoop);
72
73        virtual int deviceBlockSize();
74    };
75
76    int numPorts;
77
78
79  private:
80    // prevent copying of a MainMemory object
81    PhysicalMemory(const PhysicalMemory &specmem);
82    const PhysicalMemory &operator=(const PhysicalMemory &specmem);
83
84  protected:
85
86    class LockedAddr {
87      public:
88        // on alpha, minimum LL/SC granularity is 16 bytes, so lower
89        // bits need to masked off.
90        static const Addr Addr_Mask = 0xf;
91
92        static Addr mask(Addr paddr) { return (paddr & ~Addr_Mask); }
93
94        Addr addr;      // locked address
95        int contextId;     // locking hw context
96
97        // check for matching execution context
98        bool matchesContext(Request *req)
99        {
100            return (contextId == req->contextId());
101        }
102
103        LockedAddr(Request *req)
104            : addr(mask(req->getPaddr())),
105              contextId(req->contextId())
106        {
107        }
108    };
109
110    std::list<LockedAddr> lockedAddrList;
111
112    // helper function for checkLockedAddrs(): we really want to
113    // inline a quick check for an empty locked addr list (hopefully
114    // the common case), and do the full list search (if necessary) in
115    // this out-of-line function
116    bool checkLockedAddrList(PacketPtr pkt);
117
118    // Record the address of a load-locked operation so that we can
119    // clear the execution context's lock flag if a matching store is
120    // performed
121    void trackLoadLocked(PacketPtr pkt);
122
123    // Compare a store address with any locked addresses so we can
124    // clear the lock flag appropriately.  Return value set to 'false'
125    // if store operation should be suppressed (because it was a
126    // conditional store and the address was no longer locked by the
127    // requesting execution context), 'true' otherwise.  Note that
128    // this method must be called on *all* stores since even
129    // non-conditional stores must clear any matching lock addresses.
130    bool writeOK(PacketPtr pkt) {
131        Request *req = pkt->req;
132        if (lockedAddrList.empty()) {
133            // no locked addrs: nothing to check, store_conditional fails
134            bool isLLSC = pkt->isLLSC();
135            if (isLLSC) {
136                req->setExtraData(0);
137            }
138            return !isLLSC; // only do write if not an sc
139        } else {
140            // iterate over list...
141            return checkLockedAddrList(pkt);
142        }
143    }
144
145    uint8_t *pmemAddr;
146    int pagePtr;
147    Tick lat;
148    Tick lat_var;
149    std::vector<MemoryPort*> ports;
150    typedef std::vector<MemoryPort*>::iterator PortIterator;
151
152    uint64_t cachedSize;
153    uint64_t cachedStart;
154  public:
155    Addr new_page();
156    uint64_t size() { return cachedSize; }
157    uint64_t start() { return cachedStart; }
158
159  public:
160    typedef PhysicalMemoryParams Params;
161    PhysicalMemory(const Params *p);
162    virtual ~PhysicalMemory();
163
164    const Params *
165    params() const
166    {
167        return dynamic_cast<const Params *>(_params);
168    }
169
170  public:
171    int deviceBlockSize();
172    void getAddressRanges(AddrRangeList &resp, bool &snoop);
173    virtual Port *getPort(const std::string &if_name, int idx = -1);
174    void virtual init();
175    unsigned int drain(Event *de);
176
177  protected:
178    Tick doAtomicAccess(PacketPtr pkt);
179    void doFunctionalAccess(PacketPtr pkt);
180    virtual Tick calculateLatency(PacketPtr pkt);
181    void recvStatusChange(Port::Status status);
182
183  public:
184    virtual void serialize(std::ostream &os);
185    virtual void unserialize(Checkpoint *cp, const std::string &section);
186
187};
188
189#endif //__PHYSICAL_MEMORY_HH__
190