Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | ef3386f | 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 | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 6333448 | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 9 | #include <env.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 10 | #include <image.h> |
Simon Glass | 8f3f761 | 2019-11-14 12:57:42 -0700 | [diff] [blame] | 11 | #include <irq_func.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
wdenk | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 13 | |
Thomas Chou | 09a3dde | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 14 | #define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */ |
| 15 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 16 | int do_bootm_linux(int flag, int argc, char *const argv[], |
| 17 | bootm_headers_t *images) |
wdenk | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 18 | { |
Thomas Chou | 09a3dde | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 19 | void (*kernel)(int, int, int, char *) = (void *)images->ep; |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 20 | char *commandline = env_get("bootargs"); |
Thomas Chou | 09a3dde | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 21 | ulong initrd_start = images->rd_start; |
| 22 | ulong initrd_end = images->rd_end; |
Thomas Chou | ac60514 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 23 | char *of_flat_tree = NULL; |
| 24 | #if defined(CONFIG_OF_LIBFDT) |
John Rigby | 708e667 | 2010-10-13 13:57:34 -0600 | [diff] [blame] | 25 | /* did generic code already find a device tree? */ |
| 26 | if (images->ft_len) |
| 27 | of_flat_tree = images->ft_addr; |
Thomas Chou | ac60514 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 28 | #endif |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 29 | if (!of_flat_tree && argc > 1) |
| 30 | of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16); |
Thomas Chou | ac60514 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 31 | if (of_flat_tree) |
| 32 | initrd_end = (ulong)of_flat_tree; |
wdenk | 194b839 | 2005-03-30 23:28:18 +0000 | [diff] [blame] | 33 | |
Andreas Bießmann | da233ce | 2013-07-02 13:57:44 +0200 | [diff] [blame] | 34 | /* |
| 35 | * allow the PREP bootm subcommand, it is required for bootm to work |
| 36 | */ |
| 37 | if (flag & BOOTM_STATE_OS_PREP) |
| 38 | return 0; |
| 39 | |
Kumar Gala | 18178bc | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 40 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 41 | return 1; |
| 42 | |
Renato Andreola | c3e530a | 2009-11-23 16:45:14 -0500 | [diff] [blame] | 43 | /* flushes data and instruction caches before calling the kernel */ |
Thomas Chou | 09a3dde | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 44 | disable_interrupts(); |
Thomas Chou | 741085b | 2015-10-23 07:58:20 +0800 | [diff] [blame] | 45 | flush_dcache_all(); |
Renato Andreola | c3e530a | 2009-11-23 16:45:14 -0500 | [diff] [blame] | 46 | |
Thomas Chou | 09a3dde | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 47 | debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline); |
| 48 | debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end); |
Thomas Chou | ac60514 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 49 | /* kernel parameters passing |
| 50 | * r4 : NIOS magic |
| 51 | * r5 : initrd start |
| 52 | * r6 : initrd end or fdt |
| 53 | * r7 : kernel command line |
| 54 | * fdt is passed to kernel via r6, the same as initrd_end. fdt will be |
| 55 | * verified with fdt magic. when both initrd and fdt are used at the |
| 56 | * same time, fdt must follow immediately after initrd. |
| 57 | */ |
Thomas Chou | 09a3dde | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 58 | kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline); |
Marian Balakowicz | df8ff33 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 59 | /* does not return */ |
Marian Balakowicz | df8ff33 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 60 | |
Kumar Gala | 48626aa | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 61 | return 1; |
wdenk | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 62 | } |