Go to the documentation of this file.
44 #include "debug/GIC.hh"
45 #include "debug/Interrupt.hh"
71 "Exceeding maximum number of PEs supported by GICv3: "
72 "using %u while maximum is %u.", threads,
params().cpu_max);
74 for (
int i = 0;
i < threads;
i++) {
89 for (
int i = 0;
i < threads;
i++) {
105 const size_t size = pkt->
getSize();
106 bool is_secure_access = pkt->
isSecure();
114 delay =
params().dist_pio_delay;
115 DPRINTF(GIC,
"Gicv3::read(): (distributor) context_id %d register %#x "
116 "size %d is_secure_access %d (value %#x)\n",
117 pkt->
req->contextId(), daddr, size, is_secure_access, resp);
122 resp = redist->
read(daddr, size, is_secure_access);
124 delay =
params().redist_pio_delay;
125 DPRINTF(GIC,
"Gicv3::read(): (redistributor %d) context_id %d "
126 "register %#x size %d is_secure_access %d (value %#x)\n",
128 is_secure_access, resp);
130 panic(
"Gicv3::read(): unknown address %#x\n",
addr);
133 pkt->
setUintX(resp, ByteOrder::little);
141 const size_t size = pkt->
getSize();
144 bool is_secure_access = pkt->
isSecure();
150 DPRINTF(GIC,
"Gicv3::write(): (distributor) context_id %d "
151 "register %#x size %d is_secure_access %d value %#x\n",
152 pkt->
req->contextId(), daddr, size, is_secure_access,
data);
154 delay =
params().dist_pio_delay;
159 DPRINTF(GIC,
"Gicv3::write(): (redistributor %d) context_id %d "
160 "register %#x size %d is_secure_access %d value %#x\n",
162 is_secure_access,
data);
164 redist->
write(daddr,
data, size, is_secure_access);
166 delay =
params().redist_pio_delay;
168 panic(
"Gicv3::write(): unknown address %#x\n",
addr);
211 tc->getCpuPtr()->postInterrupt(tc->threadId(),
int_type, 0);
226 tc->getCpuPtr()->clearInterrupt(tc->threadId(),
int_type, 0);
233 tc->getCpuPtr()->clearInterrupts(tc->threadId());
240 return tc->getCpuPtr()->checkInterrupts(tc->threadId());
247 if (redistributor->getAffinity() == affinity) {
248 return redistributor;
259 "Address not pointing to a valid redistributor\n");
262 const uint32_t redistributor_id = daddr /
redistSize;
265 "Invalid redistributor_id!");
276 for (uint32_t redistributor_id = 0;
279 csprintf(
"redistributors.%i", redistributor_id));
281 for (uint32_t cpu_interface_id = 0;
284 csprintf(
"cpuInterface.%i", cpu_interface_id));
294 for (uint32_t redistributor_id = 0;
297 csprintf(
"redistributors.%i", redistributor_id));
299 for (uint32_t cpu_interface_id = 0;
302 csprintf(
"cpuInterface.%i", cpu_interface_id));
ArmSystem * getSystem() const
Addr start() const
Get the start address of the range.
uint64_t getUintX(ByteOrder endian) const
Get the data in the packet byte swapped from the specified endianness and zero-extended to 64 bits.
bool haveAsserted(uint32_t cpu) const
AddrRange RangeSize(Addr start, Addr size)
uint64_t read(Addr addr, size_t size, bool is_secure_access)
RequestPtr req
A pointer to the original request.
bool contains(const Addr &a) const
Determine if the range contains an address.
void serializeSection(CheckpointOut &cp, const char *name) const
Serialize an object into a new section.
Gicv3Redistributor * getRedistributorByAddr(Addr address) const
void deassertAll(uint32_t cpu)
void clearPPInt(uint32_t int_id, uint32_t cpu) override
std::string csprintf(const char *format, const Args &...args)
void makeAtomicResponse()
void write(Addr addr, uint64_t data, size_t size, bool is_secure_access)
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
void sendPPInt(uint32_t int_id, uint32_t cpu) override
Interface call for private peripheral interrupts.
void postInt(uint32_t cpu, ArmISA::InterruptTypes int_type)
void write(Addr addr, uint64_t data, size_t size, bool is_secure_access)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
void serialize(CheckpointOut &cp) const override
Serialize an object.
void sendInt(uint32_t int_id)
void unserializeSection(CheckpointIn &cp, const char *name)
Unserialize an a child object.
std::vector< Gicv3CPUInterface * > cpuInterfaces
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
uint64_t Tick
Tick count type.
uint32_t processorNumber() const
Gicv3Distributor * distributor
std::vector< Gicv3Redistributor * > redistributors
friend class Gicv3Redistributor
const Params & params() const
friend class Gicv3CPUInterface
uint64_t read(Addr addr, size_t size, bool is_secure_access)
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
void sendInt(uint32_t int_id) override
Post an interrupt from a device that is connected to the GIC.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
static void callClearStandByWfi(ThreadContext *tc)
Make a call to notify the power controller of STANDBYWFI deassertion.
void clearInt(uint32_t int_id)
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Gicv3Redistributor * getRedistributorByAffinity(uint32_t affinity) const
void setGIC(BaseGic *gic)
Sets the pointer to the GIC.
std::ostream CheckpointOut
void deassertInt(uint32_t cpu, ArmISA::InterruptTypes int_type)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
static const uint32_t ADDR_RANGE_SIZE
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 ...
void clearInt(uint32_t int_id) override
Clear an interrupt from a device that is connected to the GIC.
#define panic(...)
This implements a cprintf based panic() function.
bool supportsVersion(GicVersion version) override
Check if version supported.
Generated on Wed Jul 28 2021 12:10:25 for gem5 by doxygen 1.8.17