mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 01:24:27 +00:00

JR1, JR2 and JR3 are available for use by the non secure world. Setup the A35 core DID for these job rings. Signed-off-by: Varun Sethi <v.sethi@nxp.com> Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com> Signed-off-by: Jacky Bai <ping.bai@nxp.com> Change-Id: If64d4ce11ebff49a2405d8b561b344fcd7b2614f
24 lines
489 B
C
24 lines
489 B
C
/*
|
|
* Copyright 2021-2024 NXP.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef IMX8ULP_CAAM_H
|
|
#define IMX8ULP_CAAM_H
|
|
|
|
#include <lib/utils_def.h>
|
|
|
|
#include <platform_def.h>
|
|
|
|
#define CAAM_JR0MID (IMX_CAAM_BASE + 0x10)
|
|
#define CAAM_JR1MID (IMX_CAAM_BASE + 0x18)
|
|
#define CAAM_JR2MID (IMX_CAAM_BASE + 0x20)
|
|
#define CAAM_JR3MID (IMX_CAAM_BASE + 0x28)
|
|
#define CAAM_NS_MID (0x7)
|
|
|
|
#define JR0_BASE (IMX_CAAM_BASE + 0x1000)
|
|
|
|
void imx8ulp_caam_init(void);
|
|
|
|
#endif /* IMX8ULP_CAAM_H */
|