comm_monitor.cc (9785:face72b7bb78) comm_monitor.cc (9814:7ad2b0186a32)
1/*
2 * Copyright (c) 2012-2013 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

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

373
374bool
375CommMonitor::isSnooping() const
376{
377 // check if the connected master port is snooping
378 return slavePort.isSnooping();
379}
380
1/*
2 * Copyright (c) 2012-2013 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

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

373
374bool
375CommMonitor::isSnooping() const
376{
377 // check if the connected master port is snooping
378 return slavePort.isSnooping();
379}
380
381unsigned
382CommMonitor::deviceBlockSizeMaster()
383{
384 return slavePort.peerBlockSize();
385}
386
387unsigned
388CommMonitor::deviceBlockSizeSlave()
389{
390 return masterPort.peerBlockSize();
391}
392
393AddrRangeList
394CommMonitor::getAddrRanges() const
395{
396 // get the address ranges of the connected slave port
397 return masterPort.getAddrRanges();
398}
399
400void

--- 186 unchanged lines hidden ---
381AddrRangeList
382CommMonitor::getAddrRanges() const
383{
384 // get the address ranges of the connected slave port
385 return masterPort.getAddrRanges();
386}
387
388void

--- 186 unchanged lines hidden ---