blob: 63d6207c04778236c5ba2fab075d924ddd49b877 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Alexey Brodkin22723822014-02-04 12:56:15 +04002/*
3 * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
Alexey Brodkin22723822014-02-04 12:56:15 +04004 */
5
Simon Glass52f24232020-05-10 11:40:00 -06006#include <common.h>
7#include <bootstage.h>
Simon Glass09140112020-05-10 11:40:03 -06008#include <env.h>
Simon Glass4d72caa2020-05-10 11:40:01 -06009#include <image.h>
Simon Glass36bf4462019-11-14 12:57:42 -070010#include <irq_func.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060011#include <lmb.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Eugeniy Paltsev375945b2018-03-21 15:59:02 +030013#include <asm/cache.h>
Alexey Brodkin22723822014-02-04 12:56:15 +040014
15DECLARE_GLOBAL_DATA_PTR;
16
17static ulong get_sp(void)
18{
19 ulong ret;
20
21 asm("mov %0, sp" : "=r"(ret) : );
22 return ret;
23}
24
25void 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
46static int cleanup_before_linux(void)
47{
48 disable_interrupts();
Eugeniy Paltsev375945b2018-03-21 15:59:02 +030049 sync_n_cleanup_cache_all();
Alexey Brodkin22723822014-02-04 12:56:15 +040050
51 return 0;
52}
53
Eugeniy Paltsevf665c142018-03-23 15:35:03 +030054__weak int board_prep_linux(bootm_headers_t *images) { return 0; }
55
Alexey Brodkin22723822014-02-04 12:56:15 +040056/* Subcommand: PREP */
Eugeniy Paltsevf665c142018-03-23 15:35:03 +030057static int boot_prep_linux(bootm_headers_t *images)
Alexey Brodkin22723822014-02-04 12:56:15 +040058{
Eugeniy Paltsevf665c142018-03-23 15:35:03 +030059 int ret;
60
61 ret = image_setup_linux(images);
62 if (ret)
63 return ret;
64
65 return board_prep_linux(images);
Alexey Brodkin22723822014-02-04 12:56:15 +040066}
67
Eugeniy Paltsevf665c142018-03-23 15:35:03 +030068/* 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}
Alexey Brodkin8b2eb772015-04-13 13:37:05 +030077
Alexey Brodkin22723822014-02-04 12:56:15 +040078/* Subcommand: GO */
79static void boot_jump_linux(bootm_headers_t *images, int flag)
80{
Eugeniy Paltsevf665c142018-03-23 15:35:03 +030081 ulong kernel_entry;
Alexey Brodkin22723822014-02-04 12:56:15 +040082 unsigned int r0, r2;
83 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
84
Eugeniy Paltsevf665c142018-03-23 15:35:03 +030085 kernel_entry = images->ep;
Alexey Brodkin22723822014-02-04 12:56:15 +040086
87 debug("## Transferring control to Linux (at address %08lx)...\n",
Eugeniy Paltsevf665c142018-03-23 15:35:03 +030088 kernel_entry);
Alexey Brodkin22723822014-02-04 12:56:15 +040089 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
Alexey Brodkin22723822014-02-04 12:56:15 +040095 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
96 r0 = 2;
97 r2 = (unsigned int)images->ft_addr;
98 } else {
99 r0 = 1;
Simon Glass00caae62017-08-03 12:22:12 -0600100 r2 = (unsigned int)env_get("bootargs");
Alexey Brodkin22723822014-02-04 12:56:15 +0400101 }
102
Eugeniy Paltsevf665c142018-03-23 15:35:03 +0300103 cleanup_before_linux();
104
105 if (!fake)
106 board_jump_and_run(kernel_entry, r0, 0, r2);
Alexey Brodkin22723822014-02-04 12:56:15 +0400107}
108
109int 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
Eugeniy Paltsevf665c142018-03-23 15:35:03 +0300115 if (flag & BOOTM_STATE_OS_PREP)
116 return boot_prep_linux(images);
Alexey Brodkin22723822014-02-04 12:56:15 +0400117
118 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
119 boot_jump_linux(images, flag);
120 return 0;
121 }
122
Eugeniy Paltsevf665c142018-03-23 15:35:03 +0300123 return -1;
Alexey Brodkin22723822014-02-04 12:56:15 +0400124}