plat_macros.S 570 Bytes
Newer Older
Deepak Pandey's avatar
Deepak Pandey committed
1
2
3
4
5
/*
 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */
6
7
#ifndef PLAT_MACROS_S
#define PLAT_MACROS_S
Deepak Pandey's avatar
Deepak Pandey committed
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#include <css_macros.S>

/* ---------------------------------------------
 * The below required platform porting macro
 * prints out relevant platform registers
 * whenever an unhandled exception is taken in
 * BL31.
 *
 * There are currently no platform specific regs
 * to print.
 * ---------------------------------------------
 */
	.macro plat_crash_print_regs
	.endm
23
24

#endif /* PLAT_MACROS_S */