Go to the documentation of this file.
33 #include "debug/I8259.hh"
43 latency(
p.pio_latency),
46 readIRR(true), initControlWord(0), autoEOI(false)
48 for (
int i = 0;
i <
p.port_output_connection_count;
i++) {
53 int in_count =
p.port_inputs_connection_count;
55 "I8259 only supports 8 inputs, but there are %d.", in_count);
56 for (
int i = 0;
i < in_count;
i++) {
70 for (
auto *input: inputs)
71 pinStates[input->getId()] = input->state();
78 switch(pkt->
getAddr() - pioAddr)
102 uint8_t
val = pkt->
getLE<uint8_t>();
103 switch (pkt->
getAddr() - pioAddr) {
106 DPRINTF(
I8259,
"Received initialization command word 1.\n");
110 edgeTriggered ?
"Edge" :
"Level");
113 cascadeMode ?
"Cascade" :
"Single");
119 DPRINTF(
I8259,
"Expecting %d more bytes.\n", expectICW4 ? 3 : 2);
120 }
else if (
bits(
val, 4, 3) == 0) {
125 "Subcommand: Rotate in auto-EOI mode (clear).\n");
130 DPRINTF(
I8259,
"Subcommand: Nonspecific EOI on line %d.\n",
141 DPRINTF(
I8259,
"Subcommand: Specific EIO on line %d.\n",
147 DPRINTF(
I8259,
"Subcommand: Rotate in auto-EOI mode (set).\n");
150 DPRINTF(
I8259,
"Subcommand: Rotate on nonspecific EOI.\n");
158 DPRINTF(
I8259,
"Subcommand: Rotate on specific EOI.\n");
163 }
else if (
bits(
val, 4, 3) == 1) {
167 bits(
val, 6) ?
"Set" :
"Clear");
176 switch (initControlWord) {
183 DPRINTF(
I8259,
"Received initialization command word 2.\n");
186 vectorOffset, vectorOffset |
mask(3));
195 DPRINTF(
I8259,
"Received initialization command word 3.\n");
196 if (
mode == enums::I8259Master) {
198 "IRQs:%s%s%s%s%s%s%s%s\n",
218 DPRINTF(
I8259,
"Received initialization command word 4.\n");
226 }
else if (
bits(
val, 2) == 0) {
233 autoEOI ?
"Automatic" :
"Normal");
261 for (
auto *wire:
output) {
267 warn(
"Received interrupt but didn't have "
268 "anyone to tell about it.\n");
276 DPRINTF(
I8259,
"Interrupt requested for line %d.\n", line);
277 if (line >= NumLines)
278 fatal(
"Line number %d doesn't exist. The max is %d.\n",
284 requestInterrupt(line);
291 DPRINTF(
I8259,
"Interrupt signal raised for pin %d.\n", number);
292 if (number >= NumLines)
293 fatal(
"Line number %d doesn't exist. The max is %d.\n",
294 number, NumLines - 1);
295 if (!pinStates[number])
296 signalInterrupt(number);
297 pinStates[number] =
true;
303 DPRINTF(
I8259,
"Interrupt signal lowered for pin %d.\n", number);
304 if (number >= NumLines)
305 fatal(
"Line number %d doesn't exist. The max is %d.\n",
306 number, NumLines - 1);
307 pinStates[number] =
false;
327 if (slave &&
bits(cascadeBits, line)) {
329 "provide the vector.\n");
330 return slave->getVector();
332 return line | vectorOffset;
#define fatal(...)
This implements a cprintf based fatal() function.
void raiseInterruptPin(int number)
#define UNSERIALIZE_SCALAR(scalar)
static void output(const char *filename)
void serialize(CheckpointOut &cp) const override
Serialize an object.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
std::string csprintf(const char *format, const Args &...args)
void makeAtomicResponse()
void unserialize(CheckpointIn &cp) override
Unserialize an object.
std::vector< IntSinkPin< I8259 > * > inputs
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
#define SERIALIZE_ENUM(scalar)
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
virtual std::string name() const
static const int NumLines
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
uint64_t Tick
Tick count type.
std::vector< IntSourcePin< I8259 > * > output
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
#define SERIALIZE_ARRAY(member, size)
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
#define SERIALIZE_SCALAR(scalar)
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
void lowerInterruptPin(int number)
#define UNSERIALIZE_ARRAY(member, size)
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
constexpr int findMsbSet(uint64_t val)
Returns the bit position of the MSB that is set in the input.
std::ostream CheckpointOut
#define UNSERIALIZE_ENUM(scalar)
void setLE(T v)
Set the value in the data pointer to v as little endian.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void signalInterrupt(int line)
void requestInterrupt(int line)
Generated on Wed May 4 2022 12:13:58 for gem5 by doxygen 1.8.17