c8538d6a7e
python/m5/config.py: - Enhanced Proxy class now supports subscripting, e.g., parent.cpu[0] or even parent.cpu[0].icache. - Proxy also supports multiplication (e.g., parent.cycle * 3), though this feature has not been tested. - Subscript 0 works even on non-lists, so you can safely say cpu[0] and get the first cpu even if there's only one. - Changed name of proxy object from 'Super' to 'parent', and changed "wild card" notation from plain 'Super' to 'parent.any'. python/m5/objects/AlphaConsole.mpy: python/m5/objects/BaseCPU.mpy: python/m5/objects/BaseSystem.mpy: python/m5/objects/Device.mpy: python/m5/objects/Ethernet.mpy: python/m5/objects/Ide.mpy: python/m5/objects/IntrControl.mpy: python/m5/objects/Pci.mpy: python/m5/objects/PhysicalMemory.mpy: python/m5/objects/Platform.mpy: python/m5/objects/SimConsole.mpy: python/m5/objects/SimpleDisk.mpy: python/m5/objects/Tsunami.mpy: python/m5/objects/Uart.mpy: Change 'Super.foo' to 'parent.foo' (and 'Super' to 'parent.any'). --HG-- extra : convert_revision : f996d0a3366d5e3e60ae5973691148c3d7cd497d
86 lines
3.2 KiB
Text
86 lines
3.2 KiB
Text
from Device import DmaDevice
|
|
from Pci import PciDevice
|
|
|
|
simobj EtherInt(SimObject):
|
|
type = 'EtherInt'
|
|
abstract = True
|
|
peer = Param.EtherInt(NULL, "peer interface")
|
|
|
|
simobj EtherLink(SimObject):
|
|
type = 'EtherLink'
|
|
int1 = Param.EtherInt("interface 1")
|
|
int2 = Param.EtherInt("interface 2")
|
|
delay = Param.Tick(0, "transmit delay of packets in us")
|
|
speed = Param.Tick(100000000, "link speed in bits per second")
|
|
dump = Param.EtherDump(NULL, "dump object")
|
|
|
|
simobj EtherBus(SimObject):
|
|
type = 'EtherBus'
|
|
loopback = Param.Bool(True,
|
|
"send packet back to the interface from which it came")
|
|
dump = Param.EtherDump(NULL, "dump object")
|
|
speed = Param.UInt64(100000000, "bus speed in bits per second")
|
|
|
|
simobj EtherTap(EtherInt):
|
|
type = 'EtherTap'
|
|
bufsz = Param.Int(10000, "tap buffer size")
|
|
dump = Param.EtherDump(NULL, "dump object")
|
|
port = Param.UInt16(3500, "tap port")
|
|
|
|
simobj EtherDump(SimObject):
|
|
type = 'EtherDump'
|
|
file = Param.String("dump file")
|
|
|
|
simobj EtherDev(DmaDevice):
|
|
type = 'EtherDev'
|
|
hardware_address = Param.EthernetAddr(NextEthernetAddr,
|
|
"Ethernet Hardware Address")
|
|
|
|
dma_data_free = Param.Bool(False, "DMA of Data is free")
|
|
dma_desc_free = Param.Bool(False, "DMA of Descriptors is free")
|
|
dma_read_delay = Param.Tick(0, "fixed delay for dma reads")
|
|
dma_read_factor = Param.Tick(0, "multiplier for dma reads")
|
|
dma_write_delay = Param.Tick(0, "fixed delay for dma writes")
|
|
dma_write_factor = Param.Tick(0, "multiplier for dma writes")
|
|
|
|
rx_filter = Param.Bool(True, "Enable Receive Filter")
|
|
rx_delay = Param.Tick(1000, "Receive Delay")
|
|
tx_delay = Param.Tick(1000, "Transmit Delay")
|
|
|
|
intr_delay = Param.Tick(0, "Interrupt Delay in microseconds")
|
|
payload_bus = Param.Bus(NULL, "The IO Bus to attach to for payload")
|
|
physmem = Param.PhysicalMemory(parent.any, "Physical Memory")
|
|
tlaser = Param.Turbolaser(parent.any, "Turbolaser")
|
|
|
|
simobj NSGigE(PciDevice):
|
|
type = 'NSGigE'
|
|
hardware_address = Param.EthernetAddr(NextEthernetAddr,
|
|
"Ethernet Hardware Address")
|
|
|
|
dma_data_free = Param.Bool(False, "DMA of Data is free")
|
|
dma_desc_free = Param.Bool(False, "DMA of Descriptors is free")
|
|
dma_read_delay = Param.Tick(0, "fixed delay for dma reads")
|
|
dma_read_factor = Param.Tick(0, "multiplier for dma reads")
|
|
dma_write_delay = Param.Tick(0, "fixed delay for dma writes")
|
|
dma_write_factor = Param.Tick(0, "multiplier for dma writes")
|
|
|
|
rx_filter = Param.Bool(True, "Enable Receive Filter")
|
|
rx_delay = Param.Tick(1000, "Receive Delay")
|
|
tx_delay = Param.Tick(1000, "Transmit Delay")
|
|
|
|
rx_fifo_size = Param.Int(131072, "max size in bytes of rxFifo")
|
|
tx_fifo_size = Param.Int(131072, "max size in bytes of txFifo")
|
|
|
|
intr_delay = Param.Tick(0, "Interrupt Delay in microseconds")
|
|
payload_bus = Param.Bus(NULL, "The IO Bus to attach to for payload")
|
|
physmem = Param.PhysicalMemory(parent.any, "Physical Memory")
|
|
|
|
simobj EtherDevInt(EtherInt):
|
|
type = 'EtherDevInt'
|
|
device = Param.EtherDev("Ethernet device of this interface")
|
|
|
|
simobj NSGigEInt(EtherInt):
|
|
type = 'NSGigEInt'
|
|
device = Param.NSGigE("Ethernet device of this interface")
|
|
|
|
|