/** * **************************************************************************** * Copyright (c) 2010-2016 by Min Cai (min.cai.china@gmail.com). * <p> * This file is part of the Archimulator multicore architectural simulator. * <p> * Archimulator is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * <p> * Archimulator is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * <p> * You should have received a copy of the GNU General Public License * along with Archimulator. If not, see <http://www.gnu.org/licenses/>. * **************************************************************************** */ package archimulator.uncore.noc.routers; import archimulator.uncore.noc.util.RoundRobinArbiter; import java.util.ArrayList; import java.util.List; /** * Virtual channel arbiter. * * @author Min Cai */ public class VirtualChannelArbiter extends RoundRobinArbiter<OutputVirtualChannel, InputVirtualChannel> { private List<InputVirtualChannel> inputVirtualChannels; /** * Create a virtual channel arbiter. * * @param outputVirtualChannel the output virtual channel */ public VirtualChannelArbiter(OutputVirtualChannel outputVirtualChannel) { super(outputVirtualChannel); } @Override protected List<InputVirtualChannel> getRequesters() { if(inputVirtualChannels == null) { inputVirtualChannels = new ArrayList<>(); for(InputPort inputPort : this.getResource().getOutputPort().getRouter().getInputPorts().values()) { inputVirtualChannels.addAll(inputPort.getVirtualChannels()); } } return inputVirtualChannels; } /** * Get a boolean value indicating whether the output virtual channel is available or not. * * @param outputVirtualChannel the output virtual channel * @return a boolean value indicating whether the output virtual channel is available or not */ @Override protected boolean resourceAvailable(OutputVirtualChannel outputVirtualChannel) { return outputVirtualChannel.getInputVirtualChannel() == null; } /** * Get a boolean value indicating whether the input virtual channel has flits to be processed or not. * * @param inputVirtualChannel the input virtual channel * @return a boolean value indicating whether the input virtual channel has flits to be processed or not */ @Override protected boolean requesterHasRequests(InputVirtualChannel inputVirtualChannel) { if(inputVirtualChannel.getRoute() == this.getResource().getOutputPort().getDirection()) { Flit flit = inputVirtualChannel.getInputBuffer().peek(); return flit != null && flit.isHead() && flit.getState() == FlitState.ROUTE_COMPUTATION; } return false; } }