blob: 3cb59bd977731c25bd86661a7738581260a7769c [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>
Marek Vasuta02c18f2021-09-10 22:47:13 +020013#include <asm/global_data.h>
14
15DECLARE_GLOBAL_DATA_PTR;
wdenk5c952cf2004-10-10 21:27:30 +000016
Thomas Choued294152010-03-24 11:41:46 +080017#define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */
18
Simon Glass09140112020-05-10 11:40:03 -060019int do_bootm_linux(int flag, int argc, char *const argv[],
20 bootm_headers_t *images)
wdenk5c952cf2004-10-10 21:27:30 +000021{
Thomas Choued294152010-03-24 11:41:46 +080022 void (*kernel)(int, int, int, char *) = (void *)images->ep;
Simon Glass00caae62017-08-03 12:22:12 -060023 char *commandline = env_get("bootargs");
Thomas Choued294152010-03-24 11:41:46 +080024 ulong initrd_start = images->rd_start;
25 ulong initrd_end = images->rd_end;
Thomas Chou06c5d302010-05-31 11:58:05 +080026 char *of_flat_tree = NULL;
27#if defined(CONFIG_OF_LIBFDT)
John Rigby5a75e122010-10-13 13:57:34 -060028 /* did generic code already find a device tree? */
29 if (images->ft_len)
30 of_flat_tree = images->ft_addr;
Thomas Chou06c5d302010-05-31 11:58:05 +080031#endif
Simon Glass983c72f2013-06-11 11:14:46 -070032 if (!of_flat_tree && argc > 1)
Simon Glass7e5f4602021-07-24 09:03:29 -060033 of_flat_tree = (char *)hextoul(argv[1], NULL);
Thomas Chou06c5d302010-05-31 11:58:05 +080034 if (of_flat_tree)
35 initrd_end = (ulong)of_flat_tree;
wdenk0c1c117c2005-03-30 23:28:18 +000036
Andreas Bießmann2cb0e552013-07-02 13:57:44 +020037 /*
38 * allow the PREP bootm subcommand, it is required for bootm to work
39 */
40 if (flag & BOOTM_STATE_OS_PREP)
41 return 0;
42
Kumar Gala49c3a862008-10-21 17:25:45 -050043 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
44 return 1;
45
Renato Andreola0a7691e2009-11-23 16:45:14 -050046 /* flushes data and instruction caches before calling the kernel */
Thomas Choued294152010-03-24 11:41:46 +080047 disable_interrupts();
Thomas Chou21ff7342015-10-23 07:58:20 +080048 flush_dcache_all();
Renato Andreola0a7691e2009-11-23 16:45:14 -050049
Thomas Choued294152010-03-24 11:41:46 +080050 debug("bootargs=%s @ 0x%lx\n", commandline, (ulong)&commandline);
51 debug("initrd=0x%lx-0x%lx\n", (ulong)initrd_start, (ulong)initrd_end);
Thomas Chou06c5d302010-05-31 11:58:05 +080052 /* kernel parameters passing
53 * r4 : NIOS magic
54 * r5 : initrd start
55 * r6 : initrd end or fdt
56 * r7 : kernel command line
57 * fdt is passed to kernel via r6, the same as initrd_end. fdt will be
58 * verified with fdt magic. when both initrd and fdt are used at the
59 * same time, fdt must follow immediately after initrd.
60 */
Thomas Choued294152010-03-24 11:41:46 +080061 kernel(NIOS_MAGIC, initrd_start, initrd_end, commandline);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010062 /* does not return */
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010063
Kumar Gala40d7e992008-08-15 08:24:45 -050064 return 1;
wdenk5c952cf2004-10-10 21:27:30 +000065}
Marek Vasuta02c18f2021-09-10 22:47:13 +020066
67static ulong get_sp(void)
68{
69 ulong ret;
70
71 asm("mov %0, sp" : "=r"(ret) : );
72 return ret;
73}
74
75void arch_lmb_reserve(struct lmb *lmb)
76{
77 arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 4096);
78}