iocontrollers.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#ifndef IOCONTROLLERS_H_ 32#define IOCONTROLLERS_H_ 33 34 35#endif /* IOCONTROLLERS_H_ */ 36 37#include "XML_Parse.h" 38#include "parameter.h" 39//#include "io.h" 40#include "array.h" 41//#include "Undifferentiated_Core_Area.h" 42#include <vector> 43 44#include "basic_components.h" 45 46class NIUController : public Component { 47 public: 48 ParseXML *XML; 49 InputParameter interface_ip; 50 NIUParam niup; 51 powerDef power_t; 52 uca_org_t local_result; 53 NIUController(ParseXML *XML_interface,InputParameter* interface_ip_); 54 void set_niu_param(); 55 void computeEnergy(bool is_tdp=true); 56 void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true); 57 ~NIUController(){}; 58}; 59 60class PCIeController : public Component { 61 public: 62 ParseXML *XML; 63 InputParameter interface_ip; 64 PCIeParam pciep; 65 powerDef power_t; 66 uca_org_t local_result; 67 PCIeController(ParseXML *XML_interface,InputParameter* interface_ip_); 68 void set_pcie_param(); 69 void computeEnergy(bool is_tdp=true); 70 void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true); 71 ~PCIeController(){}; 72}; 73 74class FlashController : public Component { 75 public: 76 ParseXML *XML; 77 InputParameter interface_ip; 78 MCParam fcp; 79 powerDef power_t; 80 uca_org_t local_result; 81 FlashController(ParseXML *XML_interface,InputParameter* interface_ip_); 82 void set_fc_param(); 83 void computeEnergy(bool is_tdp=true); 84 void displayEnergy(uint32_t indent = 0,int plevel = 100, bool is_tdp=true); 85 ~FlashController(){}; 86}; 87 88