1/* 2 * Copyright (c) 2020, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7#ifndef PLAT_MACROS_S 8#define PLAT_MACROS_S 9 10#include <css_macros.S> 11 12/* --------------------------------------------- 13 * The below required platform porting macro 14 * prints out relevant platform registers 15 * whenever an unhandled exception is taken in 16 * BL31. 17 * 18 * There are currently no platform specific regs 19 * to print. 20 * --------------------------------------------- 21 */ 22 .macro plat_crash_print_regs 23 .endm 24 25#endif /* PLAT_MACROS_S */ 26