blob: 75ab546923f298f4238b784684e120a146002d75 [file] [log] [blame]
Tom Rini31dfba42012-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 Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Tom Rini31dfba42012-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
16/* Pointer to as well as the global data structure for SPL */
17DECLARE_GLOBAL_DATA_PTR;
18gd_t gdata __attribute__ ((section(".data")));
19
20/*
21 * In the context of SPL, board_init_f must ensure that any clocks/etc for
22 * DDR are enabled, ensure that the stack pointer is valid, clear the BSS
23 * and call board_init_f. We provide this version by default but mark it
24 * as __weak to allow for platforms to do this in their own way if needed.
25 */
26void __weak board_init_f(ulong dummy)
27{
Tom Rini31dfba42012-08-22 15:31:05 -070028 /* Clear the BSS. */
Simon Glassed70c8f2013-03-14 06:54:53 +000029 memset(__bss_start, 0, __bss_end - __bss_start);
Tom Rini31dfba42012-08-22 15:31:05 -070030
Tom Rini31dfba42012-08-22 15:31:05 -070031 board_init_r(NULL, 0);
32}
33
34/*
35 * This function jumps to an image with argument. Normally an FDT or ATAGS
36 * image.
37 * arg: Pointer to paramter image in RAM
38 */
39#ifdef CONFIG_SPL_OS_BOOT
40void __noreturn jump_to_image_linux(void *arg)
41{
Tom Rinic7aed9b2013-08-09 11:22:15 -040042 unsigned long machid = 0xffffffff;
43#ifdef CONFIG_MACH_TYPE
44 machid = CONFIG_MACH_TYPE;
45#endif
46
Tom Rini31dfba42012-08-22 15:31:05 -070047 debug("Entering kernel arg pointer: 0x%p\n", arg);
48 typedef void (*image_entry_arg_t)(int, int, void *)
49 __attribute__ ((noreturn));
50 image_entry_arg_t image_entry =
51 (image_entry_arg_t) spl_image.entry_point;
52 cleanup_before_linux();
Tom Rinic7aed9b2013-08-09 11:22:15 -040053 image_entry(0, machid, arg);
Tom Rini31dfba42012-08-22 15:31:05 -070054}
55#endif