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