blob: a74598395f465ebfddc7fd7735c958dc2b8cbb1a [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 Debievecb0dbc42019-09-25 09:11:31 +020012#include <drivers/spi_nor.h>
Lionel Debieve402a46b2019-11-04 12:28:15 +010013
14int plat_get_raw_nand_data(struct rawnand_device *device);
Lionel Debieve186b0462019-09-24 18:30:12 +020015int plat_get_spi_nand_data(struct spinand_device *device);
Lionel Debievecb0dbc42019-09-25 09:11:31 +020016int plat_get_nor_data(struct nor_device *device);
Lionel Debieve402a46b2019-11-04 12:28:15 +010017
18#endif /* STM32MP1_BOOT_DEVICE_H */