wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003, Psyent Corporation <www.psyent.com> |
| 3 | * Scott McNutt <smcnutt@psyent.com> |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <command.h> |
wdenk | 0c1c117c | 2005-03-30 23:28:18 +0000 | [diff] [blame] | 10 | #include <asm/byteorder.h> |
Renato Andreola | 0a7691e | 2009-11-23 16:45:14 -0500 | [diff] [blame] | 11 | #include <asm/cache.h> |
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 | #define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */ |
| 14 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 15 | 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] | 16 | { |
Thomas Chou | ed29415 | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 17 | void (*kernel)(int, int, int, char *) = (void *)images->ep; |
| 18 | char *commandline = getenv("bootargs"); |
| 19 | ulong initrd_start = images->rd_start; |
| 20 | ulong initrd_end = images->rd_end; |
Thomas Chou | 06c5d30 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 21 | char *of_flat_tree = NULL; |
| 22 | #if defined(CONFIG_OF_LIBFDT) |
John Rigby | 5a75e12 | 2010-10-13 13:57:34 -0600 | [diff] [blame] | 23 | /* did generic code already find a device tree? */ |
| 24 | if (images->ft_len) |
| 25 | of_flat_tree = images->ft_addr; |
Thomas Chou | 06c5d30 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 26 | #endif |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 27 | if (!of_flat_tree && argc > 1) |
| 28 | of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16); |
Thomas Chou | 06c5d30 | 2010-05-31 11:58:05 +0800 | [diff] [blame] | 29 | if (of_flat_tree) |
| 30 | initrd_end = (ulong)of_flat_tree; |
wdenk | 0c1c117c | 2005-03-30 23:28:18 +0000 | [diff] [blame] | 31 | |
Andreas Bießmann | 2cb0e55 | 2013-07-02 13:57:44 +0200 | [diff] [blame] | 32 | /* |
| 33 | * allow the PREP bootm subcommand, it is required for bootm to work |
| 34 | */ |
| 35 | if (flag & BOOTM_STATE_OS_PREP) |
| 36 | return 0; |
| 37 | |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 38 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 39 | return 1; |
| 40 | |
Renato Andreola | 0a7691e | 2009-11-23 16:45:14 -0500 | [diff] [blame] | 41 | /* flushes data and instruction caches before calling the kernel */ |
Thomas Chou | ed29415 | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 42 | disable_interrupts(); |
| 43 | flush_dcache((ulong)kernel, CONFIG_SYS_DCACHE_SIZE); |
| 44 | flush_icache((ulong)kernel, CONFIG_SYS_ICACHE_SIZE); |
Renato Andreola | 0a7691e | 2009-11-23 16:45:14 -0500 | [diff] [blame] | 45 | |
Thomas Chou | ed29415 | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 46 | debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline); |
| 47 | 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] | 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 | */ |
Thomas Chou | ed29415 | 2010-03-24 11:41:46 +0800 | [diff] [blame] | 57 | kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 58 | /* does not return */ |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 59 | |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 60 | return 1; |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 61 | } |