mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
6ae5860942
Our chips may have different max spl size and spl header, so we need to add configs for that. Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com> Acked-by: Simon Glass <sjg@chromium.org> Dropped CONFIG_ROCKCHIP_MAX_SPL_SIZE from rk3288_common.h, Added $(if...) to tools/Makefile to fix widespread build breakage Signed-off-by: Simon Glass <sjg@chromium.org> Series-changes: 8 - Drop CONFIG_ROCKCHIP_MAX_SPL_SIZE from rk3288_common.h, - Add $(if...) to tools/Makefile to fix widespread build breakage
65 lines
1.1 KiB
C
65 lines
1.1 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>
|
|
|
|
static uint32_t header;
|
|
|
|
static int rkimage_check_params(struct image_tool_params *params)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
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, CONFIG_ROCKCHIP_SPL_HDR, 4);
|
|
}
|
|
|
|
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,
|
|
rkimage_check_params,
|
|
rkimage_verify_header,
|
|
rkimage_print_header,
|
|
rkimage_set_header,
|
|
rkimage_extract_subimage,
|
|
rkimage_check_image_type,
|
|
NULL,
|
|
NULL
|
|
);
|