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

This commit makes imx image io-storage logic common for all imx platform. Signed-off-by: Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Change-Id: I15045ac8f9dfa8cb714e32f9e7475d5eae4e86e4
20 lines
550 B
C
20 lines
550 B
C
/*
|
|
* Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef IMX7_DEF_H
|
|
#define IMX7_DEF_H
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
/*******************************************************************************
|
|
* Function and variable prototypes
|
|
******************************************************************************/
|
|
void plat_imx_io_setup(void);
|
|
void imx7_platform_setup(u_register_t arg1, u_register_t arg2,
|
|
u_register_t arg3, u_register_t arg4);
|
|
|
|
#endif /*IMX7_DEF_H */
|