Use the same 'itl' (for image-tool) whenever this parameter is passed around. This makes it easier to recognise. Move away from using the word 'parameters', since it contains essentially all of the info about the tool, not just parameters. Use 'info' instead. Signed-off-by: Simon Glass <sjg@chromium.org>
49 lines
874 B
C
49 lines
874 B
C
// 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
|
|
*/
|
|
|
|
#include "imagetool.h"
|
|
#include <image.h>
|
|
#include "rkcommon.h"
|
|
|
|
static uint32_t header;
|
|
|
|
static void rkimage_set_header(void *buf, struct stat *sbuf, int ifd,
|
|
struct imgtool *itl)
|
|
{
|
|
memcpy(buf, rkcommon_get_spl_hdr(itl), RK_SPL_HDR_SIZE);
|
|
|
|
if (rkcommon_need_rc4_spl(itl))
|
|
rkcommon_rc4_encode_spl(buf, 0, itl->file_size);
|
|
}
|
|
|
|
static int rkimage_check_image_type(uint8_t type)
|
|
{
|
|
if (type == IH_TYPE_RKIMAGE)
|
|
return EXIT_SUCCESS;
|
|
else
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
/*
|
|
* rk_image parameters
|
|
*/
|
|
U_BOOT_IMAGE_TYPE(
|
|
rkimage,
|
|
"Rockchip Boot Image support",
|
|
0,
|
|
&header,
|
|
rkcommon_check_params,
|
|
NULL,
|
|
NULL,
|
|
rkimage_set_header,
|
|
NULL,
|
|
rkimage_check_image_type,
|
|
NULL,
|
|
NULL
|
|
);
|