mem-cache: Use the compression factor to co-allocate
[gem5.git] / src / mem / MemInterface.py
1 # Copyright (c) 2012-2020 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
9 # terms below provided that you ensure that this notice is replicated
10 # unmodified and in its entirety in all distributions of the software,
11 # modified or unmodified, in source code or in binary form.
12 #
13 # Copyright (c) 2013 Amin Farmahini-Farahani
14 # Copyright (c) 2015 University of Kaiserslautern
15 # Copyright (c) 2015 The University of Bologna
16 # All rights reserved.
17 #
18 # Redistribution and use in source and binary forms, with or without
19 # modification, are permitted provided that the following conditions are
20 # met: redistributions of source code must retain the above copyright
21 # notice, this list of conditions and the following disclaimer;
22 # redistributions in binary form must reproduce the above copyright
23 # notice, this list of conditions and the following disclaimer in the
24 # documentation and/or other materials provided with the distribution;
25 # neither the name of the copyright holders nor the names of its
26 # contributors may be used to endorse or promote products derived from
27 # this software without specific prior written permission.
28 #
29 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40
41 from m5.params import *
42 from m5.proxy import *
43
44 from m5.objects.AbstractMemory import AbstractMemory
45
46 # Enum for the address mapping. With Ch, Ra, Ba, Ro and Co denoting
47 # channel, rank, bank, row and column, respectively, and going from
48 # MSB to LSB. Available are RoRaBaChCo and RoRaBaCoCh, that are
49 # suitable for an open-page policy, optimising for sequential accesses
50 # hitting in the open row. For a closed-page policy, RoCoRaBaCh
51 # maximises parallelism.
52 class AddrMap(Enum): vals = ['RoRaBaChCo', 'RoRaBaCoCh', 'RoCoRaBaCh']
53
54 class MemInterface(AbstractMemory):
55 type = 'MemInterface'
56 abstract = True
57 cxx_header = "mem/mem_interface.hh"
58
59 # Allow the interface to set required controller buffer sizes
60 # each entry corresponds to a burst for the specific memory channel
61 # configuration (e.g. x32 with burst length 8 is 32 bytes) and not
62 # the cacheline size or request/packet size
63 write_buffer_size = Param.Unsigned(64, "Number of write queue entries")
64 read_buffer_size = Param.Unsigned(32, "Number of read queue entries")
65
66 # scheduler, address map
67 addr_mapping = Param.AddrMap('RoRaBaCoCh', "Address mapping policy")
68
69 # size of memory device in Bytes
70 device_size = Param.MemorySize("Size of memory device")
71 # the physical organisation of the memory
72 device_bus_width = Param.Unsigned("data bus width in bits for each "\
73 "memory device/chip")
74 burst_length = Param.Unsigned("Burst lenght (BL) in beats")
75 device_rowbuffer_size = Param.MemorySize("Page (row buffer) size per "\
76 "device/chip")
77 devices_per_rank = Param.Unsigned("Number of devices/chips per rank")
78 ranks_per_channel = Param.Unsigned("Number of ranks per channel")
79 banks_per_rank = Param.Unsigned("Number of banks per rank")
80
81 # timing behaviour and constraints - all in nanoseconds
82
83 # the base clock period of the memory
84 tCK = Param.Latency("Clock period")
85
86 # time to complete a burst transfer, typically the burst length
87 # divided by two due to the DDR bus, but by making it a parameter
88 # it is easier to also evaluate SDR memories like WideIO and new
89 # interfaces, emerging technologies.
90 # This parameter has to account for burst length.
91 # Read/Write requests with data size larger than one full burst are broken
92 # down into multiple requests in the controller
93 tBURST = Param.Latency("Burst duration "
94 "(typically burst length / 2 cycles)")
95
96 # write-to-read, same rank turnaround penalty
97 tWTR = Param.Latency("Write to read, same rank switching time")
98
99 # read-to-write, same rank turnaround penalty
100 tRTW = Param.Latency("Read to write, same rank switching time")
101
102 # rank-to-rank bus delay penalty
103 # this does not correlate to a memory timing parameter and encompasses:
104 # 1) RD-to-RD, 2) WR-to-WR, 3) RD-to-WR, and 4) WR-to-RD
105 # different rank bus delay
106 tCS = Param.Latency("Rank to rank switching time")