plat_macros.S 577 Bytes
Newer Older
1
/*
2
 * Copyright (c) 2014-2016, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
 */
6
7
#ifndef PLAT_MACROS_S
#define PLAT_MACROS_S
8

9
#include <cci_macros.S>
10
#include <css_macros.S>
11

12
13
14
15
16
17
18
19
20
21
22
	/* ---------------------------------------------
	 * The below required platform porting macro
	 * prints out relevant platform registers
	 * whenever an unhandled exception is taken in
	 * BL31.
	 * ---------------------------------------------
	 */
	.macro plat_crash_print_regs
	css_print_gic_regs
	print_cci_regs
	.endm
23

24
#endif /* PLAT_MACROS_S */