32 #include "debug/I8259.hh" 39 latency(p->pio_latency),
42 readIRR(true), initControlWord(0), autoEOI(false)
44 for (
int i = 0;
i < p->port_output_connection_count;
i++) {
49 int in_count = p->port_inputs_connection_count;
51 "I8259 only supports 8 inputs, but there are %d.", in_count);
52 for (
int i = 0;
i < in_count;
i++) {
67 pinStates[input->getId()] = input->state();
102 DPRINTF(
I8259,
"Received initialization command word 1.\n");
116 }
else if (
bits(val, 4, 3) == 0) {
118 switch (
bits(val, 7, 5)) {
121 "Subcommand: Rotate in auto-EOI mode (clear).\n");
126 DPRINTF(
I8259,
"Subcommand: Nonspecific EOI on line %d.\n",
136 int line =
bits(val, 2, 0);
137 DPRINTF(
I8259,
"Subcommand: Specific EIO on line %d.\n",
143 DPRINTF(
I8259,
"Subcommand: Rotate in auto-EOI mode (set).\n");
146 DPRINTF(
I8259,
"Subcommand: Rotate on nonspecific EOI.\n");
151 bits(val, 2, 0), (
bits(val, 2, 0) + 1) % 8);
154 DPRINTF(
I8259,
"Subcommand: Rotate on specific EOI.\n");
156 bits(val, 2, 0), (
bits(val, 2, 0) + 1) % 8);
159 }
else if (
bits(val, 4, 3) == 1) {
163 bits(val, 6) ?
"Set" :
"Clear");
179 DPRINTF(
I8259,
"Received initialization command word 2.\n");
191 DPRINTF(
I8259,
"Received initialization command word 3.\n");
192 if (
mode == Enums::I8259Master) {
193 DPRINTF(
I8259,
"Slaves attached to IRQs:%s%s%s%s%s%s%s%s\n",
194 bits(val, 0) ?
" 0" :
"",
195 bits(val, 1) ?
" 1" :
"",
196 bits(val, 2) ?
" 2" :
"",
197 bits(val, 3) ?
" 3" :
"",
198 bits(val, 4) ?
" 4" :
"",
199 bits(val, 5) ?
" 5" :
"",
200 bits(val, 6) ?
" 6" :
"",
201 bits(val, 7) ?
" 7" :
"");
213 DPRINTF(
I8259,
"Received initialization command word 4.\n");
219 if (
bits(val, 3) == 0) {
221 }
else if (
bits(val, 2) == 0) {
228 autoEOI ?
"Automatic" :
"Normal");
256 for (
auto *wire:
output) {
262 warn(
"Received interrupt but didn't have " 263 "anyone to tell about it.\n");
271 DPRINTF(
I8259,
"Interrupt requested for line %d.\n", line);
273 fatal(
"Line number %d doesn't exist. The max is %d.\n",
286 DPRINTF(
I8259,
"Interrupt signal raised for pin %d.\n", number);
288 fatal(
"Line number %d doesn't exist. The max is %d.\n",
298 DPRINTF(
I8259,
"Interrupt signal lowered for pin %d.\n", number);
300 fatal(
"Line number %d doesn't exist. The max is %d.\n",
324 "provide the vector.\n");
367 I8259Params::create()
#define fatal(...)
This implements a cprintf based fatal() function.
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
void serialize(CheckpointOut &cp) const override
Serialize an object.
void setLE(T v)
Set the value in the data pointer to v as little endian.
#define UNSERIALIZE_SCALAR(scalar)
std::vector< IntSinkPin< I8259 > * > inputs
std::string csprintf(const char *format, const Args &...args)
#define SERIALIZE_ENUM(scalar)
void makeAtomicResponse()
uint64_t Tick
Tick count type.
static const int NumLines
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
#define SERIALIZE_ARRAY(member, size)
#define SERIALIZE_SCALAR(scalar)
void raiseInterruptPin(int number)
Enums::X86I8259CascadeMode mode
virtual const std::string name() const
#define UNSERIALIZE_ARRAY(member, size)
Declaration of the Packet class.
std::ostream CheckpointOut
#define UNSERIALIZE_ENUM(scalar)
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
int findMsbSet(uint64_t val)
Returns the bit position of the MSB that is set in the input.
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
std::vector< IntSourcePin< I8259 > * > output
void signalInterrupt(int line)
void lowerInterruptPin(int number)
void requestInterrupt(int line)
T bits(T val, int first, int last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it...
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Addr pioAddr
Address that the device listens to.