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