Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 52f2423 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 8 | #include <bootstage.h> |
Simon Glass | 4bfd1f5 | 2019-08-01 09:46:43 -0600 | [diff] [blame] | 9 | #include <env.h> |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 10 | #include <image.h> |
Daniel Schwierzeck | 5002d8c | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 11 | #include <fdt_support.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 12 | #include <lmb.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 14 | #include <asm/addrspace.h> |
Purna Chandra Mandal | fdff5b0 | 2016-04-18 18:31:38 +0530 | [diff] [blame] | 15 | #include <asm/io.h> |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 16 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 19 | #define LINUX_MAX_ENVS 256 |
| 20 | #define LINUX_MAX_ARGS 256 |
| 21 | |
Daniel Schwierzeck | e51a6b7 | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 22 | static int linux_argc; |
| 23 | static char **linux_argv; |
Daniel Schwierzeck | 59e8cbd | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 24 | static char *linux_argp; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 25 | |
Daniel Schwierzeck | e51a6b7 | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 26 | static char **linux_env; |
| 27 | static char *linux_env_p; |
| 28 | static int linux_env_idx; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 29 | |
Daniel Schwierzeck | f66cc1e | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 30 | static ulong arch_get_sp(void) |
| 31 | { |
| 32 | ulong ret; |
| 33 | |
| 34 | __asm__ __volatile__("move %0, $sp" : "=r"(ret) : ); |
| 35 | |
| 36 | return ret; |
| 37 | } |
| 38 | |
| 39 | void arch_lmb_reserve(struct lmb *lmb) |
| 40 | { |
| 41 | ulong sp; |
| 42 | |
| 43 | sp = arch_get_sp(); |
| 44 | debug("## Current stack ends at 0x%08lx\n", sp); |
| 45 | |
| 46 | /* adjust sp by 4K to be safe */ |
| 47 | sp -= 4096; |
Paul Burton | 7a3e0f7 | 2016-09-26 19:28:56 +0100 | [diff] [blame] | 48 | lmb_reserve(lmb, sp, gd->ram_top - sp); |
Daniel Schwierzeck | f66cc1e | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 49 | } |
| 50 | |
Daniel Schwierzeck | 59e8cbd | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 51 | static void linux_cmdline_init(void) |
| 52 | { |
| 53 | linux_argc = 1; |
Daniel Schwierzeck | dd1bb42 | 2020-07-12 01:46:15 +0200 | [diff] [blame] | 54 | linux_argv = (char **)CKSEG1ADDR(gd->bd->bi_boot_params); |
Daniel Schwierzeck | 59e8cbd | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 55 | linux_argv[0] = 0; |
| 56 | linux_argp = (char *)(linux_argv + LINUX_MAX_ARGS); |
| 57 | } |
| 58 | |
| 59 | static void linux_cmdline_set(const char *value, size_t len) |
| 60 | { |
| 61 | linux_argv[linux_argc] = linux_argp; |
| 62 | memcpy(linux_argp, value, len); |
| 63 | linux_argp[len] = 0; |
| 64 | |
| 65 | linux_argp += len + 1; |
| 66 | linux_argc++; |
| 67 | } |
| 68 | |
| 69 | static void linux_cmdline_dump(void) |
| 70 | { |
| 71 | int i; |
| 72 | |
| 73 | debug("## cmdline argv at 0x%p, argp at 0x%p\n", |
| 74 | linux_argv, linux_argp); |
| 75 | |
| 76 | for (i = 1; i < linux_argc; i++) |
| 77 | debug(" arg %03d: %s\n", i, linux_argv[i]); |
| 78 | } |
| 79 | |
Daniel Schwierzeck | 25fc664 | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 80 | static void linux_cmdline_legacy(bootm_headers_t *images) |
Daniel Schwierzeck | 59e8cbd | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 81 | { |
| 82 | const char *bootargs, *next, *quote; |
| 83 | |
| 84 | linux_cmdline_init(); |
| 85 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 86 | bootargs = env_get("bootargs"); |
Daniel Schwierzeck | 59e8cbd | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 87 | if (!bootargs) |
| 88 | return; |
| 89 | |
| 90 | next = bootargs; |
| 91 | |
| 92 | while (bootargs && *bootargs && linux_argc < LINUX_MAX_ARGS) { |
| 93 | quote = strchr(bootargs, '"'); |
| 94 | next = strchr(bootargs, ' '); |
| 95 | |
| 96 | while (next && quote && quote < next) { |
| 97 | /* |
| 98 | * we found a left quote before the next blank |
| 99 | * now we have to find the matching right quote |
| 100 | */ |
| 101 | next = strchr(quote + 1, '"'); |
| 102 | if (next) { |
| 103 | quote = strchr(next + 1, '"'); |
| 104 | next = strchr(next + 1, ' '); |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | if (!next) |
| 109 | next = bootargs + strlen(bootargs); |
| 110 | |
| 111 | linux_cmdline_set(bootargs, next - bootargs); |
| 112 | |
| 113 | if (*next) |
| 114 | next++; |
| 115 | |
| 116 | bootargs = next; |
| 117 | } |
Daniel Schwierzeck | 25fc664 | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 118 | } |
Daniel Schwierzeck | 59e8cbd | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 119 | |
Daniel Schwierzeck | 8cec725 | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 120 | static void linux_cmdline_append(bootm_headers_t *images) |
| 121 | { |
| 122 | char buf[24]; |
| 123 | ulong mem, rd_start, rd_size; |
| 124 | |
| 125 | /* append mem */ |
| 126 | mem = gd->ram_size >> 20; |
| 127 | sprintf(buf, "mem=%luM", mem); |
| 128 | linux_cmdline_set(buf, strlen(buf)); |
| 129 | |
| 130 | /* append rd_start and rd_size */ |
| 131 | rd_start = images->initrd_start; |
| 132 | rd_size = images->initrd_end - images->initrd_start; |
| 133 | |
| 134 | if (rd_size) { |
| 135 | sprintf(buf, "rd_start=0x%08lX", rd_start); |
| 136 | linux_cmdline_set(buf, strlen(buf)); |
| 137 | sprintf(buf, "rd_size=0x%lX", rd_size); |
| 138 | linux_cmdline_set(buf, strlen(buf)); |
| 139 | } |
| 140 | } |
| 141 | |
Daniel Schwierzeck | 15f8aa9 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 142 | static void linux_env_init(void) |
| 143 | { |
| 144 | linux_env = (char **)(((ulong) linux_argp + 15) & ~15); |
| 145 | linux_env[0] = 0; |
| 146 | linux_env_p = (char *)(linux_env + LINUX_MAX_ENVS); |
| 147 | linux_env_idx = 0; |
| 148 | } |
| 149 | |
| 150 | static void linux_env_set(const char *env_name, const char *env_val) |
| 151 | { |
| 152 | if (linux_env_idx < LINUX_MAX_ENVS - 1) { |
| 153 | linux_env[linux_env_idx] = linux_env_p; |
| 154 | |
| 155 | strcpy(linux_env_p, env_name); |
| 156 | linux_env_p += strlen(env_name); |
| 157 | |
Daniel Schwierzeck | 347ea94 | 2015-11-01 17:36:15 +0100 | [diff] [blame] | 158 | if (CONFIG_IS_ENABLED(MALTA)) { |
Daniel Schwierzeck | b87493f | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 159 | linux_env_p++; |
| 160 | linux_env[++linux_env_idx] = linux_env_p; |
| 161 | } else { |
| 162 | *linux_env_p++ = '='; |
| 163 | } |
Daniel Schwierzeck | 15f8aa9 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 164 | |
| 165 | strcpy(linux_env_p, env_val); |
| 166 | linux_env_p += strlen(env_val); |
| 167 | |
| 168 | linux_env_p++; |
| 169 | linux_env[++linux_env_idx] = 0; |
| 170 | } |
| 171 | } |
| 172 | |
Daniel Schwierzeck | ca65e58 | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 173 | static void linux_env_legacy(bootm_headers_t *images) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 174 | { |
Daniel Schwierzeck | e51a6b7 | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 175 | char env_buf[12]; |
Daniel Schwierzeck | 15f8aa9 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 176 | const char *cp; |
Daniel Schwierzeck | 6c15455 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 177 | ulong rd_start, rd_size; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 178 | |
Daniel Schwierzeck | 347ea94 | 2015-11-01 17:36:15 +0100 | [diff] [blame] | 179 | if (CONFIG_IS_ENABLED(MEMSIZE_IN_BYTES)) { |
| 180 | sprintf(env_buf, "%lu", (ulong)gd->ram_size); |
| 181 | debug("## Giving linux memsize in bytes, %lu\n", |
| 182 | (ulong)gd->ram_size); |
| 183 | } else { |
| 184 | sprintf(env_buf, "%lu", (ulong)(gd->ram_size >> 20)); |
| 185 | debug("## Giving linux memsize in MB, %lu\n", |
| 186 | (ulong)(gd->ram_size >> 20)); |
| 187 | } |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 188 | |
Daniel Schwierzeck | dd1bb42 | 2020-07-12 01:46:15 +0200 | [diff] [blame] | 189 | rd_start = CKSEG1ADDR(images->initrd_start); |
Daniel Schwierzeck | 6c15455 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 190 | rd_size = images->initrd_end - images->initrd_start; |
| 191 | |
Daniel Schwierzeck | 15f8aa9 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 192 | linux_env_init(); |
| 193 | |
Daniel Schwierzeck | e51a6b7 | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 194 | linux_env_set("memsize", env_buf); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 195 | |
Daniel Schwierzeck | 6c15455 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 196 | sprintf(env_buf, "0x%08lX", rd_start); |
Daniel Schwierzeck | e51a6b7 | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 197 | linux_env_set("initrd_start", env_buf); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 198 | |
Daniel Schwierzeck | 6c15455 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 199 | sprintf(env_buf, "0x%lX", rd_size); |
Daniel Schwierzeck | e51a6b7 | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 200 | linux_env_set("initrd_size", env_buf); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 201 | |
Daniel Schwierzeck | e51a6b7 | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 202 | sprintf(env_buf, "0x%08X", (uint) (gd->bd->bi_flashstart)); |
| 203 | linux_env_set("flash_start", env_buf); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 204 | |
Daniel Schwierzeck | e51a6b7 | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 205 | sprintf(env_buf, "0x%X", (uint) (gd->bd->bi_flashsize)); |
| 206 | linux_env_set("flash_size", env_buf); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 207 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 208 | cp = env_get("ethaddr"); |
Daniel Schwierzeck | e51a6b7 | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 209 | if (cp) |
Jason McMullan | e7c3745 | 2008-06-08 23:56:00 -0400 | [diff] [blame] | 210 | linux_env_set("ethaddr", cp); |
Jason McMullan | e7c3745 | 2008-06-08 23:56:00 -0400 | [diff] [blame] | 211 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 212 | cp = env_get("eth1addr"); |
Daniel Schwierzeck | e51a6b7 | 2012-06-03 23:46:04 +0200 | [diff] [blame] | 213 | if (cp) |
Jason McMullan | e7c3745 | 2008-06-08 23:56:00 -0400 | [diff] [blame] | 214 | linux_env_set("eth1addr", cp); |
Daniel Schwierzeck | b87493f | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 215 | |
Daniel Schwierzeck | 347ea94 | 2015-11-01 17:36:15 +0100 | [diff] [blame] | 216 | if (CONFIG_IS_ENABLED(MALTA)) { |
Paul Burton | d18d49d | 2013-11-26 17:45:25 +0000 | [diff] [blame] | 217 | sprintf(env_buf, "%un8r", gd->baudrate); |
| 218 | linux_env_set("modetty0", env_buf); |
| 219 | } |
Gabor Juhos | 0ea7213 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 220 | } |
Jason McMullan | e7c3745 | 2008-06-08 23:56:00 -0400 | [diff] [blame] | 221 | |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 222 | static int boot_reloc_fdt(bootm_headers_t *images) |
| 223 | { |
| 224 | /* |
| 225 | * In case of legacy uImage's, relocation of FDT is already done |
| 226 | * by do_bootm_states() and should not repeated in 'bootm prep'. |
| 227 | */ |
| 228 | if (images->state & BOOTM_STATE_FDT) { |
| 229 | debug("## FDT already relocated\n"); |
| 230 | return 0; |
| 231 | } |
| 232 | |
| 233 | #if CONFIG_IS_ENABLED(MIPS_BOOT_FDT) && CONFIG_IS_ENABLED(OF_LIBFDT) |
| 234 | boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr); |
| 235 | return boot_relocate_fdt(&images->lmb, &images->ft_addr, |
| 236 | &images->ft_len); |
| 237 | #else |
| 238 | return 0; |
| 239 | #endif |
| 240 | } |
| 241 | |
Alexey Brodkin | 4280342 | 2018-01-24 20:47:09 +0300 | [diff] [blame] | 242 | #if CONFIG_IS_ENABLED(MIPS_BOOT_FDT) && CONFIG_IS_ENABLED(OF_LIBFDT) |
Purna Chandra Mandal | fdff5b0 | 2016-04-18 18:31:38 +0530 | [diff] [blame] | 243 | int arch_fixup_fdt(void *blob) |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 244 | { |
Purna Chandra Mandal | fdff5b0 | 2016-04-18 18:31:38 +0530 | [diff] [blame] | 245 | u64 mem_start = virt_to_phys((void *)gd->bd->bi_memstart); |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 246 | u64 mem_size = gd->ram_size; |
| 247 | |
| 248 | return fdt_fixup_memory_banks(blob, &mem_start, &mem_size, 1); |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 249 | } |
Alexey Brodkin | 4280342 | 2018-01-24 20:47:09 +0300 | [diff] [blame] | 250 | #endif |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 251 | |
| 252 | static int boot_setup_fdt(bootm_headers_t *images) |
| 253 | { |
Horatiu Vultur | 6943cc9 | 2019-04-24 17:21:29 +0200 | [diff] [blame] | 254 | images->initrd_start = virt_to_phys((void *)images->initrd_start); |
| 255 | images->initrd_end = virt_to_phys((void *)images->initrd_end); |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 256 | return image_setup_libfdt(images, images->ft_addr, images->ft_len, |
| 257 | &images->lmb); |
| 258 | } |
| 259 | |
Daniel Schwierzeck | ca65e58 | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 260 | static void boot_prep_linux(bootm_headers_t *images) |
| 261 | { |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 262 | if (CONFIG_IS_ENABLED(MIPS_BOOT_FDT) && images->ft_len) { |
| 263 | boot_reloc_fdt(images); |
Daniel Schwierzeck | 5002d8c | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 264 | boot_setup_fdt(images); |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 265 | } else { |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 266 | if (CONFIG_IS_ENABLED(MIPS_BOOT_CMDLINE_LEGACY)) { |
| 267 | linux_cmdline_legacy(images); |
| 268 | |
Zubair Lutfullah Kakakhel | 48bfc31 | 2017-07-11 16:47:51 +0100 | [diff] [blame] | 269 | if (!CONFIG_IS_ENABLED(MIPS_BOOT_ENV_LEGACY)) |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 270 | linux_cmdline_append(images); |
| 271 | |
| 272 | linux_cmdline_dump(); |
| 273 | } |
Zubair Lutfullah Kakakhel | 48bfc31 | 2017-07-11 16:47:51 +0100 | [diff] [blame] | 274 | |
| 275 | if (CONFIG_IS_ENABLED(MIPS_BOOT_ENV_LEGACY)) |
| 276 | linux_env_legacy(images); |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 277 | } |
Daniel Schwierzeck | ca65e58 | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 278 | } |
| 279 | |
Gabor Juhos | 0ea7213 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 280 | static void boot_jump_linux(bootm_headers_t *images) |
| 281 | { |
Daniel Schwierzeck | c4b3784 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 282 | typedef void __noreturn (*kernel_entry_t)(int, ulong, ulong, ulong); |
| 283 | kernel_entry_t kernel = (kernel_entry_t) images->ep; |
Daniel Schwierzeck | b87493f | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 284 | ulong linux_extra = 0; |
Gabor Juhos | 0ea7213 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 285 | |
Daniel Schwierzeck | c4b3784 | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 286 | debug("## Transferring control to Linux (at address %p) ...\n", kernel); |
Gabor Juhos | 0ea7213 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 287 | |
| 288 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
| 289 | |
Daniel Schwierzeck | 347ea94 | 2015-11-01 17:36:15 +0100 | [diff] [blame] | 290 | if (CONFIG_IS_ENABLED(MALTA)) |
Daniel Schwierzeck | b87493f | 2013-05-30 19:04:20 +0200 | [diff] [blame] | 291 | linux_extra = gd->ram_size; |
| 292 | |
Daniel Schwierzeck | 347ea94 | 2015-11-01 17:36:15 +0100 | [diff] [blame] | 293 | #if CONFIG_IS_ENABLED(BOOTSTAGE_FDT) |
Daniel Schwierzeck | e13a50b | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 294 | bootstage_fdt_add_report(); |
| 295 | #endif |
Daniel Schwierzeck | 347ea94 | 2015-11-01 17:36:15 +0100 | [diff] [blame] | 296 | #if CONFIG_IS_ENABLED(BOOTSTAGE_REPORT) |
Daniel Schwierzeck | e13a50b | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 297 | bootstage_report(); |
| 298 | #endif |
Gabor Juhos | 0ea7213 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 299 | |
Weijie Gao | 7105973 | 2020-04-21 09:28:25 +0200 | [diff] [blame] | 300 | if (CONFIG_IS_ENABLED(RESTORE_EXCEPTION_VECTOR_BASE)) |
| 301 | trap_restore(); |
| 302 | |
Daniel Schwierzeck | 90b1c9f | 2015-02-22 16:58:30 +0100 | [diff] [blame] | 303 | if (images->ft_len) |
| 304 | kernel(-2, (ulong)images->ft_addr, 0, 0); |
| 305 | else |
| 306 | kernel(linux_argc, (ulong)linux_argv, (ulong)linux_env, |
| 307 | linux_extra); |
Gabor Juhos | 0ea7213 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 310 | int do_bootm_linux(int flag, int argc, char *const argv[], |
| 311 | bootm_headers_t *images) |
Gabor Juhos | 0ea7213 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 312 | { |
Gabor Juhos | 9c170e2 | 2013-01-07 02:53:42 +0000 | [diff] [blame] | 313 | /* No need for those on MIPS */ |
Daniel Schwierzeck | 59e8cbd | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 314 | if (flag & BOOTM_STATE_OS_BD_T) |
Gabor Juhos | 9c170e2 | 2013-01-07 02:53:42 +0000 | [diff] [blame] | 315 | return -1; |
| 316 | |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 317 | /* |
| 318 | * Cmdline init has been moved to 'bootm prep' because it has to be |
| 319 | * done after relocation of ramdisk to always pass correct values |
| 320 | * for rd_start and rd_size to Linux kernel. |
| 321 | */ |
| 322 | if (flag & BOOTM_STATE_OS_CMDLINE) |
Daniel Schwierzeck | 59e8cbd | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 323 | return 0; |
Daniel Schwierzeck | 59e8cbd | 2013-05-09 17:10:06 +0200 | [diff] [blame] | 324 | |
Gabor Juhos | 9c170e2 | 2013-01-07 02:53:42 +0000 | [diff] [blame] | 325 | if (flag & BOOTM_STATE_OS_PREP) { |
| 326 | boot_prep_linux(images); |
| 327 | return 0; |
| 328 | } |
| 329 | |
Daniel Schwierzeck | 2bb5b63 | 2015-11-01 17:36:14 +0100 | [diff] [blame] | 330 | if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) { |
Gabor Juhos | 9c170e2 | 2013-01-07 02:53:42 +0000 | [diff] [blame] | 331 | boot_jump_linux(images); |
| 332 | return 0; |
| 333 | } |
Gabor Juhos | 0ea7213 | 2013-01-07 02:53:41 +0000 | [diff] [blame] | 334 | |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 335 | /* does not return */ |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 336 | return 1; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 337 | } |