blob: 3b43066bb4f21c8e67ce1a4e1895d5a4a6b769c5 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marian Balakowicz2437cf22008-01-08 18:11:43 +01002/*
3 * (C) Copyright 2008 Semihalf
4 *
5 * (C) Copyright 2000-2006
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Marian Balakowicz2437cf22008-01-08 18:11:43 +01007 */
8
Marian Balakowiczf92332b2008-01-31 13:20:06 +01009
Marian Balakowicz2437cf22008-01-08 18:11:43 +010010#include <common.h>
Simon Glass1ea97892020-05-10 11:40:00 -060011#include <bootstage.h>
Simon Glass63334482019-11-14 12:57:39 -070012#include <cpu_func.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060013#include <env.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070014#include <init.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060015#include <lmb.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Marian Balakowicz2437cf22008-01-08 18:11:43 +010017#include <watchdog.h>
18#include <command.h>
19#include <image.h>
20#include <malloc.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060021#include <asm/global_data.h>
Jean-Christophe PLAGNIOL-VILLARD6bb94492009-04-04 12:49:11 +020022#include <u-boot/zlib.h>
Marian Balakowicz2437cf22008-01-08 18:11:43 +010023#include <bzlib.h>
Marian Balakowicz2437cf22008-01-08 18:11:43 +010024#include <asm/byteorder.h>
Kumar Gala365024c2011-01-31 15:51:20 -060025#include <asm/mp.h>
Christophe Leroy4a4750b2017-07-13 15:10:08 +020026#include <bootm.h>
27#include <vxworks.h>
Marian Balakowicz2437cf22008-01-08 18:11:43 +010028
29#if defined(CONFIG_OF_LIBFDT)
Masahiro Yamada75f82d02018-03-05 01:20:11 +090030#include <linux/libfdt.h>
Marian Balakowicz2437cf22008-01-08 18:11:43 +010031#include <fdt_support.h>
Wolfgang Denk1e0f07e2009-07-26 23:28:02 +020032#endif
33
34#ifdef CONFIG_SYS_INIT_RAM_LOCK
35#include <asm/cache.h>
Marian Balakowicz2437cf22008-01-08 18:11:43 +010036#endif
37
Marian Balakowicz2437cf22008-01-08 18:11:43 +010038DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz2437cf22008-01-08 18:11:43 +010039
Marian Balakowicz9c701e82008-01-31 13:57:17 +010040static ulong get_sp (void);
Miao Yan1bd54562013-11-28 17:51:38 +080041extern void ft_fixup_num_cores(void *blob);
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090042static void set_clocks_in_mhz (struct bd_info *kbd);
Marian Balakowicz2437cf22008-01-08 18:11:43 +010043
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020044#ifndef CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE
45#define CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE (768*1024*1024)
Kumar Galac5bacfd2008-02-27 21:51:50 -060046#endif
47
Kumar Galaffccb572008-10-21 17:25:46 -050048static void boot_jump_linux(bootm_headers_t *images)
49{
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090050 void (*kernel)(struct bd_info *, ulong r4, ulong r5, ulong r6,
51 ulong r7, ulong r8, ulong r9);
Kumar Galaffccb572008-10-21 17:25:46 -050052#ifdef CONFIG_OF_LIBFDT
53 char *of_flat_tree = images->ft_addr;
54#endif
55
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090056 kernel = (void (*)(struct bd_info *, ulong, ulong, ulong,
Kumar Galaffccb572008-10-21 17:25:46 -050057 ulong, ulong, ulong))images->ep;
Simon Glass8f055af2020-05-10 11:40:04 -060058 debug("## Transferring control to Linux (at address %08lx) ...\n",
59 (ulong)kernel);
Kumar Galaffccb572008-10-21 17:25:46 -050060
Simon Glass0169e6b2012-02-13 13:51:18 +000061 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Kumar Galaffccb572008-10-21 17:25:46 -050062
Mela Custodiobe11d892014-02-20 00:16:57 +090063#ifdef CONFIG_BOOTSTAGE_FDT
64 bootstage_fdt_add_report();
65#endif
66#ifdef CONFIG_BOOTSTAGE_REPORT
67 bootstage_report();
68#endif
69
Wolfgang Denk1e0f07e2009-07-26 23:28:02 +020070#if defined(CONFIG_SYS_INIT_RAM_LOCK) && !defined(CONFIG_E500)
71 unlock_ram_in_cache();
72#endif
73
Kumar Galaffccb572008-10-21 17:25:46 -050074#if defined(CONFIG_OF_LIBFDT)
75 if (of_flat_tree) { /* device tree; boot new style */
76 /*
77 * Linux Kernel Parameters (passing device tree):
78 * r3: pointer to the fdt
79 * r4: 0
80 * r5: 0
81 * r6: epapr magic
82 * r7: size of IMA in bytes
83 * r8: 0
84 * r9: 0
85 */
Simon Glass8f055af2020-05-10 11:40:04 -060086 debug(" Booting using OF flat tree...\n");
Heiko Schochercd1bd4c2009-08-12 10:17:03 +020087 WATCHDOG_RESET ();
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090088 (*kernel) ((struct bd_info *)of_flat_tree, 0, 0, EPAPR_MAGIC,
Simon Glassda1a1342017-08-03 12:22:15 -060089 env_get_bootm_mapsize(), 0, 0);
Kumar Galaffccb572008-10-21 17:25:46 -050090 /* does not return */
91 } else
92#endif
93 {
94 /*
95 * Linux Kernel Parameters (passing board info data):
96 * r3: ptr to board info data
97 * r4: initrd_start or 0 if no initrd
98 * r5: initrd_end - unused if r4 is 0
99 * r6: Start of command line string
100 * r7: End of command line string
101 * r8: 0
102 * r9: 0
103 */
104 ulong cmd_start = images->cmdline_start;
105 ulong cmd_end = images->cmdline_end;
106 ulong initrd_start = images->initrd_start;
107 ulong initrd_end = images->initrd_end;
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900108 struct bd_info *kbd = images->kbd;
Kumar Galaffccb572008-10-21 17:25:46 -0500109
Simon Glass8f055af2020-05-10 11:40:04 -0600110 debug(" Booting using board info...\n");
Heiko Schochercd1bd4c2009-08-12 10:17:03 +0200111 WATCHDOG_RESET ();
Kumar Galaffccb572008-10-21 17:25:46 -0500112 (*kernel) (kbd, initrd_start, initrd_end,
113 cmd_start, cmd_end, 0, 0);
114 /* does not return */
115 }
116 return ;
117}
118
Kumar Galab02d7222008-10-16 21:52:08 -0500119void arch_lmb_reserve(struct lmb *lmb)
Marian Balakowicz2437cf22008-01-08 18:11:43 +0100120{
Becky Bruced26d67c2008-06-09 20:37:18 -0500121 phys_size_t bootm_size;
Marek Vasutd0dd68f2021-09-10 22:47:10 +0200122 ulong size, bootmap_base;
Kumar Gala93467bc2008-08-15 08:24:36 -0500123
Simon Glassda1a1342017-08-03 12:22:15 -0600124 bootmap_base = env_get_bootm_low();
125 bootm_size = env_get_bootm_size();
Kumar Galac5bacfd2008-02-27 21:51:50 -0600126
127#ifdef DEBUG
Becky Bruced26d67c2008-06-09 20:37:18 -0500128 if (((u64)bootmap_base + bootm_size) >
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200129 (CONFIG_SYS_SDRAM_BASE + (u64)gd->ram_size))
Kumar Galac5bacfd2008-02-27 21:51:50 -0600130 puts("WARNING: bootm_low + bootm_size exceed total memory\n");
Becky Bruced26d67c2008-06-09 20:37:18 -0500131 if ((bootmap_base + bootm_size) > get_effective_memsize())
Kumar Galac5bacfd2008-02-27 21:51:50 -0600132 puts("WARNING: bootm_low + bootm_size exceed eff. memory\n");
133#endif
134
Becky Bruced26d67c2008-06-09 20:37:18 -0500135 size = min(bootm_size, get_effective_memsize());
Masahiro Yamadadb204642014-11-07 03:03:31 +0900136 size = min(size, (ulong)CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE);
Kumar Galac5bacfd2008-02-27 21:51:50 -0600137
Becky Bruced26d67c2008-06-09 20:37:18 -0500138 if (size < bootm_size) {
Kumar Galac5bacfd2008-02-27 21:51:50 -0600139 ulong base = bootmap_base + size;
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700140 printf("WARNING: adjusting available memory to %lx\n", size);
Becky Bruced26d67c2008-06-09 20:37:18 -0500141 lmb_reserve(lmb, base, bootm_size - size);
Kumar Galac5bacfd2008-02-27 21:51:50 -0600142 }
Kumar Galab937bb72008-02-27 21:51:49 -0600143
Marek Vasutd0dd68f2021-09-10 22:47:10 +0200144 arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 4096);
Marian Balakowicz2437cf22008-01-08 18:11:43 +0100145
Kumar Gala365024c2011-01-31 15:51:20 -0600146#ifdef CONFIG_MP
147 cpu_mp_lmb_reserve(lmb);
148#endif
149
Kumar Galab02d7222008-10-16 21:52:08 -0500150 return ;
151}
152
Kumar Gala180c5812011-12-07 04:42:58 +0000153static void boot_prep_linux(bootm_headers_t *images)
154{
155#ifdef CONFIG_MP
156 /*
157 * if we are MP make sure to flush the device tree so any changes are
158 * made visibile to all other cores. In AMP boot scenarios the cores
159 * might not be HW cache coherent with each other.
160 */
161 flush_cache((unsigned long)images->ft_addr, images->ft_len);
162#endif
163}
164
Kumar Galaffccb572008-10-21 17:25:46 -0500165static int boot_cmdline_linux(bootm_headers_t *images)
166{
Kumar Galaffccb572008-10-21 17:25:46 -0500167 ulong of_size = images->ft_len;
168 struct lmb *lmb = &images->lmb;
169 ulong *cmd_start = &images->cmdline_start;
170 ulong *cmd_end = &images->cmdline_end;
Kumar Galab02d7222008-10-16 21:52:08 -0500171
Kumar Galaffccb572008-10-21 17:25:46 -0500172 int ret = 0;
Kumar Galab02d7222008-10-16 21:52:08 -0500173
Kumar Galaa56d7d52008-02-27 21:51:44 -0600174 if (!of_size) {
175 /* allocate space and init command line */
Grant Likelydfff7a22011-03-28 09:58:34 +0000176 ret = boot_get_cmdline (lmb, cmd_start, cmd_end);
Kumar Galab937bb72008-02-27 21:51:49 -0600177 if (ret) {
178 puts("ERROR with allocation of cmdline\n");
Kumar Galaffccb572008-10-21 17:25:46 -0500179 return ret;
Kumar Galab937bb72008-02-27 21:51:49 -0600180 }
Kumar Galaffccb572008-10-21 17:25:46 -0500181 }
182
183 return ret;
184}
185
186static int boot_bd_t_linux(bootm_headers_t *images)
187{
Kumar Galaffccb572008-10-21 17:25:46 -0500188 ulong of_size = images->ft_len;
189 struct lmb *lmb = &images->lmb;
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900190 struct bd_info **kbd = &images->kbd;
Kumar Galaffccb572008-10-21 17:25:46 -0500191
192 int ret = 0;
Kumar Galaa56d7d52008-02-27 21:51:44 -0600193
Kumar Galaffccb572008-10-21 17:25:46 -0500194 if (!of_size) {
Kumar Galaa56d7d52008-02-27 21:51:44 -0600195 /* allocate space for kernel copy of board info */
Grant Likelydfff7a22011-03-28 09:58:34 +0000196 ret = boot_get_kbd (lmb, kbd);
Kumar Galab937bb72008-02-27 21:51:49 -0600197 if (ret) {
198 puts("ERROR with allocation of kernel bd\n");
Kumar Galaffccb572008-10-21 17:25:46 -0500199 return ret;
Kumar Galab937bb72008-02-27 21:51:49 -0600200 }
Kumar Galaffccb572008-10-21 17:25:46 -0500201 set_clocks_in_mhz(*kbd);
Kumar Galaa56d7d52008-02-27 21:51:44 -0600202 }
Marian Balakowicz2437cf22008-01-08 18:11:43 +0100203
Kumar Galaffccb572008-10-21 17:25:46 -0500204 return ret;
205}
206
207static int boot_body_linux(bootm_headers_t *images)
208{
Kumar Galaffccb572008-10-21 17:25:46 -0500209 int ret;
210
Kumar Galaffccb572008-10-21 17:25:46 -0500211 /* allocate space for kernel copy of board info */
212 ret = boot_bd_t_linux(images);
213 if (ret)
214 return ret;
215
Simon Glassd4337d52013-05-08 08:06:04 +0000216 ret = image_setup_linux(images);
Kumar Galaffccb572008-10-21 17:25:46 -0500217 if (ret)
218 return ret;
Marian Balakowicz2437cf22008-01-08 18:11:43 +0100219
Kumar Galaffccb572008-10-21 17:25:46 -0500220 return 0;
221}
Kumar Gala56bdf1d2008-02-27 21:51:45 -0600222
Simon Glassed38aef2020-05-10 11:40:03 -0600223noinline int do_bootm_linux(int flag, int argc, char *const argv[],
224 bootm_headers_t *images)
Kumar Galaffccb572008-10-21 17:25:46 -0500225{
226 int ret;
Marian Balakowicz2437cf22008-01-08 18:11:43 +0100227
Kumar Galaffccb572008-10-21 17:25:46 -0500228 if (flag & BOOTM_STATE_OS_CMDLINE) {
229 boot_cmdline_linux(images);
230 return 0;
231 }
Marian Balakowicz2437cf22008-01-08 18:11:43 +0100232
Kumar Galaffccb572008-10-21 17:25:46 -0500233 if (flag & BOOTM_STATE_OS_BD_T) {
234 boot_bd_t_linux(images);
235 return 0;
236 }
Marian Balakowicz2437cf22008-01-08 18:11:43 +0100237
Kumar Gala180c5812011-12-07 04:42:58 +0000238 if (flag & BOOTM_STATE_OS_PREP) {
239 boot_prep_linux(images);
Kumar Galaffccb572008-10-21 17:25:46 -0500240 return 0;
Kumar Gala180c5812011-12-07 04:42:58 +0000241 }
Kumar Galadcdcfea2008-08-15 08:24:31 -0500242
Kumar Gala180c5812011-12-07 04:42:58 +0000243 boot_prep_linux(images);
Kumar Galaffccb572008-10-21 17:25:46 -0500244 ret = boot_body_linux(images);
245 if (ret)
246 return ret;
247 boot_jump_linux(images);
Kumar Gala18f4c0f2008-02-27 21:51:46 -0600248
Kumar Galaffccb572008-10-21 17:25:46 -0500249 return 0;
Marian Balakowicz2437cf22008-01-08 18:11:43 +0100250}
Marian Balakowicz28fb6152008-01-31 13:20:08 +0100251
Marian Balakowicz9c701e82008-01-31 13:57:17 +0100252static ulong get_sp (void)
253{
254 ulong sp;
255
256 asm( "mr %0,1": "=r"(sp) : );
257 return sp;
258}
259
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900260static void set_clocks_in_mhz (struct bd_info *kbd)
Marian Balakowicz2efc2642008-01-31 13:58:13 +0100261{
262 char *s;
263
Simon Glass64b723f2017-08-03 12:22:12 -0600264 s = env_get("clocks_in_mhz");
265 if (s) {
Marian Balakowicz2efc2642008-01-31 13:58:13 +0100266 /* convert all clock information to MHz */
267 kbd->bi_intfreq /= 1000000L;
268 kbd->bi_busfreq /= 1000000L;
Marian Balakowicz2efc2642008-01-31 13:58:13 +0100269 }
Marian Balakowicz351d3e32008-02-27 11:02:26 +0100270}
Miao Yan1bd54562013-11-28 17:51:38 +0800271
272#if defined(CONFIG_BOOTM_VXWORKS)
273void boot_prep_vxworks(bootm_headers_t *images)
274{
275#if defined(CONFIG_OF_LIBFDT)
276 int off;
277 u64 base, size;
278
279 if (!images->ft_addr)
280 return;
281
Stefan Roesea13a2aa2020-08-12 13:16:36 +0200282 base = (u64)gd->ram_base;
283 size = (u64)gd->ram_size;
Miao Yan1bd54562013-11-28 17:51:38 +0800284
285 off = fdt_path_offset(images->ft_addr, "/memory");
286 if (off < 0)
287 fdt_fixup_memory(images->ft_addr, base, size);
288
289#if defined(CONFIG_MP)
290#if defined(CONFIG_MPC85xx)
291 ft_fixup_cpu(images->ft_addr, base + size);
292 ft_fixup_num_cores(images->ft_addr);
293#elif defined(CONFIG_MPC86xx)
294 off = fdt_add_mem_rsv(images->ft_addr,
295 determine_mp_bootpg(NULL), (u64)4096);
296 if (off < 0)
297 printf("## WARNING %s: %s\n", __func__, fdt_strerror(off));
298 ft_fixup_num_cores(images->ft_addr);
299#endif
300 flush_cache((unsigned long)images->ft_addr, images->ft_len);
301#endif
302#endif
303}
304
305void boot_jump_vxworks(bootm_headers_t *images)
306{
307 /* PowerPC VxWorks boot interface conforms to the ePAPR standard
308 * general purpuse registers:
309 *
310 * r3: Effective address of the device tree image
311 * r4: 0
312 * r5: 0
313 * r6: ePAPR magic value
314 * r7: shall be the size of the boot IMA in bytes
315 * r8: 0
316 * r9: 0
317 * TCR: WRC = 0, no watchdog timer reset will occur
318 */
319 WATCHDOG_RESET();
320
321 ((void (*)(void *, ulong, ulong, ulong,
322 ulong, ulong, ulong))images->ep)(images->ft_addr,
Simon Glassda1a1342017-08-03 12:22:15 -0600323 0, 0, EPAPR_MAGIC, env_get_bootm_mapsize(), 0, 0);
Miao Yan1bd54562013-11-28 17:51:38 +0800324}
325#endif