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