gem5  v22.1.0.0
tlb.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011, 2021 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) 2006 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __ARCH_GENERIC_TLB_HH__
42 #define __ARCH_GENERIC_TLB_HH__
43 
44 #include <type_traits>
45 
46 #include "arch/generic/mmu.hh"
47 #include "base/logging.hh"
48 #include "enums/TypeTLB.hh"
49 #include "mem/request.hh"
50 #include "params/BaseTLB.hh"
51 #include "sim/sim_object.hh"
52 
53 namespace gem5
54 {
55 
56 class ThreadContext;
57 
58 class BaseTLB : public SimObject
59 {
60  protected:
61  BaseTLB(const BaseTLBParams &p)
62  : SimObject(p), _type(p.entry_type), _nextLevel(p.next_level)
63  {}
64 
65  TypeTLB _type;
66 
68 
69  public:
70  virtual void demapPage(Addr vaddr, uint64_t asn) = 0;
71 
73  const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode) = 0;
74  virtual void translateTiming(
75  const RequestPtr &req, ThreadContext *tc,
76  BaseMMU::Translation *translation, BaseMMU::Mode mode) = 0;
77  virtual Fault
80  {
81  panic("Not implemented.\n");
82  }
83 
99  const RequestPtr &req, ThreadContext *tc,
100  BaseMMU::Mode mode) const = 0;
101 
105  virtual void flushAll() = 0;
106 
110  virtual void takeOverFrom(BaseTLB *otlb) = 0;
111 
121  virtual Port* getTableWalkerPort() { return NULL; }
122 
123  void memInvalidate() { flushAll(); }
124 
125  TypeTLB type() const { return _type; }
126 
127  BaseTLB* nextLevel() const { return _nextLevel; }
128 };
129 
138 inline auto
139 operator&(TypeTLB lhs, TypeTLB rhs)
140 {
141  using T = std::underlying_type_t<TypeTLB>;
142  return static_cast<T>(lhs) & static_cast<T>(rhs);
143 }
144 
145 } // namespace gem5
146 
147 #endif // __ARCH_GENERIC_TLB_HH__
void memInvalidate()
Invalidate the contents of memory buffers.
Definition: tlb.hh:123
BaseTLB(const BaseTLBParams &p)
Definition: tlb.hh:61
TypeTLB type() const
Definition: tlb.hh:125
virtual Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode) const =0
Do post-translation physical address finalization.
virtual void translateTiming(const RequestPtr &req, ThreadContext *tc, BaseMMU::Translation *translation, BaseMMU::Mode mode)=0
virtual void flushAll()=0
Remove all entries from the TLB.
BaseTLB * nextLevel() const
Definition: tlb.hh:127
virtual void takeOverFrom(BaseTLB *otlb)=0
Take over from an old tlb context.
virtual Port * getTableWalkerPort()
Get the table walker port if present.
Definition: tlb.hh:121
virtual void demapPage(Addr vaddr, uint64_t asn)=0
BaseTLB * _nextLevel
Definition: tlb.hh:67
virtual Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode)=0
virtual Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode)
Definition: tlb.hh:78
TypeTLB _type
Definition: tlb.hh:65
Ports are used to interface objects to each other.
Definition: port.hh:62
Abstract superclass for simulation objects.
Definition: sim_object.hh:148
ThreadContext is the external interface to all thread state for anything outside of the CPU.
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:178
Bitfield< 4, 0 > mode
Definition: misc_types.hh:74
Bitfield< 54 > p
Definition: pagetable.hh:70
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::shared_ptr< FaultBase > Fault
Definition: types.hh:248
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
auto operator&(TypeTLB lhs, TypeTLB rhs)
Implementing the "&" bitwise operator for TypeTLB allows us to handle TypeTLB::unified efficiently.
Definition: tlb.hh:139
Declaration of a request, the overall memory request consisting of the parts of the request that are ...

Generated on Wed Dec 21 2022 10:22:15 for gem5 by doxygen 1.9.1