gem5  v22.1.0.0
RubyRequest.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019,2021 ARM Limited
3  * All rights reserved.
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2011 Mark D. Hill and David A. Wood
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
42 
43 #include <iostream>
44 
46 
47 namespace gem5
48 {
49 
50 namespace ruby
51 {
52 
53 void
54 RubyRequest::print(std::ostream& out) const
55 {
56  out << "[RubyRequest: ";
57  out << std::hex << "LineAddress = 0x" << m_LineAddress << std::dec << " ";
58  out << std::hex << "PhysicalAddress = 0x" << m_PhysicalAddress;
59  out << std::dec << " " << "Type = " << m_Type << " ";
60  out << std::hex << "ProgramCounter = 0x" << m_ProgramCounter << std::dec;
61  out << " " << "AccessMode = " << m_AccessMode << " ";
62  out << "Size = " << m_Size << " ";
63  out << "Prefetch = " << m_Prefetch << " ";
64 // out << "Time = " << getTime() << " ";
65  out << "]";
66 }
67 
68 bool
70 {
71  // This needs a little explanation. Initially I thought that this
72  // message should be read. But the way the memtester works for now,
73  // we should not be reading this message as memtester updates the
74  // functional memory only after a write has actually taken place.
75  return false;
76 }
77 
78 bool
80 {
81  return false;
82 }
83 
84 bool
86 {
87  // This needs a little explanation. I am not sure if this message
88  // should be written. Essentially the question is how are writes
89  // ordered. I am assuming that if a functional write is issued after
90  // a timing write to the same address, then the functional write
91  // has to overwrite the data for the timing request, even if the
92  // timing request has still not been ordered globally.
93 
94  if (!pkt->hasData() || !m_pkt->hasData())
95  return false;
96 
97  uint8_t *data = m_pkt->getPtr<uint8_t>();
98 
99  if (pkt->isMaskedWrite() || m_pkt->isMaskedWrite()) {
100  warn("Skiping functional write to/from a masked write packet"
101  " (addr: %#x, other addr: %#x).\n", m_PhysicalAddress,
102  pkt->getAddr());
103  return false;
104  }
105 
106  Addr wBase = pkt->getAddr();
107  Addr wTail = wBase + pkt->getSize();
108  Addr mBase = m_PhysicalAddress;
109  Addr mTail = mBase + m_Size;
110 
111  const uint8_t * pktData = pkt->getConstPtr<uint8_t>();
112 
113  Addr cBase = std::max(wBase, mBase);
114  Addr cTail = std::min(wTail, mTail);
115 
116  for (Addr i = cBase; i < cTail; ++i) {
117  data[i - mBase] = pktData[i - wBase];
118  }
119 
120  // also overwrite the WTData
122 
123  return cBase < cTail;
124 }
125 
126 } // namespace ruby
127 } // namespace gem5
const char data[]
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
T * getPtr()
get a pointer to the data ptr.
Definition: packet.hh:1212
Addr getAddr() const
Definition: packet.hh:805
bool hasData() const
Definition: packet.hh:613
unsigned getSize() const
Definition: packet.hh:815
const T * getConstPtr() const
Definition: packet.hh:1221
bool isMaskedWrite() const
Definition: packet.hh:1428
RubyRequestType m_Type
Definition: RubyRequest.hh:66
bool functionalWrite(Packet *pkt)
Definition: RubyRequest.cc:85
void print(std::ostream &out) const
Definition: RubyRequest.cc:54
bool functionalRead(Packet *pkt)
The two functions below are used for reading / writing the message functionally.
Definition: RubyRequest.cc:69
RubyAccessMode m_AccessMode
Definition: RubyRequest.hh:68
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
Definition: bitfield.hh:63
#define warn(...)
Definition: logging.hh:246
Bitfield< 7 > i
Definition: misc_types.hh:67
bool testAndWrite(Addr addr, DataBlock &blk, Packet *pkt)
This function accepts an address, a data block and a packet.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147

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