add dumb time of day device
--HG-- extra : convert_revision : 52e51ff49f7ed73065f04707ded06dc7254292c4
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user