M2_SETI/T1/TP/TP1/cacti_7/powergating.cc
2022-11-18 15:07:43 +01:00

129 lines
5.2 KiB
C++

/*****************************************************************************
* CACTI 7.0
* SOFTWARE LICENSE AGREEMENT
* Copyright 2015 Hewlett-Packard Development Company, L.P.
* All Rights Reserved
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met: redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer;
* redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution;
* neither the name of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.”
*
***************************************************************************/
#include "area.h"
#include "powergating.h"
#include "parameter.h"
#include <iostream>
#include <math.h>
#include <assert.h>
using namespace std;
//TODO: although DTSN is used,since for memory array, the number of sleep txs
//is related to the number of rows and cols. so All calculations are still base on
//single sleep tx cases
Sleep_tx::Sleep_tx(
double _perf_with_sleep_tx,
double _active_Isat,//of circuit block, not sleep tx
bool _is_footer,
double _c_circuit_wakeup,
double _V_delta,
int _num_sleep_tx,
// double _vt_circuit,
// double _vt_sleep_tx,
// double _mobility,//of sleep tx
// double _c_ox,//of sleep tx
const Area & cell_)
:perf_with_sleep_tx(_perf_with_sleep_tx),
active_Isat(_active_Isat),
is_footer(_is_footer),
c_circuit_wakeup(_c_circuit_wakeup),
V_delta(_V_delta),
num_sleep_tx(_num_sleep_tx),
// vt_circuit(_vt_circuit),
// vt_sleep_tx(_vt_sleep_tx),
// mobility(_mobility),
// c_ox(_c_ox)
cell(cell_),
is_sleep_tx(true)
{
//a single sleep tx in a network
double raw_area, raw_width, raw_hight;
double p_to_n_sz_ratio = pmos_to_nmos_sz_ratio(false, false, true);
vdd = g_tp.peri_global.Vdd;
vt_circuit = g_tp.peri_global.Vth;
vt_sleep_tx = g_tp.sleep_tx.Vth;
mobility = g_tp.sleep_tx.Mobility_n;
c_ox = g_tp.sleep_tx.C_ox;
width = active_Isat/(perf_with_sleep_tx*mobility*c_ox*(vdd-vt_circuit)*(vdd-vt_sleep_tx))*g_ip->F_sz_um;//W/L uses physical numbers
width /= num_sleep_tx;
raw_area = compute_gate_area(INV, 1, width, p_to_n_sz_ratio*width, cell.w*2)/2; //Only single device, assuming device is laide on the side
raw_width = cell.w;
raw_hight = raw_area/cell.w;
area.set_h(raw_hight);
area.set_w(raw_width);
compute_penalty();
}
double Sleep_tx::compute_penalty()
{
//V_delta = VDD - VCCmin nothing to do with threshold of sleep tx. Although it might be OK to use sleep tx to control the V_delta
// double c_load;
double p_to_n_sz_ratio = pmos_to_nmos_sz_ratio(false, false, true);
if (is_footer)
{
c_intrinsic_sleep = drain_C_(width, NCH, 1, 1, area.h, false, false, false,is_sleep_tx);
// V_delta = _V_delta;
wakeup_delay = (c_circuit_wakeup + c_intrinsic_sleep)*V_delta/(simplified_nmos_Isat(width, false, false, false,is_sleep_tx)/Ilinear_to_Isat_ratio);
wakeup_power.readOp.dynamic = (c_circuit_wakeup + c_intrinsic_sleep)*g_tp.sram_cell.Vdd*V_delta;
//no 0.5 because the half of the energy spend in entering sleep and half of the energy will be spent in waking up. And they are pairs
}
else
{
c_intrinsic_sleep = drain_C_(width*p_to_n_sz_ratio, PCH, 1, 1, area.h, false, false, false,is_sleep_tx);
// V_delta = _V_delta;
wakeup_delay = (c_circuit_wakeup + c_intrinsic_sleep)*V_delta/(simplified_pmos_Isat(width, false, false, false,is_sleep_tx)/Ilinear_to_Isat_ratio);
wakeup_power.readOp.dynamic = (c_circuit_wakeup + c_intrinsic_sleep)*g_tp.sram_cell.Vdd*V_delta;
}
return wakeup_delay;
/*
The number of cycles in the wake-up latency set the constraint on the
minimum number of idle clock cycles needed before a processor
can enter in the corresponding sleep mode without any wakeup
overhead.
If the circuit is half way to sleep then waken up, it is still OK
just the wakeup latency will be shorter than the wakeup time from full asleep.
So, the sleep time and energy does not matter
*/
}