blob: e606d470e3809b5e8f4b529a24bd25621f096602 [file] [log] [blame]
Tom Rini6507f132012-08-22 15:31:05 -07001/*
2 * (C) Copyright 2010-2012
3 * Texas Instruments, <www.ti.com>
4 *
5 * Aneesh V <aneesh@ti.com>
6 * Tom Rini <trini@ti.com>
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Tom Rini6507f132012-08-22 15:31:05 -07009 */
10#include <common.h>
11#include <config.h>
12#include <spl.h>
13#include <image.h>
14#include <linux/compiler.h>
15
Tom Rinib5d92ba2015-07-31 19:55:10 -040016#ifndef CONFIG_SPL_DM
Tom Rini6507f132012-08-22 15:31:05 -070017/* Pointer to as well as the global data structure for SPL */
18DECLARE_GLOBAL_DATA_PTR;
Simon Glass480ca132014-12-23 12:04:51 -070019
20/*
21 * WARNING: This is going away very soon. Don't use it and don't submit
22 * pafches that rely on it. The global_data area is set up in crt0.S.
23 */
Tom Rini6507f132012-08-22 15:31:05 -070024gd_t gdata __attribute__ ((section(".data")));
Simon Glassfc8fdc72015-03-03 08:02:58 -070025#endif
Tom Rini6507f132012-08-22 15:31:05 -070026
27/*
Jeremy Huntb8cb51d2016-07-18 12:01:02 -040028 * In the context of SPL, board_init_f() prepares the hardware for execution
29 * from system RAM (DRAM, DDR...). As system RAM may not be available yet,
30 * board_init_f() must use the current GD to store any data which must be
31 * passed on to later stages. These data include the relocation destination,
32 * the future stack, and the future GD location. BSS is cleared after this
33 * function (and therefore must be accessible).
34 *
35 * We provide this version by default but mark it as __weak to allow for
36 * platforms to do this in their own way if needed. Please see the top
37 * level U-Boot README "Board Initialization Flow" section for info on what
38 * to put in this function.
Tom Rini6507f132012-08-22 15:31:05 -070039 */
40void __weak board_init_f(ulong dummy)
41{
Tom Rini6507f132012-08-22 15:31:05 -070042}
43
44/*
45 * This function jumps to an image with argument. Normally an FDT or ATAGS
46 * image.
47 * arg: Pointer to paramter image in RAM
48 */
49#ifdef CONFIG_SPL_OS_BOOT
Simon Glassca12e652016-09-24 18:19:54 -060050void __noreturn jump_to_image_linux(struct spl_image_info *spl_image, void *arg)
Tom Rini6507f132012-08-22 15:31:05 -070051{
Tom Riniec101fd2013-08-09 11:22:15 -040052 unsigned long machid = 0xffffffff;
53#ifdef CONFIG_MACH_TYPE
54 machid = CONFIG_MACH_TYPE;
55#endif
56
Tom Rini6507f132012-08-22 15:31:05 -070057 debug("Entering kernel arg pointer: 0x%p\n", arg);
58 typedef void (*image_entry_arg_t)(int, int, void *)
59 __attribute__ ((noreturn));
60 image_entry_arg_t image_entry =
Simon Glassca12e652016-09-24 18:19:54 -060061 (image_entry_arg_t)(uintptr_t) spl_image->entry_point;
Tom Rini6507f132012-08-22 15:31:05 -070062 cleanup_before_linux();
Tom Riniec101fd2013-08-09 11:22:15 -040063 image_entry(0, machid, arg);
Tom Rini6507f132012-08-22 15:31:05 -070064}
65#endif