]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/powerpc/lib/spl.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / arch / powerpc / lib / spl.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
ea8256f0
SR
2/*
3 * Copyright 2012 Stefan Roese <sr@denx.de>
ea8256f0
SR
4 */
5#include <common.h>
6#include <config.h>
7#include <spl.h>
8#include <image.h>
9#include <linux/compiler.h>
10
ea8256f0
SR
11/*
12 * This function jumps to an image with argument. Normally an FDT or ATAGS
13 * image.
ea8256f0
SR
14 */
15#ifdef CONFIG_SPL_OS_BOOT
5bf5250e 16void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
ea8256f0 17{
5bf5250e 18 debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
ea8256f0
SR
19 typedef void (*image_entry_arg_t)(void *, ulong r4, ulong r5, ulong r6,
20 ulong r7, ulong r8, ulong r9)
21 __attribute__ ((noreturn));
22 image_entry_arg_t image_entry =
ca12e65c 23 (image_entry_arg_t)spl_image->entry_point;
ea8256f0 24
5bf5250e
VM
25 image_entry(spl_image->arg, 0, 0, EPAPR_MAGIC, CONFIG_SYS_BOOTMAPSZ,
26 0, 0);
ea8256f0
SR
27}
28#endif /* CONFIG_SPL_OS_BOOT */