blob: 3a24cbfff3bcfed25e601f34686de427fd9241ce [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roeseec90d342012-08-23 08:34:21 +02002/*
3 * Copyright 2012 Stefan Roese <sr@denx.de>
Stefan Roeseec90d342012-08-23 08:34:21 +02004 */
Stefan Roeseec90d342012-08-23 08:34:21 +02005#include <config.h>
Simon Glass0f2af882020-05-10 11:40:05 -06006#include <log.h>
Stefan Roeseec90d342012-08-23 08:34:21 +02007#include <spl.h>
8#include <image.h>
9#include <linux/compiler.h>
10
Stefan Roeseec90d342012-08-23 08:34:21 +020011/*
12 * This function jumps to an image with argument. Normally an FDT or ATAGS
13 * image.
Stefan Roeseec90d342012-08-23 08:34:21 +020014 */
15#ifdef CONFIG_SPL_OS_BOOT
Vikas Manocha62b021c2017-04-07 15:38:13 -070016void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
Stefan Roeseec90d342012-08-23 08:34:21 +020017{
Vikas Manocha62b021c2017-04-07 15:38:13 -070018 debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
Stefan Roeseec90d342012-08-23 08:34:21 +020019 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 =
Simon Glassb805c352016-09-24 18:19:54 -060023 (image_entry_arg_t)spl_image->entry_point;
Stefan Roeseec90d342012-08-23 08:34:21 +020024
Tom Rini6a5dccc2022-11-16 13:10:41 -050025 image_entry(spl_image->arg, 0, 0, EPAPR_MAGIC, CFG_SYS_BOOTMAPSZ,
Vikas Manocha62b021c2017-04-07 15:38:13 -070026 0, 0);
Stefan Roeseec90d342012-08-23 08:34:21 +020027}
28#endif /* CONFIG_SPL_OS_BOOT */