blob: c730a3fd08b242d480183534338fce7f1f849d1a [file] [log] [blame]
wdenk5c952cf2004-10-10 21:27:30 +00001/*
2 * (C) Copyright 2003, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk5c952cf2004-10-10 21:27:30 +00006 */
7
8#include <common.h>
9#include <command.h>
wdenk0c1c117c2005-03-30 23:28:18 +000010#include <asm/byteorder.h>
Renato Andreola0a7691e2009-11-23 16:45:14 -050011#include <asm/cache.h>
wdenk5c952cf2004-10-10 21:27:30 +000012
Thomas Choued294152010-03-24 11:41:46 +080013#define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */
14
Wolfgang Denk54841ab2010-06-28 22:00:46 +020015int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images)
wdenk5c952cf2004-10-10 21:27:30 +000016{
Thomas Choued294152010-03-24 11:41:46 +080017 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 Chou06c5d302010-05-31 11:58:05 +080021 char *of_flat_tree = NULL;
22#if defined(CONFIG_OF_LIBFDT)
John Rigby5a75e122010-10-13 13:57:34 -060023 /* did generic code already find a device tree? */
24 if (images->ft_len)
25 of_flat_tree = images->ft_addr;
Thomas Chou06c5d302010-05-31 11:58:05 +080026#endif
Simon Glass983c72f2013-06-11 11:14:46 -070027 if (!of_flat_tree && argc > 1)
28 of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
Thomas Chou06c5d302010-05-31 11:58:05 +080029 if (of_flat_tree)
30 initrd_end = (ulong)of_flat_tree;
wdenk0c1c117c2005-03-30 23:28:18 +000031
Andreas Bießmann2cb0e552013-07-02 13:57:44 +020032 /*
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 Gala49c3a862008-10-21 17:25:45 -050038 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
39 return 1;
40
Renato Andreola0a7691e2009-11-23 16:45:14 -050041 /* flushes data and instruction caches before calling the kernel */
Thomas Choued294152010-03-24 11:41:46 +080042 disable_interrupts();
43 flush_dcache((ulong)kernel, CONFIG_SYS_DCACHE_SIZE);
44 flush_icache((ulong)kernel, CONFIG_SYS_ICACHE_SIZE);
Renato Andreola0a7691e2009-11-23 16:45:14 -050045
Thomas Choued294152010-03-24 11:41:46 +080046 debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline);
47 debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end);
Thomas Chou06c5d302010-05-31 11:58:05 +080048 /* 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 Choued294152010-03-24 11:41:46 +080057 kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010058 /* does not return */
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010059
Kumar Gala40d7e992008-08-15 08:24:45 -050060 return 1;
wdenk5c952cf2004-10-10 21:27:30 +000061}