blob: f1ab344773744a4c5f4b47fb6e15589171f8ccff [file] [log] [blame]
Alexey Brodkinb628c012014-02-04 12:56:15 +04001/*
2 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
Eugeniy Paltsev67fd56a2018-03-21 15:59:02 +03007#include <asm/cache.h>
Alexey Brodkinb628c012014-02-04 12:56:15 +04008#include <common.h>
9
10DECLARE_GLOBAL_DATA_PTR;
11
12static ulong get_sp(void)
13{
14 ulong ret;
15
16 asm("mov %0, sp" : "=r"(ret) : );
17 return ret;
18}
19
20void arch_lmb_reserve(struct lmb *lmb)
21{
22 ulong sp;
23
24 /*
25 * Booting a (Linux) kernel image
26 *
27 * Allocate space for command line and board info - the
28 * address should be as high as possible within the reach of
29 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
30 * memory, which means far enough below the current stack
31 * pointer.
32 */
33 sp = get_sp();
34 debug("## Current stack ends at 0x%08lx ", sp);
35
36 /* adjust sp by 4K to be safe */
37 sp -= 4096;
38 lmb_reserve(lmb, sp, (CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp));
39}
40
41static int cleanup_before_linux(void)
42{
43 disable_interrupts();
Eugeniy Paltsev67fd56a2018-03-21 15:59:02 +030044 sync_n_cleanup_cache_all();
Alexey Brodkinb628c012014-02-04 12:56:15 +040045
46 return 0;
47}
48
49/* Subcommand: PREP */
50static void boot_prep_linux(bootm_headers_t *images)
51{
52 if (image_setup_linux(images))
53 hang();
54}
55
Alexey Brodkincf9cafd2015-04-13 13:37:05 +030056__weak void smp_set_core_boot_addr(unsigned long addr, int corenr) {}
57__weak void smp_kick_all_cpus(void) {}
58
Alexey Brodkinb628c012014-02-04 12:56:15 +040059/* Subcommand: GO */
60static void boot_jump_linux(bootm_headers_t *images, int flag)
61{
62 void (*kernel_entry)(int zero, int arch, uint params);
63 unsigned int r0, r2;
64 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
65
66 kernel_entry = (void (*)(int, int, uint))images->ep;
67
68 debug("## Transferring control to Linux (at address %08lx)...\n",
69 (ulong) kernel_entry);
70 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
71
72 printf("\nStarting kernel ...%s\n\n", fake ?
73 "(fake run for tracing)" : "");
74 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
75
76 cleanup_before_linux();
77
78 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
79 r0 = 2;
80 r2 = (unsigned int)images->ft_addr;
81 } else {
82 r0 = 1;
Simon Glass64b723f2017-08-03 12:22:12 -060083 r2 = (unsigned int)env_get("bootargs");
Alexey Brodkinb628c012014-02-04 12:56:15 +040084 }
85
Alexey Brodkin04e30292017-11-17 15:53:20 +030086 if (!fake) {
87 smp_set_core_boot_addr((unsigned long)kernel_entry, -1);
88 smp_kick_all_cpus();
Alexey Brodkinb628c012014-02-04 12:56:15 +040089 kernel_entry(r0, 0, r2);
Alexey Brodkin04e30292017-11-17 15:53:20 +030090 }
Alexey Brodkinb628c012014-02-04 12:56:15 +040091}
92
93int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
94{
95 /* No need for those on ARC */
96 if ((flag & BOOTM_STATE_OS_BD_T) || (flag & BOOTM_STATE_OS_CMDLINE))
97 return -1;
98
99 if (flag & BOOTM_STATE_OS_PREP) {
100 boot_prep_linux(images);
101 return 0;
102 }
103
104 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
105 boot_jump_linux(images, flag);
106 return 0;
107 }
108
109 boot_prep_linux(images);
110 boot_jump_linux(images, flag);
111 return 0;
112}