SConscript revision 14283:b02cde4661e1
1955SN/A# -*- mode:python -*- 2955SN/A 31762SN/A# Copyright (c) 2009, 2012-2013 ARM Limited 4955SN/A# All rights reserved. 5955SN/A# 6955SN/A# The license below extends only to copyright in the software and shall 7955SN/A# not be construed as granting a license to any other intellectual 8955SN/A# property including but not limited to intellectual property relating 9955SN/A# to a hardware implementation of the functionality of the software 10955SN/A# licensed hereunder. You may use the software subject to the license 11955SN/A# terms below provided that you ensure that this notice is replicated 12955SN/A# unmodified and in its entirety in all distributions of the software, 13955SN/A# modified or unmodified, in source code or in binary form. 14955SN/A# 15955SN/A# Redistribution and use in source and binary forms, with or without 16955SN/A# modification, are permitted provided that the following conditions are 17955SN/A# met: redistributions of source code must retain the above copyright 18955SN/A# notice, this list of conditions and the following disclaimer; 19955SN/A# redistributions in binary form must reproduce the above copyright 20955SN/A# notice, this list of conditions and the following disclaimer in the 21955SN/A# documentation and/or other materials provided with the distribution; 22955SN/A# neither the name of the copyright holders nor the names of its 23955SN/A# contributors may be used to endorse or promote products derived from 24955SN/A# this software without specific prior written permission. 25955SN/A# 26955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 27955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 282665Ssaidi@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 294762Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 30955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 315522Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 326143Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 334762Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 345522Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 35955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 365522Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 37955SN/A# 385522Snate@binkert.org# Authors: Ali Saidi 394202Sbinkertn@umich.edu 405742Snate@binkert.orgImport('*') 41955SN/A 424381Sbinkertn@umich.eduif env['TARGET_ISA'] == 'arm': 434381Sbinkertn@umich.edu SimObject('AbstractNVM.py') 448334Snate@binkert.org SimObject('Display.py') 45955SN/A SimObject('FlashDevice.py') 46955SN/A SimObject('Gic.py') 474202Sbinkertn@umich.edu SimObject('RealView.py') 48955SN/A SimObject('SMMUv3.py') 494382Sbinkertn@umich.edu SimObject('UFSHostDevice.py') 504382Sbinkertn@umich.edu SimObject('EnergyCtrl.py') 514382Sbinkertn@umich.edu SimObject('NoMali.py') 526654Snate@binkert.org SimObject('VirtIOMMIO.py') 535517Snate@binkert.org 548614Sgblack@eecs.umich.edu Source('a9scu.cc') 557674Snate@binkert.org Source('amba_device.cc') 566143Snate@binkert.org Source('amba_fake.cc') 576143Snate@binkert.org Source('base_gic.cc') 586143Snate@binkert.org Source('display.cc') 598233Snate@binkert.org Source('flash_device.cc') 608233Snate@binkert.org Source('generic_timer.cc') 618233Snate@binkert.org Source('gic_v2.cc') 628233Snate@binkert.org Source('gic_v2m.cc') 638233Snate@binkert.org Source('gic_v3.cc') 648334Snate@binkert.org Source('gic_v3_cpu_interface.cc') 658334Snate@binkert.org Source('gic_v3_distributor.cc') 668233Snate@binkert.org Source('gic_v3_redistributor.cc') 678233Snate@binkert.org Source('gic_v3_its.cc') 688233Snate@binkert.org Source('pl011.cc') 698233Snate@binkert.org Source('pl111.cc') 708233Snate@binkert.org Source('hdlcd.cc') 718233Snate@binkert.org Source('kmi.cc') 726143Snate@binkert.org Source('smmu_v3.cc'); 738233Snate@binkert.org Source('smmu_v3_caches.cc'); 748233Snate@binkert.org Source('smmu_v3_cmdexec.cc'); 758233Snate@binkert.org Source('smmu_v3_events.cc'); 766143Snate@binkert.org Source('smmu_v3_ports.cc'); 776143Snate@binkert.org Source('smmu_v3_proc.cc'); 786143Snate@binkert.org Source('smmu_v3_ptops.cc'); 796143Snate@binkert.org Source('smmu_v3_slaveifc.cc'); 808233Snate@binkert.org Source('smmu_v3_transl.cc'); 818233Snate@binkert.org Source('timer_sp804.cc') 828233Snate@binkert.org Source('gpu_nomali.cc') 836143Snate@binkert.org Source('pci_host.cc') 848233Snate@binkert.org Source('rv_ctrl.cc') 858233Snate@binkert.org Source('realview.cc') 868233Snate@binkert.org Source('rtc_pl031.cc') 878233Snate@binkert.org Source('timer_cpulocal.cc') 886143Snate@binkert.org Source('timer_a9global.cc') 896143Snate@binkert.org Source('vgic.cc') 906143Snate@binkert.org Source('vio_mmio.cc') 914762Snate@binkert.org Source('ufs_device.cc') 926143Snate@binkert.org Source('energy_ctrl.cc') 938233Snate@binkert.org 948233Snate@binkert.org DebugFlag('AMBA') 958233Snate@binkert.org DebugFlag('FlashDevice') 968233Snate@binkert.org DebugFlag('HDLcd') 978233Snate@binkert.org DebugFlag('PL111') 986143Snate@binkert.org DebugFlag('GICV2M') 998233Snate@binkert.org DebugFlag('Pl050') 1008233Snate@binkert.org DebugFlag('GIC') 1018233Snate@binkert.org DebugFlag('ITS') 1028233Snate@binkert.org DebugFlag('RVCTRL') 1036143Snate@binkert.org DebugFlag('SMMUv3') 1046143Snate@binkert.org DebugFlag('SMMUv3Hazard') 1056143Snate@binkert.org DebugFlag('EnergyCtrl') 1066143Snate@binkert.org DebugFlag('UFSHostDevice') 1076143Snate@binkert.org DebugFlag('VGIC') 1086143Snate@binkert.org DebugFlag('NoMali') 1096143Snate@binkert.org