summaryrefslogtreecommitdiff
path: root/dev/uart8250.hh
diff options
context:
space:
mode:
authorMiguel Serrano <mserrano@umich.edu>2005-07-28 11:47:06 -0400
committerMiguel Serrano <mserrano@umich.edu>2005-07-28 11:47:06 -0400
commit6a8ae7a6a040876e697dfa8b837e1ba1bd7e1fd5 (patch)
tree1aba5f9f04e6ed1cf7b8fd48688dcde27ea47146 /dev/uart8250.hh
parent4f2480a18bdf98792e2ebf3471ce7cd3109ef824 (diff)
downloadgem5-6a8ae7a6a040876e697dfa8b837e1ba1bd7e1fd5.tar.xz
ghgfsdf
dev/pciconfigall.cc: removed union. dev/pcidev.cc: . dev/rtcreg.h: more macros to avoid magic numbers. dev/tsunami_io.cc: replaced magic numbers, no more advancing RTC as it isn't reaaly necessary. dev/tsunami_io.hh: removed declarations of things that go unused. dev/uart8250.cc: reading the Interrupt ID register should clear TX interrupt flag. dev/uart8250.hh: useful #defines. kern/freebsd/freebsd_system.cc: kern/freebsd/freebsd_system.hh: nothing. python/m5/objects/Pci.py: new PciFake. --HG-- extra : convert_revision : 88259704f5b215591d1416360180810fcda14d26
Diffstat (limited to 'dev/uart8250.hh')
-rw-r--r--dev/uart8250.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/dev/uart8250.hh b/dev/uart8250.hh
index 06a798e26..e85ad72c8 100644
--- a/dev/uart8250.hh
+++ b/dev/uart8250.hh
@@ -38,6 +38,9 @@
#include "dev/io_device.hh"
#include "dev/uart.hh"
+#define IIR_NOPEND 0x1
+#define IIR_RXID 0x4
+
class SimConsole;
class Platform;