devices.py (11630:6e2408ad4425) devices.py (11682:612f75cf36a0)
1# Copyright (c) 2016 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

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

35#
36# Authors: Andreas Sandberg
37# Gabor Dozsa
38
39# System components used by the bigLITTLE.py configuration script
40
41import m5
42from m5.objects import *
1# Copyright (c) 2016 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

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

35#
36# Authors: Andreas Sandberg
37# Gabor Dozsa
38
39# System components used by the bigLITTLE.py configuration script
40
41import m5
42from m5.objects import *
43m5.util.addToPath('../../common')
44from Caches import *
45import CpuConfig
43m5.util.addToPath('../../')
44from common.Caches import *
45from common import CpuConfig
46
47class L1I(L1_ICache):
48 hit_latency = 1
49 response_latency = 1
50 mshrs = 4
51 tgts_per_mshr = 8
52 size = '48kB'
53 assoc = 3

--- 202 unchanged lines hidden ---
46
47class L1I(L1_ICache):
48 hit_latency = 1
49 response_latency = 1
50 mshrs = 4
51 tgts_per_mshr = 8
52 size = '48kB'
53 assoc = 3

--- 202 unchanged lines hidden ---