blob: bec18fe28f67b79b06a491c422bd95b50642c51f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkef3386f2004-10-10 21:27:30 +00002/*
3 * (C) Copyright 2003, Psyent Corporation <www.psyent.com>
4 * Scott McNutt <smcnutt@psyent.com>
wdenkef3386f2004-10-10 21:27:30 +00005 */
6
7#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -07008#include <cpu_func.h>
Simon Glass2dc9c342020-05-10 11:40:01 -06009#include <image.h>
Simon Glass8f3f7612019-11-14 12:57:42 -070010#include <irq_func.h>
wdenkef3386f2004-10-10 21:27:30 +000011
Thomas Chou09a3dde2010-03-24 11:41:46 +080012#define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */
13
Wolfgang Denk6262d0212010-06-28 22:00:46 +020014int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images)
wdenkef3386f2004-10-10 21:27:30 +000015{
Thomas Chou09a3dde2010-03-24 11:41:46 +080016 void (*kernel)(int, int, int, char *) = (void *)images->ep;
Simon Glass64b723f2017-08-03 12:22:12 -060017 char *commandline = env_get("bootargs");
Thomas Chou09a3dde2010-03-24 11:41:46 +080018 ulong initrd_start = images->rd_start;
19 ulong initrd_end = images->rd_end;
Thomas Chouac605142010-05-31 11:58:05 +080020 char *of_flat_tree = NULL;
21#if defined(CONFIG_OF_LIBFDT)
John Rigby708e6672010-10-13 13:57:34 -060022 /* did generic code already find a device tree? */
23 if (images->ft_len)
24 of_flat_tree = images->ft_addr;
Thomas Chouac605142010-05-31 11:58:05 +080025#endif
Simon Glass794a9212013-06-11 11:14:46 -070026 if (!of_flat_tree && argc > 1)
27 of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
Thomas Chouac605142010-05-31 11:58:05 +080028 if (of_flat_tree)
29 initrd_end = (ulong)of_flat_tree;
wdenk194b8392005-03-30 23:28:18 +000030
Andreas Bießmannda233ce2013-07-02 13:57:44 +020031 /*
32 * allow the PREP bootm subcommand, it is required for bootm to work
33 */
34 if (flag & BOOTM_STATE_OS_PREP)
35 return 0;
36
Kumar Gala18178bc2008-10-21 17:25:45 -050037 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
38 return 1;
39
Renato Andreolac3e530a2009-11-23 16:45:14 -050040 /* flushes data and instruction caches before calling the kernel */
Thomas Chou09a3dde2010-03-24 11:41:46 +080041 disable_interrupts();
Thomas Chou741085b2015-10-23 07:58:20 +080042 flush_dcache_all();
Renato Andreolac3e530a2009-11-23 16:45:14 -050043
Thomas Chou09a3dde2010-03-24 11:41:46 +080044 debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline);
45 debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end);
Thomas Chouac605142010-05-31 11:58:05 +080046 /* kernel parameters passing
47 * r4 : NIOS magic
48 * r5 : initrd start
49 * r6 : initrd end or fdt
50 * r7 : kernel command line
51 * fdt is passed to kernel via r6, the same as initrd_end. fdt will be
52 * verified with fdt magic. when both initrd and fdt are used at the
53 * same time, fdt must follow immediately after initrd.
54 */
Thomas Chou09a3dde2010-03-24 11:41:46 +080055 kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline);
Marian Balakowiczdf8ff332008-03-12 10:33:00 +010056 /* does not return */
Marian Balakowiczdf8ff332008-03-12 10:33:00 +010057
Kumar Gala48626aa2008-08-15 08:24:45 -050058 return 1;
wdenkef3386f2004-10-10 21:27:30 +000059}