Lionel Debieve | 402a46b | 2019-11-04 12:28:15 +0100 | [diff] [blame] | 1 | /* |
| 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 Debieve | 186b046 | 2019-09-24 18:30:12 +0200 | [diff] [blame] | 11 | #include <drivers/spi_nand.h> |
Lionel Debieve | cb0dbc4 | 2019-09-25 09:11:31 +0200 | [diff] [blame] | 12 | #include <drivers/spi_nor.h> |
Lionel Debieve | 402a46b | 2019-11-04 12:28:15 +0100 | [diff] [blame] | 13 | |
| 14 | int plat_get_raw_nand_data(struct rawnand_device *device); |
Lionel Debieve | 186b046 | 2019-09-24 18:30:12 +0200 | [diff] [blame] | 15 | int plat_get_spi_nand_data(struct spinand_device *device); |
Lionel Debieve | cb0dbc4 | 2019-09-25 09:11:31 +0200 | [diff] [blame] | 16 | int plat_get_nor_data(struct nor_device *device); |
Lionel Debieve | 402a46b | 2019-11-04 12:28:15 +0100 | [diff] [blame] | 17 | |
| 18 | #endif /* STM32MP1_BOOT_DEVICE_H */ |