gem5  v22.1.0.0
isa_fake.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
33 #include "dev/isa_fake.hh"
34 
35 #include "base/trace.hh"
36 #include "debug/IsaFake.hh"
37 #include "mem/packet.hh"
38 #include "mem/packet_access.hh"
39 #include "sim/system.hh"
40 
41 namespace gem5
42 {
43 
45  : BasicPioDevice(p, p.ret_bad_addr ? 0 : p.pio_size)
46 {
47  retData8 = p.ret_data8;
48  retData16 = p.ret_data16;
49  retData32 = p.ret_data32;
50  retData64 = p.ret_data64;
51 }
52 
53 Tick
55 {
56  pkt->makeAtomicResponse();
57 
58  if (params().warn_access != "")
59  warn("Device %s accessed by read to address %#x size=%d\n",
60  name(), pkt->getAddr(), pkt->getSize());
61  if (params().ret_bad_addr) {
62  DPRINTF(IsaFake, "read to bad address va=%#x size=%d\n",
63  pkt->getAddr(), pkt->getSize());
64  pkt->setBadAddress();
65  } else {
66  assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
67  DPRINTF(IsaFake, "read va=%#x size=%d\n",
68  pkt->getAddr(), pkt->getSize());
69  switch (pkt->getSize()) {
70  case sizeof(uint64_t):
71  pkt->setLE(retData64);
72  break;
73  case sizeof(uint32_t):
74  pkt->setLE(retData32);
75  break;
76  case sizeof(uint16_t):
77  pkt->setLE(retData16);
78  break;
79  case sizeof(uint8_t):
80  pkt->setLE(retData8);
81  break;
82  default:
83  if (params().fake_mem)
84  std::memset(pkt->getPtr<uint8_t>(), 0, pkt->getSize());
85  else
86  panic("invalid access size! Device being accessed by cache?\n");
87  }
88  }
89  return pioDelay;
90 }
91 
92 Tick
94 {
95  pkt->makeAtomicResponse();
96  if (params().warn_access != "") {
97  uint64_t data;
98  switch (pkt->getSize()) {
99  case sizeof(uint64_t):
100  data = pkt->getLE<uint64_t>();
101  break;
102  case sizeof(uint32_t):
103  data = pkt->getLE<uint32_t>();
104  break;
105  case sizeof(uint16_t):
106  data = pkt->getLE<uint16_t>();
107  break;
108  case sizeof(uint8_t):
109  data = pkt->getLE<uint8_t>();
110  break;
111  default:
112  panic("invalid access size: %u\n", pkt->getSize());
113  }
114  warn("Device %s accessed by write to address %#x size=%d data=%#x\n",
115  name(), pkt->getAddr(), pkt->getSize(), data);
116  }
117  if (params().ret_bad_addr) {
118  DPRINTF(IsaFake, "write to bad address va=%#x size=%d \n",
119  pkt->getAddr(), pkt->getSize());
120  pkt->setBadAddress();
121  } else {
122  DPRINTF(IsaFake, "write - va=%#x size=%d \n",
123  pkt->getAddr(), pkt->getSize());
124 
125  if (params().update_data) {
126  switch (pkt->getSize()) {
127  case sizeof(uint64_t):
128  retData64 = pkt->getLE<uint64_t>();
129  break;
130  case sizeof(uint32_t):
131  retData32 = pkt->getLE<uint32_t>();
132  break;
133  case sizeof(uint16_t):
134  retData16 = pkt->getLE<uint16_t>();
135  break;
136  case sizeof(uint8_t):
137  retData8 = pkt->getLE<uint8_t>();
138  break;
139  default:
140  panic("invalid access size!\n");
141  }
142  }
143  }
144  return pioDelay;
145 }
146 
147 } // namespace gem5
#define DPRINTF(x,...)
Definition: trace.hh:186
const char data[]
Addr pioAddr
Address that the device listens to.
Definition: io_device.hh:151
Tick pioDelay
Delay that the device experinces on an access.
Definition: io_device.hh:157
Addr pioSize
Size that the device's address range.
Definition: io_device.hh:154
IsaFake is a device that returns, BadAddr, 1 or 0 on all reads and rites.
Definition: isa_fake.hh:53
virtual Tick write(PacketPtr pkt)
All writes are simply ignored.
Definition: isa_fake.cc:93
uint32_t retData32
Definition: isa_fake.hh:57
virtual Tick read(PacketPtr pkt)
This read always returns -1.
Definition: isa_fake.cc:54
IsaFake(const Params &p)
The constructor for Isa Fake just registers itself with the MMU.
Definition: isa_fake.cc:44
uint64_t retData64
Definition: isa_fake.hh:58
uint16_t retData16
Definition: isa_fake.hh:56
uint8_t retData8
Definition: isa_fake.hh:55
virtual std::string name() const
Definition: named.hh:47
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
void setBadAddress()
Definition: packet.hh:784
T * getPtr()
get a pointer to the data ptr.
Definition: packet.hh:1212
Addr getAddr() const
Definition: packet.hh:805
void setLE(T v)
Set the value in the data pointer to v as little endian.
unsigned getSize() const
Definition: packet.hh:815
void makeAtomicResponse()
Definition: packet.hh:1071
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
PioDeviceParams Params
Definition: io_device.hh:134
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:178
const Params & params() const
Definition: sim_object.hh:176
Declaration of a fake device.
#define warn(...)
Definition: logging.hh:246
Bitfield< 54 > p
Definition: pagetable.hh:70
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
uint64_t Tick
Tick count type.
Definition: types.hh:58
Declaration of the Packet class.

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