blob: db80f933894d84ea0fb31efcc63864f2fc68d6fa [file] [log] [blame]
Lionel Debieve402a46b2019-11-04 12:28:15 +01001/*
2 * Copyright (c) 2019, STMicroelectronics - All Rights Reserved
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef STM32MP1_BOOT_DEVICE_H
8#define STM32MP1_BOOT_DEVICE_H
9
10#include <drivers/raw_nand.h>
Lionel Debieve186b0462019-09-24 18:30:12 +020011#include <drivers/spi_nand.h>
Lionel Debieve402a46b2019-11-04 12:28:15 +010012
13int plat_get_raw_nand_data(struct rawnand_device *device);
Lionel Debieve186b0462019-09-24 18:30:12 +020014int plat_get_spi_nand_data(struct spinand_device *device);
Lionel Debieve402a46b2019-11-04 12:28:15 +010015
16#endif /* STM32MP1_BOOT_DEVICE_H */