Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2008 Semihalf |
| 4 | * |
| 5 | * (C) Copyright 2000-2006 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
Marian Balakowicz | 7582438 | 2008-01-31 13:20:06 +0100 | [diff] [blame] | 9 | |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 10 | #include <common.h> |
| 11 | #include <watchdog.h> |
| 12 | #include <command.h> |
| 13 | #include <image.h> |
| 14 | #include <malloc.h> |
Jean-Christophe PLAGNIOL-VILLARD | a31e091 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 15 | #include <u-boot/zlib.h> |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 16 | #include <bzlib.h> |
| 17 | #include <environment.h> |
| 18 | #include <asm/byteorder.h> |
Kumar Gala | 561e710 | 2011-01-31 15:51:20 -0600 | [diff] [blame] | 19 | #include <asm/mp.h> |
Christophe Leroy | 08dd988 | 2017-07-13 15:10:08 +0200 | [diff] [blame] | 20 | #include <bootm.h> |
| 21 | #include <vxworks.h> |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 22 | |
| 23 | #if defined(CONFIG_OF_LIBFDT) |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 24 | #include <linux/libfdt.h> |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 25 | #include <fdt_support.h> |
Wolfgang Denk | 9c67352 | 2009-07-26 23:28:02 +0200 | [diff] [blame] | 26 | #endif |
| 27 | |
| 28 | #ifdef CONFIG_SYS_INIT_RAM_LOCK |
| 29 | #include <asm/cache.h> |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 30 | #endif |
| 31 | |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 32 | DECLARE_GLOBAL_DATA_PTR; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 33 | |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 34 | static ulong get_sp (void); |
Miao Yan | 871a57b | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 35 | extern void ft_fixup_num_cores(void *blob); |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 36 | static void set_clocks_in_mhz (bd_t *kbd); |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 37 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 38 | #ifndef CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE |
| 39 | #define CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE (768*1024*1024) |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 40 | #endif |
| 41 | |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 42 | static void boot_jump_linux(bootm_headers_t *images) |
| 43 | { |
| 44 | void (*kernel)(bd_t *, ulong r4, ulong r5, ulong r6, |
| 45 | ulong r7, ulong r8, ulong r9); |
| 46 | #ifdef CONFIG_OF_LIBFDT |
| 47 | char *of_flat_tree = images->ft_addr; |
| 48 | #endif |
| 49 | |
| 50 | kernel = (void (*)(bd_t *, ulong, ulong, ulong, |
| 51 | ulong, ulong, ulong))images->ep; |
| 52 | debug ("## Transferring control to Linux (at address %08lx) ...\n", |
| 53 | (ulong)kernel); |
| 54 | |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 55 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 56 | |
Mela Custodio | b892465 | 2014-02-20 00:16:57 +0900 | [diff] [blame] | 57 | #ifdef CONFIG_BOOTSTAGE_FDT |
| 58 | bootstage_fdt_add_report(); |
| 59 | #endif |
| 60 | #ifdef CONFIG_BOOTSTAGE_REPORT |
| 61 | bootstage_report(); |
| 62 | #endif |
| 63 | |
Wolfgang Denk | 9c67352 | 2009-07-26 23:28:02 +0200 | [diff] [blame] | 64 | #if defined(CONFIG_SYS_INIT_RAM_LOCK) && !defined(CONFIG_E500) |
| 65 | unlock_ram_in_cache(); |
| 66 | #endif |
| 67 | |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 68 | #if defined(CONFIG_OF_LIBFDT) |
| 69 | if (of_flat_tree) { /* device tree; boot new style */ |
| 70 | /* |
| 71 | * Linux Kernel Parameters (passing device tree): |
| 72 | * r3: pointer to the fdt |
| 73 | * r4: 0 |
| 74 | * r5: 0 |
| 75 | * r6: epapr magic |
| 76 | * r7: size of IMA in bytes |
| 77 | * r8: 0 |
| 78 | * r9: 0 |
| 79 | */ |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 80 | debug (" Booting using OF flat tree...\n"); |
Heiko Schocher | 7ff66bb | 2009-08-12 10:17:03 +0200 | [diff] [blame] | 81 | WATCHDOG_RESET (); |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 82 | (*kernel) ((bd_t *)of_flat_tree, 0, 0, EPAPR_MAGIC, |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 83 | env_get_bootm_mapsize(), 0, 0); |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 84 | /* does not return */ |
| 85 | } else |
| 86 | #endif |
| 87 | { |
| 88 | /* |
| 89 | * Linux Kernel Parameters (passing board info data): |
| 90 | * r3: ptr to board info data |
| 91 | * r4: initrd_start or 0 if no initrd |
| 92 | * r5: initrd_end - unused if r4 is 0 |
| 93 | * r6: Start of command line string |
| 94 | * r7: End of command line string |
| 95 | * r8: 0 |
| 96 | * r9: 0 |
| 97 | */ |
| 98 | ulong cmd_start = images->cmdline_start; |
| 99 | ulong cmd_end = images->cmdline_end; |
| 100 | ulong initrd_start = images->initrd_start; |
| 101 | ulong initrd_end = images->initrd_end; |
| 102 | bd_t *kbd = images->kbd; |
| 103 | |
| 104 | debug (" Booting using board info...\n"); |
Heiko Schocher | 7ff66bb | 2009-08-12 10:17:03 +0200 | [diff] [blame] | 105 | WATCHDOG_RESET (); |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 106 | (*kernel) (kbd, initrd_start, initrd_end, |
| 107 | cmd_start, cmd_end, 0, 0); |
| 108 | /* does not return */ |
| 109 | } |
| 110 | return ; |
| 111 | } |
| 112 | |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 113 | void arch_lmb_reserve(struct lmb *lmb) |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 114 | { |
Becky Bruce | 391fd93 | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 115 | phys_size_t bootm_size; |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 116 | ulong size, sp, bootmap_base; |
Kumar Gala | c160a95 | 2008-08-15 08:24:36 -0500 | [diff] [blame] | 117 | |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 118 | bootmap_base = env_get_bootm_low(); |
| 119 | bootm_size = env_get_bootm_size(); |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 120 | |
| 121 | #ifdef DEBUG |
Becky Bruce | 391fd93 | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 122 | if (((u64)bootmap_base + bootm_size) > |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 123 | (CONFIG_SYS_SDRAM_BASE + (u64)gd->ram_size)) |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 124 | puts("WARNING: bootm_low + bootm_size exceed total memory\n"); |
Becky Bruce | 391fd93 | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 125 | if ((bootmap_base + bootm_size) > get_effective_memsize()) |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 126 | puts("WARNING: bootm_low + bootm_size exceed eff. memory\n"); |
| 127 | #endif |
| 128 | |
Becky Bruce | 391fd93 | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 129 | size = min(bootm_size, get_effective_memsize()); |
Masahiro Yamada | b414119 | 2014-11-07 03:03:31 +0900 | [diff] [blame] | 130 | size = min(size, (ulong)CONFIG_SYS_LINUX_LOWMEM_MAX_SIZE); |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 131 | |
Becky Bruce | 391fd93 | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 132 | if (size < bootm_size) { |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 133 | ulong base = bootmap_base + size; |
Andrew Klossner | dc4b0b3 | 2008-07-07 06:41:14 -0700 | [diff] [blame] | 134 | printf("WARNING: adjusting available memory to %lx\n", size); |
Becky Bruce | 391fd93 | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 135 | lmb_reserve(lmb, base, bootm_size - size); |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 136 | } |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 137 | |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 138 | /* |
| 139 | * Booting a (Linux) kernel image |
| 140 | * |
| 141 | * Allocate space for command line and board info - the |
| 142 | * address should be as high as possible within the reach of |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 143 | * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 144 | * memory, which means far enough below the current stack |
| 145 | * pointer. |
| 146 | */ |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 147 | sp = get_sp(); |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 148 | debug ("## Current stack ends at 0x%08lx\n", sp); |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 149 | |
Norbert van Bolhuis | 3882d7a | 2010-03-19 15:34:25 +0100 | [diff] [blame] | 150 | /* adjust sp by 4K to be safe */ |
| 151 | sp -= 4096; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 152 | lmb_reserve(lmb, sp, (CONFIG_SYS_SDRAM_BASE + get_effective_memsize() - sp)); |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 153 | |
Kumar Gala | 561e710 | 2011-01-31 15:51:20 -0600 | [diff] [blame] | 154 | #ifdef CONFIG_MP |
| 155 | cpu_mp_lmb_reserve(lmb); |
| 156 | #endif |
| 157 | |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 158 | return ; |
| 159 | } |
| 160 | |
Kumar Gala | 3b20011 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 161 | static void boot_prep_linux(bootm_headers_t *images) |
| 162 | { |
| 163 | #ifdef CONFIG_MP |
| 164 | /* |
| 165 | * if we are MP make sure to flush the device tree so any changes are |
| 166 | * made visibile to all other cores. In AMP boot scenarios the cores |
| 167 | * might not be HW cache coherent with each other. |
| 168 | */ |
| 169 | flush_cache((unsigned long)images->ft_addr, images->ft_len); |
| 170 | #endif |
| 171 | } |
| 172 | |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 173 | static int boot_cmdline_linux(bootm_headers_t *images) |
| 174 | { |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 175 | ulong of_size = images->ft_len; |
| 176 | struct lmb *lmb = &images->lmb; |
| 177 | ulong *cmd_start = &images->cmdline_start; |
| 178 | ulong *cmd_end = &images->cmdline_end; |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 179 | |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 180 | int ret = 0; |
Kumar Gala | 76da19d | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 181 | |
Kumar Gala | 2795349 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 182 | if (!of_size) { |
| 183 | /* allocate space and init command line */ |
Grant Likely | 590d3ca | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 184 | ret = boot_get_cmdline (lmb, cmd_start, cmd_end); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 185 | if (ret) { |
| 186 | puts("ERROR with allocation of cmdline\n"); |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 187 | return ret; |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 188 | } |
Kumar Gala | 2795349 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 189 | } |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 190 | |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 191 | return ret; |
| 192 | } |
| 193 | |
| 194 | static int boot_bd_t_linux(bootm_headers_t *images) |
| 195 | { |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 196 | ulong of_size = images->ft_len; |
| 197 | struct lmb *lmb = &images->lmb; |
| 198 | bd_t **kbd = &images->kbd; |
| 199 | |
| 200 | int ret = 0; |
| 201 | |
| 202 | if (!of_size) { |
| 203 | /* allocate space for kernel copy of board info */ |
Grant Likely | 590d3ca | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 204 | ret = boot_get_kbd (lmb, kbd); |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 205 | if (ret) { |
| 206 | puts("ERROR with allocation of kernel bd\n"); |
| 207 | return ret; |
| 208 | } |
| 209 | set_clocks_in_mhz(*kbd); |
| 210 | } |
| 211 | |
| 212 | return ret; |
| 213 | } |
| 214 | |
| 215 | static int boot_body_linux(bootm_headers_t *images) |
| 216 | { |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 217 | int ret; |
| 218 | |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 219 | /* allocate space for kernel copy of board info */ |
| 220 | ret = boot_bd_t_linux(images); |
| 221 | if (ret) |
| 222 | return ret; |
| 223 | |
Simon Glass | 3e51266 | 2013-05-08 08:06:04 +0000 | [diff] [blame] | 224 | ret = image_setup_linux(images); |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 225 | if (ret) |
| 226 | return ret; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 227 | |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 228 | return 0; |
| 229 | } |
Marian Balakowicz | d45d5a1 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 230 | |
Kim Phillips | eef1cf2 | 2012-10-29 13:34:23 +0000 | [diff] [blame] | 231 | noinline |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 232 | int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images) |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 233 | { |
| 234 | int ret; |
Kumar Gala | d2bc095 | 2008-02-27 21:51:45 -0600 | [diff] [blame] | 235 | |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 236 | if (flag & BOOTM_STATE_OS_CMDLINE) { |
| 237 | boot_cmdline_linux(images); |
| 238 | return 0; |
Marian Balakowicz | bc8ed48 | 2008-03-12 10:32:53 +0100 | [diff] [blame] | 239 | } |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 240 | |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 241 | if (flag & BOOTM_STATE_OS_BD_T) { |
| 242 | boot_bd_t_linux(images); |
| 243 | return 0; |
| 244 | } |
| 245 | |
Kumar Gala | 3b20011 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 246 | if (flag & BOOTM_STATE_OS_PREP) { |
| 247 | boot_prep_linux(images); |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 248 | return 0; |
Kumar Gala | 3b20011 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 249 | } |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 250 | |
Kumar Gala | 3b20011 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 251 | boot_prep_linux(images); |
Kumar Gala | 5a98127 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 252 | ret = boot_body_linux(images); |
| 253 | if (ret) |
| 254 | return ret; |
| 255 | boot_jump_linux(images); |
| 256 | |
| 257 | return 0; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 258 | } |
Marian Balakowicz | d3c5eb6 | 2008-01-31 13:20:08 +0100 | [diff] [blame] | 259 | |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 260 | static ulong get_sp (void) |
| 261 | { |
| 262 | ulong sp; |
| 263 | |
| 264 | asm( "mr %0,1": "=r"(sp) : ); |
| 265 | return sp; |
| 266 | } |
| 267 | |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 268 | static void set_clocks_in_mhz (bd_t *kbd) |
| 269 | { |
| 270 | char *s; |
| 271 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 272 | s = env_get("clocks_in_mhz"); |
| 273 | if (s) { |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 274 | /* convert all clock information to MHz */ |
| 275 | kbd->bi_intfreq /= 1000000L; |
| 276 | kbd->bi_busfreq /= 1000000L; |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 277 | #if defined(CONFIG_CPM2) |
| 278 | kbd->bi_cpmfreq /= 1000000L; |
| 279 | kbd->bi_brgfreq /= 1000000L; |
| 280 | kbd->bi_sccfreq /= 1000000L; |
Wolfgang Denk | 438a4c1 | 2008-03-26 11:48:46 +0100 | [diff] [blame] | 281 | kbd->bi_vco /= 1000000L; |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 282 | #endif |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 283 | } |
| 284 | } |
Miao Yan | 871a57b | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 285 | |
| 286 | #if defined(CONFIG_BOOTM_VXWORKS) |
| 287 | void boot_prep_vxworks(bootm_headers_t *images) |
| 288 | { |
| 289 | #if defined(CONFIG_OF_LIBFDT) |
| 290 | int off; |
| 291 | u64 base, size; |
| 292 | |
| 293 | if (!images->ft_addr) |
| 294 | return; |
| 295 | |
| 296 | base = (u64)gd->bd->bi_memstart; |
| 297 | size = (u64)gd->bd->bi_memsize; |
| 298 | |
| 299 | off = fdt_path_offset(images->ft_addr, "/memory"); |
| 300 | if (off < 0) |
| 301 | fdt_fixup_memory(images->ft_addr, base, size); |
| 302 | |
| 303 | #if defined(CONFIG_MP) |
| 304 | #if defined(CONFIG_MPC85xx) |
| 305 | ft_fixup_cpu(images->ft_addr, base + size); |
| 306 | ft_fixup_num_cores(images->ft_addr); |
| 307 | #elif defined(CONFIG_MPC86xx) |
| 308 | off = fdt_add_mem_rsv(images->ft_addr, |
| 309 | determine_mp_bootpg(NULL), (u64)4096); |
| 310 | if (off < 0) |
| 311 | printf("## WARNING %s: %s\n", __func__, fdt_strerror(off)); |
| 312 | ft_fixup_num_cores(images->ft_addr); |
| 313 | #endif |
| 314 | flush_cache((unsigned long)images->ft_addr, images->ft_len); |
| 315 | #endif |
| 316 | #endif |
| 317 | } |
| 318 | |
| 319 | void boot_jump_vxworks(bootm_headers_t *images) |
| 320 | { |
| 321 | /* PowerPC VxWorks boot interface conforms to the ePAPR standard |
| 322 | * general purpuse registers: |
| 323 | * |
| 324 | * r3: Effective address of the device tree image |
| 325 | * r4: 0 |
| 326 | * r5: 0 |
| 327 | * r6: ePAPR magic value |
| 328 | * r7: shall be the size of the boot IMA in bytes |
| 329 | * r8: 0 |
| 330 | * r9: 0 |
| 331 | * TCR: WRC = 0, no watchdog timer reset will occur |
| 332 | */ |
| 333 | WATCHDOG_RESET(); |
| 334 | |
| 335 | ((void (*)(void *, ulong, ulong, ulong, |
| 336 | ulong, ulong, ulong))images->ep)(images->ft_addr, |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 337 | 0, 0, EPAPR_MAGIC, env_get_bootm_mapsize(), 0, 0); |
Miao Yan | 871a57b | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 338 | } |
| 339 | #endif |