blob: d3d70e45d7809c64533fd496f6066aad281a411f [file] [log] [blame]
Soby Mathew5e5c2072014-04-07 15:28:55 +01001/*
Vikram Kanigirifbb13012016-02-15 11:54:14 +00002 * Copyright (c) 2014-2016, ARM Limited and Contributors. All rights reserved.
Soby Mathew5e5c2072014-04-07 15:28:55 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathew5e5c2072014-04-07 15:28:55 +01005 */
Dan Handleyea596682015-04-01 17:34:24 +01006#ifndef __PLAT_MACROS_S__
7#define __PLAT_MACROS_S__
8
Dan Handley2b6b5742015-03-19 19:17:53 +00009#include <arm_macros.S>
Vikram Kanigirifbb13012016-02-15 11:54:14 +000010#include <cci_macros.S>
Dan Handley2b6b5742015-03-19 19:17:53 +000011#include <v2m_def.h>
Dan Handleybe234f92014-08-04 16:11:15 +010012#include "../fvp_def.h"
Soby Mathew5e5c2072014-04-07 15:28:55 +010013
Soby Mathew5e5c2072014-04-07 15:28:55 +010014 /* ---------------------------------------------
Dan Handley2b6b5742015-03-19 19:17:53 +000015 * The below required platform porting macro
Gerald Lejeune2c7ed5b2015-11-26 15:47:53 +010016 * prints out relevant GIC and CCI registers
17 * whenever an unhandled exception is taken in
18 * BL31.
Soby Mathew383c4772014-09-01 12:29:27 +010019 * Clobbers: x0 - x10, x16, x17, sp
Soby Mathew5e5c2072014-04-07 15:28:55 +010020 * ---------------------------------------------
21 */
Gerald Lejeune2c7ed5b2015-11-26 15:47:53 +010022 .macro plat_crash_print_regs
Dan Handley2b6b5742015-03-19 19:17:53 +000023 /*
24 * Detect if we're using the base memory map or
25 * the legacy VE memory map
26 */
27 mov_imm x0, (V2M_SYSREGS_BASE + V2M_SYS_ID)
Soby Mathew383c4772014-09-01 12:29:27 +010028 ldr w16, [x0]
29 /* Extract BLD (12th - 15th bits) from the SYS_ID */
Dan Handley2b6b5742015-03-19 19:17:53 +000030 ubfx x16, x16, #V2M_SYS_ID_BLD_SHIFT, #4
Soby Mathew383c4772014-09-01 12:29:27 +010031 /* Check if VE mmap */
32 cmp w16, #BLD_GIC_VE_MMAP
33 b.eq use_ve_mmap
Soby Mathew12012dd2015-10-26 14:01:53 +000034 /* Assume Base Cortex mmap */
Soby Mathew383c4772014-09-01 12:29:27 +010035 mov_imm x17, BASE_GICC_BASE
36 mov_imm x16, BASE_GICD_BASE
Soby Mathew12012dd2015-10-26 14:01:53 +000037 b print_gic_regs
Soby Mathew383c4772014-09-01 12:29:27 +010038use_ve_mmap:
39 mov_imm x17, VE_GICC_BASE
40 mov_imm x16, VE_GICD_BASE
Soby Mathew12012dd2015-10-26 14:01:53 +000041print_gic_regs:
Dan Handley2b6b5742015-03-19 19:17:53 +000042 arm_print_gic_regs
Soby Mathew7356b1e2016-03-24 10:12:42 +000043#if FVP_INTERCONNECT_DRIVER == FVP_CCI
Gerald Lejeune2c7ed5b2015-11-26 15:47:53 +010044 print_cci_regs
Soby Mathew7356b1e2016-03-24 10:12:42 +000045#endif
Soby Mathew0da95932014-07-16 09:23:52 +010046 .endm
Dan Handleyea596682015-04-01 17:34:24 +010047
48#endif /* __PLAT_MACROS_S__ */