noncoherent_xbar.cc (11284:b3926db25371) noncoherent_xbar.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2011-2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 33 unchanged lines hidden (view full) ---

42 * William Wang
43 */
44
45/**
46 * @file
47 * Definition of a non-coherent crossbar object.
48 */
49
1/*
2 * Copyright (c) 2011-2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 33 unchanged lines hidden (view full) ---

42 * William Wang
43 */
44
45/**
46 * @file
47 * Definition of a non-coherent crossbar object.
48 */
49
50#include "mem/noncoherent_xbar.hh"
51
50#include "base/misc.hh"
51#include "base/trace.hh"
52#include "debug/NoncoherentXBar.hh"
53#include "debug/XBar.hh"
52#include "base/misc.hh"
53#include "base/trace.hh"
54#include "debug/NoncoherentXBar.hh"
55#include "debug/XBar.hh"
54#include "mem/noncoherent_xbar.hh"
55
56NoncoherentXBar::NoncoherentXBar(const NoncoherentXBarParams *p)
57 : BaseXBar(p)
58{
59 // create the ports based on the size of the master and slave
60 // vector ports, and the presence of the default port, the ports
61 // are enumerated starting from zero
62 for (int i = 0; i < p->port_master_connection_count; ++i) {

--- 266 unchanged lines hidden ---
56
57NoncoherentXBar::NoncoherentXBar(const NoncoherentXBarParams *p)
58 : BaseXBar(p)
59{
60 // create the ports based on the size of the master and slave
61 // vector ports, and the presence of the default port, the ports
62 // are enumerated starting from zero
63 for (int i = 0; i < p->port_master_connection_count; ++i) {

--- 266 unchanged lines hidden ---