2019-07-21 23:04:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-07-22 22:54:35 +00:00
|
|
|
#include "hvc.h"
|
2019-07-25 23:22:23 +00:00
|
|
|
#include "traps.h"
|
|
|
|
#include "sysreg_traps.h"
|
2019-07-30 22:08:09 +00:00
|
|
|
#include "smc.h"
|
2019-07-28 23:25:50 +00:00
|
|
|
#include "core_ctx.h"
|
2019-07-25 23:22:23 +00:00
|
|
|
|
2019-07-31 00:30:17 +00:00
|
|
|
#include "debug_log.h"
|
2019-07-21 23:04:53 +00:00
|
|
|
|
2019-07-25 15:50:15 +00:00
|
|
|
bool spsrEvaluateConditionCode(u64 spsr, u32 conditionCode)
|
|
|
|
{
|
|
|
|
if (conditionCode == 14) {
|
|
|
|
// AL
|
|
|
|
return true;
|
|
|
|
} else if (conditionCode == 15) {
|
|
|
|
// Invalid encoding
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// NZCV
|
|
|
|
bool n = (spsr & BIT(31)) != 0;
|
|
|
|
bool z = (spsr & BIT(30)) != 0;
|
|
|
|
bool c = (spsr & BIT(29)) != 0;
|
|
|
|
bool v = (spsr & BIT(28)) != 0;
|
|
|
|
|
|
|
|
bool tableHalf[] = {
|
|
|
|
// EQ, CS, MI, VS, HI, GE, GT
|
|
|
|
z, c, n, v, c && !z, n == v, !z && n == v,
|
|
|
|
};
|
|
|
|
|
|
|
|
return (conditionCode & 1) == 0 ? tableHalf[conditionCode / 2] : !tableHalf[conditionCode / 2];
|
|
|
|
}
|
|
|
|
|
2019-07-22 22:54:35 +00:00
|
|
|
void dumpStackFrame(const ExceptionStackFrame *frame, bool sameEl)
|
2019-07-21 23:04:53 +00:00
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
|
|
|
for (u32 i = 0; i < 30; i += 2) {
|
2019-07-31 00:30:17 +00:00
|
|
|
DEBUG("x%u\t\t%016llx\t\tx%u\t\t%016llx\n", i, frame->x[i], i + 1, frame->x[i + 1]);
|
2019-07-21 23:04:53 +00:00
|
|
|
}
|
|
|
|
|
2019-07-31 00:30:17 +00:00
|
|
|
DEBUG("x30\t\t%016llx\n\n", frame->x[30]);
|
|
|
|
DEBUG("elr_el2\t\t%016llx\n", frame->elr_el2);
|
|
|
|
DEBUG("spsr_el2\t%016llx\n", frame->spsr_el2);
|
2019-07-21 23:04:53 +00:00
|
|
|
if (sameEl) {
|
2019-07-31 00:30:17 +00:00
|
|
|
DEBUG("sp_el2\t\t%016llx\n", frame->sp_el2);
|
2019-07-21 23:04:53 +00:00
|
|
|
} else {
|
2019-07-31 00:30:17 +00:00
|
|
|
DEBUG("sp_el0\t\t%016llx\n", frame->sp_el0);
|
2019-07-21 23:04:53 +00:00
|
|
|
}
|
2019-07-31 00:30:17 +00:00
|
|
|
DEBUG("sp_el1\t\t%016llx\n", frame->sp_el1);
|
|
|
|
#else
|
|
|
|
(void)frame;
|
|
|
|
(void)sameEl;
|
2019-07-21 23:04:53 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-07-28 16:50:16 +00:00
|
|
|
#ifdef A32_SUPPORTED
|
2019-07-25 15:50:15 +00:00
|
|
|
static void advanceItState(ExceptionStackFrame *frame)
|
|
|
|
{
|
|
|
|
if (!spsrIsThumb(frame->spsr_el2) || spsrGetT32ItFlags(frame->spsr_el2) == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 it = spsrGetT32ItFlags(frame->spsr_el2);
|
|
|
|
|
|
|
|
// Last instruction of the block => wipe, otherwise advance
|
|
|
|
spsrSetT32ItFlags(&frame->spsr_el2, (it & 7) == 0 ? 0 : (it & 0xE0) | ((it << 1) & 0x1F));
|
|
|
|
}
|
2019-07-28 16:50:16 +00:00
|
|
|
#endif
|
2019-07-25 15:50:15 +00:00
|
|
|
|
|
|
|
void skipFaultingInstruction(ExceptionStackFrame *frame, u32 size)
|
|
|
|
{
|
2019-07-28 16:50:16 +00:00
|
|
|
#ifdef A32_SUPPORTED
|
2019-07-25 15:50:15 +00:00
|
|
|
advanceItState(frame);
|
2019-07-28 16:50:16 +00:00
|
|
|
#endif
|
2019-07-25 15:50:15 +00:00
|
|
|
frame->elr_el2 += size;
|
|
|
|
}
|
|
|
|
|
2019-07-22 20:01:21 +00:00
|
|
|
void handleLowerElSyncException(ExceptionStackFrame *frame, ExceptionSyndromeRegister esr)
|
2019-07-21 23:04:53 +00:00
|
|
|
{
|
2019-07-22 22:54:35 +00:00
|
|
|
|
|
|
|
switch (esr.ec) {
|
2019-07-28 16:50:16 +00:00
|
|
|
|
|
|
|
#ifdef A32_SUPPORTED
|
2019-07-25 23:22:23 +00:00
|
|
|
case Exception_CP14RTTrap:
|
|
|
|
case Exception_CP15RTTrap:
|
|
|
|
handleMcrMrcTrap(frame, esr);
|
|
|
|
break;
|
|
|
|
case Exception_CP14DTTrap:
|
|
|
|
handleLdcStcTrap(frame, esr);
|
|
|
|
break;
|
|
|
|
case Exception_CP14RRTTrap:
|
|
|
|
case Exception_CP15RRTTrap:
|
|
|
|
handleMcrrMrrcTrap(frame, esr);
|
|
|
|
break;
|
2019-07-28 16:50:16 +00:00
|
|
|
case Exception_HypervisorCallA32:
|
|
|
|
handleHypercall(frame, esr);
|
|
|
|
break;
|
|
|
|
#endif
|
2019-07-22 22:54:35 +00:00
|
|
|
case Exception_HypervisorCallA64:
|
|
|
|
handleHypercall(frame, esr);
|
|
|
|
break;
|
2019-07-30 22:08:09 +00:00
|
|
|
case Exception_MonitorCallA64:
|
|
|
|
handleSmcTrap(frame, esr);
|
|
|
|
break;
|
|
|
|
case Exception_SystemRegisterTrap:
|
|
|
|
handleMsrMrsTrap(frame, esr);
|
|
|
|
break;
|
|
|
|
|
2019-07-22 22:54:35 +00:00
|
|
|
default:
|
2019-07-31 00:30:17 +00:00
|
|
|
DEBUG("Lower EL sync exception, EC = 0x%02llx IL=%llu ISS=0x%06llx\n", (u64)esr.ec, esr.il, esr.iss);
|
2019-07-22 22:54:35 +00:00
|
|
|
dumpStackFrame(frame, false);
|
|
|
|
break;
|
|
|
|
}
|
2019-07-21 23:04:53 +00:00
|
|
|
}
|
|
|
|
|
2019-07-22 20:01:21 +00:00
|
|
|
void handleSameElSyncException(ExceptionStackFrame *frame, ExceptionSyndromeRegister esr)
|
2019-07-21 23:04:53 +00:00
|
|
|
{
|
2019-07-31 00:30:17 +00:00
|
|
|
DEBUG("Same EL sync exception on core %x, EC = 0x%02llx IL=%llu ISS=0x%06llx\n", currentCoreCtx->coreId, (u64)esr.ec, esr.il, esr.iss);
|
2019-07-21 23:04:53 +00:00
|
|
|
dumpStackFrame(frame, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void handleUnknownException(u32 offset)
|
|
|
|
{
|
2019-07-31 00:30:17 +00:00
|
|
|
DEBUG("Unknown exception on core %x! (offset 0x%03lx)\n", offset, currentCoreCtx->coreId);
|
2019-07-22 20:01:21 +00:00
|
|
|
}
|