blob: 485d5ae540c31ef308c68654fa8440273c9931ee [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk5c952cf2004-10-10 21:27:30 +00002/*
3 * (C) Copyright 2003, Psyent Corporation <www.psyent.com>
4 * Scott McNutt <smcnutt@psyent.com>
wdenk5c952cf2004-10-10 21:27:30 +00005 */
6
7#include <common.h>
wdenk5c952cf2004-10-10 21:27:30 +00008
Thomas Choued294152010-03-24 11:41:46 +08009#define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */
10
Wolfgang Denk54841ab2010-06-28 22:00:46 +020011int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images)
wdenk5c952cf2004-10-10 21:27:30 +000012{
Thomas Choued294152010-03-24 11:41:46 +080013 void (*kernel)(int, int, int, char *) = (void *)images->ep;
Simon Glass00caae62017-08-03 12:22:12 -060014 char *commandline = env_get("bootargs");
Thomas Choued294152010-03-24 11:41:46 +080015 ulong initrd_start = images->rd_start;
16 ulong initrd_end = images->rd_end;
Thomas Chou06c5d302010-05-31 11:58:05 +080017 char *of_flat_tree = NULL;
18#if defined(CONFIG_OF_LIBFDT)
John Rigby5a75e122010-10-13 13:57:34 -060019 /* did generic code already find a device tree? */
20 if (images->ft_len)
21 of_flat_tree = images->ft_addr;
Thomas Chou06c5d302010-05-31 11:58:05 +080022#endif
Simon Glass983c72f2013-06-11 11:14:46 -070023 if (!of_flat_tree && argc > 1)
24 of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
Thomas Chou06c5d302010-05-31 11:58:05 +080025 if (of_flat_tree)
26 initrd_end = (ulong)of_flat_tree;
wdenk0c1c117c2005-03-30 23:28:18 +000027
Andreas Bießmann2cb0e552013-07-02 13:57:44 +020028 /*
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 Gala49c3a862008-10-21 17:25:45 -050034 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
35 return 1;
36
Renato Andreola0a7691e2009-11-23 16:45:14 -050037 /* flushes data and instruction caches before calling the kernel */
Thomas Choued294152010-03-24 11:41:46 +080038 disable_interrupts();
Thomas Chou21ff7342015-10-23 07:58:20 +080039 flush_dcache_all();
Renato Andreola0a7691e2009-11-23 16:45:14 -050040
Thomas Choued294152010-03-24 11:41:46 +080041 debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline);
42 debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end);
Thomas Chou06c5d302010-05-31 11:58:05 +080043 /* 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 Choued294152010-03-24 11:41:46 +080052 kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010053 /* does not return */
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010054
Kumar Gala40d7e992008-08-15 08:24:45 -050055 return 1;
wdenk5c952cf2004-10-10 21:27:30 +000056}