mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00

STM32MP1 platform is able to boot from raw NAND devices. These modifications add this support using the new raw NAND framework. Change-Id: I9e9c2b03930f98a5ac23f2b6b41945bef43e5043 Signed-off-by: Lionel Debieve <lionel.debieve@st.com>
14 lines
306 B
C
14 lines
306 B
C
/*
|
|
* Copyright (c) 2019, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef STM32MP1_BOOT_DEVICE_H
|
|
#define STM32MP1_BOOT_DEVICE_H
|
|
|
|
#include <drivers/raw_nand.h>
|
|
|
|
int plat_get_raw_nand_data(struct rawnand_device *device);
|
|
|
|
#endif /* STM32MP1_BOOT_DEVICE_H */
|