SConscript revision 8951
12929Sktlim@umich.edu# -*- mode:python -*- 22929Sktlim@umich.edu 32932Sktlim@umich.edu# Copyright (c) 2009 ARM Limited 42929Sktlim@umich.edu# All rights reserved. 52929Sktlim@umich.edu# 62929Sktlim@umich.edu# The license below extends only to copyright in the software and shall 72929Sktlim@umich.edu# not be construed as granting a license to any other intellectual 82929Sktlim@umich.edu# property including but not limited to intellectual property relating 92929Sktlim@umich.edu# to a hardware implementation of the functionality of the software 102929Sktlim@umich.edu# licensed hereunder. You may use the software subject to the license 112929Sktlim@umich.edu# terms below provided that you ensure that this notice is replicated 122929Sktlim@umich.edu# unmodified and in its entirety in all distributions of the software, 132929Sktlim@umich.edu# modified or unmodified, in source code or in binary form. 142929Sktlim@umich.edu# 152929Sktlim@umich.edu# Redistribution and use in source and binary forms, with or without 162929Sktlim@umich.edu# modification, are permitted provided that the following conditions are 172929Sktlim@umich.edu# met: redistributions of source code must retain the above copyright 182929Sktlim@umich.edu# notice, this list of conditions and the following disclaimer; 192929Sktlim@umich.edu# redistributions in binary form must reproduce the above copyright 202929Sktlim@umich.edu# notice, this list of conditions and the following disclaimer in the 212929Sktlim@umich.edu# documentation and/or other materials provided with the distribution; 222929Sktlim@umich.edu# neither the name of the copyright holders nor the names of its 232929Sktlim@umich.edu# contributors may be used to endorse or promote products derived from 242929Sktlim@umich.edu# this software without specific prior written permission. 252929Sktlim@umich.edu# 262929Sktlim@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 272929Sktlim@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 282932Sktlim@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 292932Sktlim@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 302932Sktlim@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 312929Sktlim@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 326007Ssteve.reinhardt@amd.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 337735SAli.Saidi@ARM.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 342929Sktlim@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 352929Sktlim@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 362929Sktlim@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 372929Sktlim@umich.edu# 382929Sktlim@umich.edu# Authors: Ali Saidi 392929Sktlim@umich.edu 402929Sktlim@umich.eduImport('*') 418947Sandreas.hansson@arm.com 428947Sandreas.hansson@arm.comif env['TARGET_ISA'] == 'arm': 438947Sandreas.hansson@arm.com SimObject('RealView.py') 442929Sktlim@umich.edu 452929Sktlim@umich.edu Source('a9scu.cc') 462929Sktlim@umich.edu Source('amba_device.cc') 472929Sktlim@umich.edu Source('amba_fake.cc') 482929Sktlim@umich.edu Source('gic.cc') 492929Sktlim@umich.edu Source('pl011.cc') 506007Ssteve.reinhardt@amd.com Source('pl111.cc') 516007Ssteve.reinhardt@amd.com Source('kmi.cc') 526007Ssteve.reinhardt@amd.com Source('timer_sp804.cc') 536007Ssteve.reinhardt@amd.com Source('rv_ctrl.cc') 546007Ssteve.reinhardt@amd.com Source('realview.cc') 556007Ssteve.reinhardt@amd.com Source('rtc_pl031.cc') 566007Ssteve.reinhardt@amd.com Source('timer_cpulocal.cc') 576007Ssteve.reinhardt@amd.com 586007Ssteve.reinhardt@amd.com DebugFlag('AMBA') 596007Ssteve.reinhardt@amd.com DebugFlag('PL111') 606007Ssteve.reinhardt@amd.com DebugFlag('Pl050') 616007Ssteve.reinhardt@amd.com DebugFlag('GIC') 626007Ssteve.reinhardt@amd.com