mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 09:48:16 +00:00
cfbcdade76
Rockchip SoCs allow the spl code to be rc4-encoded, not only the image header, but only newer SoCs allow this encoding to be disabled. The rk3188 is not part of those and requires its boot code to be rc4-encoded with the regular key. So add the ability to do this encoding via a setting on a per-soc basis when building spl images. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Kever Yang <kever.yang@rock-chips.com> Tested-by: Kever Yang <kever.yang@rock-chips.com>
65 lines
1.2 KiB
C
65 lines
1.2 KiB
C
/*
|
|
* (C) Copyright 2015 Google, Inc
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*
|
|
* See README.rockchip for details of the rkimage format
|
|
*/
|
|
|
|
#include "imagetool.h"
|
|
#include <image.h>
|
|
#include "rkcommon.h"
|
|
|
|
static uint32_t header;
|
|
|
|
static int rkimage_verify_header(unsigned char *buf, int size,
|
|
struct image_tool_params *params)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static void rkimage_print_header(const void *buf)
|
|
{
|
|
}
|
|
|
|
static void rkimage_set_header(void *buf, struct stat *sbuf, int ifd,
|
|
struct image_tool_params *params)
|
|
{
|
|
memcpy(buf + RK_SPL_HDR_START, 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_extract_subimage(void *buf, struct image_tool_params *params)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
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",
|
|
4,
|
|
&header,
|
|
rkcommon_check_params,
|
|
rkimage_verify_header,
|
|
rkimage_print_header,
|
|
rkimage_set_header,
|
|
rkimage_extract_subimage,
|
|
rkimage_check_image_type,
|
|
NULL,
|
|
NULL
|
|
);
|