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