Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003, Psyent Corporation <www.psyent.com> |
| 4 | * Scott McNutt <smcnutt@psyent.com> |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 8 | |
Thomas Chou | ed29415 | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 9 | #define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */ |
| 10 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 11 | int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 12 | { |
Thomas Chou | ed29415 | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 13 | void (*kernel)(int, int, int, char *) = (void *)images->ep; |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 14 | char *commandline = env_get("bootargs"); |
Thomas Chou | ed29415 | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 15 | ulong initrd_start = images->rd_start; |
| 16 | ulong initrd_end = images->rd_end; |
Thomas Chou | 06c5d30 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 17 | char *of_flat_tree = NULL; |
| 18 | #if defined(CONFIG_OF_LIBFDT) |
John Rigby | 5a75e12 | 2010-10-13 13:57:34 -0600 | [diff] [blame] | 19 | /* did generic code already find a device tree? */ |
| 20 | if (images->ft_len) |
| 21 | of_flat_tree = images->ft_addr; |
Thomas Chou | 06c5d30 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 22 | #endif |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 23 | if (!of_flat_tree && argc > 1) |
| 24 | of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16); |
Thomas Chou | 06c5d30 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 25 | if (of_flat_tree) |
| 26 | initrd_end = (ulong)of_flat_tree; |
wdenk | 0c1c117c | 2005-03-30 23:28:18 +0000 | [diff] [blame] | 27 | |
Andreas Bießmann | 2cb0e55 | 2013-07-02 13:57:44 +0200 | [diff] [blame] | 28 | /* |
| 29 | * allow the PREP bootm subcommand, it is required for bootm to work |
| 30 | */ |
| 31 | if (flag & BOOTM_STATE_OS_PREP) |
| 32 | return 0; |
| 33 | |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 34 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 35 | return 1; |
| 36 | |
Renato Andreola | 0a7691e | 2009-11-23 16:45:14 -0500 | [diff] [blame] | 37 | /* flushes data and instruction caches before calling the kernel */ |
Thomas Chou | ed29415 | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 38 | disable_interrupts(); |
Thomas Chou | 21ff734 | 2015-10-23 07:58:20 +0800 | [diff] [blame] | 39 | flush_dcache_all(); |
Renato Andreola | 0a7691e | 2009-11-23 16:45:14 -0500 | [diff] [blame] | 40 | |
Thomas Chou | ed29415 | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 41 | debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline); |
| 42 | debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end); |
Thomas Chou | 06c5d30 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 43 | /* kernel parameters passing |
| 44 | * r4 : NIOS magic |
| 45 | * r5 : initrd start |
| 46 | * r6 : initrd end or fdt |
| 47 | * r7 : kernel command line |
| 48 | * fdt is passed to kernel via r6, the same as initrd_end. fdt will be |
| 49 | * verified with fdt magic. when both initrd and fdt are used at the |
| 50 | * same time, fdt must follow immediately after initrd. |
| 51 | */ |
Thomas Chou | ed29415 | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 52 | kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 53 | /* does not return */ |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 54 | |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 55 | return 1; |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 56 | } |