blob: 3a4f7203b2648826ccb9657b16b23fcb73f96483 [file] [log] [blame]
Remi Pommarel07e1e9e2019-07-14 20:49:12 +02001/*
2 * Copyright (C) 2019 Repk repk@triplefau.lt
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 * https://spdx.org/licenses
6 */
7#include <common/bl_common.h>
8#include <common/debug.h>
9#include <arch_helpers.h>
Pali Rohárc36e97f2021-06-21 17:22:27 +020010#include <plat/common/platform.h>
Remi Pommarel07e1e9e2019-07-14 20:49:12 +020011
12#define ADVK_SERROR_SYNDROME 0xbf000002
13
14void plat_ea_handler(unsigned int ea_reason, uint64_t syndrome, void *cookie,
15 void *handle, uint64_t flags)
16{
Pali Rohárc36e97f2021-06-21 17:22:27 +020017 if (syndrome == ADVK_SERROR_SYNDROME)
18 return;
19
20 plat_default_ea_handler(ea_reason, syndrome, cookie, handle, flags);
Remi Pommarel07e1e9e2019-07-14 20:49:12 +020021}