mem: Add tRTP to the DRAM controller
[gem5.git] / src / mem / DRAMCtrl.py
1 # Copyright (c) 2012-2014 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 # All rights reserved.
15 #
16 # Redistribution and use in source and binary forms, with or without
17 # modification, are permitted provided that the following conditions are
18 # met: redistributions of source code must retain the above copyright
19 # notice, this list of conditions and the following disclaimer;
20 # redistributions in binary form must reproduce the above copyright
21 # notice, this list of conditions and the following disclaimer in the
22 # documentation and/or other materials provided with the distribution;
23 # neither the name of the copyright holders nor the names of its
24 # contributors may be used to endorse or promote products derived from
25 # this software without specific prior written permission.
26 #
27 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #
39 # Authors: Andreas Hansson
40 # Ani Udipi
41
42 from m5.params import *
43 from AbstractMemory import *
44
45 # Enum for memory scheduling algorithms, currently First-Come
46 # First-Served and a First-Row Hit then First-Come First-Served
47 class MemSched(Enum): vals = ['fcfs', 'frfcfs']
48
49 # Enum for the address mapping. With Ch, Ra, Ba, Ro and Co denoting
50 # channel, rank, bank, row and column, respectively, and going from
51 # MSB to LSB. Available are RoRaBaChCo and RoRaBaCoCh, that are
52 # suitable for an open-page policy, optimising for sequential accesses
53 # hitting in the open row. For a closed-page policy, RoCoRaBaCh
54 # maximises parallelism.
55 class AddrMap(Enum): vals = ['RoRaBaChCo', 'RoRaBaCoCh', 'RoCoRaBaCh']
56
57 # Enum for the page policy, either open, open_adaptive, close, or
58 # close_adaptive.
59 class PageManage(Enum): vals = ['open', 'open_adaptive', 'close',
60 'close_adaptive']
61
62 # DRAMCtrl is a single-channel single-ported DRAM controller model
63 # that aims to model the most important system-level performance
64 # effects of a DRAM without getting into too much detail of the DRAM
65 # itself.
66 class DRAMCtrl(AbstractMemory):
67 type = 'DRAMCtrl'
68 cxx_header = "mem/dram_ctrl.hh"
69
70 # single-ported on the system interface side, instantiate with a
71 # bus in front of the controller for multiple ports
72 port = SlavePort("Slave port")
73
74 # the basic configuration of the controller architecture
75 write_buffer_size = Param.Unsigned(64, "Number of write queue entries")
76 read_buffer_size = Param.Unsigned(32, "Number of read queue entries")
77
78 # threshold in percent for when to forcefully trigger writes and
79 # start emptying the write buffer
80 write_high_thresh_perc = Param.Percent(85, "Threshold to force writes")
81
82 # threshold in percentage for when to start writes if the read
83 # queue is empty
84 write_low_thresh_perc = Param.Percent(50, "Threshold to start writes")
85
86 # minimum write bursts to schedule before switching back to reads
87 min_writes_per_switch = Param.Unsigned(16, "Minimum write bursts before "
88 "switching to reads")
89
90 # scheduler, address map and page policy
91 mem_sched_policy = Param.MemSched('frfcfs', "Memory scheduling policy")
92 addr_mapping = Param.AddrMap('RoRaBaChCo', "Address mapping policy")
93 page_policy = Param.PageManage('open_adaptive', "Page management policy")
94
95 # enforce a limit on the number of accesses per row
96 max_accesses_per_row = Param.Unsigned(16, "Max accesses per row before "
97 "closing");
98
99 # pipeline latency of the controller and PHY, split into a
100 # frontend part and a backend part, with reads and writes serviced
101 # by the queues only seeing the frontend contribution, and reads
102 # serviced by the memory seeing the sum of the two
103 static_frontend_latency = Param.Latency("10ns", "Static frontend latency")
104 static_backend_latency = Param.Latency("10ns", "Static backend latency")
105
106 # the physical organisation of the DRAM
107 device_bus_width = Param.Unsigned("data bus width in bits for each DRAM "\
108 "device/chip")
109 burst_length = Param.Unsigned("Burst lenght (BL) in beats")
110 device_rowbuffer_size = Param.MemorySize("Page (row buffer) size per "\
111 "device/chip")
112 devices_per_rank = Param.Unsigned("Number of devices/chips per rank")
113 ranks_per_channel = Param.Unsigned("Number of ranks per channel")
114 banks_per_rank = Param.Unsigned("Number of banks per rank")
115 # only used for the address mapping as the controller by
116 # construction is a single channel and multiple controllers have
117 # to be instantiated for a multi-channel configuration
118 channels = Param.Unsigned(1, "Number of channels")
119
120 # timing behaviour and constraints - all in nanoseconds
121
122 # the amount of time in nanoseconds from issuing an activate command
123 # to the data being available in the row buffer for a read/write
124 tRCD = Param.Latency("RAS to CAS delay")
125
126 # the time from issuing a read/write command to seeing the actual data
127 tCL = Param.Latency("CAS latency")
128
129 # minimum time between a precharge and subsequent activate
130 tRP = Param.Latency("Row precharge time")
131
132 # minimum time between an activate and a precharge to the same row
133 tRAS = Param.Latency("ACT to PRE delay")
134
135 # minimum time between a write data transfer and a precharge
136 tWR = Param.Latency("Write recovery time")
137
138 # minimum time between a read and precharge command
139 tRTP = Param.Latency("Read to precharge")
140
141 # time to complete a burst transfer, typically the burst length
142 # divided by two due to the DDR bus, but by making it a parameter
143 # it is easier to also evaluate SDR memories like WideIO.
144 # This parameter has to account for burst length.
145 # Read/Write requests with data size larger than one full burst are broken
146 # down into multiple requests in the controller
147 tBURST = Param.Latency("Burst duration (for DDR burst length / 2 cycles)")
148
149 # time taken to complete one refresh cycle (N rows in all banks)
150 tRFC = Param.Latency("Refresh cycle time")
151
152 # refresh command interval, how often a "ref" command needs
153 # to be sent. It is 7.8 us for a 64ms refresh requirement
154 tREFI = Param.Latency("Refresh command interval")
155
156 # write-to-read turn around penalty
157 tWTR = Param.Latency("Write to read switching time")
158
159 # read-to-write turn around penalty, bus turnaround delay
160 tRTW = Param.Latency("Read to write switching time")
161
162 # minimum row activate to row activate delay time
163 tRRD = Param.Latency("ACT to ACT delay")
164
165 # time window in which a maximum number of activates are allowed
166 # to take place, set to 0 to disable
167 tXAW = Param.Latency("X activation window")
168 activation_limit = Param.Unsigned("Max number of activates in window")
169
170 # Currently rolled into other params
171 ######################################################################
172
173 # tRC - assumed to be tRAS + tRP
174
175 # A single DDR3 x64 interface (one command and address bus), with
176 # default timings based on DDR3-1600 4 Gbit parts in an 8x8
177 # configuration, which would amount to 4 Gbyte of memory.
178 class DDR3_1600_x64(DRAMCtrl):
179 # 8x8 configuration, 8 devices each with an 8-bit interface
180 device_bus_width = 8
181
182 # DDR3 is a BL8 device
183 burst_length = 8
184
185 # Each device has a page (row buffer) size of 1KB
186 # (this depends on the memory density)
187 device_rowbuffer_size = '1kB'
188
189 # 8x8 configuration, so 8 devices
190 devices_per_rank = 8
191
192 # Use two ranks
193 ranks_per_channel = 2
194
195 # DDR3 has 8 banks in all configurations
196 banks_per_rank = 8
197
198 # DDR3-1600 11-11-11-28
199 tRCD = '13.75ns'
200 tCL = '13.75ns'
201 tRP = '13.75ns'
202 tRAS = '35ns'
203 tWR = '15ns'
204 tRTP = '7.5ns'
205
206 # 8 beats across an x64 interface translates to 4 clocks @ 800 MHz.
207 # Note this is a BL8 DDR device.
208 tBURST = '5ns'
209
210 # DDR3, 4 Gbit has a tRFC of 240 CK and tCK = 1.25 ns
211 tRFC = '300ns'
212
213 # DDR3, <=85C, half for >85C
214 tREFI = '7.8us'
215
216 # Greater of 4 CK or 7.5 ns, 4 CK @ 800 MHz = 5 ns
217 tWTR = '7.5ns'
218
219 # Default read-to-write bus around to 2 CK, @800 MHz = 2.5 ns
220 tRTW = '2.5ns'
221
222 # Assume 5 CK for activate to activate for different banks
223 tRRD = '6.25ns'
224
225 # With a 2kbyte page size, DDR3-1600 lands around 40 ns
226 tXAW = '40ns'
227 activation_limit = 4
228
229
230 # A single DDR3 x64 interface (one command and address bus), with
231 # default timings based on DDR3-1333 4 Gbit parts in an 8x8
232 # configuration, which would amount to 4 GByte of memory. This
233 # configuration is primarily for comparing with DRAMSim2, and all the
234 # parameters except ranks_per_channel are based on the DRAMSim2 config
235 # file DDR3_micron_32M_8B_x8_sg15.ini. Note that ranks_per_channel has
236 # to be manually set, depending on size of the memory to be
237 # simulated. By default DRAMSim2 has 2048MB of memory with a single
238 # rank. Therefore for 4 GByte memory, set ranks_per_channel = 2
239 class DDR3_1333_x64_DRAMSim2(DRAMCtrl):
240 # 8x8 configuration, 8 devices each with an 8-bit interface
241 device_bus_width = 8
242
243 # DDR3 is a BL8 device
244 burst_length = 8
245
246 # Each device has a page (row buffer) size of 1KB
247 # (this depends on the memory density)
248 device_rowbuffer_size = '1kB'
249
250 # 8x8 configuration, so 8 devices
251 devices_per_rank = 8
252
253 # Use two ranks
254 ranks_per_channel = 2
255
256 # DDR3 has 8 banks in all configurations
257 banks_per_rank = 8
258
259 tRCD = '15ns'
260 tCL = '15ns'
261 tRP = '15ns'
262 tRAS = '36ns'
263 tWR = '15ns'
264 tRTP = '7.5ns'
265
266 # 8 beats across an x64 interface translates to 4 clocks @ 666.66 MHz.
267 # Note this is a BL8 DDR device.
268 tBURST = '6ns'
269
270 tRFC = '160ns'
271
272 # DDR3, <=85C, half for >85C
273 tREFI = '7.8us'
274
275 # Greater of 4 CK or 7.5 ns, 4 CK @ 666.66 MHz = 6 ns
276 tWTR = '7.5ns'
277
278 # Default read-to-write bus around to 2 CK, @666.66 MHz = 3 ns
279 tRTW = '3ns'
280
281 tRRD = '6.0ns'
282
283 tXAW = '30ns'
284 activation_limit = 4
285
286
287 # A single LPDDR2-S4 x32 interface (one command/address bus), with
288 # default timings based on a LPDDR2-1066 4 Gbit part in a 1x32
289 # configuration.
290 class LPDDR2_S4_1066_x32(DRAMCtrl):
291 # 1x32 configuration, 1 device with a 32-bit interface
292 device_bus_width = 32
293
294 # LPDDR2_S4 is a BL4 and BL8 device
295 burst_length = 8
296
297 # Each device has a page (row buffer) size of 1KB
298 # (this depends on the memory density)
299 device_rowbuffer_size = '1kB'
300
301 # 1x32 configuration, so 1 device
302 devices_per_rank = 1
303
304 # Use a single rank
305 ranks_per_channel = 1
306
307 # LPDDR2-S4 has 8 banks in all configurations
308 banks_per_rank = 8
309
310 # Fixed at 15 ns
311 tRCD = '15ns'
312
313 # 8 CK read latency, 4 CK write latency @ 533 MHz, 1.876 ns cycle time
314 tCL = '15ns'
315
316 # Pre-charge one bank 15 ns (all banks 18 ns)
317 tRP = '15ns'
318
319 tRAS = '42ns'
320 tWR = '15ns'
321
322 # 6 CK read to precharge delay
323 tRTP = '11.256ns'
324
325 # 8 beats across an x32 DDR interface translates to 4 clocks @ 533 MHz.
326 # Note this is a BL8 DDR device.
327 # Requests larger than 32 bytes are broken down into multiple requests
328 # in the controller
329 tBURST = '7.5ns'
330
331 # LPDDR2-S4, 4 Gbit
332 tRFC = '130ns'
333 tREFI = '3.9us'
334
335 # Irrespective of speed grade, tWTR is 7.5 ns
336 tWTR = '7.5ns'
337
338 # Default read-to-write bus around to 2 CK, @533 MHz = 3.75 ns
339 tRTW = '3.75ns'
340
341 # Activate to activate irrespective of density and speed grade
342 tRRD = '10.0ns'
343
344 # Irrespective of density, tFAW is 50 ns
345 tXAW = '50ns'
346 activation_limit = 4
347
348 # A single WideIO x128 interface (one command and address bus), with
349 # default timings based on an estimated WIO-200 8 Gbit part.
350 class WideIO_200_x128(DRAMCtrl):
351 # 1x128 configuration, 1 device with a 128-bit interface
352 device_bus_width = 128
353
354 # This is a BL4 device
355 burst_length = 4
356
357 # Each device has a page (row buffer) size of 4KB
358 # (this depends on the memory density)
359 device_rowbuffer_size = '4kB'
360
361 # 1x128 configuration, so 1 device
362 devices_per_rank = 1
363
364 # Use one rank for a one-high die stack
365 ranks_per_channel = 1
366
367 # WideIO has 4 banks in all configurations
368 banks_per_rank = 4
369
370 # WIO-200
371 tRCD = '18ns'
372 tCL = '18ns'
373 tRP = '18ns'
374 tRAS = '42ns'
375 tWR = '15ns'
376 # Read to precharge is same as the burst
377 tRTP = '20ns'
378
379 # 4 beats across an x128 SDR interface translates to 4 clocks @ 200 MHz.
380 # Note this is a BL4 SDR device.
381 tBURST = '20ns'
382
383 # WIO 8 Gb
384 tRFC = '210ns'
385
386 # WIO 8 Gb, <=85C, half for >85C
387 tREFI = '3.9us'
388
389 # Greater of 2 CK or 15 ns, 2 CK @ 200 MHz = 10 ns
390 tWTR = '15ns'
391
392 # Default read-to-write bus around to 2 CK, @200 MHz = 10 ns
393 tRTW = '10ns'
394
395 # Activate to activate irrespective of density and speed grade
396 tRRD = '10.0ns'
397
398 # Two instead of four activation window
399 tXAW = '50ns'
400 activation_limit = 2
401
402 # A single LPDDR3 x32 interface (one command/address bus), with
403 # default timings based on a LPDDR3-1600 4 Gbit part in a 1x32
404 # configuration
405 class LPDDR3_1600_x32(DRAMCtrl):
406 # 1x32 configuration, 1 device with a 32-bit interface
407 device_bus_width = 32
408
409 # LPDDR3 is a BL8 device
410 burst_length = 8
411
412 # Each device has a page (row buffer) size of 4KB
413 device_rowbuffer_size = '4kB'
414
415 # 1x32 configuration, so 1 device
416 devices_per_rank = 1
417
418 # Use a single rank
419 ranks_per_channel = 1
420
421 # LPDDR3 has 8 banks in all configurations
422 banks_per_rank = 8
423
424 # Fixed at 15 ns
425 tRCD = '15ns'
426
427 # 12 CK read latency, 6 CK write latency @ 800 MHz, 1.25 ns cycle time
428 tCL = '15ns'
429
430 tRAS = '42ns'
431 tWR = '15ns'
432
433 # Greater of 4 CK or 7.5 ns, 4 CK @ 800 MHz = 5 ns
434 tRTP = '7.5ns'
435
436 # Pre-charge one bank 15 ns (all banks 18 ns)
437 tRP = '15ns'
438
439 # 8 beats across a x32 DDR interface translates to 4 clocks @ 800 MHz.
440 # Note this is a BL8 DDR device.
441 # Requests larger than 32 bytes are broken down into multiple requests
442 # in the controller
443 tBURST = '5ns'
444
445 # LPDDR3, 4 Gb
446 tRFC = '130ns'
447 tREFI = '3.9us'
448
449 # Irrespective of speed grade, tWTR is 7.5 ns
450 tWTR = '7.5ns'
451
452 # Default read-to-write bus around to 2 CK, @800 MHz = 2.5 ns
453 tRTW = '2.5ns'
454
455 # Activate to activate irrespective of density and speed grade
456 tRRD = '10.0ns'
457
458 # Irrespective of size, tFAW is 50 ns
459 tXAW = '50ns'
460 activation_limit = 4