1/*
2 * Copyright 2018-2020 NXP
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef PLAT_MACROS_S
9#define PLAT_MACROS_S
10
11	/* ---------------------------------------------
12	 * The below required platform porting macro
13	 * prints out relevant GIC and CCI registers
14	 * whenever an unhandled exception is taken in
15	 * BL31.
16	 * Clobbers: x0 - x10, x16, x17, sp
17	 * ---------------------------------------------
18	 */
19	.macro plat_crash_print_regs
20	.endm
21
22#endif /* PLAT_MACROS_S */
23