addr_mapper.cc (9814:7ad2b0186a32) | addr_mapper.cc (10713:eddb533708cb) |
---|---|
1/* 2 * Copyright (c) 2012 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 --- 176 unchanged lines hidden (view full) --- 185AddrMapper::isSnooping() const 186{ 187 if (slavePort.isSnooping()) 188 fatal("AddrMapper doesn't support remapping of snooping requests\n"); 189 return false; 190} 191 192void | 1/* 2 * Copyright (c) 2012 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 --- 176 unchanged lines hidden (view full) --- 185AddrMapper::isSnooping() const 186{ 187 if (slavePort.isSnooping()) 188 fatal("AddrMapper doesn't support remapping of snooping requests\n"); 189 return false; 190} 191 192void |
193AddrMapper::recvRetryMaster() | 193AddrMapper::recvReqRetry() |
194{ | 194{ |
195 slavePort.sendRetry(); | 195 slavePort.sendRetryReq(); |
196} 197 198void | 196} 197 198void |
199AddrMapper::recvRetrySlave() | 199AddrMapper::recvRespRetry() |
200{ | 200{ |
201 masterPort.sendRetry(); | 201 masterPort.sendRetryResp(); |
202} 203 204void 205AddrMapper::recvRangeChange() 206{ 207 slavePort.sendRangeChange(); 208} 209 --- 44 unchanged lines hidden --- | 202} 203 204void 205AddrMapper::recvRangeChange() 206{ 207 slavePort.sendRangeChange(); 208} 209 --- 44 unchanged lines hidden --- |