Switch.hh revision 9274
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
459274Snilay@cs.wisc.edu#include "mem/ruby/network/BasicRouter.hh"
469274Snilay@cs.wisc.edu#include "params/Switch.hh"
479274Snilay@cs.wisc.edu
486145Snate@binkert.orgclass MessageBuffer;
496145Snate@binkert.orgclass PerfectSwitch;
506145Snate@binkert.orgclass NetDest;
516145Snate@binkert.orgclass SimpleNetwork;
526145Snate@binkert.orgclass Throttle;
536145Snate@binkert.org
549274Snilay@cs.wisc.educlass Switch : public BasicRouter
557054Snate@binkert.org{
567054Snate@binkert.org  public:
579274Snilay@cs.wisc.edu    typedef SwitchParams Params;
589274Snilay@cs.wisc.edu    Switch(const Params *p);
597054Snate@binkert.org    ~Switch();
606145Snate@binkert.org
619274Snilay@cs.wisc.edu    void init();
627454Snate@binkert.org    void addInPort(const std::vector<MessageBuffer*>& in);
637454Snate@binkert.org    void addOutPort(const std::vector<MessageBuffer*>& out,
647054Snate@binkert.org        const NetDest& routing_table_entry, int link_latency,
657054Snate@binkert.org        int bw_multiplier);
667054Snate@binkert.org    const Throttle* getThrottle(LinkID link_number) const;
677454Snate@binkert.org    const std::vector<Throttle*>* getThrottles() const;
687054Snate@binkert.org    void clearRoutingTables();
697054Snate@binkert.org    void clearBuffers();
707054Snate@binkert.org    void reconfigureOutPort(const NetDest& routing_table_entry);
716145Snate@binkert.org
727054Snate@binkert.org    void printStats(std::ostream& out) const;
737054Snate@binkert.org    void clearStats();
747054Snate@binkert.org    void print(std::ostream& out) const;
759274Snilay@cs.wisc.edu    void init_net_ptr(SimpleNetwork* net_ptr) { m_network_ptr = net_ptr; }
766145Snate@binkert.org
777054Snate@binkert.org  private:
787054Snate@binkert.org    // Private copy constructor and assignment operator
797054Snate@binkert.org    Switch(const Switch& obj);
807054Snate@binkert.org    Switch& operator=(const Switch& obj);
816145Snate@binkert.org
827054Snate@binkert.org    PerfectSwitch* m_perfect_switch_ptr;
838259SBrad.Beckmann@amd.com    SimpleNetwork* m_network_ptr;
847454Snate@binkert.org    std::vector<Throttle*> m_throttles;
857454Snate@binkert.org    std::vector<MessageBuffer*> m_buffers_to_free;
866145Snate@binkert.org};
876145Snate@binkert.org
887054Snate@binkert.orginline std::ostream&
897054Snate@binkert.orgoperator<<(std::ostream& out, const Switch& obj)
906145Snate@binkert.org{
917054Snate@binkert.org    obj.print(out);
927054Snate@binkert.org    out << std::flush;
937054Snate@binkert.org    return out;
946145Snate@binkert.org}
956145Snate@binkert.org
967054Snate@binkert.org#endif // __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
97