2004-01-15 23:29:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2003 The Regents of The University of Michigan
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2004-01-30 21:24:50 +01:00
|
|
|
/**
|
|
|
|
* @file
|
2004-02-05 19:05:20 +01:00
|
|
|
* Declaration of top level class for the Tsunami chipset. This class just
|
|
|
|
* retains pointers to all its children so the children can communicate.
|
2004-01-30 21:24:50 +01:00
|
|
|
*/
|
|
|
|
|
2004-01-15 23:29:35 +01:00
|
|
|
#ifndef __TSUNAMI_HH__
|
|
|
|
#define __TSUNAMI_HH__
|
|
|
|
|
2004-02-09 20:47:39 +01:00
|
|
|
#include "dev/platform.hh"
|
2004-01-15 23:29:35 +01:00
|
|
|
|
2004-02-03 23:02:48 +01:00
|
|
|
class AdaptecController;
|
2004-01-15 23:29:35 +01:00
|
|
|
class TlaserClock;
|
|
|
|
class EtherDev;
|
|
|
|
class TsunamiCChip;
|
2004-01-22 02:14:10 +01:00
|
|
|
class TsunamiPChip;
|
2004-02-09 20:47:39 +01:00
|
|
|
class TsunamiIO;
|
2004-02-05 19:05:20 +01:00
|
|
|
class PCIConfigAll;
|
2004-02-09 20:47:39 +01:00
|
|
|
class System;
|
2004-01-30 21:24:50 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Top level class for Tsunami Chipset emulation.
|
|
|
|
* This structure just contains pointers to all the
|
|
|
|
* children so the children can commnicate to do the
|
|
|
|
* read work
|
|
|
|
*/
|
2004-01-15 23:29:35 +01:00
|
|
|
|
2004-02-09 20:47:39 +01:00
|
|
|
class Tsunami : public Platform
|
2004-01-15 23:29:35 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2004-01-30 21:24:50 +01:00
|
|
|
/** Max number of CPUs in a Tsunami */
|
2004-01-15 23:29:35 +01:00
|
|
|
static const int Max_CPUs = 4;
|
|
|
|
|
2004-02-09 20:47:39 +01:00
|
|
|
/** Pointer to the system */
|
|
|
|
System *system;
|
|
|
|
/** Pointer to the TsunamiIO device which has the RTC */
|
|
|
|
TsunamiIO *io;
|
2004-01-30 21:24:50 +01:00
|
|
|
/** Pointer to the SCSI controller device */
|
2004-02-03 23:02:48 +01:00
|
|
|
AdaptecController *scsi;
|
2004-01-30 21:24:50 +01:00
|
|
|
/** Pointer to the ethernet controller device */
|
2004-01-15 23:29:35 +01:00
|
|
|
EtherDev *ethernet;
|
|
|
|
|
2004-01-30 21:24:50 +01:00
|
|
|
/** Pointer to the Tsunami CChip.
|
|
|
|
* The chip contains some configuration information and
|
|
|
|
* all the interrupt mask and status registers
|
|
|
|
*/
|
2004-01-15 23:29:35 +01:00
|
|
|
TsunamiCChip *cchip;
|
2004-01-30 21:24:50 +01:00
|
|
|
|
|
|
|
/** Pointer to the Tsunami PChip.
|
|
|
|
* The pchip is the interface to the PCI bus, in our case
|
|
|
|
* it does not have to do much.
|
|
|
|
*/
|
2004-01-22 02:14:10 +01:00
|
|
|
TsunamiPChip *pchip;
|
2004-01-15 23:29:35 +01:00
|
|
|
|
2004-02-05 19:22:02 +01:00
|
|
|
/** Pointer to the PCI Config Space
|
|
|
|
* The config space in Tsunami all needs to return
|
2004-01-30 21:24:50 +01:00
|
|
|
* -1 if a device is not there.
|
|
|
|
*/
|
2004-02-05 19:05:20 +01:00
|
|
|
PCIConfigAll *pciconfig;
|
2004-01-30 21:24:50 +01:00
|
|
|
|
2004-01-15 23:29:35 +01:00
|
|
|
int intr_sum_type[Tsunami::Max_CPUs];
|
|
|
|
int ipi_pending[Tsunami::Max_CPUs];
|
|
|
|
|
|
|
|
public:
|
2004-01-30 21:24:50 +01:00
|
|
|
/**
|
|
|
|
* Constructor for the Tsunami Class.
|
2004-02-05 19:05:20 +01:00
|
|
|
* @param name name of the object
|
|
|
|
* @param con pointer to the console
|
|
|
|
* @param intrcontrol pointer to the interrupt controller
|
|
|
|
* @param intrFreq frequency that interrupts happen
|
2004-01-30 21:24:50 +01:00
|
|
|
*/
|
2004-02-09 20:47:39 +01:00
|
|
|
Tsunami(const std::string &name, System *s, SimConsole *con,
|
2004-02-05 19:22:02 +01:00
|
|
|
IntrControl *intctrl, int intrFreq);
|
2004-01-15 23:29:35 +01:00
|
|
|
|
|
|
|
virtual void serialize(std::ostream &os);
|
|
|
|
virtual void unserialize(Checkpoint *cp, const std::string §ion);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __TSUNAMI_HH__
|