noc.h revision 10152:52c552138ba1
1/*****************************************************************************
2 *                                McPAT
3 *                      SOFTWARE LICENSE AGREEMENT
4 *            Copyright 2012 Hewlett-Packard Development Company, L.P.
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
13 * documentation and/or other materials provided with the distribution;
14 * neither the name of the copyright holders nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
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
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.”
29 *
30 ***************************************************************************/
31
32#ifndef NOC_H_
33#define NOC_H_
34#include "XML_Parse.h"
35#include "array.h"
36#include "basic_components.h"
37#include "interconnect.h"
38#include "logic.h"
39#include "parameter.h"
40#include "router.h"
41
42class NoC :public Component {
43  public:
44
45        ParseXML *XML;
46        int  ithNoC;
47        InputParameter interface_ip;
48        double link_len;
49        double executionTime;
50        double scktRatio, chip_PR_overhead, macro_PR_overhead;
51        Router * router;
52        interconnect * link_bus;
53        NoCParam  nocdynp;
54        uca_org_t local_result;
55        statsDef       tdp_stats;
56        statsDef       rtp_stats;
57        statsDef       stats_t;
58        powerDef       power_t;
59        Component      link_bus_tot_per_Router;
60        bool link_bus_exist;
61        bool router_exist;
62        string name, link_name;
63        double M_traffic_pattern;
64        NoC(ParseXML *XML_interface, int ithNoC_, InputParameter* interface_ip_, double M_traffic_pattern_ = 0.6,double link_len_=0);
65        void set_noc_param();
66        void computeEnergy(bool is_tdp=true);
67        void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true);
68        void init_link_bus(double link_len_);
69        void init_router();
70        void computeEnergy_link_bus(bool is_tdp=true);
71        void displayEnergy_link_bus(uint32_t indent = 0,int plevel = 100, bool is_tdp=true);
72        ~NoC();
73};
74
75#endif /* NOC_H_ */
76