Network.hh revision 8257
16145Snate@binkert.org/*
26145Snate@binkert.org * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
36145Snate@binkert.org * All rights reserved.
46145Snate@binkert.org *
56145Snate@binkert.org * Redistribution and use in source and binary forms, with or without
66145Snate@binkert.org * modification, are permitted provided that the following conditions are
76145Snate@binkert.org * met: redistributions of source code must retain the above copyright
86145Snate@binkert.org * notice, this list of conditions and the following disclaimer;
96145Snate@binkert.org * redistributions in binary form must reproduce the above copyright
106145Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
116145Snate@binkert.org * documentation and/or other materials provided with the distribution;
126145Snate@binkert.org * neither the name of the copyright holders nor the names of its
136145Snate@binkert.org * contributors may be used to endorse or promote products derived from
146145Snate@binkert.org * this software without specific prior written permission.
156145Snate@binkert.org *
166145Snate@binkert.org * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
176145Snate@binkert.org * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
186145Snate@binkert.org * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
196145Snate@binkert.org * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
206145Snate@binkert.org * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216145Snate@binkert.org * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
226145Snate@binkert.org * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236145Snate@binkert.org * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246145Snate@binkert.org * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256145Snate@binkert.org * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
266145Snate@binkert.org * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276145Snate@binkert.org */
286145Snate@binkert.org
296145Snate@binkert.org/*
307054Snate@binkert.org * The Network class is the base class for classes that implement the
317054Snate@binkert.org * interconnection network between components (processor/cache
327054Snate@binkert.org * components and memory/directory components).  The interconnection
337054Snate@binkert.org * network as described here is not a physical network, but a
347054Snate@binkert.org * programming concept used to implement all communication between
357054Snate@binkert.org * components.  Thus parts of this 'network' will model the on-chip
367054Snate@binkert.org * connections between cache controllers and directory controllers as
377054Snate@binkert.org * well as the links between chip and network switches.
387054Snate@binkert.org */
396145Snate@binkert.org
407054Snate@binkert.org#ifndef __MEM_RUBY_NETWORK_NETWORK_HH__
417054Snate@binkert.org#define __MEM_RUBY_NETWORK_NETWORK_HH__
426145Snate@binkert.org
437055Snate@binkert.org#include <iostream>
447055Snate@binkert.org#include <string>
457454Snate@binkert.org#include <vector>
467055Snate@binkert.org
478257SBrad.Beckmann@amd.com#include "mem/protocol/LinkDirection.hh"
487054Snate@binkert.org#include "mem/protocol/MessageSizeType.hh"
496154Snate@binkert.org#include "mem/ruby/common/Global.hh"
506154Snate@binkert.org#include "mem/ruby/system/NodeID.hh"
516285Snate@binkert.org#include "mem/ruby/system/System.hh"
527054Snate@binkert.org#include "params/RubyNetwork.hh"
536876Ssteve.reinhardt@amd.com#include "sim/sim_object.hh"
546145Snate@binkert.org
556145Snate@binkert.orgclass NetDest;
566145Snate@binkert.orgclass MessageBuffer;
576145Snate@binkert.orgclass Throttle;
586285Snate@binkert.orgclass Topology;
596145Snate@binkert.org
607054Snate@binkert.orgclass Network : public SimObject
617054Snate@binkert.org{
627054Snate@binkert.org  public:
636876Ssteve.reinhardt@amd.com    typedef RubyNetworkParams Params;
646876Ssteve.reinhardt@amd.com    Network(const Params *p);
657054Snate@binkert.org    virtual ~Network() {}
666145Snate@binkert.org
677054Snate@binkert.org    virtual void init();
686145Snate@binkert.org
697054Snate@binkert.org    int getBufferSize() { return m_buffer_size; }
707054Snate@binkert.org    int getNumberOfVirtualNetworks() { return m_virtual_networks; }
717054Snate@binkert.org    int getEndpointBandwidth() { return m_endpoint_bandwidth; }
727054Snate@binkert.org    bool getAdaptiveRouting() {return m_adaptive_routing; }
737054Snate@binkert.org    int getLinkLatency() { return m_link_latency; }
747054Snate@binkert.org    int MessageSizeType_to_int(MessageSizeType size_type);
756493STushar.Krishna@amd.com
767054Snate@binkert.org    // returns the queue requested for the given component
777054Snate@binkert.org    virtual MessageBuffer* getToNetQueue(NodeID id, bool ordered,
787054Snate@binkert.org        int netNumber) = 0;
797054Snate@binkert.org    virtual MessageBuffer* getFromNetQueue(NodeID id, bool ordered,
807054Snate@binkert.org        int netNumber) = 0;
817454Snate@binkert.org    virtual const std::vector<Throttle*>* getThrottles(NodeID id) const;
827054Snate@binkert.org    virtual int getNumNodes() {return 1;}
836145Snate@binkert.org
848257SBrad.Beckmann@amd.com    virtual void makeOutLink(SwitchID src, NodeID dest, BasicLink* link,
858257SBrad.Beckmann@amd.com                             LinkDirection direction,
868257SBrad.Beckmann@amd.com                             const NetDest& routing_table_entry,
878257SBrad.Beckmann@amd.com                             bool isReconfiguration) = 0;
888257SBrad.Beckmann@amd.com    virtual void makeInLink(NodeID src, SwitchID dest, BasicLink* link,
898257SBrad.Beckmann@amd.com                            LinkDirection direction,
908257SBrad.Beckmann@amd.com                            const NetDest& routing_table_entry,
918257SBrad.Beckmann@amd.com                            bool isReconfiguration) = 0;
928257SBrad.Beckmann@amd.com    virtual void makeInternalLink(SwitchID src, SwitchID dest, BasicLink* link,
938257SBrad.Beckmann@amd.com                                  LinkDirection direction,
948257SBrad.Beckmann@amd.com                                  const NetDest& routing_table_entry,
958257SBrad.Beckmann@amd.com                                  bool isReconfiguration) = 0;
966145Snate@binkert.org
977054Snate@binkert.org    virtual void reset() = 0;
986145Snate@binkert.org
997055Snate@binkert.org    virtual void printStats(std::ostream& out) const = 0;
1007054Snate@binkert.org    virtual void clearStats() = 0;
1017055Snate@binkert.org    virtual void printConfig(std::ostream& out) const = 0;
1027055Snate@binkert.org    virtual void print(std::ostream& out) const = 0;
1036145Snate@binkert.org
1047054Snate@binkert.org  protected:
1057054Snate@binkert.org    // Private copy constructor and assignment operator
1067054Snate@binkert.org    Network(const Network& obj);
1077054Snate@binkert.org    Network& operator=(const Network& obj);
1086145Snate@binkert.org
1097054Snate@binkert.org  protected:
1107055Snate@binkert.org    const std::string m_name;
1117054Snate@binkert.org    int m_nodes;
1127054Snate@binkert.org    int m_virtual_networks;
1137054Snate@binkert.org    int m_buffer_size;
1147054Snate@binkert.org    int m_endpoint_bandwidth;
1157054Snate@binkert.org    Topology* m_topology_ptr;
1167054Snate@binkert.org    bool m_adaptive_routing;
1177054Snate@binkert.org    int m_link_latency;
1187054Snate@binkert.org    int m_control_msg_size;
1197054Snate@binkert.org    int m_data_msg_size;
1206145Snate@binkert.org};
1216145Snate@binkert.org
1227055Snate@binkert.orginline std::ostream&
1237055Snate@binkert.orgoperator<<(std::ostream& out, const Network& obj)
1246145Snate@binkert.org{
1257054Snate@binkert.org    obj.print(out);
1267055Snate@binkert.org    out << std::flush;
1277054Snate@binkert.org    return out;
1286145Snate@binkert.org}
1296145Snate@binkert.org
1307054Snate@binkert.org#endif // __MEM_RUBY_NETWORK_NETWORK_HH__
131