Blame view

tools/fit_common.h 1.13 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  /* SPDX-License-Identifier: GPL-2.0+ */
6bf4ca076   Heiko Schocher   tools, fit: add f...
2
3
  /*
   * (C) Copyright 2014
6bf4ca076   Heiko Schocher   tools, fit: add f...
4
5
6
7
8
9
10
11
   */
  
  #ifndef _FIT_COMMON_H_
  #define _FIT_COMMON_H_
  
  #include "imagetool.h"
  #include "mkimage.h"
  #include <image.h>
d32aa3cae   Jordan Hand   fdt: Fix FIT head...
12
13
14
15
16
17
18
19
  /**
   * Verify the format of FIT header pointed to by ptr
   *
   * @ptr: image header to be verified
   * @image_size: size of while image
   * @params: mkimage parameters
   * @return 0 if OK, -1 on error
   */
6bf4ca076   Heiko Schocher   tools, fit: add f...
20
21
22
23
  int fit_verify_header(unsigned char *ptr, int image_size,
  			struct image_tool_params *params);
  
  int fit_check_image_types(uint8_t type);
ef0af64b1   Simon Glass   Improve error han...
24
25
26
27
28
  /**
   * Map an FDT into memory, optionally increasing its size
   *
   * @cmdname:	Tool name (for displaying with error messages)
   * @fname:	Filename containing FDT
a94681156   Simon Glass   mkimage: Automati...
29
   * @size_inc:	Amount to increase size by (0 = leave it alone)
ef0af64b1   Simon Glass   Improve error han...
30
31
32
   * @blobp:	Returns pointer to FDT blob
   * @sbuf:	File status information is stored here
   * @delete_on_error:	true to delete the file if we get an error
7d57485a8   Luca Boccassi   tools: use read-o...
33
   * @read_only:	true to open in read-only mode
ef0af64b1   Simon Glass   Improve error han...
34
35
   * @return 0 if OK, -1 on error.
   */
a94681156   Simon Glass   mkimage: Automati...
36
  int mmap_fdt(const char *cmdname, const char *fname, size_t size_inc,
7d57485a8   Luca Boccassi   tools: use read-o...
37
38
  	     void **blobp, struct stat *sbuf, bool delete_on_error,
  	     bool read_only);
6bf4ca076   Heiko Schocher   tools, fit: add f...
39
40
  
  #endif /* _FIT_COMMON_H_ */