mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-27 07:15:20 +00:00

ERR051700 erratum is present on all S32CC-based SoCs and relates to reset. Releasing multiple Software Resettable Domains (SRDs) from reset simultaneously, may cause a false error in the fault control unit. The workaround is to clear the SRD resets sequentially instead of simultaneously. Change-Id: I883bc223bf6834907259e6964a5702d7186e4c7f Signed-off-by: Alexandru-Catalin Ionita <alexandru-catalin.ionita@nxp.com> Signed-off-by: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
12 lines
249 B
C
12 lines
249 B
C
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright 2020-2021, 2023-2024 NXP
|
|
*/
|
|
#ifndef S32CC_MC_RGM_H
|
|
#define S32CC_MC_RGM_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void mc_rgm_periph_reset(uintptr_t rgm, uint32_t part, uint32_t value);
|
|
|
|
#endif /* MC_RGM_H */
|