summaryrefslogtreecommitdiff
path: root/src/python/m5/objects
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2007-01-21 18:04:40 -0500
committerAli Saidi <saidi@eecs.umich.edu>2007-01-21 18:04:40 -0500
commit3af3610c625d57db3fa75af4f4b24ae72a76595f (patch)
tree648d5780655e1b0cb5eea51a37505dba7d4673d7 /src/python/m5/objects
parentd8eeb2e0ff3059a47a0956fbd02234bc32804290 (diff)
downloadgem5-3af3610c625d57db3fa75af4f4b24ae72a76595f.tar.xz
add dumb time of day device
--HG-- extra : convert_revision : 52e51ff49f7ed73065f04707ded06dc7254292c4
Diffstat (limited to 'src/python/m5/objects')
-rw-r--r--src/python/m5/objects/T1000.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/python/m5/objects/T1000.py b/src/python/m5/objects/T1000.py
index 030f4abd8..7b93268ac 100644
--- a/src/python/m5/objects/T1000.py
+++ b/src/python/m5/objects/T1000.py
@@ -11,6 +11,12 @@ class MmDisk(BasicPioDevice):
image = Param.DiskImage("Disk Image")
pio_addr = 0x1F40000000
+class DumbTOD(BasicPioDevice):
+ type = 'DumbTOD'
+ time = Param.Time('01/01/2009', "System time to use ('Now' for real time)")
+ pio_addr = 0xfff0c1fff8
+
+
class T1000(Platform):
type = 'T1000'
system = Param.System(Parent.any, "system")
@@ -64,6 +70,8 @@ class T1000(Platform):
warn_access="Accessing SSI -- Unimplemented!")
hvuart = Uart8250(pio_addr=0xfff0c2c000)
+ htod = DumbTOD()
+
puart0 = Uart8250(pio_addr=0x1f10000000)
console = SimConsole(listener = ConsoleListener())
@@ -86,3 +94,4 @@ class T1000(Platform):
self.fake_ssi.pio = bus.port
self.puart0.pio = bus.port
self.hvuart.pio = bus.port
+ self.htod.pio = bus.port