forked from eva-cam/EvaCAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OutputDriver.h
41 lines (36 loc) · 1.38 KB
/
OutputDriver.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef OUTPUTDRIVER_H_
#define OUTPUTDRIVER_H_
#include "FunctionUnit.h"
#include "constant.h"
#include "typedef.h"
class OutputDriver: public FunctionUnit {
public:
OutputDriver();
virtual ~OutputDriver();
/* Functions */
void PrintProperty();
void Initialize(double _logicEffort, double _inputCap, double _outputCap, double _outputRes,
bool _inv, BufferDesignTarget _areaOptimizationLevel, double _minDriverCurrent);
void CalculateArea();
void CalculateRC();
void CalculateLatency(double _rampInput);
void CalculatePower();
OutputDriver & operator=(const OutputDriver &);
/* Properties */
bool initialized; /* Initialization flag */
bool invalid; /*Invalidatio flag */
double logicEffort; /* The logic effort of the gate that needs this driver */
double inputCap; /* Input capacitance, unit: F */
double outputCap; /* Output capacitance, unit: F */
double outputRes; /* Output resistance, unit: ohm */
bool inv; /* Whether the invert chain causes a flip */
int numStage; /* Number of inverter chain stages */
BufferDesignTarget areaOptimizationLevel; /* 0 for latency, 2 for area */
double minDriverCurrent; /* Minimum driving current should be provided */
double widthNMOS[MAX_INV_CHAIN_LEN];
double widthPMOS[MAX_INV_CHAIN_LEN];
double capInput[MAX_INV_CHAIN_LEN];
double capOutput[MAX_INV_CHAIN_LEN];
double rampInput, rampOutput;
};
#endif /* OUTPUTDRIVER_H_ */