Switch.hh revision 9858
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;
707054Snate@binkert.org    void clearRoutingTables();
717054Snate@binkert.org    void clearBuffers();
727054Snate@binkert.org    void reconfigureOutPort(const NetDest& routing_table_entry);
736145Snate@binkert.org
747054Snate@binkert.org    void printStats(std::ostream& out) const;
757054Snate@binkert.org    void clearStats();
767054Snate@binkert.org    void print(std::ostream& out) const;
779274Snilay@cs.wisc.edu    void init_net_ptr(SimpleNetwork* net_ptr) { m_network_ptr = net_ptr; }
786145Snate@binkert.org
799302Snilay@cs.wisc.edu    bool functionalRead(Packet *);
809302Snilay@cs.wisc.edu    uint32_t functionalWrite(Packet *);
819302Snilay@cs.wisc.edu
827054Snate@binkert.org  private:
837054Snate@binkert.org    // Private copy constructor and assignment operator
847054Snate@binkert.org    Switch(const Switch& obj);
857054Snate@binkert.org    Switch& operator=(const Switch& obj);
866145Snate@binkert.org
879858Snilay@cs.wisc.edu    PerfectSwitch* m_perfect_switch;
888259SBrad.Beckmann@amd.com    SimpleNetwork* m_network_ptr;
897454Snate@binkert.org    std::vector<Throttle*> m_throttles;
907454Snate@binkert.org    std::vector<MessageBuffer*> m_buffers_to_free;
916145Snate@binkert.org};
926145Snate@binkert.org
937054Snate@binkert.orginline std::ostream&
947054Snate@binkert.orgoperator<<(std::ostream& out, const Switch& obj)
956145Snate@binkert.org{
967054Snate@binkert.org    obj.print(out);
977054Snate@binkert.org    out << std::flush;
987054Snate@binkert.org    return out;
996145Snate@binkert.org}
1006145Snate@binkert.org
1017054Snate@binkert.org#endif // __MEM_RUBY_NETWORK_SIMPLE_SWITCH_HH__
102