Another fix for the too much work problem in 2.6. This should do it.
Both rx/tx interrupts are now scheduled for the future to give the linux kernel time to get out of its loop. --HG-- extra : convert_revision : 8fee0a25fde0ce0545c924f8547bed460602e006
This commit is contained in:
parent
38fe4d9a86
commit
5a1340d046
2 changed files with 63 additions and 38 deletions
91
dev/uart.cc
91
dev/uart.cc
|
@ -48,10 +48,11 @@
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
Uart::IntrEvent::IntrEvent(Uart *u)
|
Uart::IntrEvent::IntrEvent(Uart *u, int bit)
|
||||||
: Event(&mainEventQueue), uart(u)
|
: Event(&mainEventQueue), uart(u)
|
||||||
{
|
{
|
||||||
DPRINTF(Uart, "UART Interrupt Event Initilizing\n");
|
DPRINTF(Uart, "UART Interrupt Event Initilizing\n");
|
||||||
|
intrBit = bit;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
|
@ -63,10 +64,10 @@ Uart::IntrEvent::description()
|
||||||
void
|
void
|
||||||
Uart::IntrEvent::process()
|
Uart::IntrEvent::process()
|
||||||
{
|
{
|
||||||
if (UART_IER_THRI & uart->IER) {
|
if (intrBit & uart->IER) {
|
||||||
DPRINTF(Uart, "UART InterEvent, interrupting\n");
|
DPRINTF(Uart, "UART InterEvent, interrupting\n");
|
||||||
uart->platform->postConsoleInt();
|
uart->platform->postConsoleInt();
|
||||||
uart->status |= TX_INT;
|
uart->status |= intrBit;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
DPRINTF(Uart, "UART InterEvent, not interrupting\n");
|
DPRINTF(Uart, "UART InterEvent, not interrupting\n");
|
||||||
|
@ -76,18 +77,20 @@ Uart::IntrEvent::process()
|
||||||
void
|
void
|
||||||
Uart::IntrEvent::scheduleIntr()
|
Uart::IntrEvent::scheduleIntr()
|
||||||
{
|
{
|
||||||
DPRINTF(Uart, "Scheduling IER interrupt\n");
|
DPRINTF(Uart, "Scheduling IER interrupt for %#x, at cycle %lld\n", intrBit,
|
||||||
|
curTick + (ticksPerSecond/2000) * 350);
|
||||||
if (!scheduled())
|
if (!scheduled())
|
||||||
/* @todo Make this cleaner, will be much easier with
|
/* @todo Make this cleaner, will be much easier with
|
||||||
* nanosecond time everywhere. Hint hint Nate. */
|
* nanosecond time everywhere. Hint hint Nate. */
|
||||||
schedule(curTick + (ticksPerSecond/2000) * 350);
|
schedule(curTick + (ticksPerSecond/2000000000) * 450);
|
||||||
else
|
else
|
||||||
reschedule(curTick + (ticksPerSecond/2000) * 350);
|
reschedule(curTick + (ticksPerSecond/2000000000) * 450);
|
||||||
}
|
}
|
||||||
|
|
||||||
Uart::Uart(const string &name, SimConsole *c, MemoryController *mmu, Addr a,
|
Uart::Uart(const string &name, SimConsole *c, MemoryController *mmu, Addr a,
|
||||||
Addr s, HierParams *hier, Bus *bus, Platform *p)
|
Addr s, HierParams *hier, Bus *bus, Platform *p)
|
||||||
: PioDevice(name), addr(a), size(s), cons(c), intrEvent(this), platform(p)
|
: PioDevice(name), addr(a), size(s), cons(c), txIntrEvent(this, TX_INT),
|
||||||
|
rxIntrEvent(this, RX_INT), platform(p)
|
||||||
{
|
{
|
||||||
mmu->add_child(this, Range<Addr>(addr, addr + size));
|
mmu->add_child(this, Range<Addr>(addr, addr + size));
|
||||||
|
|
||||||
|
@ -179,7 +182,6 @@ Uart::read(MemReqPtr &req, uint8_t *data)
|
||||||
switch (daddr) {
|
switch (daddr) {
|
||||||
case 0x0:
|
case 0x0:
|
||||||
if (!(LCR & 0x80)) { // read byte
|
if (!(LCR & 0x80)) { // read byte
|
||||||
//assert(cons->dataAvailable());
|
|
||||||
if (cons->dataAvailable())
|
if (cons->dataAvailable())
|
||||||
cons->in(*data);
|
cons->in(*data);
|
||||||
else {
|
else {
|
||||||
|
@ -187,14 +189,11 @@ Uart::read(MemReqPtr &req, uint8_t *data)
|
||||||
// A limited amount of these are ok.
|
// A limited amount of these are ok.
|
||||||
DPRINTF(Uart, "empty read of RX register\n");
|
DPRINTF(Uart, "empty read of RX register\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cons->dataAvailable())
|
|
||||||
platform->postConsoleInt();
|
|
||||||
else
|
|
||||||
{
|
|
||||||
status &= ~RX_INT;
|
status &= ~RX_INT;
|
||||||
platform->clearConsoleInt();
|
platform->clearConsoleInt();
|
||||||
}
|
|
||||||
|
if (cons->dataAvailable() && (IER & UART_IER_RDI))
|
||||||
|
rxIntrEvent.scheduleIntr();
|
||||||
} else { // dll divisor latch
|
} else { // dll divisor latch
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
@ -207,10 +206,11 @@ Uart::read(MemReqPtr &req, uint8_t *data)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 0x2: // Intr Identification Register (IIR)
|
case 0x2: // Intr Identification Register (IIR)
|
||||||
|
DPRINTF(Uart, "IIR Read, status = %#x\n", (uint32_t)status);
|
||||||
if (status)
|
if (status)
|
||||||
*(uint8_t*)data = 1;
|
|
||||||
else
|
|
||||||
*(uint8_t*)data = 0;
|
*(uint8_t*)data = 0;
|
||||||
|
else
|
||||||
|
*(uint8_t*)data = 1;
|
||||||
break;
|
break;
|
||||||
case 0x3: // Line Control Register (LCR)
|
case 0x3: // Line Control Register (LCR)
|
||||||
*(uint8_t*)data = LCR;
|
*(uint8_t*)data = LCR;
|
||||||
|
@ -290,7 +290,7 @@ Uart::write(MemReqPtr &req, const uint8_t *data)
|
||||||
platform->clearConsoleInt();
|
platform->clearConsoleInt();
|
||||||
status &= ~TX_INT;
|
status &= ~TX_INT;
|
||||||
if (UART_IER_THRI & IER)
|
if (UART_IER_THRI & IER)
|
||||||
intrEvent.scheduleIntr();
|
txIntrEvent.scheduleIntr();
|
||||||
} else { // dll divisor latch
|
} else { // dll divisor latch
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
@ -298,19 +298,32 @@ Uart::write(MemReqPtr &req, const uint8_t *data)
|
||||||
case 0x1:
|
case 0x1:
|
||||||
if (!(LCR & 0x80)) { // Intr Enable Register(IER)
|
if (!(LCR & 0x80)) { // Intr Enable Register(IER)
|
||||||
IER = *(uint8_t*)data;
|
IER = *(uint8_t*)data;
|
||||||
if ((UART_IER_THRI & IER) || ((UART_IER_RDI & IER) && cons->dataAvailable()))
|
if (UART_IER_THRI & IER)
|
||||||
platform->postConsoleInt();
|
{
|
||||||
|
DPRINTF(Uart, "IER: IER_THRI set, scheduling TX intrrupt\n");
|
||||||
|
txIntrEvent.scheduleIntr();
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
DPRINTF(Uart, "IER: IER_THRI cleared, descheduling TX intrrupt\n");
|
||||||
|
if (txIntrEvent.scheduled())
|
||||||
|
txIntrEvent.deschedule();
|
||||||
|
if (status & TX_INT)
|
||||||
platform->clearConsoleInt();
|
platform->clearConsoleInt();
|
||||||
if (intrEvent.scheduled())
|
|
||||||
intrEvent.deschedule();
|
|
||||||
|
|
||||||
}
|
|
||||||
if (!(UART_IER_THRI & IER))
|
|
||||||
status &= ~TX_INT;
|
status &= ~TX_INT;
|
||||||
if (!((UART_IER_RDI & IER) && cons->dataAvailable()))
|
}
|
||||||
|
|
||||||
|
if ((UART_IER_RDI & IER) && cons->dataAvailable()) {
|
||||||
|
DPRINTF(Uart, "IER: IER_RDI set, scheduling RX intrrupt\n");
|
||||||
|
rxIntrEvent.scheduleIntr();
|
||||||
|
} else {
|
||||||
|
DPRINTF(Uart, "IER: IER_RDI cleared, descheduling RX intrrupt\n");
|
||||||
|
if (rxIntrEvent.scheduled())
|
||||||
|
rxIntrEvent.deschedule();
|
||||||
|
if (status & RX_INT)
|
||||||
|
platform->clearConsoleInt();
|
||||||
status &= ~RX_INT;
|
status &= ~RX_INT;
|
||||||
|
}
|
||||||
} else { // DLM divisor latch MSB
|
} else { // DLM divisor latch MSB
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
@ -372,12 +385,18 @@ Uart::serialize(ostream &os)
|
||||||
SERIALIZE_SCALAR(DLAB);
|
SERIALIZE_SCALAR(DLAB);
|
||||||
SERIALIZE_SCALAR(LCR);
|
SERIALIZE_SCALAR(LCR);
|
||||||
SERIALIZE_SCALAR(MCR);
|
SERIALIZE_SCALAR(MCR);
|
||||||
Tick intrwhen;
|
Tick rxintrwhen;
|
||||||
if (intrEvent.scheduled())
|
if (rxIntrEvent.scheduled())
|
||||||
intrwhen = intrEvent.when();
|
rxintrwhen = rxIntrEvent.when();
|
||||||
else
|
else
|
||||||
intrwhen = 0;
|
rxintrwhen = 0;
|
||||||
SERIALIZE_SCALAR(intrwhen);
|
Tick txintrwhen;
|
||||||
|
if (txIntrEvent.scheduled())
|
||||||
|
txintrwhen = txIntrEvent.when();
|
||||||
|
else
|
||||||
|
rxintrwhen = 0;
|
||||||
|
SERIALIZE_SCALAR(rxintrwhen);
|
||||||
|
SERIALIZE_SCALAR(txintrwhen);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -393,10 +412,14 @@ Uart::unserialize(Checkpoint *cp, const std::string §ion)
|
||||||
UNSERIALIZE_SCALAR(DLAB);
|
UNSERIALIZE_SCALAR(DLAB);
|
||||||
UNSERIALIZE_SCALAR(LCR);
|
UNSERIALIZE_SCALAR(LCR);
|
||||||
UNSERIALIZE_SCALAR(MCR);
|
UNSERIALIZE_SCALAR(MCR);
|
||||||
Tick intrwhen;
|
Tick rxintrwhen;
|
||||||
UNSERIALIZE_SCALAR(intrwhen);
|
Tick txintrwhen;
|
||||||
if (intrwhen != 0)
|
UNSERIALIZE_SCALAR(rxintrwhen);
|
||||||
intrEvent.schedule(intrwhen);
|
UNSERIALIZE_SCALAR(txintrwhen);
|
||||||
|
if (rxintrwhen != 0)
|
||||||
|
rxIntrEvent.schedule(rxintrwhen);
|
||||||
|
if (txintrwhen != 0)
|
||||||
|
txIntrEvent.schedule(txintrwhen);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,14 +62,16 @@ class Uart : public PioDevice
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
Uart *uart;
|
Uart *uart;
|
||||||
|
int intrBit;
|
||||||
public:
|
public:
|
||||||
IntrEvent(Uart *u);
|
IntrEvent(Uart *u, int bit);
|
||||||
virtual void process();
|
virtual void process();
|
||||||
virtual const char *description();
|
virtual const char *description();
|
||||||
void scheduleIntr();
|
void scheduleIntr();
|
||||||
};
|
};
|
||||||
|
|
||||||
IntrEvent intrEvent;
|
IntrEvent txIntrEvent;
|
||||||
|
IntrEvent rxIntrEvent;
|
||||||
Platform *platform;
|
Platform *platform;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in a new issue