2 * (C) Copyright 2015 Google, Inc
3 * Written by Simon Glass <sjg@chromium.org>
5 * SPDX-License-Identifier: GPL-2.0+
14 RK_MAX_BOOT_SIZE = 512 << 10,
15 RK_MAX_CODE1_SIZE = 32 << 10,
19 * rkcommon_set_header() - set up the header for a Rockchip boot image
21 * This sets up a 2KB header which can be interpreted by the Rockchip boot ROM.
23 * @buf: Pointer to header place (must be at least 2KB in size)
24 * @file_size: Size of the file we want the boot ROM to load, in bytes
25 * @return 0 if OK, -ENOSPC if too large
27 int rkcommon_set_header(void *buf, uint file_size);