DRAMCtrl.py revision 11120
12131SN/A# Copyright (c) 2012-2014 ARM Limited
22131SN/A# All rights reserved.
32131SN/A#
42131SN/A# The license below extends only to copyright in the software and shall
52131SN/A# not be construed as granting a license to any other intellectual
62131SN/A# property including but not limited to intellectual property relating
72131SN/A# to a hardware implementation of the functionality of the software
82131SN/A# licensed hereunder.  You may use the software subject to the license
92131SN/A# terms below provided that you ensure that this notice is replicated
102131SN/A# unmodified and in its entirety in all distributions of the software,
112131SN/A# modified or unmodified, in source code or in binary form.
122131SN/A#
132131SN/A# Copyright (c) 2013 Amin Farmahini-Farahani
142131SN/A# Copyright (c) 2015 University of Kaiserslautern
152131SN/A# All rights reserved.
162131SN/A#
172131SN/A# Redistribution and use in source and binary forms, with or without
182131SN/A# modification, are permitted provided that the following conditions are
192131SN/A# met: redistributions of source code must retain the above copyright
202131SN/A# notice, this list of conditions and the following disclaimer;
212131SN/A# redistributions in binary form must reproduce the above copyright
222131SN/A# notice, this list of conditions and the following disclaimer in the
232131SN/A# documentation and/or other materials provided with the distribution;
242131SN/A# neither the name of the copyright holders nor the names of its
252131SN/A# contributors may be used to endorse or promote products derived from
262131SN/A# this software without specific prior written permission.
272665Ssaidi@eecs.umich.edu#
282935Sksewell@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
292935Sksewell@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
302131SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
312131SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322239SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
332239SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
342131SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
352131SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
362447SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
372447SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
382447SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392447SN/A#
402447SN/A# Authors: Andreas Hansson
412447SN/A#          Ani Udipi
422447SN/A#          Omar Naji
432131SN/A#          Matthias Jung
442239SN/A
452131SN/Afrom m5.params import *
462447SN/Afrom AbstractMemory import *
472447SN/A
482447SN/A# Enum for memory scheduling algorithms, currently First-Come
492131SN/A# First-Served and a First-Row Hit then First-Come First-Served
502447SN/Aclass MemSched(Enum): vals = ['fcfs', 'frfcfs']
512680Sktlim@umich.edu
522447SN/A# Enum for the address mapping. With Ch, Ra, Ba, Ro and Co denoting
532447SN/A# channel, rank, bank, row and column, respectively, and going from
542447SN/A# MSB to LSB.  Available are RoRaBaChCo and RoRaBaCoCh, that are
552131SN/A# suitable for an open-page policy, optimising for sequential accesses
562131SN/A# hitting in the open row. For a closed-page policy, RoCoRaBaCh
572447SN/A# maximises parallelism.
582131SN/Aclass AddrMap(Enum): vals = ['RoRaBaChCo', 'RoRaBaCoCh', 'RoCoRaBaCh']
592447SN/A
602447SN/A# Enum for the page policy, either open, open_adaptive, close, or
612447SN/A# close_adaptive.
622447SN/Aclass PageManage(Enum): vals = ['open', 'open_adaptive', 'close',
632131SN/A                                'close_adaptive']
642447SN/A
652447SN/A# DRAMCtrl is a single-channel single-ported DRAM controller model
662447SN/A# that aims to model the most important system-level performance
672447SN/A# effects of a DRAM without getting into too much detail of the DRAM
682447SN/A# itself.
692131SN/Aclass DRAMCtrl(AbstractMemory):
702447SN/A    type = 'DRAMCtrl'
712131SN/A    cxx_header = "mem/dram_ctrl.hh"
722447SN/A
732447SN/A    # single-ported on the system interface side, instantiate with a
742447SN/A    # bus in front of the controller for multiple ports
752447SN/A    port = SlavePort("Slave port")
762131SN/A
772447SN/A    # the basic configuration of the controller architecture, note
782447SN/A    # that each entry corresponds to a burst for the specific DRAM
792447SN/A    # configuration (e.g. x32 with burst length 8 is 32 bytes) and not
802447SN/A    # the cacheline size or request/packet size
812447SN/A    write_buffer_size = Param.Unsigned(64, "Number of write queue entries")
822131SN/A    read_buffer_size = Param.Unsigned(32, "Number of read queue entries")
832800Ssaidi@eecs.umich.edu
842800Ssaidi@eecs.umich.edu    # threshold in percent for when to forcefully trigger writes and
852800Ssaidi@eecs.umich.edu    # start emptying the write buffer
862800Ssaidi@eecs.umich.edu    write_high_thresh_perc = Param.Percent(85, "Threshold to force writes")
872800Ssaidi@eecs.umich.edu
882800Ssaidi@eecs.umich.edu    # threshold in percentage for when to start writes if the read
892800Ssaidi@eecs.umich.edu    # queue is empty
902800Ssaidi@eecs.umich.edu    write_low_thresh_perc = Param.Percent(50, "Threshold to start writes")
912800Ssaidi@eecs.umich.edu
922800Ssaidi@eecs.umich.edu    # minimum write bursts to schedule before switching back to reads
932800Ssaidi@eecs.umich.edu    min_writes_per_switch = Param.Unsigned(16, "Minimum write bursts before "
942800Ssaidi@eecs.umich.edu                                           "switching to reads")
952800Ssaidi@eecs.umich.edu
962800Ssaidi@eecs.umich.edu    # scheduler, address map and page policy
972800Ssaidi@eecs.umich.edu    mem_sched_policy = Param.MemSched('frfcfs', "Memory scheduling policy")
982800Ssaidi@eecs.umich.edu    addr_mapping = Param.AddrMap('RoRaBaCoCh', "Address mapping policy")
992800Ssaidi@eecs.umich.edu    page_policy = Param.PageManage('open_adaptive', "Page management policy")
1002800Ssaidi@eecs.umich.edu
1012800Ssaidi@eecs.umich.edu    # enforce a limit on the number of accesses per row
1022800Ssaidi@eecs.umich.edu    max_accesses_per_row = Param.Unsigned(16, "Max accesses per row before "
1032800Ssaidi@eecs.umich.edu                                          "closing");
1042800Ssaidi@eecs.umich.edu
1052800Ssaidi@eecs.umich.edu    # size of DRAM Chip in Bytes
1062800Ssaidi@eecs.umich.edu    device_size = Param.MemorySize("Size of DRAM chip")
1072447SN/A
1082131SN/A    # pipeline latency of the controller and PHY, split into a
1092447SN/A    # frontend part and a backend part, with reads and writes serviced
1102447SN/A    # by the queues only seeing the frontend contribution, and reads
1112447SN/A    # serviced by the memory seeing the sum of the two
1122447SN/A    static_frontend_latency = Param.Latency("10ns", "Static frontend latency")
1132447SN/A    static_backend_latency = Param.Latency("10ns", "Static backend latency")
1142447SN/A
1152447SN/A    # the physical organisation of the DRAM
1162447SN/A    device_bus_width = Param.Unsigned("data bus width in bits for each DRAM "\
1172447SN/A                                      "device/chip")
1182447SN/A    burst_length = Param.Unsigned("Burst lenght (BL) in beats")
1192447SN/A    device_rowbuffer_size = Param.MemorySize("Page (row buffer) size per "\
1202447SN/A                                           "device/chip")
1212447SN/A    devices_per_rank = Param.Unsigned("Number of devices/chips per rank")
1222447SN/A    ranks_per_channel = Param.Unsigned("Number of ranks per channel")
1232131SN/A
1242447SN/A    # default to 0 bank groups per rank, indicating bank group architecture
1252447SN/A    # is not used
1262447SN/A    # update per memory class when bank group architecture is supported
1272447SN/A    bank_groups_per_rank = Param.Unsigned(0, "Number of bank groups per rank")
1282131SN/A    banks_per_rank = Param.Unsigned("Number of banks per rank")
1292447SN/A    # only used for the address mapping as the controller by
1302131SN/A    # construction is a single channel and multiple controllers have
1312447SN/A    # to be instantiated for a multi-channel configuration
1322447SN/A    channels = Param.Unsigned(1, "Number of channels")
1332447SN/A
1342447SN/A    # For power modelling we need to know if the DRAM has a DLL or not
1352447SN/A    dll = Param.Bool(True, "DRAM has DLL or not")
1362447SN/A
1372131SN/A    # DRAMPower provides in addition to the core power, the possibility to
1382447SN/A    # include RD/WR termination and IO power. This calculation assumes some
1392447SN/A    # default values. The integration of DRAMPower with gem5 does not include
1402447SN/A    # IO and RD/WR termination power by default. This might be added as an
1412447SN/A    # additional feature in the future.
1422680Sktlim@umich.edu
1432447SN/A    # timing behaviour and constraints - all in nanoseconds
1442447SN/A
1452131SN/A    # the base clock period of the DRAM
1462447SN/A    tCK = Param.Latency("Clock period")
1472131SN/A
1482447SN/A    # the amount of time in nanoseconds from issuing an activate command
1492447SN/A    # to the data being available in the row buffer for a read/write
1502447SN/A    tRCD = Param.Latency("RAS to CAS delay")
1512447SN/A
1522447SN/A    # the time from issuing a read/write command to seeing the actual data
1532447SN/A    tCL = Param.Latency("CAS latency")
1542131SN/A
1552447SN/A    # minimum time between a precharge and subsequent activate
1562447SN/A    tRP = Param.Latency("Row precharge time")
1572447SN/A
1582447SN/A    # minimum time between an activate and a precharge to the same row
1592131SN/A    tRAS = Param.Latency("ACT to PRE delay")
1602447SN/A
1612131SN/A    # minimum time between a write data transfer and a precharge
1622447SN/A    tWR = Param.Latency("Write recovery time")
1632447SN/A
1642447SN/A    # minimum time between a read and precharge command
1652447SN/A    tRTP = Param.Latency("Read to precharge")
1662131SN/A
1672447SN/A    # time to complete a burst transfer, typically the burst length
1682447SN/A    # divided by two due to the DDR bus, but by making it a parameter
1692447SN/A    # it is easier to also evaluate SDR memories like WideIO.
1702447SN/A    # This parameter has to account for burst length.
1712131SN/A    # Read/Write requests with data size larger than one full burst are broken
1722447SN/A    # down into multiple requests in the controller
1732131SN/A    # tBURST is equivalent to the CAS-to-CAS delay (tCCD)
1742447SN/A    # With bank group architectures, tBURST represents the CAS-to-CAS
1752447SN/A    # delay for bursts to different bank groups (tCCD_S)
1762447SN/A    tBURST = Param.Latency("Burst duration (for DDR burst length / 2 cycles)")
1772447SN/A
1782131SN/A    # CAS-to-CAS delay for bursts to the same bank group
1792447SN/A    # only utilized with bank group architectures; set to 0 for default case
1802447SN/A    # tBURST is equivalent to tCCD_S; no explicit parameter required
1812447SN/A    # for CAS-to-CAS delay for bursts to different bank groups
1822447SN/A    tCCD_L = Param.Latency("0ns", "Same bank group CAS to CAS delay")
1832131SN/A
1842447SN/A    # time taken to complete one refresh cycle (N rows in all banks)
1852131SN/A    tRFC = Param.Latency("Refresh cycle time")
1862447SN/A
1872447SN/A    # refresh command interval, how often a "ref" command needs
1882447SN/A    # to be sent. It is 7.8 us for a 64ms refresh requirement
1892447SN/A    tREFI = Param.Latency("Refresh command interval")
1902131SN/A
1912447SN/A    # write-to-read, same rank turnaround penalty
1922447SN/A    tWTR = Param.Latency("Write to read, same rank switching time")
1932447SN/A
1942447SN/A    # read-to-write, same rank turnaround penalty
1952131SN/A    tRTW = Param.Latency("Read to write, same rank switching time")
1962447SN/A
1972131SN/A    # rank-to-rank bus delay penalty
1982447SN/A    # this does not correlate to a memory timing parameter and encompasses:
1992447SN/A    # 1) RD-to-RD, 2) WR-to-WR, 3) RD-to-WR, and 4) WR-to-RD
2002447SN/A    # different rank bus delay
2012447SN/A    tCS = Param.Latency("Rank to rank switching time")
2022131SN/A
2032447SN/A    # minimum row activate to row activate delay time
2042447SN/A    tRRD = Param.Latency("ACT to ACT delay")
2052447SN/A
2062447SN/A    # only utilized with bank group architectures; set to 0 for default case
2072131SN/A    tRRD_L = Param.Latency("0ns", "Same bank group ACT to ACT delay")
2082447SN/A
2092131SN/A    # time window in which a maximum number of activates are allowed
2102447SN/A    # to take place, set to 0 to disable
2112447SN/A    tXAW = Param.Latency("X activation window")
2122447SN/A    activation_limit = Param.Unsigned("Max number of activates in window")
2132447SN/A
2142131SN/A    # time to exit power-down mode
2152447SN/A    # Exit power-down to next valid command delay
2162447SN/A    tXP = Param.Latency("0ns", "Power-up Delay")
2172447SN/A
2182447SN/A    # Exit Powerdown to commands requiring a locked DLL
2192131SN/A    tXPDLL = Param.Latency("0ns", "Power-up Delay with locked DLL")
2202447SN/A
2212131SN/A    # time to exit self-refresh mode
2222447SN/A    tXS = Param.Latency("0ns", "Self-refresh exit latency")
2232447SN/A
2242447SN/A    # time to exit self-refresh mode with locked DLL
2252447SN/A    tXSDLL = Param.Latency("0ns", "Self-refresh exit latency DLL")
2262131SN/A
2272447SN/A    # Currently rolled into other params
2282447SN/A    ######################################################################
2292447SN/A
2302447SN/A    # tRC  - assumed to be tRAS + tRP
2312131SN/A
2322447SN/A    # Power Behaviour and Constraints
2332131SN/A    # DRAMs like LPDDR and WideIO have 2 external voltage domains. These are
2342447SN/A    # defined as VDD and VDD2. Each current is defined for each voltage domain
2352447SN/A    # separately. For example, current IDD0 is active-precharge current for
2362447SN/A    # voltage domain VDD and current IDD02 is active-precharge current for
2372447SN/A    # voltage domain VDD2.
2382131SN/A    # By default all currents are set to 0mA. Users who are only interested in
2392447SN/A    # the performance of DRAMs can leave them at 0.
2402447SN/A
2412447SN/A    # Operating 1 Bank Active-Precharge current
2422447SN/A    IDD0 = Param.Current("0mA", "Active precharge current")
2432131SN/A
2442447SN/A    # Operating 1 Bank Active-Precharge current multiple voltage Range
2452131SN/A    IDD02 = Param.Current("0mA", "Active precharge current VDD2")
2462447SN/A
2472447SN/A    # Precharge Power-down Current: Slow exit
2482447SN/A    IDD2P0 = Param.Current("0mA", "Precharge Powerdown slow")
2492447SN/A
2502131SN/A    # Precharge Power-down Current: Slow exit multiple voltage Range
2512447SN/A    IDD2P02 = Param.Current("0mA", "Precharge Powerdown slow VDD2")
2522447SN/A
2532447SN/A    # Precharge Power-down Current: Fast exit
2542447SN/A    IDD2P1 = Param.Current("0mA", "Precharge Powerdown fast")
2552131SN/A
2562447SN/A    # Precharge Power-down Current: Fast exit multiple voltage Range
2572131SN/A    IDD2P12 = Param.Current("0mA", "Precharge Powerdown fast VDD2")
2582447SN/A
2592447SN/A    # Precharge Standby current
2602447SN/A    IDD2N = Param.Current("0mA", "Precharge Standby current")
2612447SN/A
2622131SN/A    # Precharge Standby current multiple voltage range
2632447SN/A    IDD2N2 = Param.Current("0mA", "Precharge Standby current VDD2")
2642447SN/A
2652447SN/A    # Active Power-down current: slow exit
2662447SN/A    IDD3P0 = Param.Current("0mA", "Active Powerdown slow")
2672131SN/A
2682447SN/A    # Active Power-down current: slow exit multiple voltage range
2692447SN/A    IDD3P02 = Param.Current("0mA", "Active Powerdown slow VDD2")
2702447SN/A
2712447SN/A    # Active Power-down current : fast exit
2722447SN/A    IDD3P1 = Param.Current("0mA", "Active Powerdown fast")
2732447SN/A
2742447SN/A    # Active Power-down current : fast exit multiple voltage range
2752447SN/A    IDD3P12 = Param.Current("0mA", "Active Powerdown fast VDD2")
2762447SN/A
2772447SN/A    # Active Standby current
2782447SN/A    IDD3N = Param.Current("0mA", "Active Standby current")
2792447SN/A
2802447SN/A    # Active Standby current multiple voltage range
2812447SN/A    IDD3N2 = Param.Current("0mA", "Active Standby current VDD2")
2822447SN/A
2832447SN/A    # Burst Read Operating Current
2842447SN/A    IDD4R = Param.Current("0mA", "READ current")
2852447SN/A
2862447SN/A    # Burst Read Operating Current multiple voltage range
2872447SN/A    IDD4R2 = Param.Current("0mA", "READ current VDD2")
2882447SN/A
2892447SN/A    # Burst Write Operating Current
2902447SN/A    IDD4W = Param.Current("0mA", "WRITE current")
2912447SN/A
2922447SN/A    # Burst Write Operating Current multiple voltage range
2932447SN/A    IDD4W2 = Param.Current("0mA", "WRITE current VDD2")
2942447SN/A
2952131SN/A    # Refresh Current
2962131SN/A    IDD5 = Param.Current("0mA", "Refresh current")
297
298    # Refresh Current multiple voltage range
299    IDD52 = Param.Current("0mA", "Refresh current VDD2")
300
301    # Self-Refresh Current
302    IDD6 = Param.Current("0mA", "Self-refresh Current")
303
304    # Self-Refresh Current multiple voltage range
305    IDD62 = Param.Current("0mA", "Self-refresh Current VDD2")
306
307    # Main voltage range of the DRAM
308    VDD = Param.Voltage("0V", "Main Voltage Range")
309
310    # Second voltage range defined by some DRAMs
311    VDD2 = Param.Voltage("0V", "2nd Voltage Range")
312
313# A single DDR3-1600 x64 channel (one command and address bus), with
314# timings based on a DDR3-1600 4 Gbit datasheet (Micron MT41J512M8) in
315# an 8x8 configuration.
316class DDR3_1600_x64(DRAMCtrl):
317    # size of device in bytes
318    device_size = '512MB'
319
320    # 8x8 configuration, 8 devices each with an 8-bit interface
321    device_bus_width = 8
322
323    # DDR3 is a BL8 device
324    burst_length = 8
325
326    # Each device has a page (row buffer) size of 1 Kbyte (1K columns x8)
327    device_rowbuffer_size = '1kB'
328
329    # 8x8 configuration, so 8 devices
330    devices_per_rank = 8
331
332    # Use two ranks
333    ranks_per_channel = 2
334
335    # DDR3 has 8 banks in all configurations
336    banks_per_rank = 8
337
338    # 800 MHz
339    tCK = '1.25ns'
340
341    # 8 beats across an x64 interface translates to 4 clocks @ 800 MHz
342    tBURST = '5ns'
343
344    # DDR3-1600 11-11-11
345    tRCD = '13.75ns'
346    tCL = '13.75ns'
347    tRP = '13.75ns'
348    tRAS = '35ns'
349    tRRD = '6ns'
350    tXAW = '30ns'
351    activation_limit = 4
352    tRFC = '260ns'
353
354    tWR = '15ns'
355
356    # Greater of 4 CK or 7.5 ns
357    tWTR = '7.5ns'
358
359    # Greater of 4 CK or 7.5 ns
360    tRTP = '7.5ns'
361
362    # Default same rank rd-to-wr bus turnaround to 2 CK, @800 MHz = 2.5 ns
363    tRTW = '2.5ns'
364
365    # Default different rank bus delay to 2 CK, @800 MHz = 2.5 ns
366    tCS = '2.5ns'
367
368    # <=85C, half for >85C
369    tREFI = '7.8us'
370
371    # Current values from datasheet
372    IDD0 = '75mA'
373    IDD2N = '50mA'
374    IDD3N = '57mA'
375    IDD4W = '165mA'
376    IDD4R = '187mA'
377    IDD5 = '220mA'
378    VDD = '1.5V'
379
380# A single HMC-2500 x32 model based on:
381# [1] DRAMSpec: a high-level DRAM bank modelling tool
382# developed at the University of Kaiserslautern. This high level tool
383# uses RC (resistance-capacitance) and CV (capacitance-voltage) models to
384# estimate the DRAM bank latency and power numbers.
385# [2] A Logic-base Interconnect for Supporting Near Memory Computation in the
386# Hybrid Memory Cube (E. Azarkhish et. al)
387# Assumed for the HMC model is a 30 nm technology node.
388# The modelled HMC consists of 4 Gbit layers which sum up to 2GB of memory (4
389# layers).
390# Each layer has 16 vaults and each vault consists of 2 banks per layer.
391# In order to be able to use the same controller used for 2D DRAM generations
392# for HMC, the following analogy is done:
393# Channel (DDR) => Vault (HMC)
394# device_size (DDR) => size of a single layer in a vault
395# ranks per channel (DDR) => number of layers
396# banks per rank (DDR) => banks per layer
397# devices per rank (DDR) => devices per layer ( 1 for HMC).
398# The parameters for which no input is available are inherited from the DDR3
399# configuration.
400# This configuration includes the latencies from the DRAM to the logic layer of
401# the HMC
402class HMC_2500_x32(DDR3_1600_x64):
403    # size of device
404    # two banks per device with each bank 4MB [2]
405    device_size = '8MB'
406
407    # 1x32 configuration, 1 device with 32 TSVs [2]
408    device_bus_width = 32
409
410    # HMC is a BL8 device [2]
411    burst_length = 8
412
413    # Each device has a page (row buffer) size of 256 bytes [2]
414    device_rowbuffer_size = '256B'
415
416    # 1x32 configuration, so 1 device [2]
417    devices_per_rank = 1
418
419    # 4 layers so 4 ranks [2]
420    ranks_per_channel = 4
421
422    # HMC has 2 banks per layer [2]
423    # Each layer represents a rank. With 4 layers and 8 banks in total, each
424    # layer has 2 banks; thus 2 banks per rank.
425    banks_per_rank = 2
426
427    # 1250 MHz [2]
428    tCK = '0.8ns'
429
430    # 8 beats across an x32 interface translates to 4 clocks @ 1250 MHz
431    tBURST = '3.2ns'
432
433    # Values using DRAMSpec HMC model [1]
434    tRCD = '10.2ns'
435    tCL = '9.9ns'
436    tRP = '7.7ns'
437    tRAS = '21.6ns'
438
439    # tRRD depends on the power supply network for each vendor.
440    # We assume a tRRD of a double bank approach to be equal to 4 clock
441    # cycles (Assumption)
442    tRRD = '3.2ns'
443
444    # activation limit is set to 0 since there are only 2 banks per vault layer.
445    activation_limit = 0
446
447    # Values using DRAMSpec HMC model [1]
448    tRFC = '59ns'
449    tWR = '8ns'
450    tRTP = '4.9ns'
451
452    # Default different rank bus delay assumed to 1 CK for TSVs, @1250 MHz = 0.8
453    # ns (Assumption)
454    tCS = '0.8ns'
455
456    # Value using DRAMSpec HMC model [1]
457    tREFI = '3.9us'
458
459    # Set default controller parameters
460    page_policy = 'close'
461    write_buffer_size = 8
462    read_buffer_size = 8
463    addr_mapping = 'RoCoRaBaCh'
464    min_writes_per_switch = 8
465
466# A single DDR3-2133 x64 channel refining a selected subset of the
467# options for the DDR-1600 configuration, based on the same DDR3-1600
468# 4 Gbit datasheet (Micron MT41J512M8). Most parameters are kept
469# consistent across the two configurations.
470class DDR3_2133_x64(DDR3_1600_x64):
471    # 1066 MHz
472    tCK = '0.938ns'
473
474    # 8 beats across an x64 interface translates to 4 clocks @ 1066 MHz
475    tBURST = '3.752ns'
476
477    # DDR3-2133 14-14-14
478    tRCD = '13.09ns'
479    tCL = '13.09ns'
480    tRP = '13.09ns'
481    tRAS = '33ns'
482    tRRD = '5ns'
483    tXAW = '25ns'
484
485    # Current values from datasheet
486    IDD0 = '70mA'
487    IDD2N = '37mA'
488    IDD3N = '44mA'
489    IDD4W = '157mA'
490    IDD4R = '191mA'
491    IDD5 = '250mA'
492    VDD = '1.5V'
493
494# A single DDR4-2400 x64 channel (one command and address bus), with
495# timings based on a DDR4-2400 4 Gbit datasheet (Micron MT40A512M8)
496# in an 8x8 configuration.
497class DDR4_2400_x64(DRAMCtrl):
498    # size of device
499    device_size = '512MB'
500
501    # 8x8 configuration, 8 devices each with an 8-bit interface
502    device_bus_width = 8
503
504    # DDR4 is a BL8 device
505    burst_length = 8
506
507    # Each device has a page (row buffer) size of 1 Kbyte (1K columns x8)
508    device_rowbuffer_size = '1kB'
509
510    # 8x8 configuration, so 8 devices
511    devices_per_rank = 8
512
513    # Match our DDR3 configurations which is dual rank
514    ranks_per_channel = 2
515
516    # DDR4 has 2 (x16) or 4 (x4 and x8) bank groups
517    # Set to 4 for x4, x8 case
518    bank_groups_per_rank = 4
519
520    # DDR4 has 16 banks (4 bank groups) in all
521    # configurations. Currently we do not capture the additional
522    # constraints incurred by the bank groups
523    banks_per_rank = 16
524
525    # override the default buffer sizes and go for something larger to
526    # accommodate the larger bank count
527    write_buffer_size = 128
528    read_buffer_size = 64
529
530    # 1200 MHz
531    tCK = '0.833ns'
532
533    # 8 beats across an x64 interface translates to 4 clocks @ 1200 MHz
534    # tBURST is equivalent to the CAS-to-CAS delay (tCCD)
535    # With bank group architectures, tBURST represents the CAS-to-CAS
536    # delay for bursts to different bank groups (tCCD_S)
537    tBURST = '3.333ns'
538
539    # @2400 data rate, tCCD_L is 6 CK
540    # CAS-to-CAS delay for bursts to the same bank group
541    # tBURST is equivalent to tCCD_S; no explicit parameter required
542    # for CAS-to-CAS delay for bursts to different bank groups
543    tCCD_L = '5ns';
544
545    # DDR4-2400 17-17-17
546    tRCD = '14.16ns'
547    tCL = '14.16ns'
548    tRP = '14.16ns'
549    tRAS = '32ns'
550
551    # RRD_S (different bank group) for 1K page is MAX(4 CK, 3.3ns)
552    tRRD = '3.3ns'
553
554    # RRD_L (same bank group) for 1K page is MAX(4 CK, 4.9ns)
555    tRRD_L = '4.9ns';
556
557    tXAW = '21ns'
558    activation_limit = 4
559    tRFC = '350ns'
560
561    tWR = '15ns'
562
563    # Here using the average of WTR_S and WTR_L
564    tWTR = '5ns'
565
566    # Greater of 4 CK or 7.5 ns
567    tRTP = '7.5ns'
568
569    # Default same rank rd-to-wr bus turnaround to 2 CK, @1200 MHz = 1.666 ns
570    tRTW = '1.666ns'
571
572    # Default different rank bus delay to 2 CK, @1200 MHz = 1.666 ns
573    tCS = '1.666ns'
574
575    # <=85C, half for >85C
576    tREFI = '7.8us'
577
578    # Current values from datasheet
579    IDD0 = '64mA'
580    IDD02 = '4mA'
581    IDD2N = '50mA'
582    IDD3N = '67mA'
583    IDD3N2 = '3mA'
584    IDD4W = '180mA'
585    IDD4R = '160mA'
586    IDD5 = '192mA'
587    VDD = '1.2V'
588    VDD2 = '2.5V'
589
590# A single LPDDR2-S4 x32 interface (one command/address bus), with
591# default timings based on a LPDDR2-1066 4 Gbit part (Micron MT42L128M32D1)
592# in a 1x32 configuration.
593class LPDDR2_S4_1066_x32(DRAMCtrl):
594    # No DLL in LPDDR2
595    dll = False
596
597    # size of device
598    device_size = '512MB'
599
600    # 1x32 configuration, 1 device with a 32-bit interface
601    device_bus_width = 32
602
603    # LPDDR2_S4 is a BL4 and BL8 device
604    burst_length = 8
605
606    # Each device has a page (row buffer) size of 1KB
607    # (this depends on the memory density)
608    device_rowbuffer_size = '1kB'
609
610    # 1x32 configuration, so 1 device
611    devices_per_rank = 1
612
613    # Use a single rank
614    ranks_per_channel = 1
615
616    # LPDDR2-S4 has 8 banks in all configurations
617    banks_per_rank = 8
618
619    # 533 MHz
620    tCK = '1.876ns'
621
622    # Fixed at 15 ns
623    tRCD = '15ns'
624
625    # 8 CK read latency, 4 CK write latency @ 533 MHz, 1.876 ns cycle time
626    tCL = '15ns'
627
628    # Pre-charge one bank 15 ns (all banks 18 ns)
629    tRP = '15ns'
630
631    tRAS = '42ns'
632    tWR = '15ns'
633
634    tRTP = '7.5ns'
635
636    # 8 beats across an x32 DDR interface translates to 4 clocks @ 533 MHz.
637    # Note this is a BL8 DDR device.
638    # Requests larger than 32 bytes are broken down into multiple requests
639    # in the controller
640    tBURST = '7.5ns'
641
642    # LPDDR2-S4, 4 Gbit
643    tRFC = '130ns'
644    tREFI = '3.9us'
645
646    # Irrespective of speed grade, tWTR is 7.5 ns
647    tWTR = '7.5ns'
648
649    # Default same rank rd-to-wr bus turnaround to 2 CK, @533 MHz = 3.75 ns
650    tRTW = '3.75ns'
651
652    # Default different rank bus delay to 2 CK, @533 MHz = 3.75 ns
653    tCS = '3.75ns'
654
655    # Activate to activate irrespective of density and speed grade
656    tRRD = '10.0ns'
657
658    # Irrespective of density, tFAW is 50 ns
659    tXAW = '50ns'
660    activation_limit = 4
661
662    # Current values from datasheet
663    IDD0 = '15mA'
664    IDD02 = '70mA'
665    IDD2N = '2mA'
666    IDD2N2 = '30mA'
667    IDD3N = '2.5mA'
668    IDD3N2 = '30mA'
669    IDD4W = '10mA'
670    IDD4W2 = '190mA'
671    IDD4R = '3mA'
672    IDD4R2 = '220mA'
673    IDD5 = '40mA'
674    IDD52 = '150mA'
675    VDD = '1.8V'
676    VDD2 = '1.2V'
677
678# A single WideIO x128 interface (one command and address bus), with
679# default timings based on an estimated WIO-200 8 Gbit part.
680class WideIO_200_x128(DRAMCtrl):
681    # No DLL for WideIO
682    dll = False
683
684    # size of device
685    device_size = '1024MB'
686
687    # 1x128 configuration, 1 device with a 128-bit interface
688    device_bus_width = 128
689
690    # This is a BL4 device
691    burst_length = 4
692
693    # Each device has a page (row buffer) size of 4KB
694    # (this depends on the memory density)
695    device_rowbuffer_size = '4kB'
696
697    # 1x128 configuration, so 1 device
698    devices_per_rank = 1
699
700    # Use one rank for a one-high die stack
701    ranks_per_channel = 1
702
703    # WideIO has 4 banks in all configurations
704    banks_per_rank = 4
705
706    # 200 MHz
707    tCK = '5ns'
708
709    # WIO-200
710    tRCD = '18ns'
711    tCL = '18ns'
712    tRP = '18ns'
713    tRAS = '42ns'
714    tWR = '15ns'
715    # Read to precharge is same as the burst
716    tRTP = '20ns'
717
718    # 4 beats across an x128 SDR interface translates to 4 clocks @ 200 MHz.
719    # Note this is a BL4 SDR device.
720    tBURST = '20ns'
721
722    # WIO 8 Gb
723    tRFC = '210ns'
724
725    # WIO 8 Gb, <=85C, half for >85C
726    tREFI = '3.9us'
727
728    # Greater of 2 CK or 15 ns, 2 CK @ 200 MHz = 10 ns
729    tWTR = '15ns'
730
731    # Default same rank rd-to-wr bus turnaround to 2 CK, @200 MHz = 10 ns
732    tRTW = '10ns'
733
734    # Default different rank bus delay to 2 CK, @200 MHz = 10 ns
735    tCS = '10ns'
736
737    # Activate to activate irrespective of density and speed grade
738    tRRD = '10.0ns'
739
740    # Two instead of four activation window
741    tXAW = '50ns'
742    activation_limit = 2
743
744    # The WideIO specification does not provide current information
745
746# A single LPDDR3 x32 interface (one command/address bus), with
747# default timings based on a LPDDR3-1600 4 Gbit part (Micron
748# EDF8132A1MC) in a 1x32 configuration.
749class LPDDR3_1600_x32(DRAMCtrl):
750    # No DLL for LPDDR3
751    dll = False
752
753    # size of device
754    device_size = '512MB'
755
756    # 1x32 configuration, 1 device with a 32-bit interface
757    device_bus_width = 32
758
759    # LPDDR3 is a BL8 device
760    burst_length = 8
761
762    # Each device has a page (row buffer) size of 4KB
763    device_rowbuffer_size = '4kB'
764
765    # 1x32 configuration, so 1 device
766    devices_per_rank = 1
767
768    # Technically the datasheet is a dual-rank package, but for
769    # comparison with the LPDDR2 config we stick to a single rank
770    ranks_per_channel = 1
771
772    # LPDDR3 has 8 banks in all configurations
773    banks_per_rank = 8
774
775    # 800 MHz
776    tCK = '1.25ns'
777
778    tRCD = '18ns'
779
780    # 12 CK read latency, 6 CK write latency @ 800 MHz, 1.25 ns cycle time
781    tCL = '15ns'
782
783    tRAS = '42ns'
784    tWR = '15ns'
785
786    # Greater of 4 CK or 7.5 ns, 4 CK @ 800 MHz = 5 ns
787    tRTP = '7.5ns'
788
789    # Pre-charge one bank 18 ns (all banks 21 ns)
790    tRP = '18ns'
791
792    # 8 beats across a x32 DDR interface translates to 4 clocks @ 800 MHz.
793    # Note this is a BL8 DDR device.
794    # Requests larger than 32 bytes are broken down into multiple requests
795    # in the controller
796    tBURST = '5ns'
797
798    # LPDDR3, 4 Gb
799    tRFC = '130ns'
800    tREFI = '3.9us'
801
802    # Irrespective of speed grade, tWTR is 7.5 ns
803    tWTR = '7.5ns'
804
805    # Default same rank rd-to-wr bus turnaround to 2 CK, @800 MHz = 2.5 ns
806    tRTW = '2.5ns'
807
808    # Default different rank bus delay to 2 CK, @800 MHz = 2.5 ns
809    tCS = '2.5ns'
810
811    # Activate to activate irrespective of density and speed grade
812    tRRD = '10.0ns'
813
814    # Irrespective of size, tFAW is 50 ns
815    tXAW = '50ns'
816    activation_limit = 4
817
818    # Current values from datasheet
819    IDD0 = '8mA'
820    IDD02 = '60mA'
821    IDD2N = '0.8mA'
822    IDD2N2 = '26mA'
823    IDD3N = '2mA'
824    IDD3N2 = '34mA'
825    IDD4W = '2mA'
826    IDD4W2 = '190mA'
827    IDD4R = '2mA'
828    IDD4R2 = '230mA'
829    IDD5 = '28mA'
830    IDD52 = '150mA'
831    VDD = '1.8V'
832    VDD2 = '1.2V'
833
834# A single GDDR5 x64 interface, with
835# default timings based on a GDDR5-4000 1 Gbit part (SK Hynix
836# H5GQ1H24AFR) in a 2x32 configuration.
837class GDDR5_4000_x64(DRAMCtrl):
838    # size of device
839    device_size = '128MB'
840
841    # 2x32 configuration, 1 device with a 32-bit interface
842    device_bus_width = 32
843
844    # GDDR5 is a BL8 device
845    burst_length = 8
846
847    # Each device has a page (row buffer) size of 2Kbits (256Bytes)
848    device_rowbuffer_size = '256B'
849
850    # 2x32 configuration, so 2 devices
851    devices_per_rank = 2
852
853    # assume single rank
854    ranks_per_channel = 1
855
856    # GDDR5 has 4 bank groups
857    bank_groups_per_rank = 4
858
859    # GDDR5 has 16 banks with 4 bank groups
860    banks_per_rank = 16
861
862    # 1000 MHz
863    tCK = '1ns'
864
865    # 8 beats across an x64 interface translates to 2 clocks @ 1000 MHz
866    # Data bus runs @2000 Mhz => DDR ( data runs at 4000 MHz )
867    # 8 beats at 4000 MHz = 2 beats at 1000 MHz
868    # tBURST is equivalent to the CAS-to-CAS delay (tCCD)
869    # With bank group architectures, tBURST represents the CAS-to-CAS
870    # delay for bursts to different bank groups (tCCD_S)
871    tBURST = '2ns'
872
873    # @1000MHz data rate, tCCD_L is 3 CK
874    # CAS-to-CAS delay for bursts to the same bank group
875    # tBURST is equivalent to tCCD_S; no explicit parameter required
876    # for CAS-to-CAS delay for bursts to different bank groups
877    tCCD_L = '3ns';
878
879    tRCD = '12ns'
880
881    # tCL is not directly found in datasheet and assumed equal tRCD
882    tCL = '12ns'
883
884    tRP = '12ns'
885    tRAS = '28ns'
886
887    # RRD_S (different bank group)
888    # RRD_S is 5.5 ns in datasheet.
889    # rounded to the next multiple of tCK
890    tRRD = '6ns'
891
892    # RRD_L (same bank group)
893    # RRD_L is 5.5 ns in datasheet.
894    # rounded to the next multiple of tCK
895    tRRD_L = '6ns'
896
897    tXAW = '23ns'
898
899    # tXAW < 4 x tRRD.
900    # Therefore, activation limit is set to 0
901    activation_limit = 0
902
903    tRFC = '65ns'
904    tWR = '12ns'
905
906    # Here using the average of WTR_S and WTR_L
907    tWTR = '5ns'
908
909    # Read-to-Precharge 2 CK
910    tRTP = '2ns'
911
912    # Assume 2 cycles
913    tRTW = '2ns'
914
915# A single HBM x128 interface (one command and address bus), with
916# default timings based on data publically released
917# ("HBM: Memory Solution for High Performance Processors", MemCon, 2014),
918# IDD measurement values, and by extrapolating data from other classes.
919# Architecture values based on published HBM spec
920# A 4H stack is defined, 2Gb per die for a total of 1GB of memory.
921class HBM_1000_4H_x128(DRAMCtrl):
922    # HBM gen1 supports up to 8 128-bit physical channels
923    # Configuration defines a single channel, with the capacity
924    # set to (full_ stack_capacity / 8) based on 2Gb dies
925    # To use all 8 channels, set 'channels' parameter to 8 in
926    # system configuration
927
928    # 128-bit interface legacy mode
929    device_bus_width = 128
930
931    # HBM supports BL4 and BL2 (legacy mode only)
932    burst_length = 4
933
934    # size of channel in bytes, 4H stack of 2Gb dies is 1GB per stack;
935    # with 8 channels, 128MB per channel
936    device_size = '128MB'
937
938    device_rowbuffer_size = '2kB'
939
940    # 1x128 configuration
941    devices_per_rank = 1
942
943    # HBM does not have a CS pin; set rank to 1
944    ranks_per_channel = 1
945
946    # HBM has 8 or 16 banks depending on capacity
947    # 2Gb dies have 8 banks
948    banks_per_rank = 8
949
950    # depending on frequency, bank groups may be required
951    # will always have 4 bank groups when enabled
952    # current specifications do not define the minimum frequency for
953    # bank group architecture
954    # setting bank_groups_per_rank to 0 to disable until range is defined
955    bank_groups_per_rank = 0
956
957    # 500 MHz for 1Gbps DDR data rate
958    tCK = '2ns'
959
960    # use values from IDD measurement in JEDEC spec
961    # use tRP value for tRCD and tCL similar to other classes
962    tRP = '15ns'
963    tRCD = '15ns'
964    tCL = '15ns'
965    tRAS = '33ns'
966
967    # BL2 and BL4 supported, default to BL4
968    # DDR @ 500 MHz means 4 * 2ns / 2 = 4ns
969    tBURST = '4ns'
970
971    # value for 2Gb device from JEDEC spec
972    tRFC = '160ns'
973
974    # value for 2Gb device from JEDEC spec
975    tREFI = '3.9us'
976
977    # extrapolate the following from LPDDR configs, using ns values
978    # to minimize burst length, prefetch differences
979    tWR = '18ns'
980    tRTP = '7.5ns'
981    tWTR = '10ns'
982
983    # start with 2 cycles turnaround, similar to other memory classes
984    # could be more with variations across the stack
985    tRTW = '4ns'
986
987    # single rank device, set to 0
988    tCS = '0ns'
989
990    # from MemCon example, tRRD is 4ns with 2ns tCK
991    tRRD = '4ns'
992
993    # from MemCon example, tFAW is 30ns with 2ns tCK
994    tXAW = '30ns'
995    activation_limit = 4
996
997    # 4tCK
998    tXP = '8ns'
999
1000    # start with tRFC + tXP -> 160ns + 8ns = 168ns
1001    tXS = '168ns'
1002
1003# A single HBM x64 interface (one command and address bus), with
1004# default timings based on HBM gen1 and data publically released
1005# A 4H stack is defined, 8Gb per die for a total of 4GB of memory.
1006# Note: This defines a pseudo-channel with a unique controller
1007# instantiated per pseudo-channel
1008# Stay at same IO rate (1Gbps) to maintain timing relationship with
1009# HBM gen1 class (HBM_1000_4H_x128) where possible
1010class HBM_1000_4H_x64(HBM_1000_4H_x128):
1011    # For HBM gen2 with pseudo-channel mode, configure 2X channels.
1012    # Configuration defines a single pseudo channel, with the capacity
1013    # set to (full_ stack_capacity / 16) based on 8Gb dies
1014    # To use all 16 pseudo channels, set 'channels' parameter to 16 in
1015    # system configuration
1016
1017    # 64-bit pseudo-channle interface
1018    device_bus_width = 64
1019
1020    # HBM pseudo-channel only supports BL4
1021    burst_length = 4
1022
1023    # size of channel in bytes, 4H stack of 8Gb dies is 4GB per stack;
1024    # with 16 channels, 256MB per channel
1025    device_size = '256MB'
1026
1027    # page size is halved with pseudo-channel; maintaining the same same number
1028    # of rows per pseudo-channel with 2X banks across 2 channels
1029    device_rowbuffer_size = '1kB'
1030
1031    # HBM has 8 or 16 banks depending on capacity
1032    # Starting with 4Gb dies, 16 banks are defined
1033    banks_per_rank = 16
1034
1035    # reset tRFC for larger, 8Gb device
1036    # use HBM1 4Gb value as a starting point
1037    tRFC = '260ns'
1038
1039    # start with tRFC + tXP -> 160ns + 8ns = 168ns
1040    tXS = '268ns'
1041    # Default different rank bus delay to 2 CK, @1000 MHz = 2 ns
1042    tCS = '2ns'
1043    tREFI = '3.9us'
1044