2005-05-29 07:14:50 +02:00
|
|
|
from m5 import *
|
2006-03-05 02:45:01 +01:00
|
|
|
|
2005-06-04 20:19:05 +02:00
|
|
|
class System(SimObject):
|
2005-06-09 21:09:35 +02:00
|
|
|
type = 'System'
|
2005-06-02 03:44:00 +02:00
|
|
|
boot_cpu_frequency = Param.Frequency(Self.cpu[0].clock.frequency,
|
2005-05-29 07:14:50 +02:00
|
|
|
"boot processor frequency")
|
|
|
|
memctrl = Param.MemoryController(Parent.any, "memory controller")
|
|
|
|
physmem = Param.PhysicalMemory(Parent.any, "phsyical memory")
|
2006-03-05 02:45:01 +01:00
|
|
|
init_param = Param.UInt64(0, "numerical value to pass into simulator")
|
|
|
|
bin = Param.Bool(False, "is this system binned")
|
|
|
|
binned_fns = VectorParam.String([], "functions broken down and binned")
|
2005-01-15 10:12:25 +01:00
|
|
|
kernel = Param.String("file that contains the kernel code")
|
2006-03-05 02:45:01 +01:00
|
|
|
readfile = Param.String("", "file to read startup script from")
|
2006-08-23 22:57:07 +02:00
|
|
|
symbolfile = Param.String("", "file to get the symbols from")
|
2006-03-05 02:45:01 +01:00
|
|
|
|
|
|
|
class AlphaSystem(System):
|
|
|
|
type = 'AlphaSystem'
|
2005-01-15 10:12:25 +01:00
|
|
|
console = Param.String("file that contains the console code")
|
|
|
|
pal = Param.String("file that contains palcode")
|
|
|
|
boot_osflags = Param.String("a", "boot flags to pass to the kernel")
|
|
|
|
system_type = Param.UInt64("Type of system we are emulating")
|
|
|
|
system_rev = Param.UInt64("Revision of system we are emulating")
|