]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
5c952cf0 WD |
2 | /* |
3 | * (C) Copyright 2003, Psyent Corporation <www.psyent.com> | |
4 | * Scott McNutt <[email protected]> | |
5c952cf0 WD |
5 | */ |
6 | ||
7 | #include <common.h> | |
1eb69ae4 | 8 | #include <cpu_func.h> |
09140113 | 9 | #include <env.h> |
4d72caa5 | 10 | #include <image.h> |
36bf446b | 11 | #include <irq_func.h> |
0c1c117c | 12 | |
ed294157 TC |
13 | #define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */ |
14 | ||
09140113 SG |
15 | int do_bootm_linux(int flag, int argc, char *const argv[], |
16 | bootm_headers_t *images) | |
5c952cf0 | 17 | { |
ed294157 | 18 | void (*kernel)(int, int, int, char *) = (void *)images->ep; |
00caae6d | 19 | char *commandline = env_get("bootargs"); |
ed294157 TC |
20 | ulong initrd_start = images->rd_start; |
21 | ulong initrd_end = images->rd_end; | |
06c5d30d TC |
22 | char *of_flat_tree = NULL; |
23 | #if defined(CONFIG_OF_LIBFDT) | |
5a75e121 JR |
24 | /* did generic code already find a device tree? */ |
25 | if (images->ft_len) | |
26 | of_flat_tree = images->ft_addr; | |
06c5d30d | 27 | #endif |
983c72f4 SG |
28 | if (!of_flat_tree && argc > 1) |
29 | of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16); | |
06c5d30d TC |
30 | if (of_flat_tree) |
31 | initrd_end = (ulong)of_flat_tree; | |
0c1c117c | 32 | |
2cb0e55a AB |
33 | /* |
34 | * allow the PREP bootm subcommand, it is required for bootm to work | |
35 | */ | |
36 | if (flag & BOOTM_STATE_OS_PREP) | |
37 | return 0; | |
38 | ||
49c3a861 KG |
39 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
40 | return 1; | |
41 | ||
0a7691e8 | 42 | /* flushes data and instruction caches before calling the kernel */ |
ed294157 | 43 | disable_interrupts(); |
21ff7344 | 44 | flush_dcache_all(); |
0a7691e8 | 45 | |
ed294157 TC |
46 | debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline); |
47 | debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end); | |
06c5d30d TC |
48 | /* kernel parameters passing |
49 | * r4 : NIOS magic | |
50 | * r5 : initrd start | |
51 | * r6 : initrd end or fdt | |
52 | * r7 : kernel command line | |
53 | * fdt is passed to kernel via r6, the same as initrd_end. fdt will be | |
54 | * verified with fdt magic. when both initrd and fdt are used at the | |
55 | * same time, fdt must follow immediately after initrd. | |
56 | */ | |
ed294157 | 57 | kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline); |
cd7c596e | 58 | /* does not return */ |
cd7c596e | 59 | |
40d7e99d | 60 | return 1; |
5c952cf0 | 61 | } |