gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
drampower.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "mem/drampower.hh"
39 
40 #include "base/intmath.hh"
41 #include "sim/core.hh"
42 
43 DRAMPower::DRAMPower(const DRAMInterfaceParams &p, bool include_io) :
44  powerlib(libDRAMPower(getMemSpec(p), include_io))
45 {
46 }
47 
48 Data::MemArchitectureSpec
49 DRAMPower::getArchParams(const DRAMInterfaceParams &p)
50 {
51  Data::MemArchitectureSpec archSpec;
52  archSpec.burstLength = p.burst_length;
53  archSpec.nbrOfBanks = p.banks_per_rank;
54  // One DRAMPower instance per rank, hence set this to 1
55  archSpec.nbrOfRanks = 1;
56  archSpec.dataRate = p.beats_per_clock;
57  // For now we can ignore the number of columns and rows as they
58  // are not used in the power calculation.
59  archSpec.nbrOfColumns = 0;
60  archSpec.nbrOfRows = 0;
61  archSpec.width = p.device_bus_width;
62  archSpec.nbrOfBankGroups = p.bank_groups_per_rank;
63  archSpec.dll = p.dll;
64  archSpec.twoVoltageDomains = hasTwoVDD(p);
65  // Keep this disabled for now until the model is firmed up.
66  archSpec.termination = false;
67  return archSpec;
68 }
69 
70 Data::MemTimingSpec
71 DRAMPower::getTimingParams(const DRAMInterfaceParams &p)
72 {
73  // Set the values that are used for power calculations and ignore
74  // the ones only used by the controller functionality in DRAMPower
75 
76  // All DRAMPower timings are in clock cycles
77  Data::MemTimingSpec timingSpec;
78  timingSpec.RC = divCeil((p.tRAS + p.tRP), p.tCK);
79  timingSpec.RCD = divCeil(p.tRCD, p.tCK);
80  timingSpec.RL = divCeil(p.tCL, p.tCK);
81  timingSpec.RP = divCeil(p.tRP, p.tCK);
82  timingSpec.RFC = divCeil(p.tRFC, p.tCK);
83  timingSpec.RAS = divCeil(p.tRAS, p.tCK);
84  // Write latency is read latency - 1 cycle
85  // Source: B.Jacob Memory Systems Cache, DRAM, Disk
86  timingSpec.WL = timingSpec.RL - 1;
87  timingSpec.DQSCK = 0; // ignore for now
88  timingSpec.RTP = divCeil(p.tRTP, p.tCK);
89  timingSpec.WR = divCeil(p.tWR, p.tCK);
90  timingSpec.XP = divCeil(p.tXP, p.tCK);
91  timingSpec.XPDLL = divCeil(p.tXPDLL, p.tCK);
92  timingSpec.XS = divCeil(p.tXS, p.tCK);
93  timingSpec.XSDLL = divCeil(p.tXSDLL, p.tCK);
94 
95  // Clock period in ns
96  timingSpec.clkPeriod = (p.tCK / (double)(SimClock::Int::ns));
97  assert(timingSpec.clkPeriod != 0);
98  timingSpec.clkMhz = (1 / timingSpec.clkPeriod) * 1000;
99  return timingSpec;
100 }
101 
102 Data::MemPowerSpec
103 DRAMPower::getPowerParams(const DRAMInterfaceParams &p)
104 {
105  // All DRAMPower currents are in mA
106  Data::MemPowerSpec powerSpec;
107  powerSpec.idd0 = p.IDD0 * 1000;
108  powerSpec.idd02 = p.IDD02 * 1000;
109  powerSpec.idd2p0 = p.IDD2P0 * 1000;
110  powerSpec.idd2p02 = p.IDD2P02 * 1000;
111  powerSpec.idd2p1 = p.IDD2P1 * 1000;
112  powerSpec.idd2p12 = p.IDD2P12 * 1000;
113  powerSpec.idd2n = p.IDD2N * 1000;
114  powerSpec.idd2n2 = p.IDD2N2 * 1000;
115  powerSpec.idd3p0 = p.IDD3P0 * 1000;
116  powerSpec.idd3p02 = p.IDD3P02 * 1000;
117  powerSpec.idd3p1 = p.IDD3P1 * 1000;
118  powerSpec.idd3p12 = p.IDD3P12 * 1000;
119  powerSpec.idd3n = p.IDD3N * 1000;
120  powerSpec.idd3n2 = p.IDD3N2 * 1000;
121  powerSpec.idd4r = p.IDD4R * 1000;
122  powerSpec.idd4r2 = p.IDD4R2 * 1000;
123  powerSpec.idd4w = p.IDD4W * 1000;
124  powerSpec.idd4w2 = p.IDD4W2 * 1000;
125  powerSpec.idd5 = p.IDD5 * 1000;
126  powerSpec.idd52 = p.IDD52 * 1000;
127  powerSpec.idd6 = p.IDD6 * 1000;
128  powerSpec.idd62 = p.IDD62 * 1000;
129  powerSpec.vdd = p.VDD;
130  powerSpec.vdd2 = p.VDD2;
131  return powerSpec;
132 }
133 
134 Data::MemorySpecification
135 DRAMPower::getMemSpec(const DRAMInterfaceParams &p)
136 {
137  Data::MemorySpecification memSpec;
138  memSpec.memArchSpec = getArchParams(p);
139  memSpec.memTimingSpec = getTimingParams(p);
140  memSpec.memPowerSpec = getPowerParams(p);
141  return memSpec;
142 }
143 
144 bool
145 DRAMPower::hasTwoVDD(const DRAMInterfaceParams &p)
146 {
147  return p.VDD2 == 0 ? false : true;
148 }
149 
150 uint8_t
151 DRAMPower::getDataRate(const DRAMInterfaceParams &p)
152 {
153  uint32_t burst_cycles = divCeil(p.tBURST_MAX, p.tCK);
154  uint8_t data_rate = p.burst_length / burst_cycles;
155  // 4 for GDDR5
156  if (data_rate != 1 && data_rate != 2 && data_rate != 4 && data_rate != 8)
157  fatal("Got unexpected data rate %d, should be 1 or 2 or 4 or 8\n");
158  return data_rate;
159 }
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
SimClock::Int::ns
Tick ns
nanosecond
Definition: core.cc:62
drampower.hh
DRAMPower::getArchParams
static Data::MemArchitectureSpec getArchParams(const DRAMInterfaceParams &p)
Transform the architechture parameters defined in DRAMInterfaceParams to the memSpec of DRAMPower.
Definition: drampower.cc:49
DRAMPower::getPowerParams
static Data::MemPowerSpec getPowerParams(const DRAMInterfaceParams &p)
Transforms the power and current parameters defined in DRAMInterfaceParams to the memSpec of DRAMPowe...
Definition: drampower.cc:103
divCeil
T divCeil(const T &a, const U &b)
Definition: intmath.hh:114
DRAMPower::DRAMPower
DRAMPower(const DRAMInterfaceParams &p, bool include_io)
Definition: drampower.cc:43
DRAMPower::getTimingParams
static Data::MemTimingSpec getTimingParams(const DRAMInterfaceParams &p)
Transforms the timing parameters defined in DRAMInterfaceParams to the memSpec of DRAMPower.
Definition: drampower.cc:71
DRAMPower::getMemSpec
static Data::MemorySpecification getMemSpec(const DRAMInterfaceParams &p)
Return an instance of MemSpec based on the DRAMInterfaceParams.
Definition: drampower.cc:135
core.hh
DRAMPower::hasTwoVDD
static bool hasTwoVDD(const DRAMInterfaceParams &p)
Determine if DRAM has two voltage domains (or one)
Definition: drampower.cc:145
DRAMPower::getDataRate
static uint8_t getDataRate(const DRAMInterfaceParams &p)
Determine data rate, either one or two.
Definition: drampower.cc:151
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
intmath.hh

Generated on Tue Mar 23 2021 19:41:27 for gem5 by doxygen 1.8.17