blob: 571f0951702d2d217d685746454e5d753c44557f [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#include <lib/zircon-internal/unique-backtrace.h>
#include <phys/main.h>
#include "psci.h"
#include "regs.h"
void ArchPanicReset() {
// Don't go back into our own handlers when we crash. Probably trying to
// crash this way just loops forever, but at least it won't reenter our
// exception code and confuse things further.
ArmSetVbar(nullptr);
ArmPsciReset();
}
// The weak definition here is used in the non-ZBI phys tests where the real
// PSCI code isn't linked in at all.
[[gnu::weak]] void ArmPsciReset() { CRASH_WITH_UNIQUE_BACKTRACE(); }