blob: b93197030e3fd4d1de428313efe4a26fb7180c5e [file] [log] [blame]
Stefan Roeseea8256f2012-08-23 08:34:21 +02001/*
2 * Copyright 2012 Stefan Roese <sr@denx.de>
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Stefan Roeseea8256f2012-08-23 08:34:21 +02005 */
6#include <common.h>
7#include <config.h>
8#include <spl.h>
9#include <image.h>
10#include <linux/compiler.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
14/*
15 * This function jumps to an image with argument. Normally an FDT or ATAGS
16 * image.
Stefan Roeseea8256f2012-08-23 08:34:21 +020017 */
18#ifdef CONFIG_SPL_OS_BOOT
Vikas Manocha5bf52502017-04-07 15:38:13 -070019void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
Stefan Roeseea8256f2012-08-23 08:34:21 +020020{
Vikas Manocha5bf52502017-04-07 15:38:13 -070021 debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
Stefan Roeseea8256f2012-08-23 08:34:21 +020022 typedef void (*image_entry_arg_t)(void *, ulong r4, ulong r5, ulong r6,
23 ulong r7, ulong r8, ulong r9)
24 __attribute__ ((noreturn));
25 image_entry_arg_t image_entry =
Simon Glassca12e652016-09-24 18:19:54 -060026 (image_entry_arg_t)spl_image->entry_point;
Stefan Roeseea8256f2012-08-23 08:34:21 +020027
Vikas Manocha5bf52502017-04-07 15:38:13 -070028 image_entry(spl_image->arg, 0, 0, EPAPR_MAGIC, CONFIG_SYS_BOOTMAPSZ,
29 0, 0);
Stefan Roeseea8256f2012-08-23 08:34:21 +020030}
31#endif /* CONFIG_SPL_OS_BOOT */