2007-09-25 02:39:56 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 The Hewlett-Packard Development Company
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use of this software in source and binary forms,
|
|
|
|
* with or without modification, are permitted provided that the
|
|
|
|
* following conditions are met:
|
|
|
|
*
|
|
|
|
* The software must be used only for Non-Commercial Use which means any
|
|
|
|
* use which is NOT directed to receiving any direct monetary
|
|
|
|
* compensation for, or commercial advantage from such use. Illustrative
|
|
|
|
* examples of non-commercial use are academic research, personal study,
|
|
|
|
* teaching, education and corporate research & development.
|
|
|
|
* Illustrative examples of commercial use are distributing products for
|
|
|
|
* commercial advantage and providing services using the software for
|
|
|
|
* commercial advantage.
|
|
|
|
*
|
|
|
|
* If you wish to use this software or functionality therein that may be
|
|
|
|
* covered by patents for commercial use, please contact:
|
|
|
|
* Director of Intellectual Property Licensing
|
|
|
|
* Office of Strategy and Technology
|
|
|
|
* Hewlett-Packard Company
|
|
|
|
* 1501 Page Mill Road
|
|
|
|
* Palo Alto, California 94304
|
|
|
|
*
|
|
|
|
* 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 HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission. No right of
|
|
|
|
* sublicense is granted herewith. Derivatives of the software and
|
|
|
|
* output created using the software may be prepared, but only for
|
|
|
|
* Non-Commercial Uses. Derivatives of the software may be shared with
|
|
|
|
* others provided: (i) the others agree to abide by the list of
|
|
|
|
* conditions herein which includes the Non-Commercial Use restrictions;
|
|
|
|
* and (ii) such Derivatives of the software include the above copyright
|
|
|
|
* notice to acknowledge the contribution from this software where
|
|
|
|
* applicable, this list of conditions and the disclaimer below.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Authors: Gabe Black
|
|
|
|
*/
|
|
|
|
|
2008-10-12 18:09:56 +02:00
|
|
|
#include "config/full_system.hh"
|
|
|
|
|
|
|
|
#if FULL_SYSTEM
|
|
|
|
#include "arch/x86/interrupts.hh"
|
|
|
|
#endif
|
2007-10-08 03:10:42 +02:00
|
|
|
#include "arch/x86/intregs.hh"
|
|
|
|
#include "arch/x86/miscregs.hh"
|
|
|
|
#include "arch/x86/segmentregs.hh"
|
2007-09-25 02:39:56 +02:00
|
|
|
#include "arch/x86/utility.hh"
|
2007-10-08 03:10:42 +02:00
|
|
|
#include "arch/x86/x86_traits.hh"
|
2008-10-12 18:09:56 +02:00
|
|
|
#include "cpu/base.hh"
|
2007-11-12 23:38:10 +01:00
|
|
|
#include "sim/system.hh"
|
2007-09-25 02:39:56 +02:00
|
|
|
|
|
|
|
namespace X86ISA {
|
|
|
|
|
|
|
|
uint64_t getArgument(ThreadContext *tc, int number, bool fp) {
|
|
|
|
#if FULL_SYSTEM
|
|
|
|
panic("getArgument() not implemented for x86!\n");
|
|
|
|
#else
|
|
|
|
panic("getArgument() only implemented for FULL_SYSTEM\n");
|
|
|
|
M5_DUMMY_RETURN
|
|
|
|
#endif
|
|
|
|
}
|
2007-10-08 03:10:42 +02:00
|
|
|
|
|
|
|
# if FULL_SYSTEM
|
|
|
|
void initCPU(ThreadContext *tc, int cpuId)
|
|
|
|
{
|
2009-04-19 11:53:00 +02:00
|
|
|
// This function is essentially performing a reset. The actual INIT
|
|
|
|
// interrupt does a subset of this, so we'll piggyback on some of its
|
|
|
|
// functionality.
|
|
|
|
InitInterrupt init(0);
|
|
|
|
init.invoke(tc);
|
|
|
|
|
|
|
|
tc->setMicroPC(0);
|
|
|
|
tc->setNextMicroPC(1);
|
2007-10-08 03:10:42 +02:00
|
|
|
|
|
|
|
// These next two loops zero internal microcode and implicit registers.
|
|
|
|
// They aren't specified by the ISA but are used internally by M5's
|
|
|
|
// implementation.
|
|
|
|
for (int index = 0; index < NumMicroIntRegs; index++) {
|
|
|
|
tc->setIntReg(INTREG_MICRO(index), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int index = 0; index < NumImplicitIntRegs; index++) {
|
|
|
|
tc->setIntReg(INTREG_IMPLICIT(index), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set integer register EAX to 0 to indicate that the optional BIST
|
|
|
|
// passed. No BIST actually runs, but software may still check this
|
|
|
|
// register for errors.
|
|
|
|
tc->setIntReg(INTREG_RAX, 0);
|
|
|
|
|
2007-11-16 23:18:47 +01:00
|
|
|
tc->setMiscReg(MISCREG_CR0, 0x0000000060000010ULL);
|
2007-10-08 03:10:42 +02:00
|
|
|
tc->setMiscReg(MISCREG_CR8, 0);
|
|
|
|
|
|
|
|
// TODO initialize x87, 64 bit, and 128 bit media state
|
|
|
|
|
2007-10-08 03:20:51 +02:00
|
|
|
tc->setMiscReg(MISCREG_MTRRCAP, 0x0508);
|
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_PHYS_BASE(i), 0);
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_PHYS_MASK(i), 0);
|
|
|
|
}
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_64K_00000, 0);
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_16K_80000, 0);
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_16K_A0000, 0);
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_4K_C0000, 0);
|
2007-10-24 02:40:40 +02:00
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_4K_C8000, 0);
|
2007-10-08 03:20:51 +02:00
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_4K_D0000, 0);
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_4K_D8000, 0);
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_4K_E0000, 0);
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_4K_E8000, 0);
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_4K_F0000, 0);
|
|
|
|
tc->setMiscReg(MISCREG_MTRR_FIX_4K_F8000, 0);
|
|
|
|
|
|
|
|
tc->setMiscReg(MISCREG_DEF_TYPE, 0);
|
|
|
|
|
|
|
|
tc->setMiscReg(MISCREG_MCG_CAP, 0x104);
|
|
|
|
tc->setMiscReg(MISCREG_MCG_STATUS, 0);
|
|
|
|
tc->setMiscReg(MISCREG_MCG_CTL, 0);
|
|
|
|
|
|
|
|
for (int i = 0; i < 5; i++) {
|
|
|
|
tc->setMiscReg(MISCREG_MC_CTL(i), 0);
|
|
|
|
tc->setMiscReg(MISCREG_MC_STATUS(i), 0);
|
|
|
|
tc->setMiscReg(MISCREG_MC_ADDR(i), 0);
|
|
|
|
tc->setMiscReg(MISCREG_MC_MISC(i), 0);
|
|
|
|
}
|
2007-10-08 03:10:42 +02:00
|
|
|
|
2007-10-08 03:20:51 +02:00
|
|
|
tc->setMiscReg(MISCREG_TSC, 0);
|
|
|
|
tc->setMiscReg(MISCREG_TSC_AUX, 0);
|
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
tc->setMiscReg(MISCREG_PERF_EVT_SEL(i), 0);
|
|
|
|
tc->setMiscReg(MISCREG_PERF_EVT_CTR(i), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
tc->setMiscReg(MISCREG_STAR, 0);
|
|
|
|
tc->setMiscReg(MISCREG_LSTAR, 0);
|
|
|
|
tc->setMiscReg(MISCREG_CSTAR, 0);
|
2007-10-08 03:10:42 +02:00
|
|
|
|
2007-10-08 03:20:51 +02:00
|
|
|
tc->setMiscReg(MISCREG_SF_MASK, 0);
|
2007-10-08 03:10:42 +02:00
|
|
|
|
2007-10-08 03:20:51 +02:00
|
|
|
tc->setMiscReg(MISCREG_KERNEL_GS_BASE, 0);
|
|
|
|
|
|
|
|
tc->setMiscReg(MISCREG_SYSENTER_CS, 0);
|
|
|
|
tc->setMiscReg(MISCREG_SYSENTER_ESP, 0);
|
|
|
|
tc->setMiscReg(MISCREG_SYSENTER_EIP, 0);
|
|
|
|
|
2007-11-16 23:18:47 +01:00
|
|
|
tc->setMiscReg(MISCREG_PAT, 0x0007040600070406ULL);
|
2007-10-08 03:20:51 +02:00
|
|
|
|
|
|
|
tc->setMiscReg(MISCREG_SYSCFG, 0x20601);
|
|
|
|
|
|
|
|
tc->setMiscReg(MISCREG_IORR_BASE0, 0);
|
|
|
|
tc->setMiscReg(MISCREG_IORR_BASE1, 0);
|
|
|
|
|
|
|
|
tc->setMiscReg(MISCREG_IORR_MASK0, 0);
|
|
|
|
tc->setMiscReg(MISCREG_IORR_MASK1, 0);
|
|
|
|
|
|
|
|
tc->setMiscReg(MISCREG_TOP_MEM, 0x4000000);
|
|
|
|
tc->setMiscReg(MISCREG_TOP_MEM2, 0x0);
|
|
|
|
|
|
|
|
tc->setMiscReg(MISCREG_DEBUG_CTL_MSR, 0);
|
|
|
|
tc->setMiscReg(MISCREG_LAST_BRANCH_FROM_IP, 0);
|
|
|
|
tc->setMiscReg(MISCREG_LAST_BRANCH_TO_IP, 0);
|
|
|
|
tc->setMiscReg(MISCREG_LAST_EXCEPTION_FROM_IP, 0);
|
|
|
|
tc->setMiscReg(MISCREG_LAST_EXCEPTION_TO_IP, 0);
|
2007-10-08 03:10:42 +02:00
|
|
|
|
|
|
|
// Invalidate the caches (this should already be done for us)
|
|
|
|
|
2008-02-27 05:39:53 +01:00
|
|
|
LocalApicBase lApicBase = 0;
|
|
|
|
lApicBase.base = 0xFEE00000 >> 12;
|
|
|
|
lApicBase.enable = 1;
|
|
|
|
lApicBase.bsp = (cpuId == 0);
|
|
|
|
tc->setMiscReg(MISCREG_APIC_BASE, lApicBase);
|
|
|
|
|
2008-10-12 18:09:56 +02:00
|
|
|
Interrupts * interrupts = dynamic_cast<Interrupts *>(
|
|
|
|
tc->getCpuPtr()->getInterruptController());
|
|
|
|
assert(interrupts);
|
|
|
|
|
|
|
|
interrupts->setRegNoEffect(APIC_ID, cpuId << 24);
|
2008-02-27 05:39:53 +01:00
|
|
|
|
2008-10-12 18:09:56 +02:00
|
|
|
interrupts->setRegNoEffect(APIC_VERSION, (5 << 16) | 0x14);
|
2008-10-12 20:08:00 +02:00
|
|
|
|
|
|
|
interrupts->setClock(tc->getCpuPtr()->ticks(16));
|
2008-02-27 05:39:53 +01:00
|
|
|
|
2007-10-08 03:20:51 +02:00
|
|
|
// TODO Set the SMRAM base address (SMBASE) to 0x00030000
|
|
|
|
|
|
|
|
tc->setMiscReg(MISCREG_VM_CR, 0);
|
|
|
|
tc->setMiscReg(MISCREG_IGNNE, 0);
|
|
|
|
tc->setMiscReg(MISCREG_SMM_CTL, 0);
|
|
|
|
tc->setMiscReg(MISCREG_VM_HSAVE_PA, 0);
|
2007-10-08 03:10:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void startupCPU(ThreadContext *tc, int cpuId)
|
|
|
|
{
|
2009-04-19 11:20:57 +02:00
|
|
|
#if FULL_SYSTEM
|
2007-10-08 03:10:42 +02:00
|
|
|
if (cpuId == 0) {
|
|
|
|
tc->activate(0);
|
|
|
|
} else {
|
|
|
|
// This is an application processor (AP). It should be initialized to
|
|
|
|
// look like only the BIOS POST has run on it and put then put it into
|
|
|
|
// a halted state.
|
2009-04-19 11:20:57 +02:00
|
|
|
tc->suspend(0);
|
2007-10-08 03:10:42 +02:00
|
|
|
}
|
2007-11-12 23:38:10 +01:00
|
|
|
#else
|
|
|
|
tc->activate(0);
|
|
|
|
#endif
|
2009-04-19 11:20:57 +02:00
|
|
|
}
|
2007-11-12 23:38:10 +01:00
|
|
|
|
2007-09-25 02:39:56 +02:00
|
|
|
} //namespace X86_ISA
|