SConscript revision 10388
16657Snate@binkert.org# -*- mode:python -*- 211888Sleolson@google.com 36657Snate@binkert.org# Copyright (c) 2014 ARM Limited 46657Snate@binkert.org# All rights reserved. 56657Snate@binkert.org# 66657Snate@binkert.org# The license below extends only to copyright in the software and shall 76657Snate@binkert.org# not be construed as granting a license to any other intellectual 86657Snate@binkert.org# property including but not limited to intellectual property relating 96657Snate@binkert.org# to a hardware implementation of the functionality of the software 106657Snate@binkert.org# licensed hereunder. You may use the software subject to the license 116657Snate@binkert.org# terms below provided that you ensure that this notice is replicated 126657Snate@binkert.org# unmodified and in its entirety in all distributions of the software, 136657Snate@binkert.org# modified or unmodified, in source code or in binary form. 146657Snate@binkert.org# 156657Snate@binkert.org# Redistribution and use in source and binary forms, with or without 166657Snate@binkert.org# modification, are permitted provided that the following conditions are 176657Snate@binkert.org# met: redistributions of source code must retain the above copyright 186657Snate@binkert.org# notice, this list of conditions and the following disclaimer; 196657Snate@binkert.org# redistributions in binary form must reproduce the above copyright 206657Snate@binkert.org# notice, this list of conditions and the following disclaimer in the 216657Snate@binkert.org# documentation and/or other materials provided with the distribution; 226657Snate@binkert.org# neither the name of the copyright holders nor the names of its 236657Snate@binkert.org# contributors may be used to endorse or promote products derived from 246657Snate@binkert.org# this software without specific prior written permission. 256657Snate@binkert.org# 266657Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 276657Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 286657Snate@binkert.org# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 2911888Sleolson@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 306657Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 316657Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 326657Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 336657Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 346657Snate@binkert.org# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 356999Snate@binkert.org# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 368452Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 376657Snate@binkert.org# 386657Snate@binkert.org# Authors: Andreas Sandberg 396657Snate@binkert.org 406657Snate@binkert.orgImport('*') 416657Snate@binkert.org 426657Snate@binkert.orgif env['TARGET_ISA'] == 'null': 439219Spower.jg@gmail.com Return() 448454Snate@binkert.org 458454Snate@binkert.orgSimObject('VirtIO.py') 468453Snate@binkert.org 476999Snate@binkert.orgSource('base.cc') 489219Spower.jg@gmail.comSource('pci.cc') 496999Snate@binkert.org 508454Snate@binkert.orgDebugFlag('VIO', 'VirtIO base functionality') 518454Snate@binkert.orgDebugFlag('VIOPci', 'VirtIO PCI transport') 528454Snate@binkert.org