blob: d877ef880d6acafa88a247b652920b950e762975 [file] [log] [blame]
Nariman Poushinc703f902018-03-07 10:29:57 +00001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6#ifndef __PLAT_MACROS_S__
7#define __PLAT_MACROS_S__
8
9#include <cci_macros.S>
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 */
19.macro plat_crash_print_regs
20css_print_gic_regs
21print_cci_regs
22.endm
23
24#endif /* __PLAT_MACROS_S__ */