memoryctrl.h (10152:52c552138ba1) memoryctrl.h (10234:5cb711fa6176)
1/*****************************************************************************
2 * McPAT
3 * SOFTWARE LICENSE AGREEMENT
4 * Copyright 2012 Hewlett-Packard Development Company, L.P.
1/*****************************************************************************
2 * McPAT
3 * SOFTWARE LICENSE AGREEMENT
4 * Copyright 2012 Hewlett-Packard Development Company, L.P.
5 * Copyright (c) 2010-2013 Advanced Micro Devices, Inc.
5 * All Rights Reserved
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met: redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer;
11 * redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the

--- 7 unchanged lines hidden (view full) ---

20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
6 * All Rights Reserved
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met: redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer;
12 * redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the

--- 7 unchanged lines hidden (view full) ---

21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 ***************************************************************************/
31
32#ifndef MEMORYCTRL_H_
33#define MEMORYCTRL_H_
34
30 *
31 ***************************************************************************/
32
33#ifndef MEMORYCTRL_H_
34#define MEMORYCTRL_H_
35
35#include "XML_Parse.h"
36#include "parameter.h"
37//#include "io.h"
38#include "array.h"
36#include "array.h"
39//#include "Undifferentiated_Core_Area.h"
40#include <vector>
41
42#include "basic_components.h"
37#include "basic_components.h"
38#include "cachearray.h"
39#include "parameter.h"
43
40
44class MCBackend : public Component {
45 public:
41class MCBackend : public McPATComponent {
42public:
46 InputParameter l_ip;
47 uca_org_t local_result;
43 InputParameter l_ip;
44 uca_org_t local_result;
48 enum MemoryCtrl_type mc_type;
49 MCParam mcp;
50 statsDef tdp_stats;
51 statsDef rtp_stats;
45 MCParameters mcp;
46 MCStatistics mcs;
52 statsDef stats_t;
47 statsDef stats_t;
53 powerDef power_t;
54 MCBackend(InputParameter* interface_ip_, const MCParam & mcp_, enum MemoryCtrl_type mc_type_);
55 void compute();
56 void computeEnergy(bool is_tdp=true);
57 void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true);
58 ~MCBackend(){};
48
49 MCBackend(XMLNode* _xml_data, InputParameter* interface_ip_,
50 const MCParameters & mcp_, const MCStatistics & mcs_);
51 void computeArea();
52 void computeEnergy();
53 ~MCBackend() {};
59};
60
54};
55
61class MCPHY : public Component {
62 public:
56class MCPHY : public McPATComponent {
57public:
63 InputParameter l_ip;
64 uca_org_t local_result;
58 InputParameter l_ip;
59 uca_org_t local_result;
65 enum MemoryCtrl_type mc_type;
66 MCParam mcp;
67 statsDef tdp_stats;
68 statsDef rtp_stats;
69 statsDef stats_t;
70 powerDef power_t;
71 MCPHY(InputParameter* interface_ip_, const MCParam & mcp_, enum MemoryCtrl_type mc_type_);
72 void compute();
73 void computeEnergy(bool is_tdp=true);
74 void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true);
75 ~MCPHY(){};
60 MCParameters mcp;
61 MCStatistics mcs;
62 statsDef stats_t;
63
64 MCPHY(XMLNode* _xml_data, InputParameter* interface_ip_,
65 const MCParameters & mcp_, const MCStatistics & mcs_);
66 void computeArea();
67 void computeEnergy();
68 ~MCPHY() {};
76};
77
69};
70
78class MCFrontEnd : public Component {
79 public:
80 ParseXML *XML;
81 InputParameter interface_ip;
82 enum MemoryCtrl_type mc_type;
83 MCParam mcp;
84 selection_logic * MC_arb;
85 ArrayST * frontendBuffer;
86 ArrayST * readBuffer;
87 ArrayST * writeBuffer;
71class MCFrontEnd : public McPATComponent {
72public:
73 CacheArray* frontendBuffer;
74 CacheArray* readBuffer;
75 CacheArray* writeBuffer;
76 selection_logic* MC_arb;
88
77
89 MCFrontEnd(ParseXML *XML_interface,InputParameter* interface_ip_, const MCParam & mcp_, enum MemoryCtrl_type mc_type_);
90 void computeEnergy(bool is_tdp=true);
91 void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true);
78 InputParameter interface_ip;
79 MCParameters mcp;
80 MCStatistics mcs;
81
82 MCFrontEnd(XMLNode* _xml_data,
83 InputParameter* interface_ip_, const MCParameters & mcp_,
84 const MCStatistics & mcs_);
92 ~MCFrontEnd();
93};
94
85 ~MCFrontEnd();
86};
87
95class MemoryController : public Component {
96 public:
97 ParseXML *XML;
98 InputParameter interface_ip;
99 enum MemoryCtrl_type mc_type;
100 MCParam mcp;
101 MCFrontEnd * frontend;
102 MCBackend * transecEngine;
103 MCPHY * PHY;
104 Pipeline * pipeLogic;
88class MemoryController : public McPATComponent {
89public:
90 InputParameter interface_ip;
91 MCParameters mcp;
92 MCStatistics mcs;
105
93
106 //clock_network clockNetwork;
107 MemoryController(ParseXML *XML_interface,InputParameter* interface_ip_, enum MemoryCtrl_type mc_type_);
94 MemoryController(XMLNode* _xml_data, InputParameter* interface_ip_);
95 void initialize_params();
108 void set_mc_param();
96 void set_mc_param();
109 void computeEnergy(bool is_tdp=true);
110 void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true);
111 ~MemoryController();
112};
97 ~MemoryController();
98};
99
113#endif /* MEMORYCTRL_H_ */
100#endif /* MEMORYCTRL_H_ */