mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
f25c1755a7
The 'rkimage' format used for booting rockchip boards over USB seems to have been broken since commit7bf274b9ca
("rockchip: mkimage: use imagename to select spl hdr & spl size"). That commit adds an offset of RK_SPL_HDR_START(=2048) to the location the 'RKxx' header is written at. However the bootrom expects this header to be the first four bytes of the image, not at offset 2048. This appears to have been a copy paste error since the 'rksd' and 'rkspi' image types do require this offset. Furthermore commit111bcc4fb6
("rockchip: mkimage: pad the header to 8-bytes (using a 'nop') for RK3399"), commit3d54eabcaf
("rockchip: spl: RK3399: use boot0 hook to create space for SPL magic") and commit3082775692
("rockchip: mkimage: update rkimage to support pre-padded payloads") changed the way the space for the 'RKxx' header is allocated and written to the image without adjusting 'rkimage'. This commit fixes those mistakes and makes it possible to load u-boot SPL over USB once more. (Tested on RK3399) Signed-off-by: Daniel Gröber <daniel@dps.uibk.ac.at> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
48 lines
896 B
C
48 lines
896 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 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)
|
|
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
|
|
);
|