FSConfig.py (2969:d2f8f9a23082) FSConfig.py (2995:34553e4fd1ac)
1# Copyright (c) 2006 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 15 unchanged lines hidden (view full) ---

24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27# Authors: Kevin Lim
28
29import m5
30from m5 import makeList
31from m5.objects import *
1# Copyright (c) 2006 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 15 unchanged lines hidden (view full) ---

24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27# Authors: Kevin Lim
28
29import m5
30from m5 import makeList
31from m5.objects import *
32from Benchmarks import *
32from FullO3Config import *
33from FullO3Config import *
33from SysPaths import *
34from Util import *
35
34from Util import *
35
36script.dir = '/z/saidi/work/m5.newmem/configs/boot'
37linux_image = env.get('LINUX_IMAGE', disk('linux-latest.img'))
38
39class CowIdeDisk(IdeDisk):
40 image = CowDiskImage(child=RawDiskImage(read_only=True),
41 read_only=False)
42
43 def childImage(self, ci):
44 self.image.child.image_file = ci
45
46class BaseTsunami(Tsunami):
47 ethernet = NSGigE(configdata=NSGigEPciData(),
48 pci_bus=0, pci_dev=1, pci_func=0)
49 etherint = NSGigEInt(device=Parent.ethernet)
50 ide = IdeController(disks=[Parent.disk0, Parent.disk2],
51 pci_func=0, pci_dev=0, pci_bus=0)
52
36class CowIdeDisk(IdeDisk):
37 image = CowDiskImage(child=RawDiskImage(read_only=True),
38 read_only=False)
39
40 def childImage(self, ci):
41 self.image.child.image_file = ci
42
43class BaseTsunami(Tsunami):
44 ethernet = NSGigE(configdata=NSGigEPciData(),
45 pci_bus=0, pci_dev=1, pci_func=0)
46 etherint = NSGigEInt(device=Parent.ethernet)
47 ide = IdeController(disks=[Parent.disk0, Parent.disk2],
48 pci_func=0, pci_dev=0, pci_bus=0)
49
53def makeLinuxAlphaSystem(cpu, mem_mode, linux_image, icache=None, dcache=None, l2cache=None):
50def makeLinuxAlphaSystem(cpu, mem_mode, mdesc, icache=None, dcache=None, l2cache=None):
54 self = LinuxAlphaSystem()
51 self = LinuxAlphaSystem()
52 self.readfile = mdesc.script()
55 self.iobus = Bus(bus_id=0)
56 self.membus = Bus(bus_id=1)
57 self.bridge = Bridge()
53 self.iobus = Bus(bus_id=0)
54 self.membus = Bus(bus_id=1)
55 self.bridge = Bridge()
58 self.physmem = PhysicalMemory(range = AddrRange('128MB'))
56 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
59 self.bridge.side_a = self.iobus.port
60 self.bridge.side_b = self.membus.port
61 self.physmem.port = self.membus.port
62 self.disk0 = CowIdeDisk(driveID='master')
63 self.disk2 = CowIdeDisk(driveID='master')
57 self.bridge.side_a = self.iobus.port
58 self.bridge.side_b = self.membus.port
59 self.physmem.port = self.membus.port
60 self.disk0 = CowIdeDisk(driveID='master')
61 self.disk2 = CowIdeDisk(driveID='master')
64 self.disk0.childImage(linux_image)
62 self.disk0.childImage(mdesc.disk())
65 self.disk2.childImage(disk('linux-bigswap2.img'))
66 self.tsunami = BaseTsunami()
67 self.tsunami.attachIO(self.iobus)
68 self.tsunami.ide.pio = self.iobus.port
69 self.tsunami.ide.dma = self.iobus.port
70 self.tsunami.ide.config = self.iobus.port
71 self.tsunami.ethernet.pio = self.iobus.port
72 self.tsunami.ethernet.dma = self.iobus.port
73 self.tsunami.ethernet.config = self.iobus.port
63 self.disk2.childImage(disk('linux-bigswap2.img'))
64 self.tsunami = BaseTsunami()
65 self.tsunami.attachIO(self.iobus)
66 self.tsunami.ide.pio = self.iobus.port
67 self.tsunami.ide.dma = self.iobus.port
68 self.tsunami.ide.config = self.iobus.port
69 self.tsunami.ethernet.pio = self.iobus.port
70 self.tsunami.ethernet.dma = self.iobus.port
71 self.tsunami.ethernet.config = self.iobus.port
74 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = linux_image,
72 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
75 read_only = True))
76 self.intrctrl = IntrControl()
77 self.cpu = cpu
78 self.mem_mode = mem_mode
79 connectCpu(self.cpu, self.membus, icache, dcache, l2cache)
80 for each_cpu in makeList(self.cpu):
81 each_cpu.itb = AlphaITB()
82 each_cpu.dtb = AlphaDTB()
83 self.cpu.clock = '2GHz'
84 self.sim_console = SimConsole(listener=ConsoleListener(port=3456))
85 self.kernel = binary('vmlinux')
86 self.pal = binary('ts_osfpal')
87 self.console = binary('console')
88 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
89
90 return self
91
73 read_only = True))
74 self.intrctrl = IntrControl()
75 self.cpu = cpu
76 self.mem_mode = mem_mode
77 connectCpu(self.cpu, self.membus, icache, dcache, l2cache)
78 for each_cpu in makeList(self.cpu):
79 each_cpu.itb = AlphaITB()
80 each_cpu.dtb = AlphaDTB()
81 self.cpu.clock = '2GHz'
82 self.sim_console = SimConsole(listener=ConsoleListener(port=3456))
83 self.kernel = binary('vmlinux')
84 self.pal = binary('ts_osfpal')
85 self.console = binary('console')
86 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
87
88 return self
89
92def makeDualRoot(clientSystem, serverSystem):
90def makeDualRoot(testSystem, driveSystem):
93 self = Root()
91 self = Root()
94 self.client = clientSystem
95 self.server = serverSystem
92 self.testsys = testSystem
93 self.drivesys = driveSystem
96
97 self.etherdump = EtherDump(file='ethertrace')
94
95 self.etherdump = EtherDump(file='ethertrace')
98 self.etherlink = EtherLink(int1 = Parent.client.tsunami.etherint[0],
99 int2 = Parent.server.tsunami.etherint[0],
96 self.etherlink = EtherLink(int1 = Parent.testsys.tsunami.etherint[0],
97 int2 = Parent.drivesys.tsunami.etherint[0],
100 dump = Parent.etherdump)
101 self.clock = '1THz'
102 return self
98 dump = Parent.etherdump)
99 self.clock = '1THz'
100 return self