| /* |
| * Copyright (c) 2010, 2012-2013, 2021 Arm Limited |
| * All rights reserved |
| * |
| * The license below extends only to copyright in the software and shall |
| * not be construed as granting a license to any other intellectual |
| * property including but not limited to intellectual property relating |
| * to a hardware implementation of the functionality of the software |
| * licensed hereunder. You may use the software subject to the license |
| * terms below provided that you ensure that this notice is replicated |
| * unmodified and in its entirety in all distributions of the software, |
| * modified or unmodified, in source code or in binary form. |
| * |
| * Copyright (c) 2002-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. |
| */ |
| |
| #ifndef __ARCH_ARM_PAGETABLE_H__ |
| #define __ARCH_ARM_PAGETABLE_H__ |
| |
| #include <cstdint> |
| |
| #include "arch/arm/page_size.hh" |
| #include "arch/arm/types.hh" |
| #include "arch/arm/utility.hh" |
| #include "arch/generic/mmu.hh" |
| #include "enums/TypeTLB.hh" |
| #include "enums/ArmLookupLevel.hh" |
| #include "sim/serialize.hh" |
| |
| namespace gem5 |
| { |
| |
| namespace ArmISA |
| { |
| |
| // Granule sizes |
| enum GrainSize |
| { |
| Grain4KB = 12, |
| Grain16KB = 14, |
| Grain64KB = 16, |
| ReservedGrain = 0 |
| }; |
| |
| extern const GrainSize GrainMap_tg0[]; |
| extern const GrainSize GrainMap_tg1[]; |
| |
| // Max. physical address range in bits supported by the architecture |
| const unsigned MaxPhysAddrRange = 52; |
| |
| // ITB/DTB page table entry |
| struct PTE |
| { |
| void serialize(CheckpointOut &cp) const |
| { |
| panic("Need to implement PTE serialization\n"); |
| } |
| |
| void unserialize(CheckpointIn &cp) |
| { |
| panic("Need to implement PTE serialization\n"); |
| } |
| |
| }; |
| |
| struct PageTableOps |
| { |
| typedef enums::ArmLookupLevel LookupLevel; |
| typedef int64_t pte_t; |
| |
| virtual bool isValid(pte_t pte, unsigned level) const = 0; |
| virtual bool isLeaf(pte_t pte, unsigned level) const = 0; |
| virtual bool isWritable(pte_t pte, unsigned level, bool stage2) const = 0; |
| virtual Addr nextLevelPointer(pte_t pte, unsigned level) const = 0; |
| virtual Addr index(Addr va, unsigned level, int tsz) const = 0; |
| virtual Addr pageMask(pte_t pte, unsigned level) const = 0; |
| virtual unsigned walkBits(unsigned level) const = 0; |
| virtual LookupLevel firstLevel(uint8_t tsz) const = 0; |
| virtual LookupLevel firstS2Level(uint8_t sl0) const = 0; |
| virtual LookupLevel lastLevel() const = 0; |
| |
| Addr walkMask(unsigned level) const; |
| }; |
| |
| struct V7LPageTableOps : public PageTableOps |
| { |
| bool isValid(pte_t pte, unsigned level) const override; |
| bool isLeaf(pte_t pte, unsigned level) const override; |
| bool isWritable(pte_t pte, unsigned level, bool stage2) const override; |
| Addr nextLevelPointer(pte_t pte, unsigned level) const override; |
| Addr index(Addr va, unsigned level, int tsz) const override; |
| Addr pageMask(pte_t pte, unsigned level) const override; |
| unsigned walkBits(unsigned level) const override; |
| LookupLevel firstLevel(uint8_t tsz) const override; |
| LookupLevel lastLevel() const override; |
| }; |
| |
| struct V8PageTableOps4k : public PageTableOps |
| { |
| bool isValid(pte_t pte, unsigned level) const override; |
| bool isLeaf(pte_t pte, unsigned level) const override; |
| bool isWritable(pte_t pte, unsigned level, bool stage2) const override; |
| Addr nextLevelPointer(pte_t pte, unsigned level) const override; |
| Addr index(Addr va, unsigned level, int tsz) const override; |
| Addr pageMask(pte_t pte, unsigned level) const override; |
| unsigned walkBits(unsigned level) const override; |
| LookupLevel firstLevel(uint8_t tsz) const override; |
| LookupLevel firstS2Level(uint8_t sl0) const override; |
| LookupLevel lastLevel() const override; |
| }; |
| |
| struct V8PageTableOps16k : public PageTableOps |
| { |
| bool isValid(pte_t pte, unsigned level) const override; |
| bool isLeaf(pte_t pte, unsigned level) const override; |
| bool isWritable(pte_t pte, unsigned level, bool stage2) const override; |
| Addr nextLevelPointer(pte_t pte, unsigned level) const override; |
| Addr index(Addr va, unsigned level, int tsz) const override; |
| Addr pageMask(pte_t pte, unsigned level) const override; |
| unsigned walkBits(unsigned level) const override; |
| LookupLevel firstLevel(uint8_t tsz) const override; |
| LookupLevel firstS2Level(uint8_t sl0) const override; |
| LookupLevel lastLevel() const override; |
| }; |
| |
| struct V8PageTableOps64k : public PageTableOps |
| { |
| bool isValid(pte_t pte, unsigned level) const override; |
| bool isLeaf(pte_t pte, unsigned level) const override; |
| bool isWritable(pte_t pte, unsigned level, bool stage2) const override; |
| Addr nextLevelPointer(pte_t pte, unsigned level) const override; |
| Addr index(Addr va, unsigned level, int tsz) const override; |
| Addr pageMask(pte_t pte, unsigned level) const override; |
| unsigned walkBits(unsigned level) const override; |
| LookupLevel firstLevel(uint8_t tsz) const override; |
| LookupLevel firstS2Level(uint8_t sl0) const override; |
| LookupLevel lastLevel() const override; |
| }; |
| |
| // ITB/DTB table entry |
| struct TlbEntry : public Serializable |
| { |
| public: |
| typedef enums::ArmLookupLevel LookupLevel; |
| |
| enum class MemoryType : std::uint8_t |
| { |
| StronglyOrdered, |
| Device, |
| Normal |
| }; |
| |
| enum class DomainType : std::uint8_t |
| { |
| NoAccess = 0, |
| Client, |
| Reserved, |
| Manager |
| }; |
| |
| struct Lookup |
| { |
| // virtual address |
| Addr va = 0; |
| // context id/address space id to use |
| uint16_t asn = 0; |
| // if on lookup asn should be ignored |
| bool ignoreAsn = false; |
| // The virtual machine ID used for stage 2 translation |
| vmid_t vmid = 0; |
| // if the lookup is done from hyp mode |
| bool hyp = false; |
| // if the lookup is secure |
| bool secure = false; |
| // if the lookup should modify state |
| bool functional = false; |
| // selecting the translation regime |
| ExceptionLevel targetEL = EL0; |
| // if we are in host (EL2&0 regime) |
| bool inHost = false; |
| // mode to differentiate between read/writes/fetches. |
| BaseMMU::Mode mode = BaseMMU::Read; |
| }; |
| |
| // Matching variables |
| Addr pfn; |
| Addr size; // Size of this entry, == Type of TLB Rec |
| Addr vpn; // Virtual Page Number |
| uint64_t attributes; // Memory attributes formatted for PAR |
| |
| LookupLevel lookupLevel; // Lookup level where the descriptor was fetched |
| // from. Used to set the FSR for faults |
| // occurring while the long desc. format is in |
| // use (AArch32 w/ LPAE and AArch64) |
| |
| uint16_t asid; // Address Space Identifier |
| vmid_t vmid; // Virtual machine Identifier |
| uint8_t N; // Number of bits in pagesize |
| uint8_t innerAttrs; |
| uint8_t outerAttrs; |
| uint8_t ap; // Access permissions bits |
| uint8_t hap; // Hyp access permissions bits |
| DomainType domain; // Access Domain |
| |
| MemoryType mtype; |
| |
| // True if the long descriptor format is used for this entry (LPAE only) |
| bool longDescFormat; // @todo use this in the update attribute bethod |
| |
| bool isHyp; |
| bool global; |
| bool valid; |
| |
| // True if the entry targets the non-secure physical address space |
| bool ns; |
| // True if the entry was brought in from a non-secure page table |
| bool nstid; |
| // Exception level on insert, AARCH64 EL0&1, AARCH32 -> el=1 |
| ExceptionLevel el; |
| // This is used to distinguish between instruction and data entries |
| // in unified TLBs |
| TypeTLB type; |
| // True if the entry is caching a partial translation (a table walk) |
| bool partial; |
| |
| // Type of memory |
| bool nonCacheable; // Can we wrap this in mtype? |
| |
| // Memory Attributes |
| bool shareable; |
| bool outerShareable; |
| |
| // Access permissions |
| bool xn; // Execute Never |
| bool pxn; // Privileged Execute Never (LPAE only) |
| |
| //Construct an entry that maps to physical address addr for SE mode |
| TlbEntry(Addr _asn, Addr _vaddr, Addr _paddr, |
| bool uncacheable, bool read_only) : |
| pfn(_paddr >> PageShift), size(PageBytes - 1), vpn(_vaddr >> PageShift), |
| attributes(0), lookupLevel(LookupLevel::L1), |
| asid(_asn), vmid(0), N(0), |
| innerAttrs(0), outerAttrs(0), ap(read_only ? 0x3 : 0), hap(0x3), |
| domain(DomainType::Client), mtype(MemoryType::StronglyOrdered), |
| longDescFormat(false), isHyp(false), global(false), valid(true), |
| ns(true), nstid(true), el(EL0), type(TypeTLB::unified), |
| partial(false), |
| nonCacheable(uncacheable), |
| shareable(false), outerShareable(false), xn(0), pxn(0) |
| { |
| // no restrictions by default, hap = 0x3 |
| |
| // @todo Check the memory type |
| if (read_only) |
| warn("ARM TlbEntry does not support read-only mappings\n"); |
| } |
| |
| TlbEntry() : |
| pfn(0), size(0), vpn(0), attributes(0), lookupLevel(LookupLevel::L1), |
| asid(0), vmid(0), N(0), |
| innerAttrs(0), outerAttrs(0), ap(0), hap(0x3), |
| domain(DomainType::Client), mtype(MemoryType::StronglyOrdered), |
| longDescFormat(false), isHyp(false), global(false), valid(false), |
| ns(true), nstid(true), el(EL0), type(TypeTLB::unified), |
| partial(false), nonCacheable(false), |
| shareable(false), outerShareable(false), xn(0), pxn(0) |
| { |
| // no restrictions by default, hap = 0x3 |
| |
| // @todo Check the memory type |
| } |
| |
| void |
| updateVaddr(Addr new_vaddr) |
| { |
| vpn = new_vaddr >> PageShift; |
| } |
| |
| Addr |
| pageStart() const |
| { |
| return pfn << PageShift; |
| } |
| |
| bool |
| match(const Lookup &lookup) const |
| { |
| bool match = false; |
| Addr v = vpn << N; |
| if (valid && lookup.va >= v && lookup.va <= v + size && |
| (lookup.secure == !nstid) && (lookup.hyp == isHyp)) |
| { |
| match = checkELMatch(lookup.targetEL, lookup.inHost); |
| |
| if (match && !lookup.ignoreAsn) { |
| match = global || (lookup.asn == asid); |
| } |
| if (match && nstid) { |
| match = isHyp || (lookup.vmid == vmid); |
| } |
| } |
| return match; |
| } |
| |
| bool |
| checkELMatch(ExceptionLevel target_el, bool in_host) const |
| { |
| switch (target_el) { |
| case EL3: |
| return el == EL3; |
| case EL2: |
| { |
| return el == EL2 || (el == EL0 && in_host); |
| } |
| case EL1: |
| case EL0: |
| return (el == EL0) || (el == EL1); |
| default: |
| return false; |
| } |
| } |
| |
| Addr |
| pAddr(Addr va) const |
| { |
| return (pfn << N) | (va & size); |
| } |
| |
| void |
| updateAttributes() |
| { |
| uint64_t mask; |
| uint64_t newBits; |
| |
| // chec bit 11 to determine if its currently LPAE or VMSA format. |
| if ( attributes & (1 << 11) ) { |
| newBits = ((outerShareable ? 0x2 : |
| shareable ? 0x3 : 0) << 7); |
| mask = 0x180; |
| } else { |
| /** Formatting for Physical Address Register (PAR) |
| * Only including lower bits (TLB info here) |
| * PAR (32-bit format): |
| * PA [31:12] |
| * LPAE [11] (Large Physical Address Extension) |
| * TLB info [10:1] |
| * NOS [10] (Not Outer Sharable) |
| * NS [9] (Non-Secure) |
| * -- [8] (Implementation Defined) |
| * SH [7] (Sharable) |
| * Inner[6:4](Inner memory attributes) |
| * Outer[3:2](Outer memory attributes) |
| * SS [1] (SuperSection) |
| * F [0] (Fault, Fault Status in [6:1] if faulted) |
| */ |
| newBits = ((outerShareable ? 0:1) << 10) | |
| ((shareable ? 1:0) << 7) | |
| (innerAttrs << 4) | |
| (outerAttrs << 2); |
| // TODO: Supersection bit |
| mask = 0x4FC; |
| } |
| // common bits |
| newBits |= ns << 9; // NS bit |
| mask |= 1 << 9; |
| // add in the new bits |
| attributes &= ~mask; |
| attributes |= newBits; |
| } |
| |
| void |
| setAttributes(bool lpae) |
| { |
| attributes = lpae ? (1 << 11) : 0; |
| updateAttributes(); |
| } |
| |
| std::string |
| print() const |
| { |
| return csprintf("%#x, asn %d vmn %d hyp %d ppn %#x size: %#x ap:%d " |
| "ns:%d nstid:%d g:%d el:%d", vpn << N, asid, vmid, |
| isHyp, pfn << N, size, ap, ns, nstid, global, el); |
| } |
| |
| void |
| serialize(CheckpointOut &cp) const override |
| { |
| SERIALIZE_SCALAR(longDescFormat); |
| SERIALIZE_SCALAR(pfn); |
| SERIALIZE_SCALAR(size); |
| SERIALIZE_SCALAR(vpn); |
| SERIALIZE_SCALAR(asid); |
| SERIALIZE_SCALAR(vmid); |
| SERIALIZE_SCALAR(isHyp); |
| SERIALIZE_SCALAR(N); |
| SERIALIZE_SCALAR(global); |
| SERIALIZE_SCALAR(valid); |
| SERIALIZE_SCALAR(ns); |
| SERIALIZE_SCALAR(nstid); |
| SERIALIZE_ENUM(type); |
| SERIALIZE_SCALAR(nonCacheable); |
| SERIALIZE_ENUM(lookupLevel); |
| SERIALIZE_ENUM(mtype); |
| SERIALIZE_SCALAR(innerAttrs); |
| SERIALIZE_SCALAR(outerAttrs); |
| SERIALIZE_SCALAR(shareable); |
| SERIALIZE_SCALAR(outerShareable); |
| SERIALIZE_SCALAR(attributes); |
| SERIALIZE_SCALAR(xn); |
| SERIALIZE_SCALAR(pxn); |
| SERIALIZE_SCALAR(ap); |
| SERIALIZE_SCALAR(hap); |
| uint8_t domain_ = static_cast<uint8_t>(domain); |
| paramOut(cp, "domain", domain_); |
| } |
| void |
| unserialize(CheckpointIn &cp) override |
| { |
| UNSERIALIZE_SCALAR(longDescFormat); |
| UNSERIALIZE_SCALAR(pfn); |
| UNSERIALIZE_SCALAR(size); |
| UNSERIALIZE_SCALAR(vpn); |
| UNSERIALIZE_SCALAR(asid); |
| UNSERIALIZE_SCALAR(vmid); |
| UNSERIALIZE_SCALAR(isHyp); |
| UNSERIALIZE_SCALAR(N); |
| UNSERIALIZE_SCALAR(global); |
| UNSERIALIZE_SCALAR(valid); |
| UNSERIALIZE_SCALAR(ns); |
| UNSERIALIZE_SCALAR(nstid); |
| UNSERIALIZE_ENUM(type); |
| UNSERIALIZE_SCALAR(nonCacheable); |
| UNSERIALIZE_ENUM(lookupLevel); |
| UNSERIALIZE_ENUM(mtype); |
| UNSERIALIZE_SCALAR(innerAttrs); |
| UNSERIALIZE_SCALAR(outerAttrs); |
| UNSERIALIZE_SCALAR(shareable); |
| UNSERIALIZE_SCALAR(outerShareable); |
| UNSERIALIZE_SCALAR(attributes); |
| UNSERIALIZE_SCALAR(xn); |
| UNSERIALIZE_SCALAR(pxn); |
| UNSERIALIZE_SCALAR(ap); |
| UNSERIALIZE_SCALAR(hap); |
| uint8_t domain_; |
| paramIn(cp, "domain", domain_); |
| domain = static_cast<DomainType>(domain_); |
| } |
| |
| }; |
| |
| const PageTableOps *getPageTableOps(GrainSize trans_granule); |
| |
| } // namespace ArmISA |
| } // namespace gem5 |
| |
| #endif // __ARCH_ARM_PAGETABLE_H__ |