Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Stefan Agner | 5661f08 | 2017-08-16 11:00:51 -0700 | [diff] [blame] | 2 | /* |
| 3 | * sdp.h - Serial Download Protocol |
| 4 | * |
| 5 | * Copyright (C) 2017 Toradex |
| 6 | * Author: Stefan Agner <stefan.agner@toradex.com> |
Stefan Agner | 5661f08 | 2017-08-16 11:00:51 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef __SDP_H_ |
| 10 | #define __SDP_H_ |
| 11 | |
| 12 | int sdp_init(int controller_index); |
Frieder Schrempf | 2c72ead | 2019-06-04 21:56:29 +0200 | [diff] [blame] | 13 | |
| 14 | #ifdef CONFIG_SPL_BUILD |
| 15 | #include <spl.h> |
| 16 | |
| 17 | int spl_sdp_handle(int controller_index, struct spl_image_info *spl_image); |
| 18 | #else |
| 19 | int sdp_handle(int controller_index); |
| 20 | #endif |
Stefan Agner | 5661f08 | 2017-08-16 11:00:51 -0700 | [diff] [blame] | 21 | |
| 22 | #endif /* __SDP_H_ */ |