2013-09-18 03:03:54 +00:00
|
|
|
/* arminit.c -- ARMulator initialization: ARM6 Instruction Emulator.
|
|
|
|
Copyright (C) 1994 Advanced RISC Machines Ltd.
|
2014-07-23 23:16:40 +00:00
|
|
|
|
2013-09-18 03:03:54 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
2014-07-23 23:16:40 +00:00
|
|
|
|
2013-09-18 03:03:54 +00:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-07-23 23:16:40 +00:00
|
|
|
|
2013-09-18 03:03:54 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
|
2015-02-13 13:08:21 +00:00
|
|
|
#include <cstring>
|
2015-04-06 13:25:11 +00:00
|
|
|
#include "core/mem_map.h"
|
2014-09-11 01:27:14 +00:00
|
|
|
#include "core/arm/skyeye_common/armdefs.h"
|
|
|
|
#include "core/arm/skyeye_common/armemu.h"
|
2013-09-18 03:03:54 +00:00
|
|
|
|
|
|
|
/***************************************************************************\
|
|
|
|
* Returns a new instantiation of the ARMulator's state *
|
|
|
|
\***************************************************************************/
|
2015-01-30 18:24:19 +00:00
|
|
|
ARMul_State* ARMul_NewState(ARMul_State* state)
|
2013-09-18 03:03:54 +00:00
|
|
|
{
|
2015-02-13 13:08:21 +00:00
|
|
|
memset(state, 0, sizeof(ARMul_State));
|
2014-07-23 23:16:40 +00:00
|
|
|
|
|
|
|
state->Emulate = RUN;
|
2015-02-10 17:37:28 +00:00
|
|
|
for (unsigned int i = 0; i < 16; i++) {
|
2014-07-23 23:16:40 +00:00
|
|
|
state->Reg[i] = 0;
|
2015-02-10 17:37:28 +00:00
|
|
|
for (unsigned int j = 0; j < 7; j++)
|
2014-07-23 23:16:40 +00:00
|
|
|
state->RegBank[j][i] = 0;
|
|
|
|
}
|
2015-02-10 17:37:28 +00:00
|
|
|
for (unsigned int i = 0; i < 7; i++)
|
2014-07-23 23:16:40 +00:00
|
|
|
state->Spsr[i] = 0;
|
2015-02-10 17:37:28 +00:00
|
|
|
|
2015-02-11 15:49:48 +00:00
|
|
|
state->Mode = USER32MODE;
|
2014-07-23 23:16:40 +00:00
|
|
|
|
|
|
|
state->VectorCatch = 0;
|
2015-02-10 17:37:28 +00:00
|
|
|
state->Aborted = false;
|
|
|
|
state->Reseted = false;
|
2014-07-23 23:16:40 +00:00
|
|
|
state->Inted = 3;
|
|
|
|
state->LastInted = 3;
|
|
|
|
|
|
|
|
state->lateabtSig = HIGH;
|
|
|
|
state->bigendSig = LOW;
|
|
|
|
|
2015-01-30 18:24:19 +00:00
|
|
|
return state;
|
2013-09-18 03:03:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***************************************************************************\
|
|
|
|
* Call this routine to set ARMulator to model a certain processor *
|
|
|
|
\***************************************************************************/
|
|
|
|
|
2015-01-30 18:24:19 +00:00
|
|
|
void ARMul_SelectProcessor(ARMul_State* state, unsigned properties)
|
2013-09-18 03:03:54 +00:00
|
|
|
{
|
2015-02-01 02:44:35 +00:00
|
|
|
state->is_v4 = (properties & (ARM_v4_Prop | ARM_v5_Prop)) != 0;
|
|
|
|
state->is_v5 = (properties & ARM_v5_Prop) != 0;
|
|
|
|
state->is_v5e = (properties & ARM_v5e_Prop) != 0;
|
|
|
|
state->is_v6 = (properties & ARM_v6_Prop) != 0;
|
|
|
|
state->is_v7 = (properties & ARM_v7_Prop) != 0;
|
2014-07-23 23:16:40 +00:00
|
|
|
|
2015-02-12 20:04:47 +00:00
|
|
|
// Only initialse the coprocessor support once we
|
|
|
|
// know what kind of chip we are dealing with.
|
|
|
|
ARMul_CoProInit(state);
|
2013-09-18 03:03:54 +00:00
|
|
|
}
|
|
|
|
|
2015-04-06 13:12:55 +00:00
|
|
|
// Resets certain MPCore CP15 values to their ARM-defined reset values.
|
|
|
|
static void ResetMPCoreCP15Registers(ARMul_State* cpu)
|
|
|
|
{
|
|
|
|
// c0
|
|
|
|
cpu->CP15[CP15(CP15_MAIN_ID)] = 0x410FB024;
|
|
|
|
cpu->CP15[CP15(CP15_TLB_TYPE)] = 0x00000800;
|
|
|
|
cpu->CP15[CP15(CP15_PROCESSOR_FEATURE_0)] = 0x00000111;
|
|
|
|
cpu->CP15[CP15(CP15_PROCESSOR_FEATURE_1)] = 0x00000001;
|
|
|
|
cpu->CP15[CP15(CP15_DEBUG_FEATURE_0)] = 0x00000002;
|
|
|
|
cpu->CP15[CP15(CP15_MEMORY_MODEL_FEATURE_0)] = 0x01100103;
|
|
|
|
cpu->CP15[CP15(CP15_MEMORY_MODEL_FEATURE_1)] = 0x10020302;
|
|
|
|
cpu->CP15[CP15(CP15_MEMORY_MODEL_FEATURE_2)] = 0x01222000;
|
|
|
|
cpu->CP15[CP15(CP15_MEMORY_MODEL_FEATURE_3)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_ISA_FEATURE_0)] = 0x00100011;
|
|
|
|
cpu->CP15[CP15(CP15_ISA_FEATURE_1)] = 0x12002111;
|
|
|
|
cpu->CP15[CP15(CP15_ISA_FEATURE_2)] = 0x11221011;
|
|
|
|
cpu->CP15[CP15(CP15_ISA_FEATURE_3)] = 0x01102131;
|
|
|
|
cpu->CP15[CP15(CP15_ISA_FEATURE_4)] = 0x00000141;
|
|
|
|
|
|
|
|
// c1
|
|
|
|
cpu->CP15[CP15(CP15_CONTROL)] = 0x00054078;
|
|
|
|
cpu->CP15[CP15(CP15_AUXILIARY_CONTROL)] = 0x0000000F;
|
|
|
|
cpu->CP15[CP15(CP15_COPROCESSOR_ACCESS_CONTROL)] = 0x00000000;
|
|
|
|
|
|
|
|
// c2
|
|
|
|
cpu->CP15[CP15(CP15_TRANSLATION_BASE_TABLE_0)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_TRANSLATION_BASE_TABLE_1)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_TRANSLATION_BASE_CONTROL)] = 0x00000000;
|
|
|
|
|
|
|
|
// c3
|
|
|
|
cpu->CP15[CP15(CP15_DOMAIN_ACCESS_CONTROL)] = 0x00000000;
|
|
|
|
|
|
|
|
// c7
|
|
|
|
cpu->CP15[CP15(CP15_PHYS_ADDRESS)] = 0x00000000;
|
|
|
|
|
|
|
|
// c9
|
|
|
|
cpu->CP15[CP15(CP15_DATA_CACHE_LOCKDOWN)] = 0xFFFFFFF0;
|
|
|
|
|
|
|
|
// c10
|
|
|
|
cpu->CP15[CP15(CP15_TLB_LOCKDOWN)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_PRIMARY_REGION_REMAP)] = 0x00098AA4;
|
|
|
|
cpu->CP15[CP15(CP15_NORMAL_REGION_REMAP)] = 0x44E048E0;
|
|
|
|
|
|
|
|
// c13
|
|
|
|
cpu->CP15[CP15(CP15_PID)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_CONTEXT_ID)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_THREAD_UPRW)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_THREAD_URO)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_THREAD_PRW)] = 0x00000000;
|
|
|
|
|
|
|
|
// c15
|
|
|
|
cpu->CP15[CP15(CP15_PERFORMANCE_MONITOR_CONTROL)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_MAIN_TLB_LOCKDOWN_VIRT_ADDRESS)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_MAIN_TLB_LOCKDOWN_PHYS_ADDRESS)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_MAIN_TLB_LOCKDOWN_ATTRIBUTE)] = 0x00000000;
|
|
|
|
cpu->CP15[CP15(CP15_TLB_DEBUG_CONTROL)] = 0x00000000;
|
|
|
|
}
|
|
|
|
|
2013-09-18 03:03:54 +00:00
|
|
|
/***************************************************************************\
|
|
|
|
* Call this routine to set up the initial machine state (or perform a RESET *
|
|
|
|
\***************************************************************************/
|
2015-01-30 18:24:19 +00:00
|
|
|
void ARMul_Reset(ARMul_State* state)
|
2013-09-18 03:03:54 +00:00
|
|
|
{
|
2014-07-23 23:16:40 +00:00
|
|
|
state->NextInstr = 0;
|
2015-02-11 17:19:49 +00:00
|
|
|
|
|
|
|
state->Reg[15] = 0;
|
|
|
|
state->Cpsr = INTBITS | SVC32MODE;
|
|
|
|
state->Mode = SVC32MODE;
|
2015-01-30 18:24:19 +00:00
|
|
|
|
2014-07-23 23:16:40 +00:00
|
|
|
state->Bank = SVCBANK;
|
|
|
|
FLUSHPIPE;
|
|
|
|
|
2015-04-06 13:25:11 +00:00
|
|
|
// Reset CP15
|
2015-04-06 13:12:55 +00:00
|
|
|
ResetMPCoreCP15Registers(state);
|
|
|
|
|
2015-04-06 13:25:11 +00:00
|
|
|
// This is separate from the CP15 register reset function, as
|
|
|
|
// this isn't an ARM-defined reset value; it's set by the 3DS.
|
|
|
|
//
|
|
|
|
// TODO: Whenever TLS is implemented, this should contain
|
|
|
|
// the address of the 0x200-byte TLS
|
|
|
|
state->CP15[CP15(CP15_THREAD_URO)] = Memory::KERNEL_MEMORY_VADDR;
|
|
|
|
|
2014-07-23 23:16:40 +00:00
|
|
|
state->EndCondition = 0;
|
|
|
|
state->ErrorCode = 0;
|
|
|
|
|
|
|
|
state->NresetSig = HIGH;
|
|
|
|
state->NfiqSig = HIGH;
|
|
|
|
state->NirqSig = HIGH;
|
|
|
|
state->NtransSig = (state->Mode & 3) ? HIGH : LOW;
|
|
|
|
state->abortSig = LOW;
|
|
|
|
state->AbortAddr = 1;
|
|
|
|
|
|
|
|
state->NumInstrs = 0;
|
2013-09-18 03:03:54 +00:00
|
|
|
}
|