Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 2 | /* Copyright (C) 2011 |
| 3 | * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de> |
| 4 | * - Added prep subcommand support |
| 5 | * - Reorganized source - modeled after powerpc version |
| 6 | * |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 7 | * (C) Copyright 2002 |
| 8 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 9 | * Marius Groeger <mgroeger@sysgo.de> |
| 10 | * |
| 11 | * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <common.h> |
Simon Glass | 1ea9789 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 15 | #include <bootstage.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 16 | #include <command.h> |
Simon Glass | 370382c | 2019-11-14 12:57:35 -0700 | [diff] [blame] | 17 | #include <cpu_func.h> |
Simon Glass | 11c89f3 | 2017-05-17 17:18:03 -0600 | [diff] [blame] | 18 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 19 | #include <log.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 20 | #include <asm/global_data.h> |
Stefan Roese | 8ab5a1b | 2017-03-20 12:51:50 +0100 | [diff] [blame] | 21 | #include <dm/root.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 22 | #include <env.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 23 | #include <image.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6bb9449 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 24 | #include <u-boot/zlib.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 25 | #include <asm/byteorder.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 26 | #include <linux/libfdt.h> |
Joe Hershberger | 65b905b | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 27 | #include <mapmem.h> |
John Rigby | ab51f1e | 2010-10-13 13:57:36 -0600 | [diff] [blame] | 28 | #include <fdt_support.h> |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 29 | #include <asm/bootm.h> |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame] | 30 | #include <asm/secure.h> |
Pali Rohár | 5ebe4f1 | 2012-10-19 02:00:04 +0000 | [diff] [blame] | 31 | #include <linux/compiler.h> |
Eric Nelson | b7c236b | 2014-09-30 15:40:01 -0700 | [diff] [blame] | 32 | #include <bootm.h> |
| 33 | #include <vxworks.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 34 | #include <asm/cache.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 35 | |
Jan Kiszka | ac31b5a | 2015-04-21 07:18:24 +0200 | [diff] [blame] | 36 | #ifdef CONFIG_ARMV7_NONSEC |
Andre Przywara | fe7d925 | 2013-09-19 18:06:43 +0200 | [diff] [blame] | 37 | #include <asm/armv7.h> |
| 38 | #endif |
Simon Glass | 30db774 | 2017-05-17 08:22:59 -0600 | [diff] [blame] | 39 | #include <asm/setup.h> |
Andre Przywara | fe7d925 | 2013-09-19 18:06:43 +0200 | [diff] [blame] | 40 | |
Wolfgang Denk | 6405a15 | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 41 | DECLARE_GLOBAL_DATA_PTR; |
| 42 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 43 | static struct tag *params; |
John Rigby | ab51f1e | 2010-10-13 13:57:36 -0600 | [diff] [blame] | 44 | |
Alexander Graf | 2ebeb44 | 2016-11-17 01:02:57 +0100 | [diff] [blame] | 45 | __weak void board_quiesce_devices(void) |
| 46 | { |
| 47 | } |
| 48 | |
Simon Glass | 3c26c58 | 2013-06-19 21:15:10 -0700 | [diff] [blame] | 49 | /** |
| 50 | * announce_and_cleanup() - Print message and prepare for kernel boot |
| 51 | * |
| 52 | * @fake: non-zero to do everything except actually boot |
| 53 | */ |
| 54 | static void announce_and_cleanup(int fake) |
John Rigby | ab51f1e | 2010-10-13 13:57:36 -0600 | [diff] [blame] | 55 | { |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 56 | bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel"); |
Simon Glass | 0fa36a4 | 2012-09-28 08:56:37 +0000 | [diff] [blame] | 57 | #ifdef CONFIG_BOOTSTAGE_FDT |
Mela Custodio | 5625c8b | 2014-02-20 00:16:56 +0900 | [diff] [blame] | 58 | bootstage_fdt_add_report(); |
Simon Glass | 0fa36a4 | 2012-09-28 08:56:37 +0000 | [diff] [blame] | 59 | #endif |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 60 | #ifdef CONFIG_BOOTSTAGE_REPORT |
| 61 | bootstage_report(); |
| 62 | #endif |
Wolfgang Denk | 20ec367 | 2008-09-08 23:26:22 +0200 | [diff] [blame] | 63 | |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 64 | #ifdef CONFIG_USB_DEVICE |
| 65 | udc_disconnect(); |
John Rigby | ab51f1e | 2010-10-13 13:57:36 -0600 | [diff] [blame] | 66 | #endif |
Alexander Graf | 2ebeb44 | 2016-11-17 01:02:57 +0100 | [diff] [blame] | 67 | |
| 68 | board_quiesce_devices(); |
| 69 | |
Keerthy | 79a7cb1 | 2019-02-20 18:17:22 +0530 | [diff] [blame] | 70 | printf("\nStarting kernel ...%s\n\n", fake ? |
| 71 | "(fake run for tracing)" : ""); |
Stefan Roese | 8ab5a1b | 2017-03-20 12:51:50 +0100 | [diff] [blame] | 72 | /* |
| 73 | * Call remove function of all devices with a removal flag set. |
| 74 | * This may be useful for last-stage operations, like cancelling |
| 75 | * of DMA operation or releasing device internal buffers. |
| 76 | */ |
Simon Glass | 8ae8744 | 2021-01-24 14:32:47 -0700 | [diff] [blame] | 77 | dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL | DM_REMOVE_NON_VITAL); |
| 78 | |
| 79 | /* Remove all active vital devices next */ |
Stefan Roese | 8ab5a1b | 2017-03-20 12:51:50 +0100 | [diff] [blame] | 80 | dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL); |
| 81 | |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 82 | cleanup_before_linux(); |
| 83 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 84 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 85 | static void setup_start_tag (struct bd_info *bd) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 86 | { |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 87 | params = (struct tag *)bd->bi_boot_params; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 88 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 89 | params->hdr.tag = ATAG_CORE; |
| 90 | params->hdr.size = tag_size (tag_core); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 91 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 92 | params->u.core.flags = 0; |
| 93 | params->u.core.pagesize = 0; |
| 94 | params->u.core.rootdev = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 95 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 96 | params = tag_next (params); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 97 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 98 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 99 | static void setup_memory_tags(struct bd_info *bd) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 100 | { |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 101 | int i; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 102 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 103 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 104 | params->hdr.tag = ATAG_MEM; |
| 105 | params->hdr.size = tag_size (tag_mem32); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 106 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 107 | params->u.mem.start = bd->bi_dram[i].start; |
| 108 | params->u.mem.size = bd->bi_dram[i].size; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 109 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 110 | params = tag_next (params); |
| 111 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 112 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 113 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 114 | static void setup_commandline_tag(struct bd_info *bd, char *commandline) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 115 | { |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 116 | char *p; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 117 | |
wdenk | f16b516 | 2004-03-23 21:43:07 +0000 | [diff] [blame] | 118 | if (!commandline) |
| 119 | return; |
| 120 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 121 | /* eat leading white space */ |
| 122 | for (p = commandline; *p == ' '; p++); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 123 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 124 | /* skip non-existent command lines so the kernel will still |
| 125 | * use its default command line. |
| 126 | */ |
| 127 | if (*p == '\0') |
| 128 | return; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 129 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 130 | params->hdr.tag = ATAG_CMDLINE; |
| 131 | params->hdr.size = |
| 132 | (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 133 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 134 | strcpy (params->u.cmdline.cmdline, p); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 135 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 136 | params = tag_next (params); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 137 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 138 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 139 | static void setup_initrd_tag(struct bd_info *bd, ulong initrd_start, |
| 140 | ulong initrd_end) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 141 | { |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 142 | /* an ATAG_INITRD node tells the kernel where the compressed |
| 143 | * ramdisk can be found. ATAG_RDIMG is a better name, actually. |
| 144 | */ |
wdenk | 19c8fb7 | 2004-04-18 22:26:17 +0000 | [diff] [blame] | 145 | params->hdr.tag = ATAG_INITRD2; |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 146 | params->hdr.size = tag_size (tag_initrd); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 147 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 148 | params->u.initrd.start = initrd_start; |
| 149 | params->u.initrd.size = initrd_end - initrd_start; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 150 | |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 151 | params = tag_next (params); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 152 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 153 | |
Simon Glass | 50ad221 | 2013-05-08 08:06:02 +0000 | [diff] [blame] | 154 | static void setup_serial_tag(struct tag **tmp) |
wdenk | a21ad7b | 2005-05-19 22:39:42 +0000 | [diff] [blame] | 155 | { |
| 156 | struct tag *params = *tmp; |
| 157 | struct tag_serialnr serialnr; |
wdenk | a21ad7b | 2005-05-19 22:39:42 +0000 | [diff] [blame] | 158 | |
| 159 | get_board_serial(&serialnr); |
| 160 | params->hdr.tag = ATAG_SERIAL; |
| 161 | params->hdr.size = tag_size (tag_serialnr); |
| 162 | params->u.serialnr.low = serialnr.low; |
| 163 | params->u.serialnr.high= serialnr.high; |
| 164 | params = tag_next (params); |
| 165 | *tmp = params; |
| 166 | } |
wdenk | a21ad7b | 2005-05-19 22:39:42 +0000 | [diff] [blame] | 167 | |
Simon Glass | 50ad221 | 2013-05-08 08:06:02 +0000 | [diff] [blame] | 168 | static void setup_revision_tag(struct tag **in_params) |
wdenk | cb99da5 | 2005-01-12 00:15:14 +0000 | [diff] [blame] | 169 | { |
| 170 | u32 rev = 0; |
wdenk | cb99da5 | 2005-01-12 00:15:14 +0000 | [diff] [blame] | 171 | |
| 172 | rev = get_board_rev(); |
wdenk | cb99da5 | 2005-01-12 00:15:14 +0000 | [diff] [blame] | 173 | params->hdr.tag = ATAG_REVISION; |
| 174 | params->hdr.size = tag_size (tag_revision); |
| 175 | params->u.revision.rev = rev; |
| 176 | params = tag_next (params); |
| 177 | } |
wdenk | cb99da5 | 2005-01-12 00:15:14 +0000 | [diff] [blame] | 178 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 179 | static void setup_end_tag(struct bd_info *bd) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 180 | { |
wdenk | 8676590 | 2003-12-06 23:55:10 +0000 | [diff] [blame] | 181 | params->hdr.tag = ATAG_NONE; |
| 182 | params->hdr.size = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 183 | } |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 184 | |
Pali Rohár | 5ebe4f1 | 2012-10-19 02:00:04 +0000 | [diff] [blame] | 185 | __weak void setup_board_tags(struct tag **in_params) {} |
| 186 | |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame] | 187 | #ifdef CONFIG_ARM64 |
Andre Przywara | fe7d925 | 2013-09-19 18:06:43 +0200 | [diff] [blame] | 188 | static void do_nonsec_virt_switch(void) |
| 189 | { |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 190 | smp_kick_all_cpus(); |
York Sun | 1ce575f | 2015-01-06 13:18:42 -0800 | [diff] [blame] | 191 | dcache_disable(); /* flush cache before swtiching to EL2 */ |
Andre Przywara | fe7d925 | 2013-09-19 18:06:43 +0200 | [diff] [blame] | 192 | } |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame] | 193 | #endif |
Andre Przywara | fe7d925 | 2013-09-19 18:06:43 +0200 | [diff] [blame] | 194 | |
Lokesh Vutla | b1f1b23 | 2019-10-07 13:52:15 +0530 | [diff] [blame] | 195 | __weak void board_prep_linux(bootm_headers_t *images) { } |
| 196 | |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 197 | /* Subcommand: PREP */ |
| 198 | static void boot_prep_linux(bootm_headers_t *images) |
| 199 | { |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 200 | char *commandline = env_get("bootargs"); |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 201 | |
Simon Glass | 85c057e | 2021-09-25 19:43:21 -0600 | [diff] [blame] | 202 | if (CONFIG_IS_ENABLED(OF_LIBFDT) && images->ft_len) { |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 203 | #ifdef CONFIG_OF_LIBFDT |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 204 | debug("using: FDT\n"); |
Simon Glass | 653909f | 2013-05-08 08:06:03 +0000 | [diff] [blame] | 205 | if (image_setup_linux(images)) { |
Heinrich Schuchardt | e3550d5 | 2021-02-17 12:55:54 +0100 | [diff] [blame] | 206 | panic("FDT creation failed!"); |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 207 | } |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 208 | #endif |
Simon Glass | 50ad221 | 2013-05-08 08:06:02 +0000 | [diff] [blame] | 209 | } else if (BOOTM_ENABLE_TAGS) { |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 210 | debug("using: ATAGS\n"); |
| 211 | setup_start_tag(gd->bd); |
Simon Glass | 50ad221 | 2013-05-08 08:06:02 +0000 | [diff] [blame] | 212 | if (BOOTM_ENABLE_SERIAL_TAG) |
| 213 | setup_serial_tag(¶ms); |
| 214 | if (BOOTM_ENABLE_CMDLINE_TAG) |
| 215 | setup_commandline_tag(gd->bd, commandline); |
| 216 | if (BOOTM_ENABLE_REVISION_TAG) |
| 217 | setup_revision_tag(¶ms); |
| 218 | if (BOOTM_ENABLE_MEMORY_TAGS) |
| 219 | setup_memory_tags(gd->bd); |
| 220 | if (BOOTM_ENABLE_INITRD_TAG) { |
Jeffy Chen | 113094e | 2016-01-14 10:19:36 +0800 | [diff] [blame] | 221 | /* |
| 222 | * In boot_ramdisk_high(), it may relocate ramdisk to |
| 223 | * a specified location. And set images->initrd_start & |
| 224 | * images->initrd_end to relocated ramdisk's start/end |
| 225 | * addresses. So use them instead of images->rd_start & |
| 226 | * images->rd_end when possible. |
| 227 | */ |
| 228 | if (images->initrd_start && images->initrd_end) { |
| 229 | setup_initrd_tag(gd->bd, images->initrd_start, |
| 230 | images->initrd_end); |
| 231 | } else if (images->rd_start && images->rd_end) { |
Simon Glass | 50ad221 | 2013-05-08 08:06:02 +0000 | [diff] [blame] | 232 | setup_initrd_tag(gd->bd, images->rd_start, |
| 233 | images->rd_end); |
| 234 | } |
| 235 | } |
Pali Rohár | 5ebe4f1 | 2012-10-19 02:00:04 +0000 | [diff] [blame] | 236 | setup_board_tags(¶ms); |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 237 | setup_end_tag(gd->bd); |
Simon Glass | 50ad221 | 2013-05-08 08:06:02 +0000 | [diff] [blame] | 238 | } else { |
Heinrich Schuchardt | e3550d5 | 2021-02-17 12:55:54 +0100 | [diff] [blame] | 239 | panic("FDT and ATAGS support not compiled in\n"); |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 240 | } |
Lokesh Vutla | b1f1b23 | 2019-10-07 13:52:15 +0530 | [diff] [blame] | 241 | |
| 242 | board_prep_linux(images); |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Jon Medhurst \(Tixy\) | 413ca3d | 2016-06-23 13:37:32 +0100 | [diff] [blame] | 245 | __weak bool armv7_boot_nonsec_default(void) |
Hans de Goede | 63fb548 | 2014-11-14 09:34:31 +0100 | [diff] [blame] | 246 | { |
Hans de Goede | 63fb548 | 2014-11-14 09:34:31 +0100 | [diff] [blame] | 247 | #ifdef CONFIG_ARMV7_BOOT_SEC_DEFAULT |
Jon Medhurst \(Tixy\) | 413ca3d | 2016-06-23 13:37:32 +0100 | [diff] [blame] | 248 | return false; |
Hans de Goede | 63fb548 | 2014-11-14 09:34:31 +0100 | [diff] [blame] | 249 | #else |
Jon Medhurst \(Tixy\) | 413ca3d | 2016-06-23 13:37:32 +0100 | [diff] [blame] | 250 | return true; |
Hans de Goede | 63fb548 | 2014-11-14 09:34:31 +0100 | [diff] [blame] | 251 | #endif |
Jon Medhurst \(Tixy\) | 413ca3d | 2016-06-23 13:37:32 +0100 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | #ifdef CONFIG_ARMV7_NONSEC |
| 255 | bool armv7_boot_nonsec(void) |
| 256 | { |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 257 | char *s = env_get("bootm_boot_mode"); |
Jon Medhurst \(Tixy\) | 413ca3d | 2016-06-23 13:37:32 +0100 | [diff] [blame] | 258 | bool nonsec = armv7_boot_nonsec_default(); |
Hans de Goede | 63fb548 | 2014-11-14 09:34:31 +0100 | [diff] [blame] | 259 | |
| 260 | if (s && !strcmp(s, "sec")) |
| 261 | nonsec = false; |
| 262 | |
| 263 | if (s && !strcmp(s, "nonsec")) |
| 264 | nonsec = true; |
| 265 | |
| 266 | return nonsec; |
| 267 | } |
| 268 | #endif |
| 269 | |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 270 | #ifdef CONFIG_ARM64 |
Alison Wang | 876c7e1 | 2016-11-10 10:49:04 +0800 | [diff] [blame] | 271 | __weak void update_os_arch_secondary_cores(uint8_t os_arch) |
| 272 | { |
| 273 | } |
| 274 | |
Tom Rini | 3a6d453 | 2021-09-03 10:40:28 -0400 | [diff] [blame] | 275 | #ifdef CONFIG_ARMV8_SWITCH_TO_EL1 |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 276 | static void switch_to_el1(void) |
| 277 | { |
| 278 | if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) && |
| 279 | (images.os.arch == IH_ARCH_ARM)) |
| 280 | armv8_switch_to_el1(0, (u64)gd->bd->bi_arch_number, |
Alison Wang | eb2088d | 2017-01-17 09:39:17 +0800 | [diff] [blame] | 281 | (u64)images.ft_addr, 0, |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 282 | (u64)images.ep, |
| 283 | ES_TO_AARCH32); |
| 284 | else |
Alison Wang | eb2088d | 2017-01-17 09:39:17 +0800 | [diff] [blame] | 285 | armv8_switch_to_el1((u64)images.ft_addr, 0, 0, 0, |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 286 | images.ep, |
| 287 | ES_TO_AARCH64); |
| 288 | } |
| 289 | #endif |
Tom Rini | 3a6d453 | 2021-09-03 10:40:28 -0400 | [diff] [blame] | 290 | #endif |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 291 | |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 292 | /* Subcommand: GO */ |
Simon Glass | 3c26c58 | 2013-06-19 21:15:10 -0700 | [diff] [blame] | 293 | static void boot_jump_linux(bootm_headers_t *images, int flag) |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 294 | { |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 295 | #ifdef CONFIG_ARM64 |
Tom Rini | 67d604e | 2014-08-14 06:42:35 -0400 | [diff] [blame] | 296 | void (*kernel_entry)(void *fdt_addr, void *res0, void *res1, |
| 297 | void *res2); |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 298 | int fake = (flag & BOOTM_STATE_OS_FAKE_GO); |
| 299 | |
Tom Rini | 67d604e | 2014-08-14 06:42:35 -0400 | [diff] [blame] | 300 | kernel_entry = (void (*)(void *fdt_addr, void *res0, void *res1, |
| 301 | void *res2))images->ep; |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 302 | |
| 303 | debug("## Transferring control to Linux (at address %lx)...\n", |
| 304 | (ulong) kernel_entry); |
| 305 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
| 306 | |
| 307 | announce_and_cleanup(fake); |
| 308 | |
Marc Zyngier | 915a09e | 2014-07-12 14:23:58 +0100 | [diff] [blame] | 309 | if (!fake) { |
macro.wave.z@gmail.com | 05725ed | 2016-12-08 11:58:25 +0800 | [diff] [blame] | 310 | #ifdef CONFIG_ARMV8_PSCI |
| 311 | armv8_setup_psci(); |
| 312 | #endif |
Marc Zyngier | 915a09e | 2014-07-12 14:23:58 +0100 | [diff] [blame] | 313 | do_nonsec_virt_switch(); |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 314 | |
Alison Wang | 876c7e1 | 2016-11-10 10:49:04 +0800 | [diff] [blame] | 315 | update_os_arch_secondary_cores(images->os.arch); |
| 316 | |
Peter Hoyes | a673266 | 2021-08-19 16:53:13 +0100 | [diff] [blame] | 317 | #ifdef CONFIG_ARMV8_SWITCH_TO_EL1 |
Tom Rini | 3a6d453 | 2021-09-03 10:40:28 -0400 | [diff] [blame] | 318 | armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0, |
| 319 | (u64)switch_to_el1, ES_TO_AARCH64); |
| 320 | #else |
| 321 | if ((IH_ARCH_DEFAULT == IH_ARCH_ARM64) && |
| 322 | (images->os.arch == IH_ARCH_ARM)) |
| 323 | armv8_switch_to_el2(0, (u64)gd->bd->bi_arch_number, |
| 324 | (u64)images->ft_addr, 0, |
| 325 | (u64)images->ep, |
| 326 | ES_TO_AARCH32); |
| 327 | else |
Peter Hoyes | a673266 | 2021-08-19 16:53:13 +0100 | [diff] [blame] | 328 | armv8_switch_to_el2((u64)images->ft_addr, 0, 0, 0, |
Tom Rini | 3a6d453 | 2021-09-03 10:40:28 -0400 | [diff] [blame] | 329 | images->ep, |
| 330 | ES_TO_AARCH64); |
| 331 | #endif |
Marc Zyngier | 915a09e | 2014-07-12 14:23:58 +0100 | [diff] [blame] | 332 | } |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 333 | #else |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 334 | unsigned long machid = gd->bd->bi_arch_number; |
| 335 | char *s; |
| 336 | void (*kernel_entry)(int zero, int arch, uint params); |
Stephen Warren | c570fba | 2012-04-19 11:34:00 +0000 | [diff] [blame] | 337 | unsigned long r2; |
Simon Glass | 3c26c58 | 2013-06-19 21:15:10 -0700 | [diff] [blame] | 338 | int fake = (flag & BOOTM_STATE_OS_FAKE_GO); |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 339 | |
| 340 | kernel_entry = (void (*)(int, int, uint))images->ep; |
Patrice Chotard | ffb3c0b | 2017-04-25 11:07:46 +0200 | [diff] [blame] | 341 | #ifdef CONFIG_CPU_V7M |
| 342 | ulong addr = (ulong)kernel_entry | 1; |
| 343 | kernel_entry = (void *)addr; |
| 344 | #endif |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 345 | s = env_get("machid"); |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 346 | if (s) { |
Peng Fan | c4485e7 | 2015-11-24 16:54:20 +0800 | [diff] [blame] | 347 | if (strict_strtoul(s, 16, &machid) < 0) { |
| 348 | debug("strict_strtoul failed!\n"); |
| 349 | return; |
| 350 | } |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 351 | printf("Using machid 0x%lx from environment\n", machid); |
| 352 | } |
| 353 | |
| 354 | debug("## Transferring control to Linux (at address %08lx)" \ |
| 355 | "...\n", (ulong) kernel_entry); |
| 356 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
Simon Glass | 3c26c58 | 2013-06-19 21:15:10 -0700 | [diff] [blame] | 357 | announce_and_cleanup(fake); |
Stephen Warren | c570fba | 2012-04-19 11:34:00 +0000 | [diff] [blame] | 358 | |
Simon Glass | 85c057e | 2021-09-25 19:43:21 -0600 | [diff] [blame] | 359 | if (CONFIG_IS_ENABLED(OF_LIBFDT) && images->ft_len) |
Stephen Warren | c570fba | 2012-04-19 11:34:00 +0000 | [diff] [blame] | 360 | r2 = (unsigned long)images->ft_addr; |
| 361 | else |
Stephen Warren | c570fba | 2012-04-19 11:34:00 +0000 | [diff] [blame] | 362 | r2 = gd->bd->bi_boot_params; |
| 363 | |
Marc Zyngier | 915a09e | 2014-07-12 14:23:58 +0100 | [diff] [blame] | 364 | if (!fake) { |
Jan Kiszka | ac31b5a | 2015-04-21 07:18:24 +0200 | [diff] [blame] | 365 | #ifdef CONFIG_ARMV7_NONSEC |
Ian Campbell | 68bc8f5 | 2014-12-21 09:45:11 +0000 | [diff] [blame] | 366 | if (armv7_boot_nonsec()) { |
Hans de Goede | 63fb548 | 2014-11-14 09:34:31 +0100 | [diff] [blame] | 367 | armv7_init_nonsec(); |
| 368 | secure_ram_addr(_do_nonsec_entry)(kernel_entry, |
| 369 | 0, machid, r2); |
| 370 | } else |
Marc Zyngier | 855ca66 | 2014-07-12 14:24:03 +0100 | [diff] [blame] | 371 | #endif |
Hans de Goede | 63fb548 | 2014-11-14 09:34:31 +0100 | [diff] [blame] | 372 | kernel_entry(0, machid, r2); |
Marc Zyngier | 915a09e | 2014-07-12 14:23:58 +0100 | [diff] [blame] | 373 | } |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 374 | #endif |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | /* Main Entry point for arm bootm implementation |
| 378 | * |
| 379 | * Modeled after the powerpc implementation |
| 380 | * DIFFERENCE: Instead of calling prep and go at the end |
| 381 | * they are called if subcommand is equal 0. |
| 382 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 383 | int do_bootm_linux(int flag, int argc, char *const argv[], |
Eric Nelson | b7c236b | 2014-09-30 15:40:01 -0700 | [diff] [blame] | 384 | bootm_headers_t *images) |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 385 | { |
| 386 | /* No need for those on ARM */ |
| 387 | if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE) |
| 388 | return -1; |
| 389 | |
| 390 | if (flag & BOOTM_STATE_OS_PREP) { |
| 391 | boot_prep_linux(images); |
| 392 | return 0; |
| 393 | } |
| 394 | |
Simon Glass | 3c26c58 | 2013-06-19 21:15:10 -0700 | [diff] [blame] | 395 | if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) { |
| 396 | boot_jump_linux(images, flag); |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 397 | return 0; |
| 398 | } |
| 399 | |
| 400 | boot_prep_linux(images); |
Simon Glass | 3c26c58 | 2013-06-19 21:15:10 -0700 | [diff] [blame] | 401 | boot_jump_linux(images, flag); |
Simon Schwarz | 6a597b9 | 2012-03-15 04:01:45 +0000 | [diff] [blame] | 402 | return 0; |
John Rigby | ab51f1e | 2010-10-13 13:57:36 -0600 | [diff] [blame] | 403 | } |
Marek Vasut | cf41a9b | 2012-03-14 21:52:45 +0000 | [diff] [blame] | 404 | |
Miao Yan | 1bd5456 | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 405 | #if defined(CONFIG_BOOTM_VXWORKS) |
| 406 | void boot_prep_vxworks(bootm_headers_t *images) |
| 407 | { |
| 408 | #if defined(CONFIG_OF_LIBFDT) |
| 409 | int off; |
| 410 | |
| 411 | if (images->ft_addr) { |
| 412 | off = fdt_path_offset(images->ft_addr, "/memory"); |
Hannes Schmelzer | 64fabcc | 2018-05-04 10:49:11 +0200 | [diff] [blame] | 413 | if (off > 0) { |
Ma Haijun | 6235824 | 2014-07-12 14:24:06 +0100 | [diff] [blame] | 414 | if (arch_fixup_fdt(images->ft_addr)) |
Miao Yan | 1bd5456 | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 415 | puts("## WARNING: fixup memory failed!\n"); |
| 416 | } |
| 417 | } |
| 418 | #endif |
| 419 | cleanup_before_linux(); |
| 420 | } |
| 421 | void boot_jump_vxworks(bootm_headers_t *images) |
| 422 | { |
Vasyl Vavrychuk | 70b551c | 2018-04-10 12:36:36 +0300 | [diff] [blame] | 423 | #if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI) |
| 424 | armv8_setup_psci(); |
| 425 | smp_kick_all_cpus(); |
| 426 | #endif |
| 427 | |
Miao Yan | 1bd5456 | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 428 | /* ARM VxWorks requires device tree physical address to be passed */ |
| 429 | ((void (*)(void *))images->ep)(images->ft_addr); |
| 430 | } |
| 431 | #endif |