2006-09-05 02:14:07 +02:00
|
|
|
from m5.params import *
|
|
|
|
from m5.proxy import *
|
2006-04-11 19:42:47 +02:00
|
|
|
from MemObject import MemObject
|
2005-01-15 10:12:25 +01:00
|
|
|
|
2006-04-11 19:42:47 +02:00
|
|
|
class PioDevice(MemObject):
|
2005-01-15 10:12:25 +01:00
|
|
|
type = 'PioDevice'
|
2005-02-03 03:13:01 +01:00
|
|
|
abstract = True
|
2006-06-15 17:45:51 +02:00
|
|
|
pio = Port("Programmed I/O port")
|
2006-04-11 19:42:47 +02:00
|
|
|
platform = Param.Platform(Parent.any, "Platform this device is part of")
|
|
|
|
system = Param.System(Parent.any, "System this device is part of")
|
2005-01-15 10:12:25 +01:00
|
|
|
|
2006-04-11 19:42:47 +02:00
|
|
|
class BasicPioDevice(PioDevice):
|
|
|
|
type = 'BasicPioDevice'
|
2005-02-03 03:13:01 +01:00
|
|
|
abstract = True
|
2006-04-11 19:42:47 +02:00
|
|
|
pio_addr = Param.Addr("Device Address")
|
2006-07-19 23:24:20 +02:00
|
|
|
pio_latency = Param.Latency('1ns', "Programmed IO latency in simticks")
|
2006-04-20 23:14:30 +02:00
|
|
|
|
|
|
|
class DmaDevice(PioDevice):
|
|
|
|
type = 'DmaDevice'
|
|
|
|
abstract = True
|
2006-09-06 07:04:34 +02:00
|
|
|
dma = Port(Self.pio.peerObj.port, "DMA port")
|
2007-05-10 06:08:22 +02:00
|
|
|
min_backoff_delay = Param.Latency('4ns',
|
|
|
|
"min time between a nack packet being received and the next request made by the device")
|
|
|
|
max_backoff_delay = Param.Latency('10us',
|
|
|
|
"max time between a nack packet being received and the next request made by the device")
|
|
|
|
|
|
|
|
|
2006-11-30 21:51:54 +01:00
|
|
|
|
|
|
|
class IsaFake(BasicPioDevice):
|
|
|
|
type = 'IsaFake'
|
|
|
|
pio_size = Param.Addr(0x8, "Size of address range")
|
2006-12-04 06:54:40 +01:00
|
|
|
ret_data8 = Param.UInt8(0xFF, "Default data to return")
|
|
|
|
ret_data16 = Param.UInt16(0xFFFF, "Default data to return")
|
|
|
|
ret_data32 = Param.UInt32(0xFFFFFFFF, "Default data to return")
|
|
|
|
ret_data64 = Param.UInt64(0xFFFFFFFFFFFFFFFF, "Default data to return")
|
2006-11-30 21:51:54 +01:00
|
|
|
ret_bad_addr = Param.Bool(False, "Return pkt status bad address on access")
|
2006-12-04 06:54:40 +01:00
|
|
|
update_data = Param.Bool(False, "Update the data that is returned on writes")
|
|
|
|
warn_access = Param.String("", "String to print when device is accessed")
|
2006-11-30 21:51:54 +01:00
|
|
|
|
|
|
|
class BadAddr(IsaFake):
|
|
|
|
ret_bad_addr = Param.Bool(True, "Return pkt status bad address on access")
|
|
|
|
|
|
|
|
|