gem5  v22.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
lupio_ipi.hh
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 #ifndef __DEV_LUPIO_LUPIO_IPI_HH__
30 #define __DEV_LUPIO_LUPIO_IPI_HH__
31 
32 #include "arch/riscv/interrupts.hh"
33 #include "dev/io_device.hh"
34 #include "dev/platform.hh"
35 #include "params/LupioIPI.hh"
36 
37 namespace gem5
38 {
39 
45 class LupioIPI : public BasicPioDevice
46 {
47  private:
48  const ByteOrder byteOrder = ByteOrder::little;
50  int intType;
51 
52  // Register map
53  enum
54  {
56 
57  // Max offset
59  };
60 
61  uint32_t nThread;
67 
72  uint64_t lupioIPIRead(const uint8_t addr, int size);
77  void lupioIPIWrite(const uint8_t addr, uint64_t val64, int size);
78 
79  public:
81  LupioIPI(const Params &params);
82 
86  Tick read(PacketPtr pkt) override;
87  Tick write(PacketPtr pkt) override;
88 };
89 
90 } // namespace gem5
91 
92 #endif // __DEV_LUPIO_LUPIO_IPI_HH
93 
io_device.hh
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
gem5::LupioIPI::nThread
uint32_t nThread
Definition: lupio_ipi.hh:61
interrupts.hh
std::vector< uint32_t >
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::LUPIO_IPI_MAX
@ LUPIO_IPI_MAX
Definition: lupio_ipi.hh:58
gem5::LupioIPI::write
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: lupio_ipi.cc:97
gem5::System
Definition: system.hh:75
gem5::SimObject::params
const Params & params() const
Definition: sim_object.hh:176
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::LupioIPI::LUPIO_IPI_WORD
@ LUPIO_IPI_WORD
Definition: lupio_ipi.hh:55
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
platform.hh
gem5::LupioIPI::PARAMS
PARAMS(LupioIPI)
gem5::LupioIPI::byteOrder
const ByteOrder byteOrder
Definition: lupio_ipi.hh:48
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::LupioIPI::LupioIPI
LupioIPI(const Params &params)
Definition: lupio_ipi.cc:39
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