Network.hh revision 9799
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"
498645Snilay@cs.wisc.edu#include "mem/ruby/common/TypeDefines.hh"
509594Snilay@cs.wisc.edu#include "mem/ruby/network/Topology.hh"
519594Snilay@cs.wisc.edu#include "mem/packet.hh"
527054Snate@binkert.org#include "params/RubyNetwork.hh"
539465Snilay@cs.wisc.edu#include "sim/clocked_object.hh"
546145Snate@binkert.org
556145Snate@binkert.orgclass NetDest;
566145Snate@binkert.orgclass MessageBuffer;
576145Snate@binkert.orgclass Throttle;
586145Snate@binkert.org
599465Snilay@cs.wisc.educlass Network : public ClockedObject
607054Snate@binkert.org{
617054Snate@binkert.org  public:
626876Ssteve.reinhardt@amd.com    typedef RubyNetworkParams Params;
636876Ssteve.reinhardt@amd.com    Network(const Params *p);
647054Snate@binkert.org    virtual ~Network() {}
659594Snilay@cs.wisc.edu    const Params * params() const
669594Snilay@cs.wisc.edu    { return dynamic_cast<const Params *>(_params);}
676145Snate@binkert.org
687054Snate@binkert.org    virtual void init();
696145Snate@binkert.org
709497Snilay@cs.wisc.edu    static uint32_t getNumberOfVirtualNetworks() { return m_virtual_networks; }
719275Snilay@cs.wisc.edu    static uint32_t MessageSizeType_to_int(MessageSizeType size_type);
726493STushar.Krishna@amd.com
737054Snate@binkert.org    // returns the queue requested for the given component
747054Snate@binkert.org    virtual MessageBuffer* getToNetQueue(NodeID id, bool ordered,
758308Stushar@csail.mit.edu        int netNumber, std::string vnet_type) = 0;
767054Snate@binkert.org    virtual MessageBuffer* getFromNetQueue(NodeID id, bool ordered,
778308Stushar@csail.mit.edu        int netNumber, std::string vnet_type) = 0;
787454Snate@binkert.org    virtual const std::vector<Throttle*>* getThrottles(NodeID id) const;
797054Snate@binkert.org    virtual int getNumNodes() {return 1;}
806145Snate@binkert.org
818257SBrad.Beckmann@amd.com    virtual void makeOutLink(SwitchID src, NodeID dest, BasicLink* link,
828257SBrad.Beckmann@amd.com                             LinkDirection direction,
839799Snilay@cs.wisc.edu                             const NetDest& routing_table_entry) = 0;
848257SBrad.Beckmann@amd.com    virtual void makeInLink(NodeID src, SwitchID dest, BasicLink* link,
858257SBrad.Beckmann@amd.com                            LinkDirection direction,
869799Snilay@cs.wisc.edu                            const NetDest& routing_table_entry) = 0;
878257SBrad.Beckmann@amd.com    virtual void makeInternalLink(SwitchID src, SwitchID dest, BasicLink* link,
888257SBrad.Beckmann@amd.com                                  LinkDirection direction,
899799Snilay@cs.wisc.edu                                  const NetDest& routing_table_entry) = 0;
906145Snate@binkert.org
917054Snate@binkert.org    virtual void reset() = 0;
926145Snate@binkert.org
937055Snate@binkert.org    virtual void printStats(std::ostream& out) const = 0;
947054Snate@binkert.org    virtual void clearStats() = 0;
957055Snate@binkert.org    virtual void print(std::ostream& out) const = 0;
966145Snate@binkert.org
979302Snilay@cs.wisc.edu    /*
989302Snilay@cs.wisc.edu     * Virtual functions for functionally reading and writing packets in
999302Snilay@cs.wisc.edu     * the network. Each network needs to implement these for functional
1009302Snilay@cs.wisc.edu     * accesses to work correctly.
1019302Snilay@cs.wisc.edu     */
1029302Snilay@cs.wisc.edu    virtual bool functionalRead(Packet *pkt)
1039302Snilay@cs.wisc.edu    { fatal("Functional read not implemented.\n"); }
1049302Snilay@cs.wisc.edu    virtual uint32_t functionalWrite(Packet *pkt)
1059302Snilay@cs.wisc.edu    { fatal("Functional write not implemented.\n"); }
1069302Snilay@cs.wisc.edu
1077054Snate@binkert.org  protected:
1087054Snate@binkert.org    // Private copy constructor and assignment operator
1097054Snate@binkert.org    Network(const Network& obj);
1107054Snate@binkert.org    Network& operator=(const Network& obj);
1116145Snate@binkert.org
1127054Snate@binkert.org  protected:
1137055Snate@binkert.org    const std::string m_name;
1147054Snate@binkert.org    int m_nodes;
1159275Snilay@cs.wisc.edu    static uint32_t m_virtual_networks;
1167054Snate@binkert.org    Topology* m_topology_ptr;
1179275Snilay@cs.wisc.edu    static uint32_t m_control_msg_size;
1189275Snilay@cs.wisc.edu    static uint32_t m_data_msg_size;
1196145Snate@binkert.org};
1206145Snate@binkert.org
1217055Snate@binkert.orginline std::ostream&
1227055Snate@binkert.orgoperator<<(std::ostream& out, const Network& obj)
1236145Snate@binkert.org{
1247054Snate@binkert.org    obj.print(out);
1257055Snate@binkert.org    out << std::flush;
1267054Snate@binkert.org    return out;
1276145Snate@binkert.org}
1286145Snate@binkert.org
1297054Snate@binkert.org#endif // __MEM_RUBY_NETWORK_NETWORK_HH__
130