SConscript revision 14270
17405SAli.Saidi@ARM.com# -*- mode:python -*-
211573SDylan.Johnson@ARM.com
37405SAli.Saidi@ARM.com# Copyright (c) 2006 The Regents of The University of Michigan
47405SAli.Saidi@ARM.com# All rights reserved.
57405SAli.Saidi@ARM.com#
67405SAli.Saidi@ARM.com# Redistribution and use in source and binary forms, with or without
77405SAli.Saidi@ARM.com# modification, are permitted provided that the following conditions are
87405SAli.Saidi@ARM.com# met: redistributions of source code must retain the above copyright
97405SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer;
107405SAli.Saidi@ARM.com# redistributions in binary form must reproduce the above copyright
117405SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer in the
127405SAli.Saidi@ARM.com# documentation and/or other materials provided with the distribution;
137405SAli.Saidi@ARM.com# neither the name of the copyright holders nor the names of its
147405SAli.Saidi@ARM.com# contributors may be used to endorse or promote products derived from
157405SAli.Saidi@ARM.com# this software without specific prior written permission.
167405SAli.Saidi@ARM.com#
177405SAli.Saidi@ARM.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
187405SAli.Saidi@ARM.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
197405SAli.Saidi@ARM.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
207405SAli.Saidi@ARM.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
217405SAli.Saidi@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
227405SAli.Saidi@ARM.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
237405SAli.Saidi@ARM.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
247405SAli.Saidi@ARM.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
257405SAli.Saidi@ARM.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
267405SAli.Saidi@ARM.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
277405SAli.Saidi@ARM.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
287405SAli.Saidi@ARM.com#
297405SAli.Saidi@ARM.com# Authors: Steve Reinhardt
307405SAli.Saidi@ARM.com#          Gabe Black
317405SAli.Saidi@ARM.com
327405SAli.Saidi@ARM.comImport('*')
337405SAli.Saidi@ARM.com
347405SAli.Saidi@ARM.comSimObject('Device.py')
357405SAli.Saidi@ARM.comSource('io_device.cc')
367405SAli.Saidi@ARM.comSource('isa_fake.cc')
377405SAli.Saidi@ARM.comSource('dma_device.cc')
387405SAli.Saidi@ARM.com
397405SAli.Saidi@ARM.comSimObject('IntPin.py')
407405SAli.Saidi@ARM.comSource('intpin.cc')
417405SAli.Saidi@ARM.com
4210461SAndreas.Sandberg@ARM.comDebugFlag('IsaFake')
439050Schander.sudanthi@arm.comDebugFlag('DMA')
4412406Sgabeblack@google.com
4511793Sbrandon.potter@amd.comSimObject('Platform.py')
468887Sgeoffrey.blake@arm.comSource('platform.cc')
478232Snate@binkert.org
488232Snate@binkert.orgif env['TARGET_ISA'] == 'null':
4910844Sandreas.sandberg@arm.com    Return()
509384SAndreas.Sandberg@arm.com
517678Sgblack@eecs.umich.eduSimObject('BadDevice.py')
528059SAli.Saidi@ARM.com
538284SAli.Saidi@ARM.comSource('baddev.cc')
547405SAli.Saidi@ARM.comSource('intel_8254_timer.cc')
557405SAli.Saidi@ARM.comSource('mc146818.cc')
567405SAli.Saidi@ARM.comSource('pixelpump.cc')
577405SAli.Saidi@ARM.com
589384SAndreas.Sandberg@arm.comDebugFlag('Intel8254Timer')
5910461SAndreas.Sandberg@ARM.comDebugFlag('MC146818')
6010461SAndreas.Sandberg@ARM.com