realview.cc (10356:198dfef33403) realview.cc (10537:47fe87b0cf97)
1/*
2 * Copyright (c) 2009, 2014 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

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

54#include "dev/arm/realview.hh"
55#include "dev/terminal.hh"
56#include "sim/system.hh"
57
58using namespace std;
59using namespace TheISA;
60
61RealView::RealView(const Params *p)
1/*
2 * Copyright (c) 2009, 2014 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

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

54#include "dev/arm/realview.hh"
55#include "dev/terminal.hh"
56#include "sim/system.hh"
57
58using namespace std;
59using namespace TheISA;
60
61RealView::RealView(const Params *p)
62 : Platform(p), system(p->system)
62 : Platform(p), system(p->system), gic(nullptr)
63{}
64
65void
66RealView::initState()
67{
68 Addr junk;
69 bool has_gen_pci_host;
70 has_gen_pci_host = system->kernelSymtab->findAddress("gen_pci_setup", junk);

--- 73 unchanged lines hidden ---
63{}
64
65void
66RealView::initState()
67{
68 Addr junk;
69 bool has_gen_pci_host;
70 has_gen_pci_host = system->kernelSymtab->findAddress("gen_pci_setup", junk);

--- 73 unchanged lines hidden ---