blob: 27729db67e27ab9acb4c126fbf9679678fe48d45 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkabf7a7c2003-12-08 01:34:36 +00002/*
3 * (C) Copyright 2003
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkabf7a7c2003-12-08 01:34:36 +00005 */
6
7#include <common.h>
Simon Glass1ea97892020-05-10 11:40:00 -06008#include <bootstage.h>
wdenkabf7a7c2003-12-08 01:34:36 +00009#include <command.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060010#include <env.h>
wdenkabf7a7c2003-12-08 01:34:36 +000011#include <image.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060012#include <lmb.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020015#include <u-boot/zlib.h>
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050016#include <bzlib.h>
TsiChungLiew890adcb2007-10-25 17:14:00 -050017#include <watchdog.h>
wdenkabf7a7c2003-12-08 01:34:36 +000018#include <asm/byteorder.h>
Marian Balakowicz2efc2642008-01-31 13:58:13 +010019#ifdef CONFIG_SHOW_BOOT_PROGRESS
20# include <status_led.h>
21#endif
wdenkabf7a7c2003-12-08 01:34:36 +000022
Wolfgang Denk6405a152006-03-31 18:32:53 +020023DECLARE_GLOBAL_DATA_PTR;
24
wdenkabf7a7c2003-12-08 01:34:36 +000025#define PHYSADDR(x) x
26
wdenke65527f2004-02-12 00:47:09 +000027#define LINUX_MAX_ENVS 256
28#define LINUX_MAX_ARGS 256
wdenkabf7a7c2003-12-08 01:34:36 +000029
Marian Balakowicz9c701e82008-01-31 13:57:17 +010030static ulong get_sp (void);
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090031static void set_clocks_in_mhz (struct bd_info *kbd);
Marian Balakowicz9c701e82008-01-31 13:57:17 +010032
Kumar Galab02d7222008-10-16 21:52:08 -050033void arch_lmb_reserve(struct lmb *lmb)
wdenkabf7a7c2003-12-08 01:34:36 +000034{
Marek Vasutd0dd68f2021-09-10 22:47:10 +020035 arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 1024);
Kumar Galab02d7222008-10-16 21:52:08 -050036}
37
Simon Glassed38aef2020-05-10 11:40:03 -060038int do_bootm_linux(int flag, int argc, char *const argv[],
39 bootm_headers_t *images)
Kumar Galab02d7222008-10-16 21:52:08 -050040{
Kumar Galab02d7222008-10-16 21:52:08 -050041 int ret;
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090042 struct bd_info *kbd;
43 void (*kernel) (struct bd_info *, ulong, ulong, ulong, ulong);
Kumar Galab02d7222008-10-16 21:52:08 -050044 struct lmb *lmb = &images->lmb;
45
Andreas Bießmannda233ce2013-07-02 13:57:44 +020046 /*
47 * allow the PREP bootm subcommand, it is required for bootm to work
48 */
49 if (flag & BOOTM_STATE_OS_PREP)
50 return 0;
51
Kumar Gala18178bc2008-10-21 17:25:45 -050052 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
53 return 1;
54
Marian Balakowicz2efc2642008-01-31 13:58:13 +010055 /* allocate space for kernel copy of board info */
Grant Likelydfff7a22011-03-28 09:58:34 +000056 ret = boot_get_kbd (lmb, &kbd);
Kumar Galab937bb72008-02-27 21:51:49 -060057 if (ret) {
58 puts("ERROR with allocation of kernel bd\n");
59 goto error;
60 }
Marian Balakowicz2efc2642008-01-31 13:58:13 +010061 set_clocks_in_mhz(kbd);
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050062
Simon Glass6b4f0762013-05-08 08:06:05 +000063 ret = image_setup_linux(images);
Kumar Galab937bb72008-02-27 21:51:49 -060064 if (ret)
65 goto error;
wdenkabf7a7c2003-12-08 01:34:36 +000066
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090067 kernel = (void (*)(struct bd_info *, ulong, ulong, ulong, ulong))images->ep;
Simon Glass6b4f0762013-05-08 08:06:05 +000068
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050069 debug("## Transferring control to Linux (at address %08lx) ...\n",
70 (ulong) kernel);
wdenkabf7a7c2003-12-08 01:34:36 +000071
Simon Glass0169e6b2012-02-13 13:51:18 +000072 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
wdenkabf7a7c2003-12-08 01:34:36 +000073
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050074 /*
75 * Linux Kernel Parameters (passing board info data):
Richard Retanubun15fa2f02009-02-20 13:01:56 -050076 * sp+00: Ignore, side effect of using jsr to jump to kernel
77 * sp+04: ptr to board info data
78 * sp+08: initrd_start or 0 if no initrd
79 * sp+12: initrd_end - unused if initrd_start is 0
80 * sp+16: Start of command line string
81 * sp+20: End of command line string
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050082 */
Simon Glass660031e2014-06-07 22:07:58 -060083 (*kernel)(kbd, images->initrd_start, images->initrd_end,
84 images->cmdline_start, images->cmdline_end);
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050085 /* does not return */
Kumar Gala18f4c0f2008-02-27 21:51:46 -060086error:
Kumar Gala48626aa2008-08-15 08:24:45 -050087 return 1;
wdenkabf7a7c2003-12-08 01:34:36 +000088}
Marian Balakowicz9c701e82008-01-31 13:57:17 +010089
90static ulong get_sp (void)
91{
92 ulong sp;
93
94 asm("movel %%a7, %%d0\n"
95 "movel %%d0, %0\n": "=d"(sp): :"%d0");
96
97 return sp;
98}
Marian Balakowicz2efc2642008-01-31 13:58:13 +010099
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900100static void set_clocks_in_mhz (struct bd_info *kbd)
Marian Balakowicz2efc2642008-01-31 13:58:13 +0100101{
102 char *s;
103
Simon Glass64b723f2017-08-03 12:22:12 -0600104 s = env_get("clocks_in_mhz");
105 if (s) {
Marian Balakowicz2efc2642008-01-31 13:58:13 +0100106 /* convert all clock information to MHz */
107 kbd->bi_intfreq /= 1000000L;
108 kbd->bi_busfreq /= 1000000L;
109 }
110}