blob: 2d6a41be2fd57d9b046b6ffe08288bc518fce358 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk507bbe32004-04-18 21:13:41 +00002/*
Michal Simekcfc67112007-03-11 13:48:24 +01003 * (C) Copyright 2007 Michal Simek
wdenk507bbe32004-04-18 21:13:41 +00004 * (C) Copyright 2004 Atmark Techno, Inc.
5 *
Michal Simekcfc67112007-03-11 13:48:24 +01006 * Michal SIMEK <monstr@monstr.eu>
wdenk507bbe32004-04-18 21:13:41 +00007 * Yasushi SHOJI <yashi@atmark-techno.com>
wdenk507bbe32004-04-18 21:13:41 +00008 */
9
10#include <common.h>
11#include <command.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070012#include <cpu_func.h>
Simon Glass7b51b572019-08-01 09:46:52 -060013#include <env.h>
Simon Glass73223f02016-02-22 22:55:43 -070014#include <fdt_support.h>
Simon Glassdb41d652019-12-28 10:45:07 -070015#include <hang.h>
Michal Simekcfc67112007-03-11 13:48:24 +010016#include <image.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020017#include <u-boot/zlib.h>
Michal Simekcfc67112007-03-11 13:48:24 +010018#include <asm/byteorder.h>
wdenk507bbe32004-04-18 21:13:41 +000019
Michal Simek6131a362019-09-25 10:45:51 +020020DECLARE_GLOBAL_DATA_PTR;
21
22static ulong get_sp(void)
23{
24 ulong ret;
25
26 asm("addik %0, r1, 0" : "=r"(ret) : );
27 return ret;
28}
29
30void arch_lmb_reserve(struct lmb *lmb)
31{
32 ulong sp, bank_end;
33 int bank;
34
35 /*
36 * Booting a (Linux) kernel image
37 *
38 * Allocate space for command line and board info - the
39 * address should be as high as possible within the reach of
40 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
41 * memory, which means far enough below the current stack
42 * pointer.
43 */
44 sp = get_sp();
45 debug("## Current stack ends at 0x%08lx ", sp);
46
47 /* adjust sp by 4K to be safe */
48 sp -= 4096;
49 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
50 if (sp < gd->bd->bi_dram[bank].start)
51 continue;
52 bank_end = gd->bd->bi_dram[bank].start +
53 gd->bd->bi_dram[bank].size;
54 if (sp >= bank_end)
55 continue;
56 lmb_reserve(lmb, sp, bank_end - sp);
57 break;
58 }
59}
60
Michal Simek09050462019-09-25 09:47:02 +020061static void boot_jump_linux(bootm_headers_t *images, int flag)
wdenk507bbe32004-04-18 21:13:41 +000062{
Michal Simek09050462019-09-25 09:47:02 +020063 void (*thekernel)(char *cmdline, ulong rd, ulong dt);
64 ulong dt = (ulong)images->ft_addr;
65 ulong rd_start = images->initrd_start;
66 ulong cmdline = images->cmdline_start;
67 int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
Arun Bhanu398b1d52010-04-15 18:27:17 +080068
Michal Simek1e71fa42013-05-02 12:51:48 +020069 thekernel = (void (*)(char *, ulong, ulong))images->ep;
Arun Bhanu398b1d52010-04-15 18:27:17 +080070
Michal Simekf3035cf2019-10-17 13:16:56 +020071 debug("## Transferring control to Linux (at address 0x%08lx) ",
72 (ulong)thekernel);
73 debug("cmdline 0x%08lx, ramdisk 0x%08lx, FDT 0x%08lx...\n",
74 cmdline, rd_start, dt);
75 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
76
77 printf("\nStarting kernel ...%s\n\n", fake ?
78 "(fake run for tracing)" : "");
79 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
Michal Simekcfc67112007-03-11 13:48:24 +010080
Michal Simek9b4d9052010-04-16 12:01:32 +020081#ifdef XILINX_USE_DCACHE
Michal Simek9b4d9052010-04-16 12:01:32 +020082 flush_cache(0, XILINX_DCACHE_BYTE_SIZE);
Michal Simek9b4d9052010-04-16 12:01:32 +020083#endif
Jean-Christophe PLAGNIOL-VILLARDa3a08c02008-09-10 22:48:09 +020084
Michal Simek09050462019-09-25 09:47:02 +020085 if (!fake) {
86 /*
87 * Linux Kernel Parameters (passing device tree):
88 * r5: pointer to command line
89 * r6: pointer to ramdisk
90 * r7: pointer to the fdt, followed by the board info data
91 */
92 thekernel((char *)cmdline, rd_start, dt);
93 /* does not return */
94 }
95}
96
97static void boot_prep_linux(bootm_headers_t *images)
98{
99 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
Michal Simek4ab8d632019-10-17 14:12:48 +0200100 debug("using: FDT\n");
Michal Simek09050462019-09-25 09:47:02 +0200101 if (image_setup_linux(images)) {
102 printf("FDT creation failed! hanging...");
103 hang();
104 }
105 }
106}
107
108int do_bootm_linux(int flag, int argc, char * const argv[],
109 bootm_headers_t *images)
110{
111 images->cmdline_start = (ulong)env_get("bootargs");
112
113 /* cmdline init is the part of 'prep' and nothing to do for 'bdt' */
114 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
115 return -1;
116
117 if (flag & BOOTM_STATE_OS_PREP) {
118 boot_prep_linux(images);
119 return 0;
120 }
121
122 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
123 boot_jump_linux(images, flag);
124 return 0;
125 }
126
127 boot_prep_linux(images);
128 boot_jump_linux(images, flag);
Kumar Gala40d7e992008-08-15 08:24:45 -0500129 return 1;
wdenk507bbe32004-04-18 21:13:41 +0000130}