Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2011 Andes Technology Corporation |
| 4 | * Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com> |
| 5 | * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com> |
| 6 | * Rick Chen, Andes Technology Corporation <rick@andestech.com> |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | 1ea9789 | 2020-05-10 11:40:00 -0600 | [diff] [blame^] | 10 | #include <bootstage.h> |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 11 | #include <command.h> |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 12 | #include <dm.h> |
Simon Glass | 3bbe70c | 2019-12-28 10:44:54 -0700 | [diff] [blame] | 13 | #include <fdt_support.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 14 | #include <hang.h> |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 15 | #include <dm/root.h> |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 16 | #include <image.h> |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 17 | #include <asm/byteorder.h> |
Bin Meng | 8294bb5 | 2018-09-26 06:55:16 -0700 | [diff] [blame] | 18 | #include <asm/csr.h> |
Lukas Auer | c4a6c8f | 2019-03-17 19:28:38 +0100 | [diff] [blame] | 19 | #include <asm/smp.h> |
Bin Meng | 635a253 | 2018-10-15 02:20:59 -0700 | [diff] [blame] | 20 | #include <dm/device.h> |
| 21 | #include <dm/root.h> |
| 22 | #include <u-boot/zlib.h> |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 23 | |
| 24 | DECLARE_GLOBAL_DATA_PTR; |
| 25 | |
Alexander Graf | 7ea64b0 | 2018-04-23 07:59:46 +0200 | [diff] [blame] | 26 | __weak void board_quiesce_devices(void) |
| 27 | { |
| 28 | } |
| 29 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 30 | /** |
| 31 | * announce_and_cleanup() - Print message and prepare for kernel boot |
| 32 | * |
| 33 | * @fake: non-zero to do everything except actually boot |
| 34 | */ |
| 35 | static void announce_and_cleanup(int fake) |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 36 | { |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 37 | printf("\nStarting kernel ...%s\n\n", fake ? |
| 38 | "(fake run for tracing)" : ""); |
| 39 | bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel"); |
| 40 | #ifdef CONFIG_BOOTSTAGE_FDT |
| 41 | bootstage_fdt_add_report(); |
| 42 | #endif |
| 43 | #ifdef CONFIG_BOOTSTAGE_REPORT |
| 44 | bootstage_report(); |
| 45 | #endif |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 46 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 47 | #ifdef CONFIG_USB_DEVICE |
| 48 | udc_disconnect(); |
| 49 | #endif |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 50 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 51 | board_quiesce_devices(); |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 52 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 53 | /* |
| 54 | * Call remove function of all devices with a removal flag set. |
| 55 | * This may be useful for last-stage operations, like cancelling |
| 56 | * of DMA operation or releasing device internal buffers. |
| 57 | */ |
| 58 | dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL); |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 59 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 60 | cleanup_before_linux(); |
| 61 | } |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 62 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 63 | static void boot_prep_linux(bootm_headers_t *images) |
| 64 | { |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 65 | if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { |
| 66 | #ifdef CONFIG_OF_LIBFDT |
| 67 | debug("using: FDT\n"); |
| 68 | if (image_setup_linux(images)) { |
| 69 | printf("FDT creation failed! hanging..."); |
| 70 | hang(); |
| 71 | } |
| 72 | #endif |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 73 | } else { |
| 74 | printf("Device tree not found or missing FDT support\n"); |
| 75 | hang(); |
Rick Chen | 53b47b8 | 2018-03-13 14:59:41 +0800 | [diff] [blame] | 76 | } |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static void boot_jump_linux(bootm_headers_t *images, int flag) |
| 80 | { |
| 81 | void (*kernel)(ulong hart, void *dtb); |
| 82 | int fake = (flag & BOOTM_STATE_OS_FAKE_GO); |
Lukas Auer | c4a6c8f | 2019-03-17 19:28:38 +0100 | [diff] [blame] | 83 | #ifdef CONFIG_SMP |
| 84 | int ret; |
| 85 | #endif |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 86 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 87 | kernel = (void (*)(ulong, void *))images->ep; |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 88 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 89 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
Bin Meng | 635a253 | 2018-10-15 02:20:59 -0700 | [diff] [blame] | 90 | |
Bin Meng | e63488f | 2018-12-21 07:13:41 -0800 | [diff] [blame] | 91 | debug("## Transferring control to kernel (at address %08lx) ...\n", |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 92 | (ulong)kernel); |
Bin Meng | 8294bb5 | 2018-09-26 06:55:16 -0700 | [diff] [blame] | 93 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 94 | announce_and_cleanup(fake); |
Rick Chen | 53b47b8 | 2018-03-13 14:59:41 +0800 | [diff] [blame] | 95 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 96 | if (!fake) { |
Lukas Auer | c4a6c8f | 2019-03-17 19:28:38 +0100 | [diff] [blame] | 97 | if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { |
| 98 | #ifdef CONFIG_SMP |
| 99 | ret = smp_call_function(images->ep, |
Lukas Auer | c308e01 | 2019-12-08 23:28:51 +0100 | [diff] [blame] | 100 | (ulong)images->ft_addr, 0, 0); |
Lukas Auer | c4a6c8f | 2019-03-17 19:28:38 +0100 | [diff] [blame] | 101 | if (ret) |
| 102 | hang(); |
| 103 | #endif |
Bin Meng | fda01b6 | 2018-12-12 06:12:46 -0800 | [diff] [blame] | 104 | kernel(gd->arch.boot_hart, images->ft_addr); |
Lukas Auer | c4a6c8f | 2019-03-17 19:28:38 +0100 | [diff] [blame] | 105 | } |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 106 | } |
| 107 | } |
| 108 | |
| 109 | int do_bootm_linux(int flag, int argc, char * const argv[], |
| 110 | bootm_headers_t *images) |
| 111 | { |
| 112 | /* No need for those on RISC-V */ |
| 113 | if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE) |
| 114 | return -1; |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 115 | |
Lukas Auer | 86feab3 | 2018-11-22 11:26:32 +0100 | [diff] [blame] | 116 | if (flag & BOOTM_STATE_OS_PREP) { |
| 117 | boot_prep_linux(images); |
| 118 | return 0; |
| 119 | } |
| 120 | |
| 121 | if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) { |
| 122 | boot_jump_linux(images, flag); |
| 123 | return 0; |
| 124 | } |
| 125 | |
| 126 | boot_prep_linux(images); |
| 127 | boot_jump_linux(images, flag); |
| 128 | return 0; |
Rick Chen | 6eedd92 | 2017-12-26 13:55:49 +0800 | [diff] [blame] | 129 | } |
Bin Meng | e63488f | 2018-12-21 07:13:41 -0800 | [diff] [blame] | 130 | |
| 131 | int do_bootm_vxworks(int flag, int argc, char * const argv[], |
| 132 | bootm_headers_t *images) |
| 133 | { |
| 134 | return do_bootm_linux(flag, argc, argv, images); |
| 135 | } |