blob: 2c8f9731c747f9a2a2ff6ff7c2da9a724f52dea3 [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>
Simon Glass1eb69ae2019-11-14 12:57:39 -07008#include <cpu_func.h>
Simon Glass09140112020-05-10 11:40:03 -06009#include <env.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060010#include <image.h>
Simon Glass36bf4462019-11-14 12:57:42 -070011#include <irq_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
wdenk5c952cf2004-10-10 21:27:30 +000013
Thomas Choued294152010-03-24 11:41:46 +080014#define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */
15
Simon Glass09140112020-05-10 11:40:03 -060016int do_bootm_linux(int flag, int argc, char *const argv[],
17 bootm_headers_t *images)
wdenk5c952cf2004-10-10 21:27:30 +000018{
Thomas Choued294152010-03-24 11:41:46 +080019 void (*kernel)(int, int, int, char *) = (void *)images->ep;
Simon Glass00caae62017-08-03 12:22:12 -060020 char *commandline = env_get("bootargs");
Thomas Choued294152010-03-24 11:41:46 +080021 ulong initrd_start = images->rd_start;
22 ulong initrd_end = images->rd_end;
Thomas Chou06c5d302010-05-31 11:58:05 +080023 char *of_flat_tree = NULL;
24#if defined(CONFIG_OF_LIBFDT)
John Rigby5a75e122010-10-13 13:57:34 -060025 /* did generic code already find a device tree? */
26 if (images->ft_len)
27 of_flat_tree = images->ft_addr;
Thomas Chou06c5d302010-05-31 11:58:05 +080028#endif
Simon Glass983c72f2013-06-11 11:14:46 -070029 if (!of_flat_tree && argc > 1)
30 of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
Thomas Chou06c5d302010-05-31 11:58:05 +080031 if (of_flat_tree)
32 initrd_end = (ulong)of_flat_tree;
wdenk0c1c117c2005-03-30 23:28:18 +000033
Andreas Bießmann2cb0e552013-07-02 13:57:44 +020034 /*
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 Gala49c3a862008-10-21 17:25:45 -050040 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
41 return 1;
42
Renato Andreola0a7691e2009-11-23 16:45:14 -050043 /* flushes data and instruction caches before calling the kernel */
Thomas Choued294152010-03-24 11:41:46 +080044 disable_interrupts();
Thomas Chou21ff7342015-10-23 07:58:20 +080045 flush_dcache_all();
Renato Andreola0a7691e2009-11-23 16:45:14 -050046
Thomas Choued294152010-03-24 11:41:46 +080047 debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline);
48 debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end);
Thomas Chou06c5d302010-05-31 11:58:05 +080049 /* 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 Choued294152010-03-24 11:41:46 +080058 kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010059 /* does not return */
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010060
Kumar Gala40d7e992008-08-15 08:24:45 -050061 return 1;
wdenk5c952cf2004-10-10 21:27:30 +000062}