Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 4 | */ |
| 5 | |
Simon Glass | 36bf446 | 2019-11-14 12:57:42 -0700 | [diff] [blame] | 6 | #include <irq_func.h> |
Eugeniy Paltsev | 375945b | 2018-03-21 15:59:02 +0300 | [diff] [blame] | 7 | #include <asm/cache.h> |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 8 | #include <common.h> |
| 9 | |
| 10 | DECLARE_GLOBAL_DATA_PTR; |
| 11 | |
| 12 | static ulong get_sp(void) |
| 13 | { |
| 14 | ulong ret; |
| 15 | |
| 16 | asm("mov %0, sp" : "=r"(ret) : ); |
| 17 | return ret; |
| 18 | } |
| 19 | |
| 20 | void 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 | |
| 41 | static int cleanup_before_linux(void) |
| 42 | { |
| 43 | disable_interrupts(); |
Eugeniy Paltsev | 375945b | 2018-03-21 15:59:02 +0300 | [diff] [blame] | 44 | sync_n_cleanup_cache_all(); |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 45 | |
| 46 | return 0; |
| 47 | } |
| 48 | |
Eugeniy Paltsev | f665c14 | 2018-03-23 15:35:03 +0300 | [diff] [blame] | 49 | __weak int board_prep_linux(bootm_headers_t *images) { return 0; } |
| 50 | |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 51 | /* Subcommand: PREP */ |
Eugeniy Paltsev | f665c14 | 2018-03-23 15:35:03 +0300 | [diff] [blame] | 52 | static int boot_prep_linux(bootm_headers_t *images) |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 53 | { |
Eugeniy Paltsev | f665c14 | 2018-03-23 15:35:03 +0300 | [diff] [blame] | 54 | int ret; |
| 55 | |
| 56 | ret = image_setup_linux(images); |
| 57 | if (ret) |
| 58 | return ret; |
| 59 | |
| 60 | return board_prep_linux(images); |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 61 | } |
| 62 | |
Eugeniy Paltsev | f665c14 | 2018-03-23 15:35:03 +0300 | [diff] [blame] | 63 | /* Generic implementation for single core CPU */ |
| 64 | __weak void board_jump_and_run(ulong entry, int zero, int arch, uint params) |
| 65 | { |
| 66 | void (*kernel_entry)(int zero, int arch, uint params); |
| 67 | |
| 68 | kernel_entry = (void (*)(int, int, uint))entry; |
| 69 | |
| 70 | kernel_entry(zero, arch, params); |
| 71 | } |
Alexey Brodkin | 8b2eb77 | 2015-04-13 13:37:05 +0300 | [diff] [blame] | 72 | |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 73 | /* Subcommand: GO */ |
| 74 | static void boot_jump_linux(bootm_headers_t *images, int flag) |
| 75 | { |
Eugeniy Paltsev | f665c14 | 2018-03-23 15:35:03 +0300 | [diff] [blame] | 76 | ulong kernel_entry; |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 77 | unsigned int r0, r2; |
| 78 | int fake = (flag & BOOTM_STATE_OS_FAKE_GO); |
| 79 | |
Eugeniy Paltsev | f665c14 | 2018-03-23 15:35:03 +0300 | [diff] [blame] | 80 | kernel_entry = images->ep; |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 81 | |
| 82 | debug("## Transferring control to Linux (at address %08lx)...\n", |
Eugeniy Paltsev | f665c14 | 2018-03-23 15:35:03 +0300 | [diff] [blame] | 83 | kernel_entry); |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 84 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
| 85 | |
| 86 | printf("\nStarting kernel ...%s\n\n", fake ? |
| 87 | "(fake run for tracing)" : ""); |
| 88 | bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel"); |
| 89 | |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 90 | if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { |
| 91 | r0 = 2; |
| 92 | r2 = (unsigned int)images->ft_addr; |
| 93 | } else { |
| 94 | r0 = 1; |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 95 | r2 = (unsigned int)env_get("bootargs"); |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 96 | } |
| 97 | |
Eugeniy Paltsev | f665c14 | 2018-03-23 15:35:03 +0300 | [diff] [blame] | 98 | cleanup_before_linux(); |
| 99 | |
| 100 | if (!fake) |
| 101 | board_jump_and_run(kernel_entry, r0, 0, r2); |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images) |
| 105 | { |
| 106 | /* No need for those on ARC */ |
| 107 | if ((flag & BOOTM_STATE_OS_BD_T) || (flag & BOOTM_STATE_OS_CMDLINE)) |
| 108 | return -1; |
| 109 | |
Eugeniy Paltsev | f665c14 | 2018-03-23 15:35:03 +0300 | [diff] [blame] | 110 | if (flag & BOOTM_STATE_OS_PREP) |
| 111 | return boot_prep_linux(images); |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 112 | |
| 113 | if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) { |
| 114 | boot_jump_linux(images, flag); |
| 115 | return 0; |
| 116 | } |
| 117 | |
Eugeniy Paltsev | f665c14 | 2018-03-23 15:35:03 +0300 | [diff] [blame] | 118 | return -1; |
Alexey Brodkin | 2272382 | 2014-02-04 12:56:15 +0400 | [diff] [blame] | 119 | } |