| // SPDX-License-Identifier: GPL-2.0+ |
| * (C) Copyright 2015 Google, Inc |
| * Written by Simon Glass <sjg@chromium.org> |
| * See README.rockchip for details of the rkimage format |
| static void rkimage_set_header(void *buf, struct stat *sbuf, int ifd, |
| struct image_tool_params *params) |
| memcpy(buf, rkcommon_get_spl_hdr(params), RK_SPL_HDR_SIZE); |
| if (rkcommon_need_rc4_spl(params)) |
| rkcommon_rc4_encode_spl(buf, 4, params->file_size); |
| static int rkimage_check_image_type(uint8_t type) |
| if (type == IH_TYPE_RKIMAGE) |
| "Rockchip Boot Image support", |
| rkimage_check_image_type, |