Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Heiko Schocher | 6bf4ca0 | 2014-03-03 12:19:29 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2014 |
Heiko Schocher | 6bf4ca0 | 2014-03-03 12:19:29 +0100 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef _FIT_COMMON_H_ |
| 7 | #define _FIT_COMMON_H_ |
| 8 | |
| 9 | #include "imagetool.h" |
| 10 | #include "mkimage.h" |
| 11 | #include <image.h> |
| 12 | |
Jordan Hand | d32aa3c | 2019-03-05 14:47:56 -0800 | [diff] [blame] | 13 | /** |
| 14 | * Verify the format of FIT header pointed to by ptr |
| 15 | * |
| 16 | * @ptr: image header to be verified |
| 17 | * @image_size: size of while image |
| 18 | * @params: mkimage parameters |
| 19 | * @return 0 if OK, -1 on error |
| 20 | */ |
Heiko Schocher | 6bf4ca0 | 2014-03-03 12:19:29 +0100 | [diff] [blame] | 21 | int fit_verify_header(unsigned char *ptr, int image_size, |
| 22 | struct image_tool_params *params); |
| 23 | |
| 24 | int fit_check_image_types(uint8_t type); |
| 25 | |
Simon Glass | ef0af64 | 2014-06-02 22:04:52 -0600 | [diff] [blame] | 26 | /** |
| 27 | * Map an FDT into memory, optionally increasing its size |
| 28 | * |
| 29 | * @cmdname: Tool name (for displaying with error messages) |
| 30 | * @fname: Filename containing FDT |
Simon Glass | a946811 | 2014-06-02 22:04:53 -0600 | [diff] [blame] | 31 | * @size_inc: Amount to increase size by (0 = leave it alone) |
Simon Glass | ef0af64 | 2014-06-02 22:04:52 -0600 | [diff] [blame] | 32 | * @blobp: Returns pointer to FDT blob |
| 33 | * @sbuf: File status information is stored here |
| 34 | * @delete_on_error: true to delete the file if we get an error |
Luca Boccassi | 7d57485 | 2019-05-14 19:35:02 +0100 | [diff] [blame] | 35 | * @read_only: true to open in read-only mode |
Simon Glass | ef0af64 | 2014-06-02 22:04:52 -0600 | [diff] [blame] | 36 | * @return 0 if OK, -1 on error. |
| 37 | */ |
Simon Glass | a946811 | 2014-06-02 22:04:53 -0600 | [diff] [blame] | 38 | int mmap_fdt(const char *cmdname, const char *fname, size_t size_inc, |
Luca Boccassi | 7d57485 | 2019-05-14 19:35:02 +0100 | [diff] [blame] | 39 | void **blobp, struct stat *sbuf, bool delete_on_error, |
| 40 | bool read_only); |
Heiko Schocher | 6bf4ca0 | 2014-03-03 12:19:29 +0100 | [diff] [blame] | 41 | |
| 42 | #endif /* _FIT_COMMON_H_ */ |