BadDevice.py revision 9338
12SN/A# Copyright (c) 2005-2007 The Regents of The University of Michigan
29608Sandreas.hansson@arm.com# All rights reserved.
38707Sandreas.hansson@arm.com#
48707Sandreas.hansson@arm.com# Redistribution and use in source and binary forms, with or without
58707Sandreas.hansson@arm.com# modification, are permitted provided that the following conditions are
68707Sandreas.hansson@arm.com# met: redistributions of source code must retain the above copyright
78707Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer;
88707Sandreas.hansson@arm.com# redistributions in binary form must reproduce the above copyright
98707Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer in the
108707Sandreas.hansson@arm.com# documentation and/or other materials provided with the distribution;
118707Sandreas.hansson@arm.com# neither the name of the copyright holders nor the names of its
128707Sandreas.hansson@arm.com# contributors may be used to endorse or promote products derived from
138707Sandreas.hansson@arm.com# this software without specific prior written permission.
141762SN/A#
157897Shestness@cs.utexas.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
162SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
172SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
182SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
192SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
202SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
212SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
222SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
232SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
242SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
252SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
262SN/A#
272SN/A# Authors: Nathan Binkert
282SN/A
292SN/Afrom m5.params import *
302SN/Afrom Device import BasicPioDevice
312SN/A
322SN/Aclass BadDevice(BasicPioDevice):
332SN/A    type = 'BadDevice'
342SN/A    cxx_header = "dev/baddev.hh"
352SN/A    devicename = Param.String("Name of device to error on")
362SN/A