2004-02-09 19:40:58 +01:00
|
|
|
/*
|
2005-06-05 11:16:00 +02:00
|
|
|
* Copyright (c) 2004-2005 The Regents of The University of Michigan
|
2004-02-09 19:40:58 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Ali Saidi
|
2004-02-09 19:40:58 +01:00
|
|
|
*/
|
|
|
|
|
2005-06-05 05:56:53 +02:00
|
|
|
/** @file
|
2004-02-09 19:40:58 +01:00
|
|
|
* This devices just panics when touched. For example if you have a
|
|
|
|
* kernel that touches the frame buffer which isn't allowed.
|
|
|
|
*/
|
|
|
|
|
2005-01-15 10:12:25 +01:00
|
|
|
#ifndef __DEV_BADDEV_HH__
|
|
|
|
#define __DEV_BADDEV_HH__
|
2004-02-09 19:40:58 +01:00
|
|
|
|
2004-06-10 19:30:58 +02:00
|
|
|
#include "base/range.hh"
|
|
|
|
#include "dev/io_device.hh"
|
2007-07-24 06:51:38 +02:00
|
|
|
#include "params/BadDevice.hh"
|
2006-03-08 04:56:12 +01:00
|
|
|
|
2004-02-09 19:40:58 +01:00
|
|
|
/**
|
|
|
|
* BadDevice
|
|
|
|
* This device just panics when accessed. It is supposed to warn
|
|
|
|
* the user that the kernel they are running has unsupported
|
|
|
|
* options (i.e. frame buffer)
|
|
|
|
*/
|
2006-04-10 20:14:06 +02:00
|
|
|
class BadDevice : public BasicPioDevice
|
2004-02-09 19:40:58 +01:00
|
|
|
{
|
|
|
|
private:
|
2004-02-10 06:19:43 +01:00
|
|
|
std::string devname;
|
2004-02-09 19:40:58 +01:00
|
|
|
|
2006-04-10 20:14:06 +02:00
|
|
|
public:
|
2007-07-24 06:51:38 +02:00
|
|
|
typedef BadDeviceParams Params;
|
|
|
|
|
2006-04-10 20:14:06 +02:00
|
|
|
protected:
|
2007-07-24 06:51:38 +02:00
|
|
|
const Params *
|
|
|
|
params() const
|
|
|
|
{
|
|
|
|
return dynamic_cast<const Params *>(_params);
|
|
|
|
}
|
2006-04-10 20:14:06 +02:00
|
|
|
|
2004-02-09 19:40:58 +01:00
|
|
|
public:
|
2004-05-30 23:45:46 +02:00
|
|
|
/**
|
|
|
|
* Constructor for the Baddev Class.
|
2006-04-10 20:14:06 +02:00
|
|
|
* @param p object parameters
|
2004-05-30 23:45:46 +02:00
|
|
|
* @param a base address of the write
|
|
|
|
*/
|
2006-04-10 20:14:06 +02:00
|
|
|
BadDevice(Params *p);
|
2004-05-30 23:45:46 +02:00
|
|
|
|
2006-10-20 09:10:12 +02:00
|
|
|
virtual Tick read(PacketPtr pkt);
|
|
|
|
virtual Tick write(PacketPtr pkt);
|
2004-02-09 19:40:58 +01:00
|
|
|
};
|
|
|
|
|
2005-01-15 10:12:25 +01:00
|
|
|
#endif // __DEV_BADDEV_HH__
|