SConscript revision 7754:8ae6f4055594
14484Sbinkertn@umich.edu# -*- mode:python -*-
24484Sbinkertn@umich.edu
34484Sbinkertn@umich.edu# Copyright (c) 2009 ARM Limited
44484Sbinkertn@umich.edu# All rights reserved.
54484Sbinkertn@umich.edu#
64484Sbinkertn@umich.edu# The license below extends only to copyright in the software and shall
74484Sbinkertn@umich.edu# not be construed as granting a license to any other intellectual
84484Sbinkertn@umich.edu# property including but not limited to intellectual property relating
94484Sbinkertn@umich.edu# to a hardware implementation of the functionality of the software
104484Sbinkertn@umich.edu# licensed hereunder.  You may use the software subject to the license
114484Sbinkertn@umich.edu# terms below provided that you ensure that this notice is replicated
124484Sbinkertn@umich.edu# unmodified and in its entirety in all distributions of the software,
134484Sbinkertn@umich.edu# modified or unmodified, in source code or in binary form.
144484Sbinkertn@umich.edu#
154484Sbinkertn@umich.edu# Redistribution and use in source and binary forms, with or without
164484Sbinkertn@umich.edu# modification, are permitted provided that the following conditions are
174484Sbinkertn@umich.edu# met: redistributions of source code must retain the above copyright
184484Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer;
194484Sbinkertn@umich.edu# redistributions in binary form must reproduce the above copyright
204484Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer in the
214484Sbinkertn@umich.edu# documentation and/or other materials provided with the distribution;
224484Sbinkertn@umich.edu# neither the name of the copyright holders nor the names of its
234484Sbinkertn@umich.edu# contributors may be used to endorse or promote products derived from
244484Sbinkertn@umich.edu# this software without specific prior written permission.
254484Sbinkertn@umich.edu#
264484Sbinkertn@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
274484Sbinkertn@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
284484Sbinkertn@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
294484Sbinkertn@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
304484Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
314494Ssaidi@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
324484Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
336121Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
344484Sbinkertn@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
354484Sbinkertn@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
364484Sbinkertn@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
374484Sbinkertn@umich.edu#
384781Snate@binkert.org# Authors: Ali Saidi
394484Sbinkertn@umich.edu
404484Sbinkertn@umich.eduImport('*')
414484Sbinkertn@umich.edu
424484Sbinkertn@umich.eduif env['FULL_SYSTEM'] and env['TARGET_ISA'] == 'arm':
434484Sbinkertn@umich.edu    SimObject('RealView.py')
444484Sbinkertn@umich.edu
454484Sbinkertn@umich.edu    Source('amba_device.cc')
464484Sbinkertn@umich.edu    Source('amba_fake.cc')
474484Sbinkertn@umich.edu    Source('gic.cc')
484484Sbinkertn@umich.edu    Source('pl011.cc')
494484Sbinkertn@umich.edu    Source('pl111.cc')
504484Sbinkertn@umich.edu    Source('kmi.cc')
514484Sbinkertn@umich.edu    Source('timer_sp804.cc')
524484Sbinkertn@umich.edu    Source('rv_ctrl.cc')
534484Sbinkertn@umich.edu    Source('realview.cc')
544484Sbinkertn@umich.edu
554484Sbinkertn@umich.edu    TraceFlag('AMBA')
564484Sbinkertn@umich.edu    TraceFlag('PL111')
574484Sbinkertn@umich.edu    TraceFlag('Pl050')
584484Sbinkertn@umich.edu    TraceFlag('GIC')
594484Sbinkertn@umich.edu