From be58c81aff4cd4c0ccf43dbd7998da4a6a08c03b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 19:43:51 +0200 Subject: Adding upstream version 2.10.0+dfsg. Signed-off-by: Daniel Baumann --- plat/imx/common/imx_csu.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 plat/imx/common/imx_csu.c (limited to 'plat/imx/common/imx_csu.c') diff --git a/plat/imx/common/imx_csu.c b/plat/imx/common/imx_csu.c new file mode 100644 index 0000000..7e165d9 --- /dev/null +++ b/plat/imx/common/imx_csu.c @@ -0,0 +1,19 @@ +/* + * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +#include + +#include +#include + +void imx_csu_init(void) +{ + int i; + uintptr_t *csl_reg = (uintptr_t *)CSU_BASE; + + for (i = 0; i < MXC_MAX_CSU_REGS; i++, csl_reg++) + mmio_write_32((uintptr_t)csl_reg, CSU_CSL_OPEN_ACCESS); +} -- cgit v1.2.3