Deleted Added
sdiff udiff text old ( 9113:9a72589ce4fd ) new ( 9120:48eeef8a0997 )
full compact
1# Copyright (c) 2006-2007 The Regents of The University of Michigan
2# Copyright (c) 2010 Advanced Micro Devices, Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

74 for i in xrange(nb_cores) ]
75
76# overwrite options.num_cpus with the nb_cores value
77options.num_cpus = nb_cores
78
79# system simulated
80system = System(cpu = cpus,
81 funcmem = SimpleMemory(in_addr_map = False),
82 physmem = SimpleMemory())
83
84Ruby.create_system(options, system)
85
86assert(len(cpus) == len(system.ruby._cpu_ruby_ports))
87
88for (i, ruby_port) in enumerate(system.ruby._cpu_ruby_ports):
89 #
90 # Tie the cpu test and functional ports to the ruby cpu ports and
91 # physmem, respectively
92 #
93 cpus[i].test = ruby_port.slave
94 cpus[i].functional = system.funcmem.port
95
96 #
97 # Since the memtester is incredibly bursty, increase the deadlock
98 # threshold to 1 million cycles
99 #
100 ruby_port.deadlock_threshold = 1000000
101
102 #
103 # Ruby doesn't need the backing image of memory when running with
104 # the tester.
105 #
106 ruby_port.access_phys_mem = False
107
108# -----------------------
109# run simulation
110# -----------------------
111
112root = Root(full_system = False, system = system)
113root.system.mem_mode = 'timing'
114
115# Not much point in this being higher than the L1 latency
116m5.ticks.setGlobalFrequency('1ns')