Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / arch / arc / lib / bootm.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
4  */
5
6 #include <common.h>
7 #include <bootstage.h>
8 #include <env.h>
9 #include <image.h>
10 #include <irq_func.h>
11 #include <lmb.h>
12 #include <log.h>
13 #include <asm/cache.h>
14
15 DECLARE_GLOBAL_DATA_PTR;
16
17 static ulong get_sp(void)
18 {
19         ulong ret;
20
21         asm("mov %0, sp" : "=r"(ret) : );
22         return ret;
23 }
24
25 void arch_lmb_reserve(struct lmb *lmb)
26 {
27         ulong sp;
28
29         /*
30          * Booting a (Linux) kernel image
31          *
32          * Allocate space for command line and board info - the
33          * address should be as high as possible within the reach of
34          * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
35          * memory, which means far enough below the current stack
36          * pointer.
37          */
38         sp = get_sp();
39         debug("## Current stack ends at 0x%08lx ", sp);
40
41         /* adjust sp by 4K to be safe */
42         sp -= 4096;
43         lmb_reserve(lmb, sp, (CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp));
44 }
45
46 static int cleanup_before_linux(void)
47 {
48         disable_interrupts();
49         sync_n_cleanup_cache_all();
50
51         return 0;
52 }
53
54 __weak int board_prep_linux(bootm_headers_t *images) { return 0; }
55
56 /* Subcommand: PREP */
57 static int boot_prep_linux(bootm_headers_t *images)
58 {
59         int ret;
60
61         ret = image_setup_linux(images);
62         if (ret)
63                 return ret;
64
65         return board_prep_linux(images);
66 }
67
68 /* Generic implementation for single core CPU */
69 __weak void board_jump_and_run(ulong entry, int zero, int arch, uint params)
70 {
71         void (*kernel_entry)(int zero, int arch, uint params);
72
73         kernel_entry = (void (*)(int, int, uint))entry;
74
75         kernel_entry(zero, arch, params);
76 }
77
78 /* Subcommand: GO */
79 static void boot_jump_linux(bootm_headers_t *images, int flag)
80 {
81         ulong kernel_entry;
82         unsigned int r0, r2;
83         int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
84
85         kernel_entry = images->ep;
86
87         debug("## Transferring control to Linux (at address %08lx)...\n",
88               kernel_entry);
89         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
90
91         printf("\nStarting kernel ...%s\n\n", fake ?
92                "(fake run for tracing)" : "");
93         bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
94
95         if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
96                 r0 = 2;
97                 r2 = (unsigned int)images->ft_addr;
98         } else {
99                 r0 = 1;
100                 r2 = (unsigned int)env_get("bootargs");
101         }
102
103         cleanup_before_linux();
104
105         if (!fake)
106                 board_jump_and_run(kernel_entry, r0, 0, r2);
107 }
108
109 int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
110 {
111         /* No need for those on ARC */
112         if ((flag & BOOTM_STATE_OS_BD_T) || (flag & BOOTM_STATE_OS_CMDLINE))
113                 return -1;
114
115         if (flag & BOOTM_STATE_OS_PREP)
116                 return boot_prep_linux(images);
117
118         if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
119                 boot_jump_linux(images, flag);
120                 return 0;
121         }
122
123         return -1;
124 }