blob: 6f412225fa74a602a2305ccd7b3d498adb961363 [file] [log] [blame]
Sascha Hauereb3d2ee2024-01-18 08:47:06 +01001/*
2 * Copyright (c) 2024, Pengutronix, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6#ifndef PLAT_COMMON_H
7#define PLAT_COMMON_H
8
9#include <stdint.h>
10#include <common/bl_common.h>
11
12int imx_bl31_params_parse(uintptr_t arg0, uintptr_t ocram_base,
13 uintptr_t ocram_size,
14 entry_point_info_t *bl32_info,
15 entry_point_info_t *bl33_info);
16
17#endif /* PLAT_COMMON_H */