Switch.hh revision 9863
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 actual modelled switch. It use the perfect switch and a
317054Snate@binkert.org * Throttle object to control and bandwidth and timing *only for the
327054Snate@binkert.org * output port*. So here we have un-realistic modelling, since the
337054Snate@binkert.org * order of PerfectSwitch and Throttle objects get woke up affect the
347054Snate@binkert.org * message timing. A more accurate model would be having two set of
357054Snate@binkert.org * system states, one for this cycle, one for next cycle. And on the
367054Snate@binkert.org * cycle boundary swap the two set of states.
376145Snate@binkert.org */
386145Snate@binkert.org
397054Snate@binkert.org#ifndef __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
407054Snate@binkert.org#define __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
416145Snate@binkert.org
427002Snate@binkert.org#include <iostream>
437454Snate@binkert.org#include <vector>
447002Snate@binkert.org
459389Sandreas.hansson@arm.com#include "mem/packet.hh"
469389Sandreas.hansson@arm.com#include "mem/ruby/common/TypeDefines.hh"
479274Snilay@cs.wisc.edu#include "mem/ruby/network/BasicRouter.hh"
489274Snilay@cs.wisc.edu#include "params/Switch.hh"
499274Snilay@cs.wisc.edu
506145Snate@binkert.orgclass MessageBuffer;
516145Snate@binkert.orgclass PerfectSwitch;
526145Snate@binkert.orgclass NetDest;
536145Snate@binkert.orgclass SimpleNetwork;
546145Snate@binkert.orgclass Throttle;
556145Snate@binkert.org
569274Snilay@cs.wisc.educlass Switch : public BasicRouter
577054Snate@binkert.org{
587054Snate@binkert.org  public:
599274Snilay@cs.wisc.edu    typedef SwitchParams Params;
609274Snilay@cs.wisc.edu    Switch(const Params *p);
617054Snate@binkert.org    ~Switch();
626145Snate@binkert.org
639274Snilay@cs.wisc.edu    void init();
647454Snate@binkert.org    void addInPort(const std::vector<MessageBuffer*>& in);
657454Snate@binkert.org    void addOutPort(const std::vector<MessageBuffer*>& out,
669499Snilay@cs.wisc.edu        const NetDest& routing_table_entry, Cycles link_latency,
677054Snate@binkert.org        int bw_multiplier);
687054Snate@binkert.org    const Throttle* getThrottle(LinkID link_number) const;
697454Snate@binkert.org    const std::vector<Throttle*>* getThrottles() const;
706145Snate@binkert.org
719863Snilay@cs.wisc.edu    void resetStats();
729863Snilay@cs.wisc.edu    void collateStats();
739863Snilay@cs.wisc.edu    void regStats();
749863Snilay@cs.wisc.edu    const Stats::Formula & getMsgCount(unsigned int type) const
759863Snilay@cs.wisc.edu    { return m_msg_counts[type]; }
769863Snilay@cs.wisc.edu
777054Snate@binkert.org    void print(std::ostream& out) const;
789274Snilay@cs.wisc.edu    void init_net_ptr(SimpleNetwork* net_ptr) { m_network_ptr = net_ptr; }
796145Snate@binkert.org
809302Snilay@cs.wisc.edu    bool functionalRead(Packet *);
819302Snilay@cs.wisc.edu    uint32_t functionalWrite(Packet *);
829302Snilay@cs.wisc.edu
837054Snate@binkert.org  private:
847054Snate@binkert.org    // Private copy constructor and assignment operator
857054Snate@binkert.org    Switch(const Switch& obj);
867054Snate@binkert.org    Switch& operator=(const Switch& obj);
876145Snate@binkert.org
889858Snilay@cs.wisc.edu    PerfectSwitch* m_perfect_switch;
898259SBrad.Beckmann@amd.com    SimpleNetwork* m_network_ptr;
907454Snate@binkert.org    std::vector<Throttle*> m_throttles;
917454Snate@binkert.org    std::vector<MessageBuffer*> m_buffers_to_free;
929863Snilay@cs.wisc.edu
939863Snilay@cs.wisc.edu    // Statistical variables
949863Snilay@cs.wisc.edu    Stats::Formula m_avg_utilization;
959863Snilay@cs.wisc.edu    std::vector<Stats::Formula> m_msg_counts;
969863Snilay@cs.wisc.edu    std::vector<Stats::Formula> m_msg_bytes;
976145Snate@binkert.org};
986145Snate@binkert.org
997054Snate@binkert.orginline std::ostream&
1007054Snate@binkert.orgoperator<<(std::ostream& out, const Switch& obj)
1016145Snate@binkert.org{
1027054Snate@binkert.org    obj.print(out);
1037054Snate@binkert.org    out << std::flush;
1047054Snate@binkert.org    return out;
1056145Snate@binkert.org}
1066145Snate@binkert.org
1077054Snate@binkert.org#endif // __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
108