intdev.hh (9090:e4e22240398f) intdev.hh (9549:95a536fae9ac)
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

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

76
77 AddrRangeList getAddrRanges() const
78 {
79 return device->getIntAddrRange();
80 }
81
82 Tick recvMessage(PacketPtr pkt)
83 {
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

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

76
77 AddrRangeList getAddrRanges() const
78 {
79 return device->getIntAddrRange();
80 }
81
82 Tick recvMessage(PacketPtr pkt)
83 {
84 // @todo someone should pay for this
85 pkt->busFirstWordDelay = pkt->busLastWordDelay = 0;
84 return device->recvMessage(pkt);
85 }
86 };
87
88 class IntMasterPort : public MessageMasterPort
89 {
90 IntDev* device;
91 Tick latency;

--- 156 unchanged lines hidden ---
86 return device->recvMessage(pkt);
87 }
88 };
89
90 class IntMasterPort : public MessageMasterPort
91 {
92 IntDev* device;
93 Tick latency;

--- 156 unchanged lines hidden ---