packet.hh revision 13732
12381SN/A/*
213732Snikos.nikoleris@arm.com * Copyright (c) 2012-2019 ARM Limited
38949Sandreas.hansson@arm.com * All rights reserved
48949Sandreas.hansson@arm.com *
58949Sandreas.hansson@arm.com * The license below extends only to copyright in the software and shall
68949Sandreas.hansson@arm.com * not be construed as granting a license to any other intellectual
78949Sandreas.hansson@arm.com * property including but not limited to intellectual property relating
88949Sandreas.hansson@arm.com * to a hardware implementation of the functionality of the software
98949Sandreas.hansson@arm.com * licensed hereunder.  You may use the software subject to the license
108949Sandreas.hansson@arm.com * terms below provided that you ensure that this notice is replicated
118949Sandreas.hansson@arm.com * unmodified and in its entirety in all distributions of the software,
128949Sandreas.hansson@arm.com * modified or unmodified, in source code or in binary form.
138949Sandreas.hansson@arm.com *
142592SN/A * Copyright (c) 2006 The Regents of The University of Michigan
1510975Sdavid.hashe@amd.com * Copyright (c) 2010,2015 Advanced Micro Devices, Inc.
162381SN/A * All rights reserved.
172381SN/A *
182381SN/A * Redistribution and use in source and binary forms, with or without
192381SN/A * modification, are permitted provided that the following conditions are
202381SN/A * met: redistributions of source code must retain the above copyright
212381SN/A * notice, this list of conditions and the following disclaimer;
222381SN/A * redistributions in binary form must reproduce the above copyright
232381SN/A * notice, this list of conditions and the following disclaimer in the
242381SN/A * documentation and/or other materials provided with the distribution;
252381SN/A * neither the name of the copyright holders nor the names of its
262381SN/A * contributors may be used to endorse or promote products derived from
272381SN/A * this software without specific prior written permission.
282381SN/A *
292381SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
302381SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
312381SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
322381SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
332381SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
342381SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
352381SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
362381SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
372381SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
382381SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
392381SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
402665Ssaidi@eecs.umich.edu *
412665Ssaidi@eecs.umich.edu * Authors: Ron Dreslinski
422665Ssaidi@eecs.umich.edu *          Steve Reinhardt
432665Ssaidi@eecs.umich.edu *          Ali Saidi
449031Sandreas.hansson@arm.com *          Andreas Hansson
4512349Snikos.nikoleris@arm.com *          Nikos Nikoleris
462381SN/A */
472381SN/A
482381SN/A/**
492381SN/A * @file
502662Sstever@eecs.umich.edu * Declaration of the Packet class.
512381SN/A */
522381SN/A
532381SN/A#ifndef __MEM_PACKET_HH__
542381SN/A#define __MEM_PACKET_HH__
552381SN/A
568229Snate@binkert.org#include <bitset>
573348Sbinkertn@umich.edu#include <cassert>
583348Sbinkertn@umich.edu#include <list>
593348Sbinkertn@umich.edu
605735Snate@binkert.org#include "base/cast.hh"
614024Sbinkertn@umich.edu#include "base/compiler.hh"
625735Snate@binkert.org#include "base/flags.hh"
6312334Sgabeblack@google.com#include "base/logging.hh"
645314Sstever@gmail.com#include "base/printable.hh"
656216Snate@binkert.org#include "base/types.hh"
6613347Sgabeblack@google.com#include "config/the_isa.hh"
672392SN/A#include "mem/request.hh"
684167Sbinkertn@umich.edu#include "sim/core.hh"
692394SN/A
708737Skoansin.tan@gmail.comclass Packet;
713349Sbinkertn@umich.edutypedef Packet *PacketPtr;
722394SN/Atypedef uint8_t* PacketDataPtr;
732812Srdreslin@umich.edutypedef std::list<PacketPtr> PacketList;
7412351Snikos.nikoleris@arm.comtypedef uint64_t PacketId;
752812Srdreslin@umich.edu
764022Sstever@eecs.umich.educlass MemCmd
774022Sstever@eecs.umich.edu{
785735Snate@binkert.org    friend class Packet;
795735Snate@binkert.org
804022Sstever@eecs.umich.edu  public:
815735Snate@binkert.org    /**
825735Snate@binkert.org     * List of all commands associated with a packet.
835735Snate@binkert.org     */
844022Sstever@eecs.umich.edu    enum Command
854022Sstever@eecs.umich.edu    {
864022Sstever@eecs.umich.edu        InvalidCmd,
874022Sstever@eecs.umich.edu        ReadReq,
884473Sstever@eecs.umich.edu        ReadResp,
895319Sstever@gmail.com        ReadRespWithInvalidate,
904022Sstever@eecs.umich.edu        WriteReq,
914022Sstever@eecs.umich.edu        WriteResp,
9211199Sandreas.hansson@arm.com        WritebackDirty,
9311199Sandreas.hansson@arm.com        WritebackClean,
9412344Snikos.nikoleris@arm.com        WriteClean,            // writes dirty data below without evicting
9510883Sali.jafri@arm.com        CleanEvict,
964022Sstever@eecs.umich.edu        SoftPFReq,
9713367Syuetsu.kodama@riken.jp        SoftPFExReq,
984022Sstever@eecs.umich.edu        HardPFReq,
994022Sstever@eecs.umich.edu        SoftPFResp,
1004022Sstever@eecs.umich.edu        HardPFResp,
10110886Sandreas.hansson@arm.com        WriteLineReq,
1024022Sstever@eecs.umich.edu        UpgradeReq,
1037465Ssteve.reinhardt@amd.com        SCUpgradeReq,           // Special "weak" upgrade for StoreCond
1044628Sstever@eecs.umich.edu        UpgradeResp,
1057465Ssteve.reinhardt@amd.com        SCUpgradeFailReq,       // Failed SCUpgradeReq in MSHR (never sent)
1067465Ssteve.reinhardt@amd.com        UpgradeFailResp,        // Valid for SCUpgradeReq only
1074022Sstever@eecs.umich.edu        ReadExReq,
1084022Sstever@eecs.umich.edu        ReadExResp,
10910885Sandreas.hansson@arm.com        ReadCleanReq,
11010885Sandreas.hansson@arm.com        ReadSharedReq,
1114626Sstever@eecs.umich.edu        LoadLockedReq,
1124626Sstever@eecs.umich.edu        StoreCondReq,
1137669Ssteve.reinhardt@amd.com        StoreCondFailReq,       // Failed StoreCondReq in MSHR (never sent)
1144626Sstever@eecs.umich.edu        StoreCondResp,
1154040Ssaidi@eecs.umich.edu        SwapReq,
1164040Ssaidi@eecs.umich.edu        SwapResp,
1175650Sgblack@eecs.umich.edu        MessageReq,
1185650Sgblack@eecs.umich.edu        MessageResp,
11911256Santhony.gutierrez@amd.com        MemFenceReq,
12011256Santhony.gutierrez@amd.com        MemFenceResp,
12112347Snikos.nikoleris@arm.com        CleanSharedReq,
12212347Snikos.nikoleris@arm.com        CleanSharedResp,
12312347Snikos.nikoleris@arm.com        CleanInvalidReq,
12412347Snikos.nikoleris@arm.com        CleanInvalidResp,
1254870Sstever@eecs.umich.edu        // Error responses
1264870Sstever@eecs.umich.edu        // @TODO these should be classified as responses rather than
1274870Sstever@eecs.umich.edu        // requests; coding them as requests initially for backwards
1284870Sstever@eecs.umich.edu        // compatibility
1294870Sstever@eecs.umich.edu        InvalidDestError,  // packet dest field invalid
1304870Sstever@eecs.umich.edu        BadAddressError,   // memory address invalid
1318436SBrad.Beckmann@amd.com        FunctionalReadError, // unable to fulfill functional read
1328436SBrad.Beckmann@amd.com        FunctionalWriteError, // unable to fulfill functional write
1335314Sstever@gmail.com        // Fake simulator-only commands
1345314Sstever@gmail.com        PrintReq,       // Print state matching address
1358184Ssomayeh@cs.wisc.edu        FlushReq,      //request for a cache flush
13610886Sandreas.hansson@arm.com        InvalidateReq,   // request for address to be invalidated
13710886Sandreas.hansson@arm.com        InvalidateResp,
1384022Sstever@eecs.umich.edu        NUM_MEM_CMDS
1394022Sstever@eecs.umich.edu    };
1404022Sstever@eecs.umich.edu
1414022Sstever@eecs.umich.edu  private:
1425735Snate@binkert.org    /**
1435735Snate@binkert.org     * List of command attributes.
1445735Snate@binkert.org     */
1454022Sstever@eecs.umich.edu    enum Attribute
1464022Sstever@eecs.umich.edu    {
1474626Sstever@eecs.umich.edu        IsRead,         //!< Data flows from responder to requester
1484626Sstever@eecs.umich.edu        IsWrite,        //!< Data flows from requester to responder
1497465Ssteve.reinhardt@amd.com        IsUpgrade,
1504022Sstever@eecs.umich.edu        IsInvalidate,
15112347Snikos.nikoleris@arm.com        IsClean,        //!< Cleans any existing dirty blocks
15211284Sandreas.hansson@arm.com        NeedsWritable,  //!< Requires writable copy to complete in-cache
1534626Sstever@eecs.umich.edu        IsRequest,      //!< Issued by requester
1544626Sstever@eecs.umich.edu        IsResponse,     //!< Issue by responder
1554626Sstever@eecs.umich.edu        NeedsResponse,  //!< Requester needs response from target
15611199Sandreas.hansson@arm.com        IsEviction,
1574022Sstever@eecs.umich.edu        IsSWPrefetch,
1584022Sstever@eecs.umich.edu        IsHWPrefetch,
1596076Sgblack@eecs.umich.edu        IsLlsc,         //!< Alpha/MIPS LL or SC access
1604626Sstever@eecs.umich.edu        HasData,        //!< There is an associated payload
1614870Sstever@eecs.umich.edu        IsError,        //!< Error response
1625314Sstever@gmail.com        IsPrint,        //!< Print state matching address (for debugging)
1638184Ssomayeh@cs.wisc.edu        IsFlush,        //!< Flush the address from caches
16411600Sandreas.hansson@arm.com        FromCache,      //!< Request originated from a caching agent
1654022Sstever@eecs.umich.edu        NUM_COMMAND_ATTRIBUTES
1664022Sstever@eecs.umich.edu    };
1674022Sstever@eecs.umich.edu
1685735Snate@binkert.org    /**
1695735Snate@binkert.org     * Structure that defines attributes and other data associated
1705735Snate@binkert.org     * with a Command.
1715735Snate@binkert.org     */
1725735Snate@binkert.org    struct CommandInfo
1735735Snate@binkert.org    {
1745735Snate@binkert.org        /// Set of attribute flags.
1754022Sstever@eecs.umich.edu        const std::bitset<NUM_COMMAND_ATTRIBUTES> attributes;
1765735Snate@binkert.org        /// Corresponding response for requests; InvalidCmd if no
1775735Snate@binkert.org        /// response is applicable.
1784022Sstever@eecs.umich.edu        const Command response;
1795735Snate@binkert.org        /// String representation (for printing)
1804022Sstever@eecs.umich.edu        const std::string str;
1814022Sstever@eecs.umich.edu    };
1824022Sstever@eecs.umich.edu
1835735Snate@binkert.org    /// Array to map Command enum to associated info.
1844022Sstever@eecs.umich.edu    static const CommandInfo commandInfo[];
1854022Sstever@eecs.umich.edu
1864022Sstever@eecs.umich.edu  private:
1874022Sstever@eecs.umich.edu
1884022Sstever@eecs.umich.edu    Command cmd;
1894022Sstever@eecs.umich.edu
1905735Snate@binkert.org    bool
1915735Snate@binkert.org    testCmdAttrib(MemCmd::Attribute attrib) const
1925735Snate@binkert.org    {
1934022Sstever@eecs.umich.edu        return commandInfo[cmd].attributes[attrib] != 0;
1944022Sstever@eecs.umich.edu    }
1954022Sstever@eecs.umich.edu
1964022Sstever@eecs.umich.edu  public:
1974022Sstever@eecs.umich.edu
19810583SCurtis.Dunham@arm.com    bool isRead() const            { return testCmdAttrib(IsRead); }
19910583SCurtis.Dunham@arm.com    bool isWrite() const           { return testCmdAttrib(IsWrite); }
20010583SCurtis.Dunham@arm.com    bool isUpgrade() const         { return testCmdAttrib(IsUpgrade); }
20110583SCurtis.Dunham@arm.com    bool isRequest() const         { return testCmdAttrib(IsRequest); }
20210583SCurtis.Dunham@arm.com    bool isResponse() const        { return testCmdAttrib(IsResponse); }
20311284Sandreas.hansson@arm.com    bool needsWritable() const     { return testCmdAttrib(NeedsWritable); }
20410583SCurtis.Dunham@arm.com    bool needsResponse() const     { return testCmdAttrib(NeedsResponse); }
20510583SCurtis.Dunham@arm.com    bool isInvalidate() const      { return testCmdAttrib(IsInvalidate); }
20611199Sandreas.hansson@arm.com    bool isEviction() const        { return testCmdAttrib(IsEviction); }
20712347Snikos.nikoleris@arm.com    bool isClean() const           { return testCmdAttrib(IsClean); }
20811600Sandreas.hansson@arm.com    bool fromCache() const         { return testCmdAttrib(FromCache); }
20911199Sandreas.hansson@arm.com
21011199Sandreas.hansson@arm.com    /**
21111199Sandreas.hansson@arm.com     * A writeback is an eviction that carries data.
21211199Sandreas.hansson@arm.com     */
21311199Sandreas.hansson@arm.com    bool isWriteback() const       { return testCmdAttrib(IsEviction) &&
21411199Sandreas.hansson@arm.com                                            testCmdAttrib(HasData); }
21510570Sandreas.hansson@arm.com
21610570Sandreas.hansson@arm.com    /**
21710570Sandreas.hansson@arm.com     * Check if this particular packet type carries payload data. Note
21810570Sandreas.hansson@arm.com     * that this does not reflect if the data pointer of the packet is
21910570Sandreas.hansson@arm.com     * valid or not.
22010570Sandreas.hansson@arm.com     */
2214022Sstever@eecs.umich.edu    bool hasData() const        { return testCmdAttrib(HasData); }
2226102Sgblack@eecs.umich.edu    bool isLLSC() const         { return testCmdAttrib(IsLlsc); }
22310343SCurtis.Dunham@arm.com    bool isSWPrefetch() const   { return testCmdAttrib(IsSWPrefetch); }
22410343SCurtis.Dunham@arm.com    bool isHWPrefetch() const   { return testCmdAttrib(IsHWPrefetch); }
22510343SCurtis.Dunham@arm.com    bool isPrefetch() const     { return testCmdAttrib(IsSWPrefetch) ||
22610343SCurtis.Dunham@arm.com                                         testCmdAttrib(IsHWPrefetch); }
2274870Sstever@eecs.umich.edu    bool isError() const        { return testCmdAttrib(IsError); }
2285314Sstever@gmail.com    bool isPrint() const        { return testCmdAttrib(IsPrint); }
2298184Ssomayeh@cs.wisc.edu    bool isFlush() const        { return testCmdAttrib(IsFlush); }
2304022Sstever@eecs.umich.edu
23111294Sandreas.hansson@arm.com    Command
2325735Snate@binkert.org    responseCommand() const
2335735Snate@binkert.org    {
2344022Sstever@eecs.umich.edu        return commandInfo[cmd].response;
2354022Sstever@eecs.umich.edu    }
2364022Sstever@eecs.umich.edu
2375735Snate@binkert.org    /// Return the string to a cmd given by idx.
2385735Snate@binkert.org    const std::string &toString() const { return commandInfo[cmd].str; }
2394022Sstever@eecs.umich.edu    int toInt() const { return (int)cmd; }
2404022Sstever@eecs.umich.edu
2415735Snate@binkert.org    MemCmd(Command _cmd) : cmd(_cmd) { }
2425735Snate@binkert.org    MemCmd(int _cmd) : cmd((Command)_cmd) { }
2435735Snate@binkert.org    MemCmd() : cmd(InvalidCmd) { }
2444022Sstever@eecs.umich.edu
2455735Snate@binkert.org    bool operator==(MemCmd c2) const { return (cmd == c2.cmd); }
2465735Snate@binkert.org    bool operator!=(MemCmd c2) const { return (cmd != c2.cmd); }
2474022Sstever@eecs.umich.edu};
2484022Sstever@eecs.umich.edu
2492381SN/A/**
2502662Sstever@eecs.umich.edu * A Packet is used to encapsulate a transfer between two objects in
2512662Sstever@eecs.umich.edu * the memory system (e.g., the L1 and L2 cache).  (In contrast, a
2522662Sstever@eecs.umich.edu * single Request travels all the way from the requester to the
2532662Sstever@eecs.umich.edu * ultimate destination and back, possibly being conveyed by several
2542662Sstever@eecs.umich.edu * different Packets along the way.)
2552381SN/A */
2569044SAli.Saidi@ARM.comclass Packet : public Printable
2572381SN/A{
2582813Srdreslin@umich.edu  public:
2595735Snate@binkert.org    typedef uint32_t FlagsType;
2605735Snate@binkert.org    typedef ::Flags<FlagsType> Flags;
2614022Sstever@eecs.umich.edu
2625735Snate@binkert.org  private:
2635735Snate@binkert.org
26410938Sandreas.hansson@arm.com    enum : FlagsType {
26510938Sandreas.hansson@arm.com        // Flags to transfer across when copying a packet
26612349Snikos.nikoleris@arm.com        COPY_FLAGS             = 0x0000003F,
26710938Sandreas.hansson@arm.com
26813732Snikos.nikoleris@arm.com        // Flags that are used to create reponse packets
26913732Snikos.nikoleris@arm.com        RESPONDER_FLAGS        = 0x00000009,
27013732Snikos.nikoleris@arm.com
27111284Sandreas.hansson@arm.com        // Does this packet have sharers (which means it should not be
27211284Sandreas.hansson@arm.com        // considered writable) or not. See setHasSharers below.
27311284Sandreas.hansson@arm.com        HAS_SHARERS            = 0x00000001,
27411284Sandreas.hansson@arm.com
27510938Sandreas.hansson@arm.com        // Special control flags
27610938Sandreas.hansson@arm.com        /// Special timing-mode atomic snoop for multi-level coherence.
27710938Sandreas.hansson@arm.com        EXPRESS_SNOOP          = 0x00000002,
27811284Sandreas.hansson@arm.com
27911284Sandreas.hansson@arm.com        /// Allow a responding cache to inform the cache hierarchy
28011284Sandreas.hansson@arm.com        /// that it had a writable copy before responding. See
28111284Sandreas.hansson@arm.com        /// setResponderHadWritable below.
28211284Sandreas.hansson@arm.com        RESPONDER_HAD_WRITABLE = 0x00000004,
28311284Sandreas.hansson@arm.com
28411284Sandreas.hansson@arm.com        // Snoop co-ordination flag to indicate that a cache is
28511284Sandreas.hansson@arm.com        // responding to a snoop. See setCacheResponding below.
28611284Sandreas.hansson@arm.com        CACHE_RESPONDING       = 0x00000008,
28710938Sandreas.hansson@arm.com
28812346Snikos.nikoleris@arm.com        // The writeback/writeclean should be propagated further
28912346Snikos.nikoleris@arm.com        // downstream by the receiver
29012346Snikos.nikoleris@arm.com        WRITE_THROUGH          = 0x00000010,
29112346Snikos.nikoleris@arm.com
29212349Snikos.nikoleris@arm.com        // Response co-ordination flag for cache maintenance
29312349Snikos.nikoleris@arm.com        // operations
29412349Snikos.nikoleris@arm.com        SATISFIED              = 0x00000020,
29512349Snikos.nikoleris@arm.com
29611057Sandreas.hansson@arm.com        /// Are the 'addr' and 'size' fields valid?
29711057Sandreas.hansson@arm.com        VALID_ADDR             = 0x00000100,
29811057Sandreas.hansson@arm.com        VALID_SIZE             = 0x00000200,
29911057Sandreas.hansson@arm.com
30010938Sandreas.hansson@arm.com        /// Is the data pointer set to a value that shouldn't be freed
30110938Sandreas.hansson@arm.com        /// when the packet is destroyed?
30210938Sandreas.hansson@arm.com        STATIC_DATA            = 0x00001000,
30310938Sandreas.hansson@arm.com        /// The data pointer points to a value that should be freed when
30410938Sandreas.hansson@arm.com        /// the packet is destroyed. The pointer is assumed to be pointing
30510938Sandreas.hansson@arm.com        /// to an array, and delete [] is consequently called
30610938Sandreas.hansson@arm.com        DYNAMIC_DATA           = 0x00002000,
30710938Sandreas.hansson@arm.com
30810938Sandreas.hansson@arm.com        /// suppress the error if this packet encounters a functional
30910938Sandreas.hansson@arm.com        /// access failure.
31010938Sandreas.hansson@arm.com        SUPPRESS_FUNC_ERROR    = 0x00008000,
31110938Sandreas.hansson@arm.com
31210938Sandreas.hansson@arm.com        // Signal block present to squash prefetch and cache evict packets
31310938Sandreas.hansson@arm.com        // through express snoop flag
31410938Sandreas.hansson@arm.com        BLOCK_CACHED          = 0x00010000
31510938Sandreas.hansson@arm.com    };
3165735Snate@binkert.org
3175735Snate@binkert.org    Flags flags;
3185735Snate@binkert.org
3195735Snate@binkert.org  public:
3204022Sstever@eecs.umich.edu    typedef MemCmd::Command Command;
3214022Sstever@eecs.umich.edu
3225735Snate@binkert.org    /// The command field of the packet.
3234870Sstever@eecs.umich.edu    MemCmd cmd;
3244870Sstever@eecs.umich.edu
32512351Snikos.nikoleris@arm.com    const PacketId id;
32612351Snikos.nikoleris@arm.com
3275735Snate@binkert.org    /// A pointer to the original request.
32812749Sgiacomo.travaglini@arm.com    RequestPtr req;
3294870Sstever@eecs.umich.edu
3302566SN/A  private:
3315735Snate@binkert.org   /**
33212633Sodanrc@yahoo.com.br    * A pointer to the data being transferred. It can be different
33312633Sodanrc@yahoo.com.br    * sizes at each level of the hierarchy so it belongs to the
3345735Snate@binkert.org    * packet, not request. This may or may not be populated when a
33512633Sodanrc@yahoo.com.br    * responder receives the packet. If not populated memory should
3365735Snate@binkert.org    * be allocated.
3372566SN/A    */
3382566SN/A    PacketDataPtr data;
3392566SN/A
3405735Snate@binkert.org    /// The address of the request.  This address could be virtual or
3415735Snate@binkert.org    /// physical, depending on the system configuration.
3422381SN/A    Addr addr;
3432381SN/A
34410028SGiacomo.Gabrielli@arm.com    /// True if the request targets the secure memory space.
34510028SGiacomo.Gabrielli@arm.com    bool _isSecure;
34610028SGiacomo.Gabrielli@arm.com
3475735Snate@binkert.org    /// The size of the request or transfer.
3486227Snate@binkert.org    unsigned size;
3492381SN/A
3505735Snate@binkert.org    /**
35110723Sandreas.hansson@arm.com     * Track the bytes found that satisfy a functional read.
3528668Sgeoffrey.blake@arm.com     */
35310723Sandreas.hansson@arm.com    std::vector<bool> bytesValid;
3548668Sgeoffrey.blake@arm.com
35512966SMatteo.Andreozzi@arm.com    // Quality of Service priority value
35612966SMatteo.Andreozzi@arm.com    uint8_t _qosValue;
35712966SMatteo.Andreozzi@arm.com
3582641Sstever@eecs.umich.edu  public:
3592811Srdreslin@umich.edu
3609547Sandreas.hansson@arm.com    /**
36110694SMarco.Balboni@ARM.com     * The extra delay from seeing the packet until the header is
36210405Sandreas.hansson@arm.com     * transmitted. This delay is used to communicate the crossbar
36310405Sandreas.hansson@arm.com     * forwarding latency to the neighbouring object (e.g. a cache)
36410405Sandreas.hansson@arm.com     * that actually makes the packet wait. As the delay is relative,
36510405Sandreas.hansson@arm.com     * a 32-bit unsigned should be sufficient.
3669547Sandreas.hansson@arm.com     */
36710694SMarco.Balboni@ARM.com    uint32_t headerDelay;
3683218Sgblack@eecs.umich.edu
3699547Sandreas.hansson@arm.com    /**
37011127Sandreas.hansson@arm.com     * Keep track of the extra delay incurred by snooping upwards
37111127Sandreas.hansson@arm.com     * before sending a request down the memory system. This is used
37211127Sandreas.hansson@arm.com     * by the coherent crossbar to account for the additional request
37311127Sandreas.hansson@arm.com     * delay.
37411127Sandreas.hansson@arm.com     */
37511127Sandreas.hansson@arm.com    uint32_t snoopDelay;
37611127Sandreas.hansson@arm.com
37711127Sandreas.hansson@arm.com    /**
37810694SMarco.Balboni@ARM.com     * The extra pipelining delay from seeing the packet until the end of
37910694SMarco.Balboni@ARM.com     * payload is transmitted by the component that provided it (if
38010694SMarco.Balboni@ARM.com     * any). This includes the header delay. Similar to the header
38110694SMarco.Balboni@ARM.com     * delay, this is used to make up for the fact that the
38210405Sandreas.hansson@arm.com     * crossbar does not make the packet wait. As the delay is
38310405Sandreas.hansson@arm.com     * relative, a 32-bit unsigned should be sufficient.
3849547Sandreas.hansson@arm.com     */
38510694SMarco.Balboni@ARM.com    uint32_t payloadDelay;
3863218Sgblack@eecs.umich.edu
3875735Snate@binkert.org    /**
3885735Snate@binkert.org     * A virtual base opaque structure used to hold state associated
3899542Sandreas.hansson@arm.com     * with the packet (e.g., an MSHR), specific to a MemObject that
3909542Sandreas.hansson@arm.com     * sees the packet. A pointer to this state is returned in the
3919542Sandreas.hansson@arm.com     * packet's response so that the MemObject in question can quickly
3929542Sandreas.hansson@arm.com     * look up the state needed to process it. A specific subclass
3939542Sandreas.hansson@arm.com     * would be derived from this to carry state specific to a
3949542Sandreas.hansson@arm.com     * particular sending device.
3959542Sandreas.hansson@arm.com     *
3969542Sandreas.hansson@arm.com     * As multiple MemObjects may add their SenderState throughout the
3979542Sandreas.hansson@arm.com     * memory system, the SenderStates create a stack, where a
3989542Sandreas.hansson@arm.com     * MemObject can add a new Senderstate, as long as the
3999542Sandreas.hansson@arm.com     * predecessing SenderState is restored when the response comes
4009542Sandreas.hansson@arm.com     * back. For this reason, the predecessor should always be
4019542Sandreas.hansson@arm.com     * populated with the current SenderState of a packet before
4029542Sandreas.hansson@arm.com     * modifying the senderState field in the request packet.
4035735Snate@binkert.org     */
4045735Snate@binkert.org    struct SenderState
4055735Snate@binkert.org    {
4069542Sandreas.hansson@arm.com        SenderState* predecessor;
4079542Sandreas.hansson@arm.com        SenderState() : predecessor(NULL) {}
4082641Sstever@eecs.umich.edu        virtual ~SenderState() {}
4092641Sstever@eecs.umich.edu    };
4102641Sstever@eecs.umich.edu
4115315Sstever@gmail.com    /**
4125315Sstever@gmail.com     * Object used to maintain state of a PrintReq.  The senderState
4135315Sstever@gmail.com     * field of a PrintReq should always be of this type.
4145315Sstever@gmail.com     */
4159044SAli.Saidi@ARM.com    class PrintReqState : public SenderState
4165735Snate@binkert.org    {
4175735Snate@binkert.org      private:
4185735Snate@binkert.org        /**
4195735Snate@binkert.org         * An entry in the label stack.
4205735Snate@binkert.org         */
4215735Snate@binkert.org        struct LabelStackEntry
4225735Snate@binkert.org        {
4235314Sstever@gmail.com            const std::string label;
4245314Sstever@gmail.com            std::string *prefix;
4255314Sstever@gmail.com            bool labelPrinted;
4265735Snate@binkert.org            LabelStackEntry(const std::string &_label, std::string *_prefix);
4275314Sstever@gmail.com        };
4285314Sstever@gmail.com
4295314Sstever@gmail.com        typedef std::list<LabelStackEntry> LabelStack;
4305314Sstever@gmail.com        LabelStack labelStack;
4315314Sstever@gmail.com
4325314Sstever@gmail.com        std::string *curPrefixPtr;
4335314Sstever@gmail.com
4345314Sstever@gmail.com      public:
4355314Sstever@gmail.com        std::ostream &os;
4365314Sstever@gmail.com        const int verbosity;
4375314Sstever@gmail.com
4385314Sstever@gmail.com        PrintReqState(std::ostream &os, int verbosity = 0);
4395314Sstever@gmail.com        ~PrintReqState();
4405314Sstever@gmail.com
4415735Snate@binkert.org        /**
4425735Snate@binkert.org         * Returns the current line prefix.
4435735Snate@binkert.org         */
4445314Sstever@gmail.com        const std::string &curPrefix() { return *curPrefixPtr; }
4455315Sstever@gmail.com
4465735Snate@binkert.org        /**
4475735Snate@binkert.org         * Push a label onto the label stack, and prepend the given
4485315Sstever@gmail.com         * prefix string onto the current prefix.  Labels will only be
4495735Snate@binkert.org         * printed if an object within the label's scope is printed.
4505735Snate@binkert.org         */
4515314Sstever@gmail.com        void pushLabel(const std::string &lbl,
4525314Sstever@gmail.com                       const std::string &prefix = "  ");
4535735Snate@binkert.org
4545735Snate@binkert.org        /**
4555735Snate@binkert.org         * Pop a label off the label stack.
4565735Snate@binkert.org         */
4575314Sstever@gmail.com        void popLabel();
4585735Snate@binkert.org
4595735Snate@binkert.org        /**
4605735Snate@binkert.org         * Print all of the pending unprinted labels on the
4615315Sstever@gmail.com         * stack. Called by printObj(), so normally not called by
4625735Snate@binkert.org         * users unless bypassing printObj().
4635735Snate@binkert.org         */
4645314Sstever@gmail.com        void printLabels();
4655735Snate@binkert.org
4665735Snate@binkert.org        /**
4675735Snate@binkert.org         * Print a Printable object to os, because it matched the
4685735Snate@binkert.org         * address on a PrintReq.
4695735Snate@binkert.org         */
4705314Sstever@gmail.com        void printObj(Printable *obj);
4715314Sstever@gmail.com    };
4725314Sstever@gmail.com
4735735Snate@binkert.org    /**
4745735Snate@binkert.org     * This packet's sender state.  Devices should use dynamic_cast<>
4755735Snate@binkert.org     * to cast to the state appropriate to the sender.  The intent of
4765735Snate@binkert.org     * this variable is to allow a device to attach extra information
4779542Sandreas.hansson@arm.com     * to a request. A response packet must return the sender state
4785735Snate@binkert.org     * that was attached to the original request (even if a new packet
4795735Snate@binkert.org     * is created).
4805735Snate@binkert.org     */
4812662Sstever@eecs.umich.edu    SenderState *senderState;
4822641Sstever@eecs.umich.edu
4839542Sandreas.hansson@arm.com    /**
4849542Sandreas.hansson@arm.com     * Push a new sender state to the packet and make the current
4859542Sandreas.hansson@arm.com     * sender state the predecessor of the new one. This should be
4869542Sandreas.hansson@arm.com     * prefered over direct manipulation of the senderState member
4879542Sandreas.hansson@arm.com     * variable.
4889542Sandreas.hansson@arm.com     *
4899542Sandreas.hansson@arm.com     * @param sender_state SenderState to push at the top of the stack
4909542Sandreas.hansson@arm.com     */
4919542Sandreas.hansson@arm.com    void pushSenderState(SenderState *sender_state);
4929542Sandreas.hansson@arm.com
4939542Sandreas.hansson@arm.com    /**
4949542Sandreas.hansson@arm.com     * Pop the top of the state stack and return a pointer to it. This
4959542Sandreas.hansson@arm.com     * assumes the current sender state is not NULL. This should be
4969542Sandreas.hansson@arm.com     * preferred over direct manipulation of the senderState member
4979542Sandreas.hansson@arm.com     * variable.
4989542Sandreas.hansson@arm.com     *
4999542Sandreas.hansson@arm.com     * @return The current top of the stack
5009542Sandreas.hansson@arm.com     */
5019542Sandreas.hansson@arm.com    SenderState *popSenderState();
5029542Sandreas.hansson@arm.com
5039543Ssascha.bischoff@arm.com    /**
5049543Ssascha.bischoff@arm.com     * Go through the sender state stack and return the first instance
5059543Ssascha.bischoff@arm.com     * that is of type T (as determined by a dynamic_cast). If there
5069543Ssascha.bischoff@arm.com     * is no sender state of type T, NULL is returned.
5079543Ssascha.bischoff@arm.com     *
5089543Ssascha.bischoff@arm.com     * @return The topmost state of type T
5099543Ssascha.bischoff@arm.com     */
5109543Ssascha.bischoff@arm.com    template <typename T>
5119543Ssascha.bischoff@arm.com    T * findNextSenderState() const
5129543Ssascha.bischoff@arm.com    {
5139543Ssascha.bischoff@arm.com        T *t = NULL;
5149543Ssascha.bischoff@arm.com        SenderState* sender_state = senderState;
5159543Ssascha.bischoff@arm.com        while (t == NULL && sender_state != NULL) {
5169543Ssascha.bischoff@arm.com            t = dynamic_cast<T*>(sender_state);
5179543Ssascha.bischoff@arm.com            sender_state = sender_state->predecessor;
5189543Ssascha.bischoff@arm.com        }
5199543Ssascha.bischoff@arm.com        return t;
5209543Ssascha.bischoff@arm.com    }
5219543Ssascha.bischoff@arm.com
5225735Snate@binkert.org    /// Return the string name of the cmd field (for debugging and
5235735Snate@binkert.org    /// tracing).
5244022Sstever@eecs.umich.edu    const std::string &cmdString() const { return cmd.toString(); }
5252811Srdreslin@umich.edu
5265735Snate@binkert.org    /// Return the index of this command.
5274022Sstever@eecs.umich.edu    inline int cmdToIndex() const { return cmd.toInt(); }
5282811Srdreslin@umich.edu
52910583SCurtis.Dunham@arm.com    bool isRead() const              { return cmd.isRead(); }
53010583SCurtis.Dunham@arm.com    bool isWrite() const             { return cmd.isWrite(); }
53110583SCurtis.Dunham@arm.com    bool isUpgrade()  const          { return cmd.isUpgrade(); }
53210583SCurtis.Dunham@arm.com    bool isRequest() const           { return cmd.isRequest(); }
53310583SCurtis.Dunham@arm.com    bool isResponse() const          { return cmd.isResponse(); }
53411287Sandreas.hansson@arm.com    bool needsWritable() const
53511287Sandreas.hansson@arm.com    {
53611287Sandreas.hansson@arm.com        // we should never check if a response needsWritable, the
53711287Sandreas.hansson@arm.com        // request has this flag, and for a response we should rather
53811287Sandreas.hansson@arm.com        // look at the hasSharers flag (if not set, the response is to
53911287Sandreas.hansson@arm.com        // be considered writable)
54011287Sandreas.hansson@arm.com        assert(isRequest());
54111287Sandreas.hansson@arm.com        return cmd.needsWritable();
54211287Sandreas.hansson@arm.com    }
54310583SCurtis.Dunham@arm.com    bool needsResponse() const       { return cmd.needsResponse(); }
54410583SCurtis.Dunham@arm.com    bool isInvalidate() const        { return cmd.isInvalidate(); }
54511199Sandreas.hansson@arm.com    bool isEviction() const          { return cmd.isEviction(); }
54612347Snikos.nikoleris@arm.com    bool isClean() const             { return cmd.isClean(); }
54711600Sandreas.hansson@arm.com    bool fromCache() const           { return cmd.fromCache(); }
54811199Sandreas.hansson@arm.com    bool isWriteback() const         { return cmd.isWriteback(); }
54910583SCurtis.Dunham@arm.com    bool hasData() const             { return cmd.hasData(); }
55011286Sandreas.hansson@arm.com    bool hasRespData() const
55111286Sandreas.hansson@arm.com    {
55211286Sandreas.hansson@arm.com        MemCmd resp_cmd = cmd.responseCommand();
55311286Sandreas.hansson@arm.com        return resp_cmd.hasData();
55411286Sandreas.hansson@arm.com    }
55510583SCurtis.Dunham@arm.com    bool isLLSC() const              { return cmd.isLLSC(); }
55610583SCurtis.Dunham@arm.com    bool isError() const             { return cmd.isError(); }
55710583SCurtis.Dunham@arm.com    bool isPrint() const             { return cmd.isPrint(); }
55810583SCurtis.Dunham@arm.com    bool isFlush() const             { return cmd.isFlush(); }
5592812Srdreslin@umich.edu
56013350Snikos.nikoleris@arm.com    bool isWholeLineWrite(unsigned blk_size)
56113350Snikos.nikoleris@arm.com    {
56213350Snikos.nikoleris@arm.com        return (cmd == MemCmd::WriteReq || cmd == MemCmd::WriteLineReq) &&
56313350Snikos.nikoleris@arm.com            getOffset(blk_size) == 0 && getSize() == blk_size;
56413350Snikos.nikoleris@arm.com    }
56513350Snikos.nikoleris@arm.com
56611284Sandreas.hansson@arm.com    //@{
56711284Sandreas.hansson@arm.com    /// Snoop flags
56811284Sandreas.hansson@arm.com    /**
56911284Sandreas.hansson@arm.com     * Set the cacheResponding flag. This is used by the caches to
57011284Sandreas.hansson@arm.com     * signal another cache that they are responding to a request. A
57111284Sandreas.hansson@arm.com     * cache will only respond to snoops if it has the line in either
57211284Sandreas.hansson@arm.com     * Modified or Owned state. Note that on snoop hits we always pass
57311284Sandreas.hansson@arm.com     * the line as Modified and never Owned. In the case of an Owned
57411284Sandreas.hansson@arm.com     * line we proceed to invalidate all other copies.
57511284Sandreas.hansson@arm.com     *
57611284Sandreas.hansson@arm.com     * On a cache fill (see Cache::handleFill), we check hasSharers
57711284Sandreas.hansson@arm.com     * first, ignoring the cacheResponding flag if hasSharers is set.
57811284Sandreas.hansson@arm.com     * A line is consequently allocated as:
57911284Sandreas.hansson@arm.com     *
58011284Sandreas.hansson@arm.com     * hasSharers cacheResponding state
58111284Sandreas.hansson@arm.com     * true       false           Shared
58211284Sandreas.hansson@arm.com     * true       true            Shared
58311284Sandreas.hansson@arm.com     * false      false           Exclusive
58411284Sandreas.hansson@arm.com     * false      true            Modified
58511284Sandreas.hansson@arm.com     */
58611284Sandreas.hansson@arm.com    void setCacheResponding()
58710567Sandreas.hansson@arm.com    {
58810567Sandreas.hansson@arm.com        assert(isRequest());
58911284Sandreas.hansson@arm.com        assert(!flags.isSet(CACHE_RESPONDING));
59011284Sandreas.hansson@arm.com        flags.set(CACHE_RESPONDING);
59110567Sandreas.hansson@arm.com    }
59211284Sandreas.hansson@arm.com    bool cacheResponding() const { return flags.isSet(CACHE_RESPONDING); }
59311284Sandreas.hansson@arm.com    /**
59411284Sandreas.hansson@arm.com     * On fills, the hasSharers flag is used by the caches in
59511284Sandreas.hansson@arm.com     * combination with the cacheResponding flag, as clarified
59611284Sandreas.hansson@arm.com     * above. If the hasSharers flag is not set, the packet is passing
59711284Sandreas.hansson@arm.com     * writable. Thus, a response from a memory passes the line as
59811284Sandreas.hansson@arm.com     * writable by default.
59911284Sandreas.hansson@arm.com     *
60011284Sandreas.hansson@arm.com     * The hasSharers flag is also used by upstream caches to inform a
60111284Sandreas.hansson@arm.com     * downstream cache that they have the block (by calling
60211284Sandreas.hansson@arm.com     * setHasSharers on snoop request packets that hit in upstream
60311284Sandreas.hansson@arm.com     * cachs tags or MSHRs). If the snoop packet has sharers, a
60411284Sandreas.hansson@arm.com     * downstream cache is prevented from passing a dirty line upwards
60511284Sandreas.hansson@arm.com     * if it was not explicitly asked for a writable copy. See
60611284Sandreas.hansson@arm.com     * Cache::satisfyCpuSideRequest.
60711284Sandreas.hansson@arm.com     *
60811284Sandreas.hansson@arm.com     * The hasSharers flag is also used on writebacks, in
60911284Sandreas.hansson@arm.com     * combination with the WritbackClean or WritebackDirty commands,
61011284Sandreas.hansson@arm.com     * to allocate the block downstream either as:
61111284Sandreas.hansson@arm.com     *
61211284Sandreas.hansson@arm.com     * command        hasSharers state
61311284Sandreas.hansson@arm.com     * WritebackDirty false      Modified
61411284Sandreas.hansson@arm.com     * WritebackDirty true       Owned
61511284Sandreas.hansson@arm.com     * WritebackClean false      Exclusive
61611284Sandreas.hansson@arm.com     * WritebackClean true       Shared
61711284Sandreas.hansson@arm.com     */
61811284Sandreas.hansson@arm.com    void setHasSharers()    { flags.set(HAS_SHARERS); }
61911284Sandreas.hansson@arm.com    bool hasSharers() const { return flags.isSet(HAS_SHARERS); }
62011284Sandreas.hansson@arm.com    //@}
6214870Sstever@eecs.umich.edu
62211284Sandreas.hansson@arm.com    /**
62311284Sandreas.hansson@arm.com     * The express snoop flag is used for two purposes. Firstly, it is
62411284Sandreas.hansson@arm.com     * used to bypass flow control for normal (non-snoop) requests
62511284Sandreas.hansson@arm.com     * going downstream in the memory system. In cases where a cache
62611284Sandreas.hansson@arm.com     * is responding to a snoop from another cache (it had a dirty
62711284Sandreas.hansson@arm.com     * line), but the line is not writable (and there are possibly
62811284Sandreas.hansson@arm.com     * other copies), the express snoop flag is set by the downstream
62911284Sandreas.hansson@arm.com     * cache to invalidate all other copies in zero time. Secondly,
63011284Sandreas.hansson@arm.com     * the express snoop flag is also set to be able to distinguish
63111284Sandreas.hansson@arm.com     * snoop packets that came from a downstream cache, rather than
63211284Sandreas.hansson@arm.com     * snoop packets from neighbouring caches.
63311284Sandreas.hansson@arm.com     */
63411284Sandreas.hansson@arm.com    void setExpressSnoop()      { flags.set(EXPRESS_SNOOP); }
63511284Sandreas.hansson@arm.com    bool isExpressSnoop() const { return flags.isSet(EXPRESS_SNOOP); }
63611284Sandreas.hansson@arm.com
63711284Sandreas.hansson@arm.com    /**
63811284Sandreas.hansson@arm.com     * On responding to a snoop request (which only happens for
63911284Sandreas.hansson@arm.com     * Modified or Owned lines), make sure that we can transform an
64011284Sandreas.hansson@arm.com     * Owned response to a Modified one. If this flag is not set, the
64111284Sandreas.hansson@arm.com     * responding cache had the line in the Owned state, and there are
64211284Sandreas.hansson@arm.com     * possibly other Shared copies in the memory system. A downstream
64311284Sandreas.hansson@arm.com     * cache helps in orchestrating the invalidation of these copies
64411284Sandreas.hansson@arm.com     * by sending out the appropriate express snoops.
64511284Sandreas.hansson@arm.com     */
64611284Sandreas.hansson@arm.com    void setResponderHadWritable()
64711284Sandreas.hansson@arm.com    {
64811284Sandreas.hansson@arm.com        assert(cacheResponding());
64911746Snikos.nikoleris@arm.com        assert(!responderHadWritable());
65011284Sandreas.hansson@arm.com        flags.set(RESPONDER_HAD_WRITABLE);
65111284Sandreas.hansson@arm.com    }
65211284Sandreas.hansson@arm.com    bool responderHadWritable() const
65311284Sandreas.hansson@arm.com    { return flags.isSet(RESPONDER_HAD_WRITABLE); }
65411284Sandreas.hansson@arm.com
65512346Snikos.nikoleris@arm.com    /**
65613732Snikos.nikoleris@arm.com     * Copy the reponse flags from an input packet to this packet. The
65713732Snikos.nikoleris@arm.com     * reponse flags determine whether a responder has been found and
65813732Snikos.nikoleris@arm.com     * the state at which the block will be at the destination.
65913732Snikos.nikoleris@arm.com     *
66013732Snikos.nikoleris@arm.com     * @pkt The packet that we will copy flags from
66113732Snikos.nikoleris@arm.com     */
66213732Snikos.nikoleris@arm.com    void copyResponderFlags(const PacketPtr pkt);
66313732Snikos.nikoleris@arm.com
66413732Snikos.nikoleris@arm.com    /**
66512346Snikos.nikoleris@arm.com     * A writeback/writeclean cmd gets propagated further downstream
66612346Snikos.nikoleris@arm.com     * by the receiver when the flag is set.
66712346Snikos.nikoleris@arm.com     */
66812346Snikos.nikoleris@arm.com    void setWriteThrough()
66912346Snikos.nikoleris@arm.com    {
67012346Snikos.nikoleris@arm.com        assert(cmd.isWrite() &&
67112346Snikos.nikoleris@arm.com               (cmd.isEviction() || cmd == MemCmd::WriteClean));
67212346Snikos.nikoleris@arm.com        flags.set(WRITE_THROUGH);
67312346Snikos.nikoleris@arm.com    }
67412346Snikos.nikoleris@arm.com    void clearWriteThrough() { flags.clear(WRITE_THROUGH); }
67512346Snikos.nikoleris@arm.com    bool writeThrough() const { return flags.isSet(WRITE_THROUGH); }
67612346Snikos.nikoleris@arm.com
67712349Snikos.nikoleris@arm.com    /**
67812349Snikos.nikoleris@arm.com     * Set when a request hits in a cache and the cache is not going
67912349Snikos.nikoleris@arm.com     * to respond. This is used by the crossbar to coordinate
68012349Snikos.nikoleris@arm.com     * responses for cache maintenance operations.
68112349Snikos.nikoleris@arm.com     */
68212349Snikos.nikoleris@arm.com    void setSatisfied()
68312349Snikos.nikoleris@arm.com    {
68412349Snikos.nikoleris@arm.com        assert(cmd.isClean());
68512349Snikos.nikoleris@arm.com        assert(!flags.isSet(SATISFIED));
68612349Snikos.nikoleris@arm.com        flags.set(SATISFIED);
68712349Snikos.nikoleris@arm.com    }
68812349Snikos.nikoleris@arm.com    bool satisfied() const { return flags.isSet(SATISFIED); }
68912349Snikos.nikoleris@arm.com
6909951Sstephan.diestelhorst@arm.com    void setSuppressFuncError()     { flags.set(SUPPRESS_FUNC_ERROR); }
6919951Sstephan.diestelhorst@arm.com    bool suppressFuncError() const  { return flags.isSet(SUPPRESS_FUNC_ERROR); }
69210763Sali.jafri@arm.com    void setBlockCached()          { flags.set(BLOCK_CACHED); }
69310763Sali.jafri@arm.com    bool isBlockCached() const     { return flags.isSet(BLOCK_CACHED); }
69410883Sali.jafri@arm.com    void clearBlockCached()        { flags.clear(BLOCK_CACHED); }
6954895Sstever@eecs.umich.edu
69612966SMatteo.Andreozzi@arm.com    /**
69712966SMatteo.Andreozzi@arm.com     * QoS Value getter
69812966SMatteo.Andreozzi@arm.com     * Returns 0 if QoS value was never set (constructor default).
69912966SMatteo.Andreozzi@arm.com     *
70012966SMatteo.Andreozzi@arm.com     * @return QoS priority value of the packet
70112966SMatteo.Andreozzi@arm.com     */
70212966SMatteo.Andreozzi@arm.com    inline uint8_t qosValue() const { return _qosValue; }
70312966SMatteo.Andreozzi@arm.com
70412966SMatteo.Andreozzi@arm.com    /**
70512966SMatteo.Andreozzi@arm.com     * QoS Value setter
70612966SMatteo.Andreozzi@arm.com     * Interface for setting QoS priority value of the packet.
70712966SMatteo.Andreozzi@arm.com     *
70812966SMatteo.Andreozzi@arm.com     * @param qos_value QoS priority value
70912966SMatteo.Andreozzi@arm.com     */
71012966SMatteo.Andreozzi@arm.com    inline void qosValue(const uint8_t qos_value)
71112966SMatteo.Andreozzi@arm.com    { _qosValue = qos_value; }
71212966SMatteo.Andreozzi@arm.com
71312966SMatteo.Andreozzi@arm.com    inline MasterID masterId() const { return req->masterId(); }
71412966SMatteo.Andreozzi@arm.com
7154870Sstever@eecs.umich.edu    // Network error conditions... encapsulate them as methods since
7164870Sstever@eecs.umich.edu    // their encoding keeps changing (from result field to command
7174870Sstever@eecs.umich.edu    // field, etc.)
7185735Snate@binkert.org    void
7195735Snate@binkert.org    setBadAddress()
7205735Snate@binkert.org    {
7215735Snate@binkert.org        assert(isResponse());
7225735Snate@binkert.org        cmd = MemCmd::BadAddressError;
7235735Snate@binkert.org    }
7245735Snate@binkert.org
7254986Ssaidi@eecs.umich.edu    void copyError(Packet *pkt) { assert(pkt->isError()); cmd = pkt->cmd; }
7262814Srdreslin@umich.edu
72711057Sandreas.hansson@arm.com    Addr getAddr() const { assert(flags.isSet(VALID_ADDR)); return addr; }
7289259SAli.Saidi@ARM.com    /**
7299259SAli.Saidi@ARM.com     * Update the address of this packet mid-transaction. This is used
7309259SAli.Saidi@ARM.com     * by the address mapper to change an already set address to a new
7319259SAli.Saidi@ARM.com     * one based on the system configuration. It is intended to remap
7329259SAli.Saidi@ARM.com     * an existing address, so it asserts that the current address is
7339259SAli.Saidi@ARM.com     * valid.
7349259SAli.Saidi@ARM.com     */
73511057Sandreas.hansson@arm.com    void setAddr(Addr _addr) { assert(flags.isSet(VALID_ADDR)); addr = _addr; }
7369259SAli.Saidi@ARM.com
73711057Sandreas.hansson@arm.com    unsigned getSize() const  { assert(flags.isSet(VALID_SIZE)); return size; }
73810938Sandreas.hansson@arm.com
73910938Sandreas.hansson@arm.com    Addr getOffset(unsigned int blk_size) const
74010938Sandreas.hansson@arm.com    {
74110938Sandreas.hansson@arm.com        return getAddr() & Addr(blk_size - 1);
74210938Sandreas.hansson@arm.com    }
74310938Sandreas.hansson@arm.com
74410938Sandreas.hansson@arm.com    Addr getBlockAddr(unsigned int blk_size) const
74510938Sandreas.hansson@arm.com    {
74610938Sandreas.hansson@arm.com        return getAddr() & ~(Addr(blk_size - 1));
74710938Sandreas.hansson@arm.com    }
7482549SN/A
74911057Sandreas.hansson@arm.com    bool isSecure() const
75011057Sandreas.hansson@arm.com    {
75111057Sandreas.hansson@arm.com        assert(flags.isSet(VALID_ADDR));
75211057Sandreas.hansson@arm.com        return _isSecure;
75311057Sandreas.hansson@arm.com    }
75410028SGiacomo.Gabrielli@arm.com
7555735Snate@binkert.org    /**
75611306Santhony.gutierrez@amd.com     * Accessor function to atomic op.
75711306Santhony.gutierrez@amd.com     */
75811306Santhony.gutierrez@amd.com    AtomicOpFunctor *getAtomicOp() const { return req->getAtomicOpFunctor(); }
75911306Santhony.gutierrez@amd.com    bool isAtomicOp() const { return req->isAtomic(); }
76011306Santhony.gutierrez@amd.com
76111306Santhony.gutierrez@amd.com    /**
7627550SBrad.Beckmann@amd.com     * It has been determined that the SC packet should successfully update
76310938Sandreas.hansson@arm.com     * memory. Therefore, convert this SC packet to a normal write.
7647550SBrad.Beckmann@amd.com     */
7657550SBrad.Beckmann@amd.com    void
7667550SBrad.Beckmann@amd.com    convertScToWrite()
7677550SBrad.Beckmann@amd.com    {
7687550SBrad.Beckmann@amd.com        assert(isLLSC());
7697550SBrad.Beckmann@amd.com        assert(isWrite());
7707550SBrad.Beckmann@amd.com        cmd = MemCmd::WriteReq;
7717550SBrad.Beckmann@amd.com    }
7727550SBrad.Beckmann@amd.com
7737550SBrad.Beckmann@amd.com    /**
77410938Sandreas.hansson@arm.com     * When ruby is in use, Ruby will monitor the cache line and the
77510938Sandreas.hansson@arm.com     * phys memory should treat LL ops as normal reads.
7767550SBrad.Beckmann@amd.com     */
7777550SBrad.Beckmann@amd.com    void
7787550SBrad.Beckmann@amd.com    convertLlToRead()
7797550SBrad.Beckmann@amd.com    {
7807550SBrad.Beckmann@amd.com        assert(isLLSC());
7817550SBrad.Beckmann@amd.com        assert(isRead());
7827550SBrad.Beckmann@amd.com        cmd = MemCmd::ReadReq;
7837550SBrad.Beckmann@amd.com    }
7847550SBrad.Beckmann@amd.com
7857550SBrad.Beckmann@amd.com    /**
78610938Sandreas.hansson@arm.com     * Constructor. Note that a Request object must be constructed
78711057Sandreas.hansson@arm.com     * first, but the Requests's physical address and size fields need
78811057Sandreas.hansson@arm.com     * not be valid. The command must be supplied.
7895735Snate@binkert.org     */
79012749Sgiacomo.travaglini@arm.com    Packet(const RequestPtr &_req, MemCmd _cmd)
79112966SMatteo.Andreozzi@arm.com        :  cmd(_cmd), id((PacketId)_req.get()), req(_req),
79212966SMatteo.Andreozzi@arm.com           data(nullptr), addr(0), _isSecure(false), size(0),
79312966SMatteo.Andreozzi@arm.com           _qosValue(0), headerDelay(0), snoopDelay(0),
79412351Snikos.nikoleris@arm.com           payloadDelay(0), senderState(NULL)
79511057Sandreas.hansson@arm.com    {
79611057Sandreas.hansson@arm.com        if (req->hasPaddr()) {
79711057Sandreas.hansson@arm.com            addr = req->getPaddr();
79811057Sandreas.hansson@arm.com            flags.set(VALID_ADDR);
79911057Sandreas.hansson@arm.com            _isSecure = req->isSecure();
80011057Sandreas.hansson@arm.com        }
80111057Sandreas.hansson@arm.com        if (req->hasSize()) {
80211057Sandreas.hansson@arm.com            size = req->getSize();
80311057Sandreas.hansson@arm.com            flags.set(VALID_SIZE);
80411057Sandreas.hansson@arm.com        }
80511057Sandreas.hansson@arm.com    }
80611057Sandreas.hansson@arm.com
80711057Sandreas.hansson@arm.com    /**
80811057Sandreas.hansson@arm.com     * Alternate constructor if you are trying to create a packet with
80911057Sandreas.hansson@arm.com     * a request that is for a whole block, not the address from the
81011057Sandreas.hansson@arm.com     * req.  this allows for overriding the size/addr of the req.
81111057Sandreas.hansson@arm.com     */
81212749Sgiacomo.travaglini@arm.com    Packet(const RequestPtr &_req, MemCmd _cmd, int _blkSize, PacketId _id = 0)
81312749Sgiacomo.travaglini@arm.com        :  cmd(_cmd), id(_id ? _id : (PacketId)_req.get()), req(_req),
81412966SMatteo.Andreozzi@arm.com           data(nullptr), addr(0), _isSecure(false),
81512966SMatteo.Andreozzi@arm.com           _qosValue(0), headerDelay(0),
81612749Sgiacomo.travaglini@arm.com           snoopDelay(0), payloadDelay(0), senderState(NULL)
81711057Sandreas.hansson@arm.com    {
81811057Sandreas.hansson@arm.com        if (req->hasPaddr()) {
81911057Sandreas.hansson@arm.com            addr = req->getPaddr() & ~(_blkSize - 1);
82011057Sandreas.hansson@arm.com            flags.set(VALID_ADDR);
82111057Sandreas.hansson@arm.com            _isSecure = req->isSecure();
82211057Sandreas.hansson@arm.com        }
82311057Sandreas.hansson@arm.com        size = _blkSize;
82411057Sandreas.hansson@arm.com        flags.set(VALID_SIZE);
82511057Sandreas.hansson@arm.com    }
8264626Sstever@eecs.umich.edu
8275735Snate@binkert.org    /**
8285735Snate@binkert.org     * Alternate constructor for copying a packet.  Copy all fields
8294887Sstever@eecs.umich.edu     * *except* if the original packet's data was dynamic, don't copy
8304887Sstever@eecs.umich.edu     * that, as we can't guarantee that the new packet's lifetime is
8314887Sstever@eecs.umich.edu     * less than that of the original packet.  In this case the new
8325735Snate@binkert.org     * packet should allocate its own data.
8335735Snate@binkert.org     */
83410896Snilay@cs.wisc.edu    Packet(const PacketPtr pkt, bool clear_flags, bool alloc_data)
83512351Snikos.nikoleris@arm.com        :  cmd(pkt->cmd), id(pkt->id), req(pkt->req),
83610571Sandreas.hansson@arm.com           data(nullptr),
83710028SGiacomo.Gabrielli@arm.com           addr(pkt->addr), _isSecure(pkt->_isSecure), size(pkt->size),
83810723Sandreas.hansson@arm.com           bytesValid(pkt->bytesValid),
83912966SMatteo.Andreozzi@arm.com           _qosValue(pkt->qosValue()),
84010694SMarco.Balboni@ARM.com           headerDelay(pkt->headerDelay),
84111127Sandreas.hansson@arm.com           snoopDelay(0),
84210694SMarco.Balboni@ARM.com           payloadDelay(pkt->payloadDelay),
8439546Sandreas.hansson@arm.com           senderState(pkt->senderState)
8444626Sstever@eecs.umich.edu    {
84510571Sandreas.hansson@arm.com        if (!clear_flags)
8465735Snate@binkert.org            flags.set(pkt->flags & COPY_FLAGS);
8475735Snate@binkert.org
84811057Sandreas.hansson@arm.com        flags.set(pkt->flags & (VALID_ADDR|VALID_SIZE));
84911057Sandreas.hansson@arm.com
85010571Sandreas.hansson@arm.com        // should we allocate space for data, or not, the express
85110571Sandreas.hansson@arm.com        // snoops do not need to carry any data as they only serve to
85210571Sandreas.hansson@arm.com        // co-ordinate state changes
85310571Sandreas.hansson@arm.com        if (alloc_data) {
85410571Sandreas.hansson@arm.com            // even if asked to allocate data, if the original packet
85510571Sandreas.hansson@arm.com            // holds static data, then the sender will not be doing
85610571Sandreas.hansson@arm.com            // any memcpy on receiving the response, thus we simply
85710571Sandreas.hansson@arm.com            // carry the pointer forward
85810571Sandreas.hansson@arm.com            if (pkt->flags.isSet(STATIC_DATA)) {
85910571Sandreas.hansson@arm.com                data = pkt->data;
86010571Sandreas.hansson@arm.com                flags.set(STATIC_DATA);
86110571Sandreas.hansson@arm.com            } else {
86210571Sandreas.hansson@arm.com                allocate();
86310571Sandreas.hansson@arm.com            }
86410571Sandreas.hansson@arm.com        }
86510342SCurtis.Dunham@arm.com    }
8668668Sgeoffrey.blake@arm.com
86710342SCurtis.Dunham@arm.com    /**
86810739Ssteve.reinhardt@amd.com     * Generate the appropriate read MemCmd based on the Request flags.
86910342SCurtis.Dunham@arm.com     */
87010739Ssteve.reinhardt@amd.com    static MemCmd
87112749Sgiacomo.travaglini@arm.com    makeReadCmd(const RequestPtr &req)
87210342SCurtis.Dunham@arm.com    {
87310739Ssteve.reinhardt@amd.com        if (req->isLLSC())
87410739Ssteve.reinhardt@amd.com            return MemCmd::LoadLockedReq;
87513367Syuetsu.kodama@riken.jp        else if (req->isPrefetchEx())
87613367Syuetsu.kodama@riken.jp            return MemCmd::SoftPFExReq;
87710739Ssteve.reinhardt@amd.com        else if (req->isPrefetch())
87810739Ssteve.reinhardt@amd.com            return MemCmd::SoftPFReq;
87910739Ssteve.reinhardt@amd.com        else
88010739Ssteve.reinhardt@amd.com            return MemCmd::ReadReq;
88110739Ssteve.reinhardt@amd.com    }
88210739Ssteve.reinhardt@amd.com
88310739Ssteve.reinhardt@amd.com    /**
88410739Ssteve.reinhardt@amd.com     * Generate the appropriate write MemCmd based on the Request flags.
88510739Ssteve.reinhardt@amd.com     */
88610739Ssteve.reinhardt@amd.com    static MemCmd
88712749Sgiacomo.travaglini@arm.com    makeWriteCmd(const RequestPtr &req)
88810739Ssteve.reinhardt@amd.com    {
88910739Ssteve.reinhardt@amd.com        if (req->isLLSC())
89010739Ssteve.reinhardt@amd.com            return MemCmd::StoreCondReq;
89112766Sqtt2@cornell.edu        else if (req->isSwap() || req->isAtomic())
89210739Ssteve.reinhardt@amd.com            return MemCmd::SwapReq;
89312347Snikos.nikoleris@arm.com        else if (req->isCacheInvalidate()) {
89412347Snikos.nikoleris@arm.com          return req->isCacheClean() ? MemCmd::CleanInvalidReq :
89512347Snikos.nikoleris@arm.com              MemCmd::InvalidateReq;
89612347Snikos.nikoleris@arm.com        } else if (req->isCacheClean()) {
89712347Snikos.nikoleris@arm.com            return MemCmd::CleanSharedReq;
89812347Snikos.nikoleris@arm.com        } else
89910739Ssteve.reinhardt@amd.com            return MemCmd::WriteReq;
90010342SCurtis.Dunham@arm.com    }
90110342SCurtis.Dunham@arm.com
90210342SCurtis.Dunham@arm.com    /**
90310342SCurtis.Dunham@arm.com     * Constructor-like methods that return Packets based on Request objects.
90410739Ssteve.reinhardt@amd.com     * Fine-tune the MemCmd type if it's not a vanilla read or write.
90510342SCurtis.Dunham@arm.com     */
90610342SCurtis.Dunham@arm.com    static PacketPtr
90712749Sgiacomo.travaglini@arm.com    createRead(const RequestPtr &req)
90810342SCurtis.Dunham@arm.com    {
90910739Ssteve.reinhardt@amd.com        return new Packet(req, makeReadCmd(req));
91010342SCurtis.Dunham@arm.com    }
91110342SCurtis.Dunham@arm.com
91210342SCurtis.Dunham@arm.com    static PacketPtr
91312749Sgiacomo.travaglini@arm.com    createWrite(const RequestPtr &req)
91410342SCurtis.Dunham@arm.com    {
91510739Ssteve.reinhardt@amd.com        return new Packet(req, makeWriteCmd(req));
9162641Sstever@eecs.umich.edu    }
9172549SN/A
9185735Snate@binkert.org    /**
9195735Snate@binkert.org     * clean up packet variables
9205735Snate@binkert.org     */
9212566SN/A    ~Packet()
9225387Sstever@gmail.com    {
9235735Snate@binkert.org        deleteData();
9245387Sstever@gmail.com    }
9252566SN/A
9265735Snate@binkert.org    /**
9274626Sstever@eecs.umich.edu     * Take a request packet and modify it in place to be suitable for
92810660Sandreas.hansson@arm.com     * returning as a response to that request.
9294626Sstever@eecs.umich.edu     */
9305735Snate@binkert.org    void
9315735Snate@binkert.org    makeResponse()
9324626Sstever@eecs.umich.edu    {
9332662Sstever@eecs.umich.edu        assert(needsResponse());
9342855Srdreslin@umich.edu        assert(isRequest());
9354022Sstever@eecs.umich.edu        cmd = cmd.responseCommand();
9365745Snate@binkert.org
9377464Ssteve.reinhardt@amd.com        // responses are never express, even if the snoop that
9387464Ssteve.reinhardt@amd.com        // triggered them was
9397464Ssteve.reinhardt@amd.com        flags.clear(EXPRESS_SNOOP);
9402641Sstever@eecs.umich.edu    }
9412641Sstever@eecs.umich.edu
9425735Snate@binkert.org    void
9435735Snate@binkert.org    makeAtomicResponse()
9444870Sstever@eecs.umich.edu    {
9454870Sstever@eecs.umich.edu        makeResponse();
9464870Sstever@eecs.umich.edu    }
9474870Sstever@eecs.umich.edu
9485735Snate@binkert.org    void
9495735Snate@binkert.org    makeTimingResponse()
9503348Sbinkertn@umich.edu    {
9514870Sstever@eecs.umich.edu        makeResponse();
9523135Srdreslin@umich.edu    }
9533135Srdreslin@umich.edu
9548436SBrad.Beckmann@amd.com    void
9558436SBrad.Beckmann@amd.com    setFunctionalResponseStatus(bool success)
9568436SBrad.Beckmann@amd.com    {
9578436SBrad.Beckmann@amd.com        if (!success) {
9588436SBrad.Beckmann@amd.com            if (isWrite()) {
9598436SBrad.Beckmann@amd.com                cmd = MemCmd::FunctionalWriteError;
9608436SBrad.Beckmann@amd.com            } else {
9618436SBrad.Beckmann@amd.com                cmd = MemCmd::FunctionalReadError;
9628436SBrad.Beckmann@amd.com            }
9638436SBrad.Beckmann@amd.com        }
9648436SBrad.Beckmann@amd.com    }
9658436SBrad.Beckmann@amd.com
96611057Sandreas.hansson@arm.com    void
96711057Sandreas.hansson@arm.com    setSize(unsigned size)
96811057Sandreas.hansson@arm.com    {
96911057Sandreas.hansson@arm.com        assert(!flags.isSet(VALID_SIZE));
97011057Sandreas.hansson@arm.com
97111057Sandreas.hansson@arm.com        this->size = size;
97211057Sandreas.hansson@arm.com        flags.set(VALID_SIZE);
97311057Sandreas.hansson@arm.com    }
97411057Sandreas.hansson@arm.com
97511057Sandreas.hansson@arm.com
97611013Sandreas.sandberg@arm.com  public:
97711013Sandreas.sandberg@arm.com    /**
97811013Sandreas.sandberg@arm.com     * @{
97911013Sandreas.sandberg@arm.com     * @name Data accessor mehtods
98011013Sandreas.sandberg@arm.com     */
98111013Sandreas.sandberg@arm.com
9823348Sbinkertn@umich.edu    /**
9833348Sbinkertn@umich.edu     * Set the data pointer to the following value that should not be
98410571Sandreas.hansson@arm.com     * freed. Static data allows us to do a single memcpy even if
98510571Sandreas.hansson@arm.com     * multiple packets are required to get from source to destination
98610571Sandreas.hansson@arm.com     * and back. In essence the pointer is set calling dataStatic on
98710571Sandreas.hansson@arm.com     * the original packet, and whenever this packet is copied and
98810571Sandreas.hansson@arm.com     * forwarded the same pointer is passed on. When a packet
98910571Sandreas.hansson@arm.com     * eventually reaches the destination holding the data, it is
99010571Sandreas.hansson@arm.com     * copied once into the location originally set. On the way back
99110571Sandreas.hansson@arm.com     * to the source, no copies are necessary.
9922566SN/A     */
9932566SN/A    template <typename T>
9943348Sbinkertn@umich.edu    void
9953348Sbinkertn@umich.edu    dataStatic(T *p)
9963348Sbinkertn@umich.edu    {
99710566Sandreas.hansson@arm.com        assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
9983348Sbinkertn@umich.edu        data = (PacketDataPtr)p;
9995735Snate@binkert.org        flags.set(STATIC_DATA);
10003348Sbinkertn@umich.edu    }
10012566SN/A
10023348Sbinkertn@umich.edu    /**
100310564Sandreas.hansson@arm.com     * Set the data pointer to the following value that should not be
100410564Sandreas.hansson@arm.com     * freed. This version of the function allows the pointer passed
100510564Sandreas.hansson@arm.com     * to us to be const. To avoid issues down the line we cast the
100610564Sandreas.hansson@arm.com     * constness away, the alternative would be to keep both a const
100710564Sandreas.hansson@arm.com     * and non-const data pointer and cleverly choose between
100810564Sandreas.hansson@arm.com     * them. Note that this is only allowed for static data.
100910564Sandreas.hansson@arm.com     */
101010564Sandreas.hansson@arm.com    template <typename T>
101110564Sandreas.hansson@arm.com    void
101210564Sandreas.hansson@arm.com    dataStaticConst(const T *p)
101310564Sandreas.hansson@arm.com    {
101410566Sandreas.hansson@arm.com        assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
101510564Sandreas.hansson@arm.com        data = const_cast<PacketDataPtr>(p);
101610564Sandreas.hansson@arm.com        flags.set(STATIC_DATA);
101710564Sandreas.hansson@arm.com    }
101810564Sandreas.hansson@arm.com
101910564Sandreas.hansson@arm.com    /**
10203348Sbinkertn@umich.edu     * Set the data pointer to a value that should have delete []
102110571Sandreas.hansson@arm.com     * called on it. Dynamic data is local to this packet, and as the
102210571Sandreas.hansson@arm.com     * packet travels from source to destination, forwarded packets
102310571Sandreas.hansson@arm.com     * will allocate their own data. When a packet reaches the final
102410571Sandreas.hansson@arm.com     * destination it will populate the dynamic data of that specific
102510571Sandreas.hansson@arm.com     * packet, and on the way back towards the source, memcpy will be
102610571Sandreas.hansson@arm.com     * invoked in every step where a new packet was created e.g. in
102710571Sandreas.hansson@arm.com     * the caches. Ultimately when the response reaches the source a
102810571Sandreas.hansson@arm.com     * final memcpy is needed to extract the data from the packet
102910571Sandreas.hansson@arm.com     * before it is deallocated.
10303348Sbinkertn@umich.edu     */
10312566SN/A    template <typename T>
10323348Sbinkertn@umich.edu    void
10333348Sbinkertn@umich.edu    dataDynamic(T *p)
10343348Sbinkertn@umich.edu    {
103510566Sandreas.hansson@arm.com        assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
10363348Sbinkertn@umich.edu        data = (PacketDataPtr)p;
10375735Snate@binkert.org        flags.set(DYNAMIC_DATA);
10383348Sbinkertn@umich.edu    }
10393348Sbinkertn@umich.edu
10405735Snate@binkert.org    /**
10415735Snate@binkert.org     * get a pointer to the data ptr.
10425735Snate@binkert.org     */
10433348Sbinkertn@umich.edu    template <typename T>
10443348Sbinkertn@umich.edu    T*
104510562Sandreas.hansson@arm.com    getPtr()
10463348Sbinkertn@umich.edu    {
104710562Sandreas.hansson@arm.com        assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
10483348Sbinkertn@umich.edu        return (T*)data;
10493348Sbinkertn@umich.edu    }
10502566SN/A
105110563Sandreas.hansson@arm.com    template <typename T>
105210563Sandreas.hansson@arm.com    const T*
105310563Sandreas.hansson@arm.com    getConstPtr() const
105410563Sandreas.hansson@arm.com    {
105510563Sandreas.hansson@arm.com        assert(flags.isSet(STATIC_DATA|DYNAMIC_DATA));
105610563Sandreas.hansson@arm.com        return (const T*)data;
105710563Sandreas.hansson@arm.com    }
105810563Sandreas.hansson@arm.com
10595735Snate@binkert.org    /**
106011013Sandreas.sandberg@arm.com     * Get the data in the packet byte swapped from big endian to
106111013Sandreas.sandberg@arm.com     * host endian.
106211013Sandreas.sandberg@arm.com     */
106311013Sandreas.sandberg@arm.com    template <typename T>
106411013Sandreas.sandberg@arm.com    T getBE() const;
106511013Sandreas.sandberg@arm.com
106611013Sandreas.sandberg@arm.com    /**
106711013Sandreas.sandberg@arm.com     * Get the data in the packet byte swapped from little endian to
106811013Sandreas.sandberg@arm.com     * host endian.
106911013Sandreas.sandberg@arm.com     */
107011013Sandreas.sandberg@arm.com    template <typename T>
107111013Sandreas.sandberg@arm.com    T getLE() const;
107211013Sandreas.sandberg@arm.com
107311013Sandreas.sandberg@arm.com    /**
107411013Sandreas.sandberg@arm.com     * Get the data in the packet byte swapped from the specified
107511013Sandreas.sandberg@arm.com     * endianness.
107611013Sandreas.sandberg@arm.com     */
107711013Sandreas.sandberg@arm.com    template <typename T>
107811013Sandreas.sandberg@arm.com    T get(ByteOrder endian) const;
107911013Sandreas.sandberg@arm.com
108013347Sgabeblack@google.com#if THE_ISA != NULL_ISA
108111013Sandreas.sandberg@arm.com    /**
108211013Sandreas.sandberg@arm.com     * Get the data in the packet byte swapped from guest to host
108311013Sandreas.sandberg@arm.com     * endian.
10845735Snate@binkert.org     */
10852566SN/A    template <typename T>
108613348Sgabeblack@google.com    T get() const
108713348Sgabeblack@google.com        M5_DEPRECATED_MSG("The memory system should be ISA independent.");
108813347Sgabeblack@google.com#endif
10892566SN/A
109011013Sandreas.sandberg@arm.com    /** Set the value in the data pointer to v as big endian. */
109111013Sandreas.sandberg@arm.com    template <typename T>
109211013Sandreas.sandberg@arm.com    void setBE(T v);
109311013Sandreas.sandberg@arm.com
109411013Sandreas.sandberg@arm.com    /** Set the value in the data pointer to v as little endian. */
109511013Sandreas.sandberg@arm.com    template <typename T>
109611013Sandreas.sandberg@arm.com    void setLE(T v);
109711013Sandreas.sandberg@arm.com
10985735Snate@binkert.org    /**
109911013Sandreas.sandberg@arm.com     * Set the value in the data pointer to v using the specified
110011013Sandreas.sandberg@arm.com     * endianness.
11015735Snate@binkert.org     */
11022566SN/A    template <typename T>
110311013Sandreas.sandberg@arm.com    void set(T v, ByteOrder endian);
110411013Sandreas.sandberg@arm.com
110513347Sgabeblack@google.com#if THE_ISA != NULL_ISA
110611013Sandreas.sandberg@arm.com    /** Set the value in the data pointer to v as guest endian. */
110711013Sandreas.sandberg@arm.com    template <typename T>
110813348Sgabeblack@google.com    void set(T v)
110913348Sgabeblack@google.com        M5_DEPRECATED_MSG("The memory system should be ISA independent.");
111013347Sgabeblack@google.com#endif
11112566SN/A
111212652Sandreas.sandberg@arm.com    /**
111312652Sandreas.sandberg@arm.com     * Get the data in the packet byte swapped from the specified
111412652Sandreas.sandberg@arm.com     * endianness and zero-extended to 64 bits.
111512652Sandreas.sandberg@arm.com     */
111612652Sandreas.sandberg@arm.com    uint64_t getUintX(ByteOrder endian) const;
111712652Sandreas.sandberg@arm.com
111812652Sandreas.sandberg@arm.com    /**
111912652Sandreas.sandberg@arm.com     * Set the value in the word w after truncating it to the length
112012652Sandreas.sandberg@arm.com     * of the packet and then byteswapping it to the desired
112112652Sandreas.sandberg@arm.com     * endianness.
112212652Sandreas.sandberg@arm.com     */
112312652Sandreas.sandberg@arm.com    void setUintX(uint64_t w, ByteOrder endian);
112412652Sandreas.sandberg@arm.com
11253348Sbinkertn@umich.edu    /**
11264626Sstever@eecs.umich.edu     * Copy data into the packet from the provided pointer.
11274626Sstever@eecs.umich.edu     */
11285735Snate@binkert.org    void
112910563Sandreas.hansson@arm.com    setData(const uint8_t *p)
11304626Sstever@eecs.umich.edu    {
113110571Sandreas.hansson@arm.com        // we should never be copying data onto itself, which means we
113210571Sandreas.hansson@arm.com        // must idenfity packets with static data, as they carry the
113310571Sandreas.hansson@arm.com        // same pointer from source to destination and back
113410571Sandreas.hansson@arm.com        assert(p != getPtr<uint8_t>() || flags.isSet(STATIC_DATA));
113510571Sandreas.hansson@arm.com
11367691SAli.Saidi@ARM.com        if (p != getPtr<uint8_t>())
113710571Sandreas.hansson@arm.com            // for packet with allocated dynamic data, we copy data from
113810571Sandreas.hansson@arm.com            // one to the other, e.g. a forwarded response to a response
11397691SAli.Saidi@ARM.com            std::memcpy(getPtr<uint8_t>(), p, getSize());
11404626Sstever@eecs.umich.edu    }
11414626Sstever@eecs.umich.edu
11424626Sstever@eecs.umich.edu    /**
11434626Sstever@eecs.umich.edu     * Copy data into the packet from the provided block pointer,
11444626Sstever@eecs.umich.edu     * which is aligned to the given block size.
11454626Sstever@eecs.umich.edu     */
11465735Snate@binkert.org    void
114710563Sandreas.hansson@arm.com    setDataFromBlock(const uint8_t *blk_data, int blkSize)
11484626Sstever@eecs.umich.edu    {
11494626Sstever@eecs.umich.edu        setData(blk_data + getOffset(blkSize));
11504626Sstever@eecs.umich.edu    }
11514626Sstever@eecs.umich.edu
11524626Sstever@eecs.umich.edu    /**
115312633Sodanrc@yahoo.com.br     * Copy data from the packet to the memory at the provided pointer.
115412633Sodanrc@yahoo.com.br     * @param p Pointer to which data will be copied.
11554626Sstever@eecs.umich.edu     */
11565735Snate@binkert.org    void
115710563Sandreas.hansson@arm.com    writeData(uint8_t *p) const
11584626Sstever@eecs.umich.edu    {
115910563Sandreas.hansson@arm.com        std::memcpy(p, getConstPtr<uint8_t>(), getSize());
11604626Sstever@eecs.umich.edu    }
11614626Sstever@eecs.umich.edu
11624626Sstever@eecs.umich.edu    /**
116312633Sodanrc@yahoo.com.br     * Copy data from the packet to the provided block pointer, which
116412633Sodanrc@yahoo.com.br     * is aligned to the given block size.
116512633Sodanrc@yahoo.com.br     * @param blk_data Pointer to block to which data will be copied.
116612633Sodanrc@yahoo.com.br     * @param blkSize Block size in bytes.
11674626Sstever@eecs.umich.edu     */
11685735Snate@binkert.org    void
116910563Sandreas.hansson@arm.com    writeDataToBlock(uint8_t *blk_data, int blkSize) const
11704626Sstever@eecs.umich.edu    {
11714626Sstever@eecs.umich.edu        writeData(blk_data + getOffset(blkSize));
11724626Sstever@eecs.umich.edu    }
11734626Sstever@eecs.umich.edu
11744626Sstever@eecs.umich.edu    /**
11753348Sbinkertn@umich.edu     * delete the data pointed to in the data pointer. Ok to call to
11763348Sbinkertn@umich.edu     * matter how data was allocted.
11773348Sbinkertn@umich.edu     */
11785735Snate@binkert.org    void
11795735Snate@binkert.org    deleteData()
11805735Snate@binkert.org    {
118110566Sandreas.hansson@arm.com        if (flags.isSet(DYNAMIC_DATA))
11825735Snate@binkert.org            delete [] data;
11835735Snate@binkert.org
118410566Sandreas.hansson@arm.com        flags.clear(STATIC_DATA|DYNAMIC_DATA);
11855735Snate@binkert.org        data = NULL;
11865735Snate@binkert.org    }
11872566SN/A
118810565Sandreas.hansson@arm.com    /** Allocate memory for the packet. */
11895735Snate@binkert.org    void
11905735Snate@binkert.org    allocate()
11915735Snate@binkert.org    {
119211286Sandreas.hansson@arm.com        // if either this command or the response command has a data
119311286Sandreas.hansson@arm.com        // payload, actually allocate space
119411286Sandreas.hansson@arm.com        if (hasData() || hasRespData()) {
119511286Sandreas.hansson@arm.com            assert(flags.noneSet(STATIC_DATA|DYNAMIC_DATA));
119611286Sandreas.hansson@arm.com            flags.set(DYNAMIC_DATA);
119711286Sandreas.hansson@arm.com            data = new uint8_t[getSize()];
119811286Sandreas.hansson@arm.com        }
11995735Snate@binkert.org    }
12005735Snate@binkert.org
120111013Sandreas.sandberg@arm.com    /** @} */
120211013Sandreas.sandberg@arm.com
120311013Sandreas.sandberg@arm.com    /** Get the data in the packet without byte swapping. */
120411013Sandreas.sandberg@arm.com    template <typename T>
120511013Sandreas.sandberg@arm.com    T getRaw() const;
120611013Sandreas.sandberg@arm.com
120711013Sandreas.sandberg@arm.com    /** Set the value in the data pointer to v without byte swapping. */
120811013Sandreas.sandberg@arm.com    template <typename T>
120911013Sandreas.sandberg@arm.com    void setRaw(T v);
121011013Sandreas.sandberg@arm.com
121111013Sandreas.sandberg@arm.com  public:
12124626Sstever@eecs.umich.edu    /**
121310570Sandreas.hansson@arm.com     * Check a functional request against a memory value stored in
121410570Sandreas.hansson@arm.com     * another packet (i.e. an in-transit request or
121510570Sandreas.hansson@arm.com     * response). Returns true if the current packet is a read, and
121610570Sandreas.hansson@arm.com     * the other packet provides the data, which is then copied to the
121710570Sandreas.hansson@arm.com     * current packet. If the current packet is a write, and the other
121810570Sandreas.hansson@arm.com     * packet intersects this one, then we update the data
121910570Sandreas.hansson@arm.com     * accordingly.
122010570Sandreas.hansson@arm.com     */
122110570Sandreas.hansson@arm.com    bool
122212823Srmk35@cl.cam.ac.uk    trySatisfyFunctional(PacketPtr other)
122310570Sandreas.hansson@arm.com    {
122410570Sandreas.hansson@arm.com        // all packets that are carrying a payload should have a valid
122510570Sandreas.hansson@arm.com        // data pointer
122612823Srmk35@cl.cam.ac.uk        return trySatisfyFunctional(other, other->getAddr(), other->isSecure(),
122712823Srmk35@cl.cam.ac.uk                                    other->getSize(),
122812823Srmk35@cl.cam.ac.uk                                    other->hasData() ?
122912823Srmk35@cl.cam.ac.uk                                    other->getPtr<uint8_t>() : NULL);
123010570Sandreas.hansson@arm.com    }
123110570Sandreas.hansson@arm.com
123210570Sandreas.hansson@arm.com    /**
123310883Sali.jafri@arm.com     * Does the request need to check for cached copies of the same block
123410883Sali.jafri@arm.com     * in the memory hierarchy above.
123510883Sali.jafri@arm.com     **/
123610883Sali.jafri@arm.com    bool
123710883Sali.jafri@arm.com    mustCheckAbove() const
123810883Sali.jafri@arm.com    {
123911199Sandreas.hansson@arm.com        return cmd == MemCmd::HardPFReq || isEviction();
124011199Sandreas.hansson@arm.com    }
124111199Sandreas.hansson@arm.com
124211199Sandreas.hansson@arm.com    /**
124311199Sandreas.hansson@arm.com     * Is this packet a clean eviction, including both actual clean
124411199Sandreas.hansson@arm.com     * evict packets, but also clean writebacks.
124511199Sandreas.hansson@arm.com     */
124611199Sandreas.hansson@arm.com    bool
124711199Sandreas.hansson@arm.com    isCleanEviction() const
124811199Sandreas.hansson@arm.com    {
124911199Sandreas.hansson@arm.com        return cmd == MemCmd::CleanEvict || cmd == MemCmd::WritebackClean;
125010883Sali.jafri@arm.com    }
125110883Sali.jafri@arm.com
125210883Sali.jafri@arm.com    /**
12534626Sstever@eecs.umich.edu     * Check a functional request against a memory value represented
125410570Sandreas.hansson@arm.com     * by a base/size pair and an associated data array. If the
125510570Sandreas.hansson@arm.com     * current packet is a read, it may be satisfied by the memory
125610570Sandreas.hansson@arm.com     * value. If the current packet is a write, it may update the
12574626Sstever@eecs.umich.edu     * memory value.
12584626Sstever@eecs.umich.edu     */
12595735Snate@binkert.org    bool
126012823Srmk35@cl.cam.ac.uk    trySatisfyFunctional(Printable *obj, Addr base, bool is_secure, int size,
126112823Srmk35@cl.cam.ac.uk                         uint8_t *_data);
12625314Sstever@gmail.com
12635315Sstever@gmail.com    /**
12645315Sstever@gmail.com     * Push label for PrintReq (safe to call unconditionally).
12655315Sstever@gmail.com     */
12665735Snate@binkert.org    void
12675735Snate@binkert.org    pushLabel(const std::string &lbl)
12685735Snate@binkert.org    {
12695735Snate@binkert.org        if (isPrint())
12705735Snate@binkert.org            safe_cast<PrintReqState*>(senderState)->pushLabel(lbl);
12715314Sstever@gmail.com    }
12725314Sstever@gmail.com
12735315Sstever@gmail.com    /**
12745315Sstever@gmail.com     * Pop label for PrintReq (safe to call unconditionally).
12755315Sstever@gmail.com     */
12765735Snate@binkert.org    void
12775735Snate@binkert.org    popLabel()
12785735Snate@binkert.org    {
12795735Snate@binkert.org        if (isPrint())
12805735Snate@binkert.org            safe_cast<PrintReqState*>(senderState)->popLabel();
12815314Sstever@gmail.com    }
12825314Sstever@gmail.com
12835314Sstever@gmail.com    void print(std::ostream &o, int verbosity = 0,
12845314Sstever@gmail.com               const std::string &prefix = "") const;
12859663Suri.wiener@arm.com
12869663Suri.wiener@arm.com    /**
12879663Suri.wiener@arm.com     * A no-args wrapper of print(std::ostream...)
12889663Suri.wiener@arm.com     * meant to be invoked from DPRINTFs
12899663Suri.wiener@arm.com     * avoiding string overheads in fast mode
12909663Suri.wiener@arm.com     * @return string with the request's type and start<->end addresses
12919663Suri.wiener@arm.com     */
12929663Suri.wiener@arm.com    std::string print() const;
12932381SN/A};
12942381SN/A
12952381SN/A#endif //__MEM_PACKET_HH
1296