gem5  v22.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
lupio_ipi.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 The Regents of the University of California
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 
29 #include "dev/lupio/lupio_ipi.hh"
30 
31 #include "cpu/base.hh"
32 #include "debug/LupioIPI.hh"
33 #include "mem/packet_access.hh"
34 #include "params/LupioIPI.hh"
35 
36 namespace gem5
37 {
38 
39 LupioIPI::LupioIPI(const Params &params) :
40  BasicPioDevice(params, params.pio_size),
41  system(params.system),
42  intType(params.int_type),
43  nThread(params.num_threads)
44 {
45  word.resize(nThread, 0);
46 
47  DPRINTF(LupioIPI, "LupioIPI initalized--number of CPUs: %d\n", nThread);
48 }
49 
50 uint64_t
51 LupioIPI::lupioIPIRead(uint8_t addr, int size)
52 {
53  int cpu = addr >> 2;
54  uint32_t r = 0;
55  // Reading automatically lowers corresponding IRQ
56  r = word[cpu];
57 
58  auto tc = system->threads[cpu];
59  tc->getCpuPtr()->clearInterrupt(tc->threadId(), intType, 0);
60  // Also reset value after reading
61  word[cpu] = 0;
62 
63  return r;
64 }
65 
66 void
67 LupioIPI::lupioIPIWrite(uint8_t addr, uint64_t val64, int size)
68 {
69  int cpu = addr >> 2;;
70  uint32_t val = val64;
71 
72  word[cpu] = val;
73 
74  // Raise IRQ
75  auto tc = system->threads[cpu];
76 
77  tc->getCpuPtr()->postInterrupt(tc->threadId(), intType, 0);
78 }
79 
80 Tick
82 {
83  Addr ipi_addr = pkt->getAddr() - pioAddr;
84 
86  "Read request - addr: %#x, size: %#x\n", ipi_addr, pkt->getSize());
87 
88  uint64_t read_val = lupioIPIRead(ipi_addr, pkt->getSize());
89  DPRINTF(LupioIPI, "Packet Read: %#x\n", read_val);
90  pkt->setUintX(read_val, byteOrder);
91  pkt->makeResponse();
92 
93  return pioDelay;
94 }
95 
96 Tick
98 {
99  Addr ipi_addr = pkt->getAddr() - pioAddr;
100 
101  DPRINTF(LupioIPI, "Write register %#x value %#x\n", ipi_addr,
102  pkt->getUintX(byteOrder));
103 
104  lupioIPIWrite(ipi_addr, pkt->getUintX(byteOrder), pkt->getSize());
105  DPRINTF(LupioIPI, "Packet Write Value: %d\n", pkt->getUintX(byteOrder));
106 
107  pkt->makeResponse();
108 
109  return pioDelay;
110 }
111 } // namespace gem5
112 
lupio_ipi.hh
gem5::BasicPioDevice::pioAddr
Addr pioAddr
Address that the device listens to.
Definition: io_device.hh:151
gem5::Packet::getUintX
uint64_t getUintX(ByteOrder endian) const
Get the data in the packet byte swapped from the specified endianness and zero-extended to 64 bits.
Definition: packet.cc:348
gem5::LupioIPI::read
Tick read(PacketPtr pkt) override
Implement BasicPioDevice virtual functions.
Definition: lupio_ipi.cc:81
gem5::LupioIPI
LupioIPI: An inter-processor interrupt virtual device.
Definition: lupio_ipi.hh:45
gem5::LupioIPI::intType
int intType
Definition: lupio_ipi.hh:50
sc_dt::int_type
int64 int_type
Definition: sc_nbdefs.hh:240
gem5::X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
gem5::LupioIPI::nThread
uint32_t nThread
Definition: lupio_ipi.hh:61
gem5::X86ISA::system
Bitfield< 15 > system
Definition: misc.hh:997
gem5::VegaISA::r
Bitfield< 5 > r
Definition: pagetable.hh:60
gem5::LupioIPI::word
std::vector< uint32_t > word
Set of registers corresponding to each CPU for sending inter-processor interrupts.
Definition: lupio_ipi.hh:66
gem5::PioDevice::Params
PioDeviceParams Params
Definition: io_device.hh:134
gem5::LupioIPI::write
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: lupio_ipi.cc:97
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:186
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:291
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::BasicPioDevice::pioDelay
Tick pioDelay
Delay that the device experinces on an access.
Definition: io_device.hh:157
gem5::LupioIPI::lupioIPIWrite
void lupioIPIWrite(const uint8_t addr, uint64_t val64, int size)
Function to write to the word register of the corresponding CPU and raise the IRQ.
Definition: lupio_ipi.cc:67
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
packet_access.hh
base.hh
gem5::System::threads
Threads threads
Definition: system.hh:314
gem5::Packet::makeResponse
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
Definition: packet.hh:1044
gem5::LupioIPI::byteOrder
const ByteOrder byteOrder
Definition: lupio_ipi.hh:48
gem5::Packet::getAddr
Addr getAddr() const
Definition: packet.hh:790
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::LupioIPI::system
System * system
Definition: lupio_ipi.hh:49
gem5::BasicPioDevice
Definition: io_device.hh:147
gem5::Packet::setUintX
void setUintX(uint64_t w, ByteOrder endian)
Set the value in the word w after truncating it to the length of the packet and then byteswapping it ...
Definition: packet.cc:357
gem5::LupioIPI::LupioIPI
LupioIPI(const Params &params)
Definition: lupio_ipi.cc:39
gem5::Packet::getSize
unsigned getSize() const
Definition: packet.hh:800
gem5::LupioIPI::lupioIPIRead
uint64_t lupioIPIRead(const uint8_t addr, int size)
Function to return the value in the word register of the corresponding CPU and lower the IRQ.
Definition: lupio_ipi.cc:51
gem5::X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:84

Generated on Thu Jun 16 2022 10:41:51 for gem5 by doxygen 1.8.17