2 * (C) Copyright 2015 Google, Inc
3 * Written by Simon Glass <sjg@chromium.org>
5 * SPDX-License-Identifier: GPL-2.0+
7 * See README.rockchip for details of the rkimage format
10 #include "imagetool.h"
13 static uint32_t header;
15 static int rkimage_check_params(struct image_tool_params *params)
20 static int rkimage_verify_header(unsigned char *buf, int size,
21 struct image_tool_params *params)
26 static void rkimage_print_header(const void *buf)
30 static void rkimage_set_header(void *buf, struct stat *sbuf, int ifd,
31 struct image_tool_params *params)
33 memcpy(buf, "RK32", 4);
36 static int rkimage_extract_subimage(void *buf, struct image_tool_params *params)
41 static int rkimage_check_image_type(uint8_t type)
43 if (type == IH_TYPE_RKIMAGE)
54 "Rockchip Boot Image support",
58 rkimage_verify_header,
61 rkimage_extract_subimage,
62 rkimage_check_image_type,