blob: 71e792e3c489d9e48d8eaabb943f58c0aa08ef13 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Heiko Schocher6bf4ca02014-03-03 12:19:29 +01002/*
3 * (C) Copyright 2014
Heiko Schocher6bf4ca02014-03-03 12:19:29 +01004 */
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
13int fit_verify_header(unsigned char *ptr, int image_size,
14 struct image_tool_params *params);
15
16int fit_check_image_types(uint8_t type);
17
Simon Glassef0af642014-06-02 22:04:52 -060018/**
19 * Map an FDT into memory, optionally increasing its size
20 *
21 * @cmdname: Tool name (for displaying with error messages)
22 * @fname: Filename containing FDT
Simon Glassa9468112014-06-02 22:04:53 -060023 * @size_inc: Amount to increase size by (0 = leave it alone)
Simon Glassef0af642014-06-02 22:04:52 -060024 * @blobp: Returns pointer to FDT blob
25 * @sbuf: File status information is stored here
26 * @delete_on_error: true to delete the file if we get an error
27 * @return 0 if OK, -1 on error.
28 */
Simon Glassa9468112014-06-02 22:04:53 -060029int mmap_fdt(const char *cmdname, const char *fname, size_t size_inc,
30 void **blobp, struct stat *sbuf, bool delete_on_error);
Heiko Schocher6bf4ca02014-03-03 12:19:29 +010031
32#endif /* _FIT_COMMON_H_ */