2005-06-10 18:44:18 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 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.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Ben Nash
|
2005-06-10 18:44:18 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
2005-06-30 22:18:07 +02:00
|
|
|
* Modifications for the FreeBSD kernel.
|
|
|
|
* Based on kern/linux/linux_system.cc.
|
2005-06-10 18:44:18 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-03-05 02:45:01 +01:00
|
|
|
#include "arch/alpha/freebsd/system.hh"
|
2007-07-24 06:51:38 +02:00
|
|
|
#include "arch/alpha/system.hh"
|
|
|
|
#include "arch/isa_traits.hh"
|
|
|
|
#include "arch/vtophys.hh"
|
2005-06-10 18:44:18 +02:00
|
|
|
#include "base/loader/symtab.hh"
|
2006-06-06 23:32:21 +02:00
|
|
|
#include "cpu/thread_context.hh"
|
2012-01-17 19:55:08 +01:00
|
|
|
#include "mem/fs_translating_port_proxy.hh"
|
2006-02-03 06:16:44 +01:00
|
|
|
#include "sim/byteswap.hh"
|
2005-06-10 18:44:18 +02:00
|
|
|
|
2005-08-16 22:08:42 +02:00
|
|
|
#define TIMER_FREQUENCY 1193180
|
|
|
|
|
2005-06-10 18:44:18 +02:00
|
|
|
using namespace std;
|
2006-03-05 02:45:01 +01:00
|
|
|
using namespace AlphaISA;
|
2005-06-10 18:44:18 +02:00
|
|
|
|
2006-03-05 02:45:01 +01:00
|
|
|
FreebsdAlphaSystem::FreebsdAlphaSystem(Params *p)
|
2006-03-03 20:24:15 +01:00
|
|
|
: AlphaSystem(p)
|
2005-06-10 18:44:18 +02:00
|
|
|
{
|
|
|
|
/**
|
2005-06-23 22:27:06 +02:00
|
|
|
* Any time DELAY is called just skip the function.
|
2005-09-24 20:20:29 +02:00
|
|
|
* Shouldn't we actually emulate the delay?
|
2005-06-10 18:44:18 +02:00
|
|
|
*/
|
2005-09-24 20:20:29 +02:00
|
|
|
skipDelayEvent = addKernelFuncEvent<SkipFuncEvent>("DELAY");
|
|
|
|
skipCalibrateClocks =
|
|
|
|
addKernelFuncEvent<SkipCalibrateClocksEvent>("calibrate_clocks");
|
2005-06-10 18:44:18 +02:00
|
|
|
}
|
|
|
|
|
2006-03-05 02:45:01 +01:00
|
|
|
FreebsdAlphaSystem::~FreebsdAlphaSystem()
|
2005-06-10 18:44:18 +02:00
|
|
|
{
|
|
|
|
delete skipDelayEvent;
|
2005-06-18 00:08:05 +02:00
|
|
|
delete skipCalibrateClocks;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
FreebsdAlphaSystem::doCalibrateClocks(ThreadContext *tc)
|
2005-06-18 00:08:05 +02:00
|
|
|
{
|
|
|
|
Addr ppc_vaddr = 0;
|
|
|
|
Addr timer_vaddr = 0;
|
|
|
|
|
2009-02-27 18:22:14 +01:00
|
|
|
ppc_vaddr = (Addr)tc->readIntReg(17);
|
|
|
|
timer_vaddr = (Addr)tc->readIntReg(18);
|
2005-06-18 00:08:05 +02:00
|
|
|
|
2012-01-17 19:55:08 +01:00
|
|
|
virtProxy->write(ppc_vaddr, (uint32_t)SimClock::Frequency);
|
|
|
|
virtProxy->write(timer_vaddr, (uint32_t)TIMER_FREQUENCY);
|
2005-06-10 18:44:18 +02:00
|
|
|
}
|
|
|
|
|
2005-09-24 20:20:29 +02:00
|
|
|
void
|
2006-06-06 23:32:21 +02:00
|
|
|
FreebsdAlphaSystem::SkipCalibrateClocksEvent::process(ThreadContext *tc)
|
2005-09-24 20:20:29 +02:00
|
|
|
{
|
2006-06-06 23:32:21 +02:00
|
|
|
SkipFuncEvent::process(tc);
|
|
|
|
((FreebsdAlphaSystem *)tc->getSystemPtr())->doCalibrateClocks(tc);
|
2005-09-24 20:20:29 +02:00
|
|
|
}
|
|
|
|
|
2007-07-24 06:51:38 +02:00
|
|
|
FreebsdAlphaSystem *
|
|
|
|
FreebsdAlphaSystemParams::create()
|
2005-06-10 18:44:18 +02:00
|
|
|
{
|
2007-07-24 06:51:38 +02:00
|
|
|
return new FreebsdAlphaSystem(this);
|
2005-06-10 18:44:18 +02:00
|
|
|
}
|