io_device.cc (11193:564e2e7e86f4) io_device.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2012, 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

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

36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Ali Saidi
41 * Nathan Binkert
42 */
43
1/*
2 * Copyright (c) 2012, 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

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

36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Ali Saidi
41 * Nathan Binkert
42 */
43
44#include "dev/io_device.hh"
45
44#include "base/trace.hh"
45#include "debug/AddrRanges.hh"
46#include "base/trace.hh"
47#include "debug/AddrRanges.hh"
46#include "dev/io_device.hh"
47#include "sim/system.hh"
48
49PioPort::PioPort(PioDevice *dev)
50 : SimpleTimingPort(dev->name() + ".pio", dev), device(dev)
51{
52}
53
54Tick

--- 57 unchanged lines hidden ---
48#include "sim/system.hh"
49
50PioPort::PioPort(PioDevice *dev)
51 : SimpleTimingPort(dev->name() + ".pio", dev), device(dev)
52{
53}
54
55Tick

--- 57 unchanged lines hidden ---