ARM: Add support for Versatile Express extended memory map
[gem5.git] / configs / common / FSConfig.py
1 # Copyright (c) 2010-2012 ARM Limited
2 # All rights reserved.
3 #
4 # The license below extends only to copyright in the software and shall
5 # not be construed as granting a license to any other intellectual
6 # property including but not limited to intellectual property relating
7 # to a hardware implementation of the functionality of the software
8 # licensed hereunder. You may use the software subject to the license
9 # terms below provided that you ensure that this notice is replicated
10 # unmodified and in its entirety in all distributions of the software,
11 # modified or unmodified, in source code or in binary form.
12 #
13 # Copyright (c) 2010-2011 Advanced Micro Devices, Inc.
14 # Copyright (c) 2006-2008 The Regents of The University of Michigan
15 # All rights reserved.
16 #
17 # Redistribution and use in source and binary forms, with or without
18 # modification, are permitted provided that the following conditions are
19 # met: redistributions of source code must retain the above copyright
20 # notice, this list of conditions and the following disclaimer;
21 # redistributions in binary form must reproduce the above copyright
22 # notice, this list of conditions and the following disclaimer in the
23 # documentation and/or other materials provided with the distribution;
24 # neither the name of the copyright holders nor the names of its
25 # contributors may be used to endorse or promote products derived from
26 # this software without specific prior written permission.
27 #
28 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 #
40 # Authors: Kevin Lim
41
42 from m5.objects import *
43 from Benchmarks import *
44 from m5.util import convert
45
46 class CowIdeDisk(IdeDisk):
47 image = CowDiskImage(child=RawDiskImage(read_only=True),
48 read_only=False)
49
50 def childImage(self, ci):
51 self.image.child.image_file = ci
52
53 class MemBus(Bus):
54 badaddr_responder = BadAddr()
55 default = Self.badaddr_responder.pio
56
57
58 def makeLinuxAlphaSystem(mem_mode, mdesc = None):
59 IO_address_space_base = 0x80000000000
60 class BaseTsunami(Tsunami):
61 ethernet = NSGigE(pci_bus=0, pci_dev=1, pci_func=0)
62 ide = IdeController(disks=[Parent.disk0, Parent.disk2],
63 pci_func=0, pci_dev=0, pci_bus=0)
64
65 self = LinuxAlphaSystem()
66 if not mdesc:
67 # generic system
68 mdesc = SysConfig()
69 self.readfile = mdesc.script()
70 self.iobus = Bus(bus_id=0)
71 self.membus = MemBus(bus_id=1)
72 # By default the bridge responds to all addresses above the I/O
73 # base address (including the PCI config space)
74 self.bridge = Bridge(delay='50ns', nack_delay='4ns',
75 ranges = [AddrRange(IO_address_space_base, Addr.max)])
76 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
77 self.bridge.master = self.iobus.slave
78 self.bridge.slave = self.membus.master
79 self.physmem.port = self.membus.master
80 self.disk0 = CowIdeDisk(driveID='master')
81 self.disk2 = CowIdeDisk(driveID='master')
82 self.disk0.childImage(mdesc.disk())
83 self.disk2.childImage(disk('linux-bigswap2.img'))
84 self.tsunami = BaseTsunami()
85 self.tsunami.attachIO(self.iobus)
86 self.tsunami.ide.pio = self.iobus.master
87 self.tsunami.ide.config = self.iobus.master
88 self.tsunami.ide.dma = self.iobus.slave
89 self.tsunami.ethernet.pio = self.iobus.master
90 self.tsunami.ethernet.config = self.iobus.master
91 self.tsunami.ethernet.dma = self.iobus.slave
92 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
93 read_only = True))
94 self.intrctrl = IntrControl()
95 self.mem_mode = mem_mode
96 self.terminal = Terminal()
97 self.kernel = binary('vmlinux')
98 self.pal = binary('ts_osfpal')
99 self.console = binary('console')
100 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
101
102 self.system_port = self.membus.slave
103
104 return self
105
106 def makeLinuxAlphaRubySystem(mem_mode, mdesc = None):
107 class BaseTsunami(Tsunami):
108 ethernet = NSGigE(pci_bus=0, pci_dev=1, pci_func=0)
109 ide = IdeController(disks=[Parent.disk0, Parent.disk2],
110 pci_func=0, pci_dev=0, pci_bus=0)
111
112 physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
113 self = LinuxAlphaSystem(physmem = physmem)
114 if not mdesc:
115 # generic system
116 mdesc = SysConfig()
117 self.readfile = mdesc.script()
118
119 # Create pio bus to connect all device pio ports to rubymem's pio port
120 self.piobus = Bus(bus_id=0)
121
122 #
123 # Pio functional accesses from devices need direct access to memory
124 # RubyPort currently does support functional accesses. Therefore provide
125 # the piobus a direct connection to physical memory
126 #
127 self.piobus.master_port = physmem.port
128
129 self.disk0 = CowIdeDisk(driveID='master')
130 self.disk2 = CowIdeDisk(driveID='master')
131 self.disk0.childImage(mdesc.disk())
132 self.disk2.childImage(disk('linux-bigswap2.img'))
133 self.tsunami = BaseTsunami()
134 self.tsunami.attachIO(self.piobus)
135 self.tsunami.ide.pio = self.piobus.master
136 self.tsunami.ide.config = self.piobus.master
137 self.tsunami.ide.dma = self.piobus.slave
138 self.tsunami.ethernet.pio = self.piobus.master
139 self.tsunami.ethernet.config = self.piobus.master
140 self.tsunami.ethernet.dma = self.piobus.slave
141
142 #
143 # Store the dma devices for later connection to dma ruby ports.
144 # Append an underscore to dma_devices to avoid the SimObjectVector check.
145 #
146 self._dma_devices = [self.tsunami.ide, self.tsunami.ethernet]
147
148 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
149 read_only = True))
150 self.intrctrl = IntrControl()
151 self.mem_mode = mem_mode
152 self.terminal = Terminal()
153 self.kernel = binary('vmlinux')
154 self.pal = binary('ts_osfpal')
155 self.console = binary('console')
156 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
157
158 return self
159
160 def makeSparcSystem(mem_mode, mdesc = None):
161 # Constants from iob.cc and uart8250.cc
162 iob_man_addr = 0x9800000000
163 uart_pio_size = 8
164
165 class CowMmDisk(MmDisk):
166 image = CowDiskImage(child=RawDiskImage(read_only=True),
167 read_only=False)
168
169 def childImage(self, ci):
170 self.image.child.image_file = ci
171
172 self = SparcSystem()
173 if not mdesc:
174 # generic system
175 mdesc = SysConfig()
176 self.readfile = mdesc.script()
177 self.iobus = Bus(bus_id=0)
178 self.membus = MemBus(bus_id=1)
179 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
180 self.t1000 = T1000()
181 self.t1000.attachOnChipIO(self.membus)
182 self.t1000.attachIO(self.iobus)
183 self.physmem = PhysicalMemory(range = AddrRange(Addr('1MB'), size = '64MB'), zero = True)
184 self.physmem2 = PhysicalMemory(range = AddrRange(Addr('2GB'), size ='256MB'), zero = True)
185 self.bridge.master = self.iobus.slave
186 self.bridge.slave = self.membus.master
187 self.physmem.port = self.membus.master
188 self.physmem2.port = self.membus.master
189 self.rom.port = self.membus.master
190 self.nvram.port = self.membus.master
191 self.hypervisor_desc.port = self.membus.master
192 self.partition_desc.port = self.membus.master
193 self.intrctrl = IntrControl()
194 self.disk0 = CowMmDisk()
195 self.disk0.childImage(disk('disk.s10hw2'))
196 self.disk0.pio = self.iobus.master
197
198 # The puart0 and hvuart are placed on the IO bus, so create ranges
199 # for them. The remaining IO range is rather fragmented, so poke
200 # holes for the iob and partition descriptors etc.
201 self.bridge.ranges = \
202 [
203 AddrRange(self.t1000.puart0.pio_addr,
204 self.t1000.puart0.pio_addr + uart_pio_size - 1),
205 AddrRange(self.disk0.pio_addr,
206 self.t1000.fake_jbi.pio_addr +
207 self.t1000.fake_jbi.pio_size - 1),
208 AddrRange(self.t1000.fake_clk.pio_addr,
209 iob_man_addr - 1),
210 AddrRange(self.t1000.fake_l2_1.pio_addr,
211 self.t1000.fake_ssi.pio_addr +
212 self.t1000.fake_ssi.pio_size - 1),
213 AddrRange(self.t1000.hvuart.pio_addr,
214 self.t1000.hvuart.pio_addr + uart_pio_size - 1)
215 ]
216 self.reset_bin = binary('reset_new.bin')
217 self.hypervisor_bin = binary('q_new.bin')
218 self.openboot_bin = binary('openboot_new.bin')
219 self.nvram_bin = binary('nvram1')
220 self.hypervisor_desc_bin = binary('1up-hv.bin')
221 self.partition_desc_bin = binary('1up-md.bin')
222
223 self.system_port = self.membus.slave
224
225 return self
226
227 def makeArmSystem(mem_mode, machine_type, mdesc = None, bare_metal=False):
228 assert machine_type
229
230 if bare_metal:
231 self = ArmSystem()
232 else:
233 self = LinuxArmSystem()
234
235 if not mdesc:
236 # generic system
237 mdesc = SysConfig()
238
239 self.readfile = mdesc.script()
240 self.iobus = Bus(bus_id=0)
241 self.membus = MemBus(bus_id=1)
242 self.membus.badaddr_responder.warn_access = "warn"
243 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
244 self.bridge.master = self.iobus.slave
245 self.bridge.slave = self.membus.master
246
247 self.mem_mode = mem_mode
248
249 if machine_type == "RealView_PBX":
250 self.realview = RealViewPBX()
251 elif machine_type == "RealView_EB":
252 self.realview = RealViewEB()
253 elif machine_type == "VExpress_ELT":
254 self.realview = VExpress_ELT()
255 elif machine_type == "VExpress_EMM":
256 self.realview = VExpress_EMM()
257 self.load_addr_mask = 0xffffffff
258 else:
259 print "Unknown Machine Type"
260 sys.exit(1)
261
262 self.cf0 = CowIdeDisk(driveID='master')
263 self.cf0.childImage(mdesc.disk())
264 # default to an IDE controller rather than a CF one
265 # assuming we've got one
266 try:
267 self.realview.ide.disks = [self.cf0]
268 except:
269 self.realview.cf_ctrl.disks = [self.cf0]
270
271 if bare_metal:
272 # EOT character on UART will end the simulation
273 self.realview.uart.end_on_eot = True
274 self.physmem = PhysicalMemory(range = AddrRange(Addr(mdesc.mem())),
275 zero = True)
276 else:
277 self.kernel = binary('vmlinux.arm.smp.fb.2.6.38.8')
278 self.machine_type = machine_type
279 if convert.toMemorySize(mdesc.mem()) > self.realview.max_mem_size:
280 print "The currently selected ARM platforms doesn't support"
281 print " the amount of DRAM you've selected. Please try"
282 print " another platform"
283
284 boot_flags = 'earlyprintk console=ttyAMA0 lpj=19988480 norandmaps ' + \
285 'rw loglevel=8 mem=%s root=/dev/sda1' % mdesc.mem()
286
287 self.physmem = PhysicalMemory(range = AddrRange(self.realview.mem_start_addr,
288 size = mdesc.mem()))
289 self.realview.setupBootLoader(self.membus, self, binary)
290 self.gic_cpu_addr = self.realview.gic.cpu_addr
291 self.flags_addr = self.realview.realview_io.pio_addr + 0x30
292
293 if mdesc.disk().lower().count('android'):
294 boot_flags += " init=/init "
295 self.boot_osflags = boot_flags
296
297 self.physmem.port = self.membus.master
298 self.realview.attachOnChipIO(self.membus, self.bridge)
299 self.realview.attachIO(self.iobus)
300 self.intrctrl = IntrControl()
301 self.terminal = Terminal()
302 self.vncserver = VncServer()
303
304 self.system_port = self.membus.slave
305
306 return self
307
308
309 def makeLinuxMipsSystem(mem_mode, mdesc = None):
310 class BaseMalta(Malta):
311 ethernet = NSGigE(pci_bus=0, pci_dev=1, pci_func=0)
312 ide = IdeController(disks=[Parent.disk0, Parent.disk2],
313 pci_func=0, pci_dev=0, pci_bus=0)
314
315 self = LinuxMipsSystem()
316 if not mdesc:
317 # generic system
318 mdesc = SysConfig()
319 self.readfile = mdesc.script()
320 self.iobus = Bus(bus_id=0)
321 self.membus = MemBus(bus_id=1)
322 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
323 self.physmem = PhysicalMemory(range = AddrRange('1GB'))
324 self.bridge.master = self.iobus.slave
325 self.bridge.slave = self.membus.master
326 self.physmem.port = self.membus.master
327 self.disk0 = CowIdeDisk(driveID='master')
328 self.disk2 = CowIdeDisk(driveID='master')
329 self.disk0.childImage(mdesc.disk())
330 self.disk2.childImage(disk('linux-bigswap2.img'))
331 self.malta = BaseMalta()
332 self.malta.attachIO(self.iobus)
333 self.malta.ide.pio = self.iobus.master
334 self.malta.ide.config = self.iobus.master
335 self.malta.ide.dma = self.iobus.slave
336 self.malta.ethernet.pio = self.iobus.master
337 self.malta.ethernet.config = self.iobus.master
338 self.malta.ethernet.dma = self.iobus.slave
339 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
340 read_only = True))
341 self.intrctrl = IntrControl()
342 self.mem_mode = mem_mode
343 self.terminal = Terminal()
344 self.kernel = binary('mips/vmlinux')
345 self.console = binary('mips/console')
346 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
347
348 self.system_port = self.membus.slave
349
350 return self
351
352 def x86IOAddress(port):
353 IO_address_space_base = 0x8000000000000000
354 return IO_address_space_base + port
355
356 def connectX86ClassicSystem(x86_sys, numCPUs):
357 # Constants similar to x86_traits.hh
358 IO_address_space_base = 0x8000000000000000
359 pci_config_address_space_base = 0xc000000000000000
360 interrupts_address_space_base = 0xa000000000000000
361 APIC_range_size = 1 << 12;
362
363 x86_sys.membus = MemBus(bus_id=1)
364 x86_sys.physmem.port = x86_sys.membus.master
365
366 # North Bridge
367 x86_sys.iobus = Bus(bus_id=0)
368 x86_sys.bridge = Bridge(delay='50ns', nack_delay='4ns')
369 x86_sys.bridge.master = x86_sys.iobus.slave
370 x86_sys.bridge.slave = x86_sys.membus.master
371 # Allow the bridge to pass through the IO APIC (two pages),
372 # everything in the IO address range up to the local APIC, and
373 # then the entire PCI address space and beyond
374 x86_sys.bridge.ranges = \
375 [
376 AddrRange(x86_sys.pc.south_bridge.io_apic.pio_addr,
377 x86_sys.pc.south_bridge.io_apic.pio_addr +
378 APIC_range_size - 1),
379 AddrRange(IO_address_space_base,
380 interrupts_address_space_base - 1),
381 AddrRange(pci_config_address_space_base,
382 Addr.max)
383 ]
384
385 # Create a bridge from the IO bus to the memory bus to allow access to
386 # the local APIC (two pages)
387 x86_sys.apicbridge = Bridge(delay='50ns', nack_delay='4ns')
388 x86_sys.apicbridge.slave = x86_sys.iobus.master
389 x86_sys.apicbridge.master = x86_sys.membus.slave
390 x86_sys.apicbridge.ranges = [AddrRange(interrupts_address_space_base,
391 interrupts_address_space_base +
392 numCPUs * APIC_range_size
393 - 1)]
394
395 # connect the io bus
396 x86_sys.pc.attachIO(x86_sys.iobus)
397
398 x86_sys.system_port = x86_sys.membus.slave
399
400 def connectX86RubySystem(x86_sys):
401 # North Bridge
402 x86_sys.piobus = Bus(bus_id=0)
403
404 #
405 # Pio functional accesses from devices need direct access to memory
406 # RubyPort currently does support functional accesses. Therefore provide
407 # the piobus a direct connection to physical memory
408 #
409 x86_sys.piobus.master = x86_sys.physmem.port
410
411 x86_sys.pc.attachIO(x86_sys.piobus)
412
413
414 def makeX86System(mem_mode, numCPUs = 1, mdesc = None, self = None, Ruby = False):
415 if self == None:
416 self = X86System()
417
418 if not mdesc:
419 # generic system
420 mdesc = SysConfig()
421 self.readfile = mdesc.script()
422
423 self.mem_mode = mem_mode
424
425 # Physical memory
426 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
427
428 # Platform
429 self.pc = Pc()
430
431 # Create and connect the busses required by each memory system
432 if Ruby:
433 connectX86RubySystem(self)
434 # add the ide to the list of dma devices that later need to attach to
435 # dma controllers
436 self._dma_devices = [self.pc.south_bridge.ide]
437 else:
438 connectX86ClassicSystem(self, numCPUs)
439
440 self.intrctrl = IntrControl()
441
442 # Disks
443 disk0 = CowIdeDisk(driveID='master')
444 disk2 = CowIdeDisk(driveID='master')
445 disk0.childImage(mdesc.disk())
446 disk2.childImage(disk('linux-bigswap2.img'))
447 self.pc.south_bridge.ide.disks = [disk0, disk2]
448
449 # Add in a Bios information structure.
450 structures = [X86SMBiosBiosInformation()]
451 self.smbios_table.structures = structures
452
453 # Set up the Intel MP table
454 base_entries = []
455 ext_entries = []
456 for i in xrange(numCPUs):
457 bp = X86IntelMPProcessor(
458 local_apic_id = i,
459 local_apic_version = 0x14,
460 enable = True,
461 bootstrap = (i == 0))
462 base_entries.append(bp)
463 io_apic = X86IntelMPIOAPIC(
464 id = numCPUs,
465 version = 0x11,
466 enable = True,
467 address = 0xfec00000)
468 self.pc.south_bridge.io_apic.apic_id = io_apic.id
469 base_entries.append(io_apic)
470 isa_bus = X86IntelMPBus(bus_id = 0, bus_type='ISA')
471 base_entries.append(isa_bus)
472 pci_bus = X86IntelMPBus(bus_id = 1, bus_type='PCI')
473 base_entries.append(pci_bus)
474 connect_busses = X86IntelMPBusHierarchy(bus_id=0,
475 subtractive_decode=True, parent_bus=1)
476 ext_entries.append(connect_busses)
477 pci_dev4_inta = X86IntelMPIOIntAssignment(
478 interrupt_type = 'INT',
479 polarity = 'ConformPolarity',
480 trigger = 'ConformTrigger',
481 source_bus_id = 1,
482 source_bus_irq = 0 + (4 << 2),
483 dest_io_apic_id = io_apic.id,
484 dest_io_apic_intin = 16)
485 base_entries.append(pci_dev4_inta)
486 def assignISAInt(irq, apicPin):
487 assign_8259_to_apic = X86IntelMPIOIntAssignment(
488 interrupt_type = 'ExtInt',
489 polarity = 'ConformPolarity',
490 trigger = 'ConformTrigger',
491 source_bus_id = 0,
492 source_bus_irq = irq,
493 dest_io_apic_id = io_apic.id,
494 dest_io_apic_intin = 0)
495 base_entries.append(assign_8259_to_apic)
496 assign_to_apic = X86IntelMPIOIntAssignment(
497 interrupt_type = 'INT',
498 polarity = 'ConformPolarity',
499 trigger = 'ConformTrigger',
500 source_bus_id = 0,
501 source_bus_irq = irq,
502 dest_io_apic_id = io_apic.id,
503 dest_io_apic_intin = apicPin)
504 base_entries.append(assign_to_apic)
505 assignISAInt(0, 2)
506 assignISAInt(1, 1)
507 for i in range(3, 15):
508 assignISAInt(i, i)
509 self.intel_mp_table.base_entries = base_entries
510 self.intel_mp_table.ext_entries = ext_entries
511
512 def setWorkCountOptions(system, options):
513 if options.work_item_id != None:
514 system.work_item_id = options.work_item_id
515 if options.work_begin_cpu_id_exit != None:
516 system.work_begin_cpu_id_exit = options.work_begin_cpu_id_exit
517 if options.work_end_exit_count != None:
518 system.work_end_exit_count = options.work_end_exit_count
519 if options.work_end_checkpoint_count != None:
520 system.work_end_ckpt_count = options.work_end_checkpoint_count
521 if options.work_begin_exit_count != None:
522 system.work_begin_exit_count = options.work_begin_exit_count
523 if options.work_begin_checkpoint_count != None:
524 system.work_begin_ckpt_count = options.work_begin_checkpoint_count
525 if options.work_cpus_checkpoint_count != None:
526 system.work_cpus_ckpt_count = options.work_cpus_checkpoint_count
527
528
529 def makeLinuxX86System(mem_mode, numCPUs = 1, mdesc = None, Ruby = False):
530 self = LinuxX86System()
531
532 # Build up the x86 system and then specialize it for Linux
533 makeX86System(mem_mode, numCPUs, mdesc, self, Ruby)
534
535 # We assume below that there's at least 1MB of memory. We'll require 2
536 # just to avoid corner cases.
537 assert(self.physmem.range.second.getValue() >= 0x200000)
538
539 self.e820_table.entries = \
540 [
541 # Mark the first megabyte of memory as reserved
542 X86E820Entry(addr = 0, size = '1MB', range_type = 2),
543 # Mark the rest as available
544 X86E820Entry(addr = 0x100000,
545 size = '%dB' % (self.physmem.range.second - 0x100000 + 1),
546 range_type = 1)
547 ]
548
549 # Command line
550 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=7999923 ' + \
551 'root=/dev/hda1'
552 return self
553
554
555 def makeDualRoot(full_system, testSystem, driveSystem, dumpfile):
556 self = Root(full_system = full_system)
557 self.testsys = testSystem
558 self.drivesys = driveSystem
559 self.etherlink = EtherLink()
560 self.etherlink.int0 = Parent.testsys.tsunami.ethernet.interface
561 self.etherlink.int1 = Parent.drivesys.tsunami.ethernet.interface
562
563 if hasattr(testSystem, 'realview'):
564 self.etherlink.int0 = Parent.testsys.realview.ethernet.interface
565 self.etherlink.int1 = Parent.drivesys.realview.ethernet.interface
566 elif hasattr(testSystem, 'tsunami'):
567 self.etherlink.int0 = Parent.testsys.tsunami.ethernet.interface
568 self.etherlink.int1 = Parent.drivesys.tsunami.ethernet.interface
569 else:
570 fatal("Don't know how to connect these system together")
571
572 if dumpfile:
573 self.etherdump = EtherDump(file=dumpfile)
574 self.etherlink.dump = Parent.etherdump
575
576 return self
577
578 def setMipsOptions(TestCPUClass):
579 #CP0 Configuration
580 TestCPUClass.CoreParams.CP0_PRId_CompanyOptions = 0
581 TestCPUClass.CoreParams.CP0_PRId_CompanyID = 1
582 TestCPUClass.CoreParams.CP0_PRId_ProcessorID = 147
583 TestCPUClass.CoreParams.CP0_PRId_Revision = 0
584
585 #CP0 Interrupt Control
586 TestCPUClass.CoreParams.CP0_IntCtl_IPTI = 7
587 TestCPUClass.CoreParams.CP0_IntCtl_IPPCI = 7
588
589 # Config Register
590 #TestCPUClass.CoreParams.CP0_Config_K23 = 0 # Since TLB
591 #TestCPUClass.CoreParams.CP0_Config_KU = 0 # Since TLB
592 TestCPUClass.CoreParams.CP0_Config_BE = 0 # Little Endian
593 TestCPUClass.CoreParams.CP0_Config_AR = 1 # Architecture Revision 2
594 TestCPUClass.CoreParams.CP0_Config_AT = 0 # MIPS32
595 TestCPUClass.CoreParams.CP0_Config_MT = 1 # TLB MMU
596 #TestCPUClass.CoreParams.CP0_Config_K0 = 2 # Uncached
597
598 #Config 1 Register
599 TestCPUClass.CoreParams.CP0_Config1_M = 1 # Config2 Implemented
600 TestCPUClass.CoreParams.CP0_Config1_MMU = 63 # TLB Size
601 # ***VERY IMPORTANT***
602 # Remember to modify CP0_Config1 according to cache specs
603 # Examine file ../common/Cache.py
604 TestCPUClass.CoreParams.CP0_Config1_IS = 1 # I-Cache Sets Per Way, 16KB cache, i.e., 1 (128)
605 TestCPUClass.CoreParams.CP0_Config1_IL = 5 # I-Cache Line Size, default in Cache.py is 64, i.e 5
606 TestCPUClass.CoreParams.CP0_Config1_IA = 1 # I-Cache Associativity, default in Cache.py is 2, i.e, a value of 1
607 TestCPUClass.CoreParams.CP0_Config1_DS = 2 # D-Cache Sets Per Way (see below), 32KB cache, i.e., 2
608 TestCPUClass.CoreParams.CP0_Config1_DL = 5 # D-Cache Line Size, default is 64, i.e., 5
609 TestCPUClass.CoreParams.CP0_Config1_DA = 1 # D-Cache Associativity, default is 2, i.e. 1
610 TestCPUClass.CoreParams.CP0_Config1_C2 = 0 # Coprocessor 2 not implemented(?)
611 TestCPUClass.CoreParams.CP0_Config1_MD = 0 # MDMX ASE not implemented in Mips32
612 TestCPUClass.CoreParams.CP0_Config1_PC = 1 # Performance Counters Implemented
613 TestCPUClass.CoreParams.CP0_Config1_WR = 0 # Watch Registers Implemented
614 TestCPUClass.CoreParams.CP0_Config1_CA = 0 # Mips16e NOT implemented
615 TestCPUClass.CoreParams.CP0_Config1_EP = 0 # EJTag Not Implemented
616 TestCPUClass.CoreParams.CP0_Config1_FP = 0 # FPU Implemented
617
618 #Config 2 Register
619 TestCPUClass.CoreParams.CP0_Config2_M = 1 # Config3 Implemented
620 TestCPUClass.CoreParams.CP0_Config2_TU = 0 # Tertiary Cache Control
621 TestCPUClass.CoreParams.CP0_Config2_TS = 0 # Tertiary Cache Sets Per Way
622 TestCPUClass.CoreParams.CP0_Config2_TL = 0 # Tertiary Cache Line Size
623 TestCPUClass.CoreParams.CP0_Config2_TA = 0 # Tertiary Cache Associativity
624 TestCPUClass.CoreParams.CP0_Config2_SU = 0 # Secondary Cache Control
625 TestCPUClass.CoreParams.CP0_Config2_SS = 0 # Secondary Cache Sets Per Way
626 TestCPUClass.CoreParams.CP0_Config2_SL = 0 # Secondary Cache Line Size
627 TestCPUClass.CoreParams.CP0_Config2_SA = 0 # Secondary Cache Associativity
628
629
630 #Config 3 Register
631 TestCPUClass.CoreParams.CP0_Config3_M = 0 # Config4 Not Implemented
632 TestCPUClass.CoreParams.CP0_Config3_DSPP = 1 # DSP ASE Present
633 TestCPUClass.CoreParams.CP0_Config3_LPA = 0 # Large Physical Addresses Not supported in Mips32
634 TestCPUClass.CoreParams.CP0_Config3_VEIC = 0 # EIC Supported
635 TestCPUClass.CoreParams.CP0_Config3_VInt = 0 # Vectored Interrupts Implemented
636 TestCPUClass.CoreParams.CP0_Config3_SP = 0 # Small Pages Supported (PageGrain reg. exists)
637 TestCPUClass.CoreParams.CP0_Config3_MT = 0 # MT Not present
638 TestCPUClass.CoreParams.CP0_Config3_SM = 0 # SmartMIPS ASE Not implemented
639 TestCPUClass.CoreParams.CP0_Config3_TL = 0 # TraceLogic Not implemented
640
641 #SRS Ctl - HSS
642 TestCPUClass.CoreParams.CP0_SrsCtl_HSS = 3 # Four shadow register sets implemented
643
644
645 #TestCPUClass.CoreParams.tlb = TLB()
646 #TestCPUClass.CoreParams.UnifiedTLB = 1