system.cc (12534:2a328f335f19) system.cc (13173:210b6fc57533)
1/*
2 * Copyright (c) 2010, 2012-2013, 2015,2017-2018 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

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

56using namespace Linux;
57
58ArmSystem::ArmSystem(Params *p)
59 : System(p),
60 bootLoaders(), bootldr(nullptr),
61 _haveSecurity(p->have_security),
62 _haveLPAE(p->have_lpae),
63 _haveVirtualization(p->have_virtualization),
1/*
2 * Copyright (c) 2010, 2012-2013, 2015,2017-2018 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

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

56using namespace Linux;
57
58ArmSystem::ArmSystem(Params *p)
59 : System(p),
60 bootLoaders(), bootldr(nullptr),
61 _haveSecurity(p->have_security),
62 _haveLPAE(p->have_lpae),
63 _haveVirtualization(p->have_virtualization),
64 _haveCrypto(p->have_crypto),
64 _genericTimer(nullptr),
65 _highestELIs64(p->highest_el_is_64),
66 _resetAddr64(p->auto_reset_addr_64 ?
67 (kernelEntry & loadAddrMask) + loadAddrOffset :
68 p->reset_addr_64),
69 _physAddrRange64(p->phys_addr_range_64),
70 _haveLargeAsid64(p->have_large_asid_64),
71 _m5opRange(p->m5ops_base ?

--- 245 unchanged lines hidden ---
65 _genericTimer(nullptr),
66 _highestELIs64(p->highest_el_is_64),
67 _resetAddr64(p->auto_reset_addr_64 ?
68 (kernelEntry & loadAddrMask) + loadAddrOffset :
69 p->reset_addr_64),
70 _physAddrRange64(p->phys_addr_range_64),
71 _haveLargeAsid64(p->have_large_asid_64),
72 _m5opRange(p->m5ops_base ?

--- 245 unchanged lines hidden ---