-
Notifications
You must be signed in to change notification settings - Fork 139
/
extio.h
46 lines (33 loc) · 878 Bytes
/
extio.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
42
43
44
45
46
#ifndef _extio_H_
#define _extio_H_
#include "parameter.h"
#include "component.h"
#include "extio_technology.h"
class Extio : public Component
{
public:
Extio(IOTechParam *);
void extio_area();
void extio_eye();
void extio_power_dynamic();
void extio_power_phy();
void extio_power_term();
private:
IOTechParam *io_param;
double io_area;
double io_power_term;
double power_termination_write;
double power_termination_read;
double power_bias;
double power_clk_bias;
double phy_power;
double phy_wtime;
double phy_static_power;
double phy_dynamic_power;
double io_power_dynamic;
double power_dq_write, power_dqs_write, power_ca_write,
power_dq_read, power_dqs_read, power_ca_read,
power_clk;
double io_tmargin, io_vmargin;
};
#endif // _extio_H_