16757SAli.Saidi@ARM.com# -*- mode:python -*-
26757SAli.Saidi@ARM.com
310037SARM gem5 Developers# Copyright (c) 2009, 2012-2013 ARM Limited
46757SAli.Saidi@ARM.com# All rights reserved.
56757SAli.Saidi@ARM.com#
67090SAli.Saidi@ARM.com# The license below extends only to copyright in the software and shall
77090SAli.Saidi@ARM.com# not be construed as granting a license to any other intellectual
87090SAli.Saidi@ARM.com# property including but not limited to intellectual property relating
97090SAli.Saidi@ARM.com# to a hardware implementation of the functionality of the software
107090SAli.Saidi@ARM.com# licensed hereunder.  You may use the software subject to the license
117090SAli.Saidi@ARM.com# terms below provided that you ensure that this notice is replicated
127090SAli.Saidi@ARM.com# unmodified and in its entirety in all distributions of the software,
137090SAli.Saidi@ARM.com# modified or unmodified, in source code or in binary form.
147090SAli.Saidi@ARM.com#
156757SAli.Saidi@ARM.com# Redistribution and use in source and binary forms, with or without
166757SAli.Saidi@ARM.com# modification, are permitted provided that the following conditions are
176757SAli.Saidi@ARM.com# met: redistributions of source code must retain the above copyright
186757SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer;
196757SAli.Saidi@ARM.com# redistributions in binary form must reproduce the above copyright
206757SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer in the
216757SAli.Saidi@ARM.com# documentation and/or other materials provided with the distribution;
226757SAli.Saidi@ARM.com# neither the name of the copyright holders nor the names of its
236757SAli.Saidi@ARM.com# contributors may be used to endorse or promote products derived from
246757SAli.Saidi@ARM.com# this software without specific prior written permission.
256757SAli.Saidi@ARM.com#
266757SAli.Saidi@ARM.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
276757SAli.Saidi@ARM.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
286757SAli.Saidi@ARM.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
296757SAli.Saidi@ARM.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
306757SAli.Saidi@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
316757SAli.Saidi@ARM.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
326757SAli.Saidi@ARM.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
336757SAli.Saidi@ARM.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
346757SAli.Saidi@ARM.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
356757SAli.Saidi@ARM.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
366757SAli.Saidi@ARM.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
376757SAli.Saidi@ARM.com#
386757SAli.Saidi@ARM.com# Authors: Ali Saidi
396757SAli.Saidi@ARM.com
406757SAli.Saidi@ARM.comImport('*')
416757SAli.Saidi@ARM.com
428739Sgblack@eecs.umich.eduif env['TARGET_ISA'] == 'arm':
4310801Srene.dejong@arm.com    SimObject('AbstractNVM.py')
4414283Sgiacomo.travaglini@arm.com    SimObject('Display.py')
4510801Srene.dejong@arm.com    SimObject('FlashDevice.py')
469525SAndreas.Sandberg@ARM.com    SimObject('Gic.py')
477584SAli.Saidi@arm.com    SimObject('RealView.py')
4814039Sstacze01@arm.com    SimObject('SMMUv3.py')
4910802Srene.dejong@arm.com    SimObject('UFSHostDevice.py')
5010396Sakash.bagdia@arm.com    SimObject('EnergyCtrl.py')
5110916Sandreas.sandberg@arm.com    SimObject('NoMali.py')
5212740Sandreas.sandberg@arm.com    SimObject('VirtIOMMIO.py')
536757SAli.Saidi@ARM.com
548282SAli.Saidi@ARM.com    Source('a9scu.cc')
557584SAli.Saidi@arm.com    Source('amba_device.cc')
567584SAli.Saidi@arm.com    Source('amba_fake.cc')
579525SAndreas.Sandberg@ARM.com    Source('base_gic.cc')
5814283Sgiacomo.travaglini@arm.com    Source('display.cc')
5910801Srene.dejong@arm.com    Source('flash_device.cc')
6010037SARM gem5 Developers    Source('generic_timer.cc')
6113014Sciro.santilli@arm.com    Source('gic_v2.cc')
6210749Smatt.evans@arm.com    Source('gic_v2m.cc')
6313531Sjairo.balart@metempsy.com    Source('gic_v3.cc')
6413531Sjairo.balart@metempsy.com    Source('gic_v3_cpu_interface.cc')
6513531Sjairo.balart@metempsy.com    Source('gic_v3_distributor.cc')
6613531Sjairo.balart@metempsy.com    Source('gic_v3_redistributor.cc')
6713996Sgiacomo.travaglini@arm.com    Source('gic_v3_its.cc')
687584SAli.Saidi@arm.com    Source('pl011.cc')
697753SWilliam.Wang@arm.com    Source('pl111.cc')
709646SChris.Emmons@arm.com    Source('hdlcd.cc')
717754SWilliam.Wang@arm.com    Source('kmi.cc')
7214039Sstacze01@arm.com    Source('smmu_v3.cc');
7314039Sstacze01@arm.com    Source('smmu_v3_caches.cc');
7414039Sstacze01@arm.com    Source('smmu_v3_cmdexec.cc');
7514039Sstacze01@arm.com    Source('smmu_v3_events.cc');
7614039Sstacze01@arm.com    Source('smmu_v3_ports.cc');
7714039Sstacze01@arm.com    Source('smmu_v3_proc.cc');
7814039Sstacze01@arm.com    Source('smmu_v3_ptops.cc');
7914039Sstacze01@arm.com    Source('smmu_v3_slaveifc.cc');
8014039Sstacze01@arm.com    Source('smmu_v3_transl.cc');
817584SAli.Saidi@arm.com    Source('timer_sp804.cc')
8210916Sandreas.sandberg@arm.com    Source('gpu_nomali.cc')
8311296Sandreas.sandberg@arm.com    Source('pci_host.cc')
847584SAli.Saidi@arm.com    Source('rv_ctrl.cc')
857584SAli.Saidi@arm.com    Source('realview.cc')
868869SAli.Saidi@ARM.com    Source('rtc_pl031.cc')
878512Sgeoffrey.blake@arm.com    Source('timer_cpulocal.cc')
8812077Sgedare@rtems.org    Source('timer_a9global.cc')
8910037SARM gem5 Developers    Source('vgic.cc')
9012740Sandreas.sandberg@arm.com    Source('vio_mmio.cc')
9110802Srene.dejong@arm.com    Source('ufs_device.cc')
9210396Sakash.bagdia@arm.com    Source('energy_ctrl.cc')
937584SAli.Saidi@arm.com
948335Snate@binkert.org    DebugFlag('AMBA')
9510801Srene.dejong@arm.com    DebugFlag('FlashDevice')
969646SChris.Emmons@arm.com    DebugFlag('HDLcd')
978335Snate@binkert.org    DebugFlag('PL111')
9810749Smatt.evans@arm.com    DebugFlag('GICV2M')
998335Snate@binkert.org    DebugFlag('Pl050')
1008335Snate@binkert.org    DebugFlag('GIC')
10113996Sgiacomo.travaglini@arm.com    DebugFlag('ITS')
1029958Smatt.evans@arm.com    DebugFlag('RVCTRL')
10314039Sstacze01@arm.com    DebugFlag('SMMUv3')
10414039Sstacze01@arm.com    DebugFlag('SMMUv3Hazard')
10510396Sakash.bagdia@arm.com    DebugFlag('EnergyCtrl')
10610802Srene.dejong@arm.com    DebugFlag('UFSHostDevice')
10710037SARM gem5 Developers    DebugFlag('VGIC')
10810916Sandreas.sandberg@arm.com    DebugFlag('NoMali')
109