blob: d4a6057527c2e0e848d7912e21af0a42c2f24caa [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roeseea8256f2012-08-23 08:34:21 +02002/*
3 * Copyright 2012 Stefan Roese <sr@denx.de>
Stefan Roeseea8256f2012-08-23 08:34:21 +02004 */
5#include <common.h>
6#include <config.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06007#include <log.h>
Stefan Roeseea8256f2012-08-23 08:34:21 +02008#include <spl.h>
9#include <image.h>
10#include <linux/compiler.h>
11
Stefan Roeseea8256f2012-08-23 08:34:21 +020012/*
13 * This function jumps to an image with argument. Normally an FDT or ATAGS
14 * image.
Stefan Roeseea8256f2012-08-23 08:34:21 +020015 */
16#ifdef CONFIG_SPL_OS_BOOT
Vikas Manocha5bf52502017-04-07 15:38:13 -070017void __noreturn jump_to_image_linux(struct spl_image_info *spl_image)
Stefan Roeseea8256f2012-08-23 08:34:21 +020018{
Vikas Manocha5bf52502017-04-07 15:38:13 -070019 debug("Entering kernel arg pointer: 0x%p\n", spl_image->arg);
Stefan Roeseea8256f2012-08-23 08:34:21 +020020 typedef void (*image_entry_arg_t)(void *, ulong r4, ulong r5, ulong r6,
21 ulong r7, ulong r8, ulong r9)
22 __attribute__ ((noreturn));
23 image_entry_arg_t image_entry =
Simon Glassca12e652016-09-24 18:19:54 -060024 (image_entry_arg_t)spl_image->entry_point;
Stefan Roeseea8256f2012-08-23 08:34:21 +020025
Vikas Manocha5bf52502017-04-07 15:38:13 -070026 image_entry(spl_image->arg, 0, 0, EPAPR_MAGIC, CONFIG_SYS_BOOTMAPSZ,
27 0, 0);
Stefan Roeseea8256f2012-08-23 08:34:21 +020028}
29#endif /* CONFIG_SPL_OS_BOOT */