]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/powerpc/lib/bootm.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / powerpc / lib / bootm.c
CommitLineData
5d3cc55e
MB
1/*
2 * (C) Copyright 2008 Semihalf
3 *
4 * (C) Copyright 2000-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
5d3cc55e
MB
8 */
9
7582438c 10
5d3cc55e
MB
11#include <common.h>
12#include <watchdog.h>
13#include <command.h>
14#include <image.h>
15#include <malloc.h>
a31e091a 16#include <u-boot/zlib.h>
5d3cc55e
MB
17#include <bzlib.h>
18#include <environment.h>
19#include <asm/byteorder.h>
561e710a 20#include <asm/mp.h>
5d3cc55e
MB
21
22#if defined(CONFIG_OF_LIBFDT)
5d3cc55e
MB
23#include <libfdt.h>
24#include <fdt_support.h>
9c67352f
WD
25#endif
26
27#ifdef CONFIG_SYS_INIT_RAM_LOCK
28#include <asm/cache.h>
5d3cc55e
MB
29#endif
30
5d3cc55e 31DECLARE_GLOBAL_DATA_PTR;
5d3cc55e 32
e822d7fc 33extern ulong get_effective_memsize(void);
ceaed2b1 34static ulong get_sp (void);
b6b0fe64 35static void set_clocks_in_mhz (bd_t *kbd);
5d3cc55e 36
6d0f6bcf
JCPV
37#ifndef CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE
38#define CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE (768*1024*1024)
d3f2fa0d
KG
39#endif
40
5a98127d
KG
41static void boot_jump_linux(bootm_headers_t *images)
42{
43 void (*kernel)(bd_t *, ulong r4, ulong r5, ulong r6,
44 ulong r7, ulong r8, ulong r9);
45#ifdef CONFIG_OF_LIBFDT
46 char *of_flat_tree = images->ft_addr;
47#endif
48
49 kernel = (void (*)(bd_t *, ulong, ulong, ulong,
50 ulong, ulong, ulong))images->ep;
51 debug ("## Transferring control to Linux (at address %08lx) ...\n",
52 (ulong)kernel);
53
770605e4 54 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
5a98127d 55
9c67352f
WD
56#if defined(CONFIG_SYS_INIT_RAM_LOCK) && !defined(CONFIG_E500)
57 unlock_ram_in_cache();
58#endif
59
5a98127d
KG
60#if defined(CONFIG_OF_LIBFDT)
61 if (of_flat_tree) { /* device tree; boot new style */
62 /*
63 * Linux Kernel Parameters (passing device tree):
64 * r3: pointer to the fdt
65 * r4: 0
66 * r5: 0
67 * r6: epapr magic
68 * r7: size of IMA in bytes
69 * r8: 0
70 * r9: 0
71 */
5a98127d 72 debug (" Booting using OF flat tree...\n");
7ff66bb0 73 WATCHDOG_RESET ();
5a98127d 74 (*kernel) ((bd_t *)of_flat_tree, 0, 0, EPAPR_MAGIC,
c3624e6e 75 getenv_bootm_mapsize(), 0, 0);
5a98127d
KG
76 /* does not return */
77 } else
78#endif
79 {
80 /*
81 * Linux Kernel Parameters (passing board info data):
82 * r3: ptr to board info data
83 * r4: initrd_start or 0 if no initrd
84 * r5: initrd_end - unused if r4 is 0
85 * r6: Start of command line string
86 * r7: End of command line string
87 * r8: 0
88 * r9: 0
89 */
90 ulong cmd_start = images->cmdline_start;
91 ulong cmd_end = images->cmdline_end;
92 ulong initrd_start = images->initrd_start;
93 ulong initrd_end = images->initrd_end;
94 bd_t *kbd = images->kbd;
95
96 debug (" Booting using board info...\n");
7ff66bb0 97 WATCHDOG_RESET ();
5a98127d
KG
98 (*kernel) (kbd, initrd_start, initrd_end,
99 cmd_start, cmd_end, 0, 0);
100 /* does not return */
101 }
102 return ;
103}
104
76da19df 105void arch_lmb_reserve(struct lmb *lmb)
5d3cc55e 106{
391fd93a 107 phys_size_t bootm_size;
76da19df 108 ulong size, sp, bootmap_base;
c160a954 109
d3f2fa0d 110 bootmap_base = getenv_bootm_low();
391fd93a 111 bootm_size = getenv_bootm_size();
d3f2fa0d
KG
112
113#ifdef DEBUG
391fd93a 114 if (((u64)bootmap_base + bootm_size) >
6d0f6bcf 115 (CONFIG_SYS_SDRAM_BASE + (u64)gd->ram_size))
d3f2fa0d 116 puts("WARNING: bootm_low + bootm_size exceed total memory\n");
391fd93a 117 if ((bootmap_base + bootm_size) > get_effective_memsize())
d3f2fa0d
KG
118 puts("WARNING: bootm_low + bootm_size exceed eff. memory\n");
119#endif
120
391fd93a 121 size = min(bootm_size, get_effective_memsize());
6d0f6bcf 122 size = min(size, CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE);
d3f2fa0d 123
391fd93a 124 if (size < bootm_size) {
d3f2fa0d 125 ulong base = bootmap_base + size;
dc4b0b38 126 printf("WARNING: adjusting available memory to %lx\n", size);
391fd93a 127 lmb_reserve(lmb, base, bootm_size - size);
d3f2fa0d 128 }
e822d7fc 129
5d3cc55e
MB
130 /*
131 * Booting a (Linux) kernel image
132 *
133 * Allocate space for command line and board info - the
134 * address should be as high as possible within the reach of
6d0f6bcf 135 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
5d3cc55e
MB
136 * memory, which means far enough below the current stack
137 * pointer.
138 */
b6b0fe64 139 sp = get_sp();
d3f2fa0d 140 debug ("## Current stack ends at 0x%08lx\n", sp);
5d3cc55e 141
3882d7a5
NB
142 /* adjust sp by 4K to be safe */
143 sp -= 4096;
6d0f6bcf 144 lmb_reserve(lmb, sp, (CONFIG_SYS_SDRAM_BASE + get_effective_memsize() - sp));
5d3cc55e 145
561e710a
KG
146#ifdef CONFIG_MP
147 cpu_mp_lmb_reserve(lmb);
148#endif
149
76da19df
KG
150 return ;
151}
152
3b200110
KG
153static 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
5a98127d
KG
165static int boot_cmdline_linux(bootm_headers_t *images)
166{
5a98127d
KG
167 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;
76da19df 171
5a98127d 172 int ret = 0;
76da19df 173
27953493
KG
174 if (!of_size) {
175 /* allocate space and init command line */
590d3cac 176 ret = boot_get_cmdline (lmb, cmd_start, cmd_end);
e822d7fc
KG
177 if (ret) {
178 puts("ERROR with allocation of cmdline\n");
5a98127d 179 return ret;
e822d7fc 180 }
5a98127d
KG
181 }
182
183 return ret;
184}
185
186static int boot_bd_t_linux(bootm_headers_t *images)
187{
5a98127d
KG
188 ulong of_size = images->ft_len;
189 struct lmb *lmb = &images->lmb;
190 bd_t **kbd = &images->kbd;
191
192 int ret = 0;
27953493 193
5a98127d 194 if (!of_size) {
27953493 195 /* allocate space for kernel copy of board info */
590d3cac 196 ret = boot_get_kbd (lmb, kbd);
e822d7fc
KG
197 if (ret) {
198 puts("ERROR with allocation of kernel bd\n");
5a98127d 199 return ret;
e822d7fc 200 }
5a98127d 201 set_clocks_in_mhz(*kbd);
27953493 202 }
5d3cc55e 203
5a98127d
KG
204 return ret;
205}
206
207static int boot_body_linux(bootm_headers_t *images)
208{
5a98127d
KG
209 int ret;
210
5a98127d
KG
211 /* allocate space for kernel copy of board info */
212 ret = boot_bd_t_linux(images);
213 if (ret)
214 return ret;
215
3e51266a 216 ret = image_setup_linux(images);
06a09918 217 if (ret)
5a98127d 218 return ret;
5d3cc55e 219
5a98127d
KG
220 return 0;
221}
d45d5a18 222
eef1cf2d 223noinline
54841ab5 224int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images)
5a98127d
KG
225{
226 int ret;
5d3cc55e 227
5a98127d
KG
228 if (flag & BOOTM_STATE_OS_CMDLINE) {
229 boot_cmdline_linux(images);
230 return 0;
231 }
5d3cc55e 232
5a98127d
KG
233 if (flag & BOOTM_STATE_OS_BD_T) {
234 boot_bd_t_linux(images);
235 return 0;
236 }
5d3cc55e 237
3b200110
KG
238 if (flag & BOOTM_STATE_OS_PREP) {
239 boot_prep_linux(images);
5a98127d 240 return 0;
3b200110 241 }
a15b0710 242
3b200110 243 boot_prep_linux(images);
5a98127d
KG
244 ret = boot_body_linux(images);
245 if (ret)
246 return ret;
247 boot_jump_linux(images);
248
249 return 0;
5d3cc55e 250}
d3c5eb6d 251
ceaed2b1
MB
252static ulong get_sp (void)
253{
254 ulong sp;
255
256 asm( "mr %0,1": "=r"(sp) : );
257 return sp;
258}
259
b6b0fe64
MB
260static void set_clocks_in_mhz (bd_t *kbd)
261{
262 char *s;
263
264 if ((s = getenv ("clocks_in_mhz")) != NULL) {
265 /* convert all clock information to MHz */
266 kbd->bi_intfreq /= 1000000L;
267 kbd->bi_busfreq /= 1000000L;
b6b0fe64
MB
268#if defined(CONFIG_CPM2)
269 kbd->bi_cpmfreq /= 1000000L;
270 kbd->bi_brgfreq /= 1000000L;
271 kbd->bi_sccfreq /= 1000000L;
438a4c11 272 kbd->bi_vco /= 1000000L;
b6b0fe64
MB
273#endif
274#if defined(CONFIG_MPC5xxx)
275 kbd->bi_ipbfreq /= 1000000L;
276 kbd->bi_pcifreq /= 1000000L;
277#endif /* CONFIG_MPC5xxx */
278 }
279}