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"
14 static uint32_t header;
16 static int rkimage_verify_header(unsigned char *buf, int size,
17 struct image_tool_params *params)
22 static void rkimage_print_header(const void *buf)
26 static void rkimage_set_header(void *buf, struct stat *sbuf, int ifd,
27 struct image_tool_params *params)
29 memcpy(buf + RK_SPL_HDR_START, rkcommon_get_spl_hdr(params),
33 static int rkimage_extract_subimage(void *buf, struct image_tool_params *params)
38 static int rkimage_check_image_type(uint8_t type)
40 if (type == IH_TYPE_RKIMAGE)
51 "Rockchip Boot Image support",
54 rkcommon_check_params,
55 rkimage_verify_header,
58 rkimage_extract_subimage,
59 rkimage_check_image_type,