stm32mp1_boot_device.h 474 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
/*
 * 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>
11
#include <drivers/spi_nand.h>
12
#include <drivers/spi_nor.h>
13
14

int plat_get_raw_nand_data(struct rawnand_device *device);
15
int plat_get_spi_nand_data(struct spinand_device *device);
16
int plat_get_nor_data(struct nor_device *device);
17
18

#endif /* STM32MP1_BOOT_DEVICE_H */