]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/nios2/lib/bootm.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / arch / nios2 / lib / bootm.c
CommitLineData
5c952cf0
WD
1/*
2 * (C) Copyright 2003, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
5c952cf0
WD
6 */
7
8#include <common.h>
9#include <command.h>
0c1c117c 10#include <asm/byteorder.h>
0a7691e8 11#include <asm/cache.h>
0c1c117c 12
ed294157
TC
13#define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */
14
54841ab5 15int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images)
5c952cf0 16{
ed294157
TC
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;
06c5d30d
TC
21 char *of_flat_tree = NULL;
22#if defined(CONFIG_OF_LIBFDT)
5a75e121
JR
23 /* did generic code already find a device tree? */
24 if (images->ft_len)
25 of_flat_tree = images->ft_addr;
06c5d30d 26#endif
983c72f4
SG
27 if (!of_flat_tree && argc > 1)
28 of_flat_tree = (char *)simple_strtoul(argv[1], NULL, 16);
06c5d30d
TC
29 if (of_flat_tree)
30 initrd_end = (ulong)of_flat_tree;
0c1c117c 31
2cb0e55a
AB
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
49c3a861
KG
38 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
39 return 1;
40
0a7691e8 41 /* flushes data and instruction caches before calling the kernel */
ed294157
TC
42 disable_interrupts();
43 flush_dcache((ulong)kernel, CONFIG_SYS_DCACHE_SIZE);
44 flush_icache((ulong)kernel, CONFIG_SYS_ICACHE_SIZE);
0a7691e8 45
ed294157
TC
46 debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline);
47 debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end);
06c5d30d
TC
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 */
ed294157 57 kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline);
cd7c596e 58 /* does not return */
cd7c596e 59
40d7e99d 60 return 1;
5c952cf0 61}