blob: 51a6f938586dddb54632e1a1f6bbe54ad27803b6 [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{
Kumar Galab937bb72008-02-27 21:51:49 -060035 ulong sp;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +010036
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050037 /*
38 * Booting a (Linux) kernel image
39 *
40 * Allocate space for command line and board info - the
41 * address should be as high as possible within the reach of
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020042 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050043 * memory, which means far enough below the current stack
44 * pointer.
45 */
Marian Balakowicz2efc2642008-01-31 13:58:13 +010046 sp = get_sp();
47 debug ("## Current stack ends at 0x%08lx ", sp);
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050048
Kumar Galab937bb72008-02-27 21:51:49 -060049 /* adjust sp by 1K to be safe */
50 sp -= 1024;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020051 lmb_reserve(lmb, sp, (CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp));
Kumar Galab02d7222008-10-16 21:52:08 -050052}
53
Simon Glassed38aef2020-05-10 11:40:03 -060054int do_bootm_linux(int flag, int argc, char *const argv[],
55 bootm_headers_t *images)
Kumar Galab02d7222008-10-16 21:52:08 -050056{
Kumar Galab02d7222008-10-16 21:52:08 -050057 int ret;
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090058 struct bd_info *kbd;
59 void (*kernel) (struct bd_info *, ulong, ulong, ulong, ulong);
Kumar Galab02d7222008-10-16 21:52:08 -050060 struct lmb *lmb = &images->lmb;
61
Andreas Bießmannda233ce2013-07-02 13:57:44 +020062 /*
63 * allow the PREP bootm subcommand, it is required for bootm to work
64 */
65 if (flag & BOOTM_STATE_OS_PREP)
66 return 0;
67
Kumar Gala18178bc2008-10-21 17:25:45 -050068 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
69 return 1;
70
Marian Balakowicz2efc2642008-01-31 13:58:13 +010071 /* allocate space for kernel copy of board info */
Grant Likelydfff7a22011-03-28 09:58:34 +000072 ret = boot_get_kbd (lmb, &kbd);
Kumar Galab937bb72008-02-27 21:51:49 -060073 if (ret) {
74 puts("ERROR with allocation of kernel bd\n");
75 goto error;
76 }
Marian Balakowicz2efc2642008-01-31 13:58:13 +010077 set_clocks_in_mhz(kbd);
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050078
Simon Glass6b4f0762013-05-08 08:06:05 +000079 ret = image_setup_linux(images);
Kumar Galab937bb72008-02-27 21:51:49 -060080 if (ret)
81 goto error;
wdenkabf7a7c2003-12-08 01:34:36 +000082
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090083 kernel = (void (*)(struct bd_info *, ulong, ulong, ulong, ulong))images->ep;
Simon Glass6b4f0762013-05-08 08:06:05 +000084
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050085 debug("## Transferring control to Linux (at address %08lx) ...\n",
86 (ulong) kernel);
wdenkabf7a7c2003-12-08 01:34:36 +000087
Simon Glass0169e6b2012-02-13 13:51:18 +000088 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
wdenkabf7a7c2003-12-08 01:34:36 +000089
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050090 /*
91 * Linux Kernel Parameters (passing board info data):
Richard Retanubun15fa2f02009-02-20 13:01:56 -050092 * sp+00: Ignore, side effect of using jsr to jump to kernel
93 * sp+04: ptr to board info data
94 * sp+08: initrd_start or 0 if no initrd
95 * sp+12: initrd_end - unused if initrd_start is 0
96 * sp+16: Start of command line string
97 * sp+20: End of command line string
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -050098 */
Simon Glass660031e2014-06-07 22:07:58 -060099 (*kernel)(kbd, images->initrd_start, images->initrd_end,
100 images->cmdline_start, images->cmdline_end);
TsiChungLiewfc3ca3b62007-08-16 15:05:11 -0500101 /* does not return */
Kumar Gala18f4c0f2008-02-27 21:51:46 -0600102error:
Kumar Gala48626aa2008-08-15 08:24:45 -0500103 return 1;
wdenkabf7a7c2003-12-08 01:34:36 +0000104}
Marian Balakowicz9c701e82008-01-31 13:57:17 +0100105
106static ulong get_sp (void)
107{
108 ulong sp;
109
110 asm("movel %%a7, %%d0\n"
111 "movel %%d0, %0\n": "=d"(sp): :"%d0");
112
113 return sp;
114}
Marian Balakowicz2efc2642008-01-31 13:58:13 +0100115
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900116static void set_clocks_in_mhz (struct bd_info *kbd)
Marian Balakowicz2efc2642008-01-31 13:58:13 +0100117{
118 char *s;
119
Simon Glass64b723f2017-08-03 12:22:12 -0600120 s = env_get("clocks_in_mhz");
121 if (s) {
Marian Balakowicz2efc2642008-01-31 13:58:13 +0100122 /* convert all clock information to MHz */
123 kbd->bi_intfreq /= 1000000L;
124 kbd->bi_busfreq /= 1000000L;
125 }
126}