Deleted Added
sdiff udiff text old ( 9263:066099902102 ) new ( 9282:ac627fdc8991 )
full compact
1# Copyright (c) 2006-2007 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

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

85 forward_snoops = False
86
87#cpu
88cpu = DerivO3CPU(cpu_id=0)
89#the system
90mdesc = SysConfig(disk = 'linux-x86.img')
91system = FSConfig.makeLinuxX86System('timing', mdesc=mdesc)
92system.kernel = FSConfig.binary('x86_64-vmlinux-2.6.22.9')
93
94system.cpu = cpu
95
96#create the iocache
97system.iocache = IOCache()
98system.iocache.cpu_side = system.iobus.master
99system.iocache.mem_side = system.membus.slave
100
101#connect up the cpu and caches
102cpu.addTwoLevelCacheHierarchy(L1(size = '32kB', assoc = 1),
103 L1(size = '32kB', assoc = 4),
104 L2(size = '4MB', assoc = 8),
105 PageTableWalkerCache(),
106 PageTableWalkerCache())
107# create the interrupt controller
108cpu.createInterruptController()
109# connect cpu and caches to the rest of the system
110cpu.connectAllPorts(system.membus)
111# set the cpu clock along with the caches and l1-l2 bus
112cpu.clock = '2GHz'
113
114root = Root(full_system=True, system=system)
115m5.ticks.setGlobalFrequency('1THz')
116