o3-timing-checker.py (9489:172dbcb74a0e) o3-timing-checker.py (9728:7daeab1685e9)
1# Copyright (c) 2011 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

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

47 L1Cache(size = '256kB'),
48 L2Cache(size = '2MB'))
49# @todo Note that the L2 latency here is unmodified and 2 cycles,
50# should set hit latency and response latency to 20 cycles as for
51# other scripts
52cpu.clock = '2GHz'
53
54system = System(cpu = cpu,
1# Copyright (c) 2011 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

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

47 L1Cache(size = '256kB'),
48 L2Cache(size = '2MB'))
49# @todo Note that the L2 latency here is unmodified and 2 cycles,
50# should set hit latency and response latency to 20 cycles as for
51# other scripts
52cpu.clock = '2GHz'
53
54system = System(cpu = cpu,
55 physmem = SimpleDDR3(),
55 physmem = DDR3_1600_x64(),
56 membus = CoherentBus(),
57 mem_mode = "timing")
58system.system_port = system.membus.slave
59system.physmem.port = system.membus.master
60cpu.connectAllPorts(system.membus)
61
62root = Root(full_system = False, system = system)
56 membus = CoherentBus(),
57 mem_mode = "timing")
58system.system_port = system.membus.slave
59system.physmem.port = system.membus.master
60cpu.connectAllPorts(system.membus)
61
62root = Root(full_system = False, system = system)