diff options
author | Benjamin Nash <benash@umich.edu> | 2005-06-09 15:01:15 -0400 |
---|---|---|
committer | Benjamin Nash <benash@umich.edu> | 2005-06-09 15:01:15 -0400 |
commit | c4fdfa3844ec0e1ae6f34660024ee33170445b8d (patch) | |
tree | 172be4e7ad9e9361efff8b745197883d0035f7fb /dev/tsunamireg.h | |
parent | 4cc9fbf61d70668a8d80681998a1db2b2e1b4a41 (diff) | |
download | gem5-c4fdfa3844ec0e1ae6f34660024ee33170445b8d.tar.xz |
Mostly IO modifications, to increase compatibility with FreeBSD.
dev/pcidev.cc:
Allow writes to some PCI read-only registers.
Fix problem when writing to a zero offset IO location.
dev/tsunami_io.cc:
Fix calculation of IO addresses.
Add registers for keyboard and PCI DMA.
dev/tsunamireg.h:
Add registers for keyboard and PCI DMA.
python/m5/objects/System.py:
Allow generic System to be instantiated.
--HG--
extra : convert_revision : 1b985ffa2b8e15aa55246f1d14da615c32ecd3f9
Diffstat (limited to 'dev/tsunamireg.h')
-rw-r--r-- | dev/tsunamireg.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dev/tsunamireg.h b/dev/tsunamireg.h index 5fbfd5c31..8b290deb1 100644 --- a/dev/tsunamireg.h +++ b/dev/tsunamireg.h @@ -123,6 +123,18 @@ #define TSDEV_TMR2_DATA 0x42 #define TSDEV_TMR0_DATA 0x40 +/* Added for keyboard accesses */ +#define TSDEV_KBD 0x64 + +/* Added for ATA PCI DMA */ +#define ATA_PCI_DMA 0x00 +#define ATA_PCI_DMA2 0x02 +#define ATA_PCI_DMA3 0x16 +#define ATA_PCI_DMA4 0x17 +#define ATA_PCI_DMA5 0x1a +#define ATA_PCI_DMA6 0x11 +#define ATA_PCI_DMA7 0x14 + #define TSDEV_RTC_ADDR 0x70 #define TSDEV_RTC_DATA 0x71 |