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

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

72 is_top_level = True
73
74#cpu
75cpu = TimingSimpleCPU(cpu_id=0)
76#the system
77system = FSConfig.makeLinuxAlphaSystem('timing')
78
79system.cpu = cpu
80#create the l1/l2 bus
81system.toL2Bus = CoherentBus()
82system.iocache = IOCache()
83system.iocache.cpu_side = system.iobus.master
84system.iocache.mem_side = system.membus.slave
85
86
87#connect up the l2 cache
88system.l2c = L2(size='4MB', assoc=8)
89system.l2c.cpu_side = system.toL2Bus.master
90system.l2c.mem_side = system.membus.slave
91
92#connect up the cpu and l1s
93cpu.addPrivateSplitL1Caches(L1(size = '32kB', assoc = 1),
94 L1(size = '32kB', assoc = 4))
95# create the interrupt controller
96cpu.createInterruptController()
97# connect cpu level-1 caches to shared level-2 cache
98cpu.connectAllPorts(system.toL2Bus, system.membus)
99cpu.clock = '2GHz'
100
101root = Root(full_system=True, system=system)
102m5.ticks.setGlobalFrequency('1THz')
103